/* ============================================
   Lambert Abbruch & Erdbau – Stylesheet
   Farbschema aus Logo: Gelb #FFD60A / Blau #1B3A6B
   ============================================ */

/* Inter – lokal eingebunden (DSGVO-konform, keine Google-Verbindung).
   Variable Font: deckt alle Schriftstärken 100–900 mit einer Datei ab. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter/inter-latin-variable.woff2') format('woff2');
}

:root {
  --gelb: #FFD60A;
  --gelb-dark: #E6BE00;
  --blau: #1B3A6B;
  --blau-dark: #122648;
  --anthrazit: #1A1A1A;
  --grau-900: #1f2937;
  --grau-700: #374151;
  --grau-500: #6b7280;
  --grau-300: #d1d5db;
  --grau-100: #f3f4f6;
  --grau-50:  #f9fafb;
  --weiss: #ffffff;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 10px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.05);
  --shadow-lg: 0 25px 50px -12px rgba(0,0,0,.25);

  --container: 1200px;
  --header-h: 108px;

  --t: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ------- Reset / Basics ------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--grau-900);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--t); }
a:hover { color: var(--blau); }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--blau);
  letter-spacing: -0.02em;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ------- Typography helpers ------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blau);
  margin-bottom: 14px;
  padding: 6px 12px;
  background: rgba(255, 214, 10, 0.18);
  border-radius: 999px;
}
.eyebrow--light { color: var(--gelb); background: rgba(255, 214, 10, 0.12); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
  max-width: 900px;
}
.section-title--light { color: var(--weiss); }

.section-sub {
  font-size: 1.125rem;
  color: var(--grau-500);
  max-width: 720px;
  margin-bottom: 20px;
}
.section--dark .section-sub { color: rgba(255,255,255,.75); }

.lead { font-size: 1.2rem; color: var(--grau-700); margin-bottom: 16px; }

.center { text-align: center; margin-top: 40px; }

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
}
.btn--lg { padding: 18px 32px; font-size: 16px; }

.btn--primary {
  background: var(--gelb);
  color: var(--blau);
  border-color: var(--gelb);
}
.btn--primary:hover {
  background: var(--gelb-dark);
  border-color: var(--gelb-dark);
  color: var(--blau);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(255,214,10,.5);
}

.btn--dark {
  background: var(--blau);
  color: var(--weiss);
  border-color: var(--blau);
}
.btn--dark:hover {
  background: var(--blau-dark);
  border-color: var(--blau-dark);
  color: var(--weiss);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(27,58,107,.5);
}

.btn--ghost {
  background: transparent;
  color: var(--weiss);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover {
  background: var(--weiss);
  color: var(--blau);
  border-color: var(--weiss);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blau);
  font-weight: 700;
  font-size: 14px;
  transition: gap var(--t);
}
.leistung:hover .link-arrow { gap: 12px; }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: all var(--t);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  height: 78px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav .nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--blau);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav .nav-link:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gelb);
  transition: width var(--t);
}
.nav .nav-link:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  padding: 12px 22px !important;
  font-size: 14px !important;
}

/* ------- Mega-Menü Dropdown (Leistungen) ------- */
.nav-item--has-dropdown {
  position: relative;
}
.nav-caret {
  width: 14px;
  height: 14px;
  transition: transform var(--t);
}
.nav-item--has-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: -20px;
  width: 360px;
  background: var(--weiss);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,.25), 0 0 0 1px rgba(27,58,107,.06);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  z-index: 110;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 32px;
  width: 16px;
  height: 16px;
  background: var(--weiss);
  transform: rotate(45deg);
  border-radius: 3px;
  margin-top: 9px;
  z-index: -1;
  box-shadow: 0 0 0 1px rgba(27,58,107,.06);
}
/* Brücke: kein "lost-hover" zwischen Link und Dropdown */
.dropdown::after {
  content: '';
  position: absolute;
  top: -22px; left: 0; right: 0;
  height: 22px;
}

.nav-item--has-dropdown:hover .dropdown,
.nav-item--has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__item {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--t);
}
.dropdown__item:hover {
  background: var(--grau-50);
}
.dropdown__item:not(.nav__cta)::after { display: none !important; }

.dropdown__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255,214,10,.15);
  color: var(--blau);
  border-radius: 10px;
  transition: all var(--t);
}
.dropdown__icon svg {
  width: 22px;
  height: 22px;
}
.dropdown__item:hover .dropdown__icon {
  background: var(--gelb);
  transform: scale(1.05);
}

.dropdown__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.dropdown__text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--blau);
  line-height: 1.2;
}
.dropdown__text small {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--grau-500);
  line-height: 1.3;
}

.dropdown__footer {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px !important;
  margin-top: 6px;
  background: var(--blau);
  color: var(--weiss) !important;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all var(--t);
}
.dropdown__footer:not(.nav__cta)::after { display: none !important; }
.dropdown__footer svg {
  width: 18px;
  height: 18px;
  transition: transform var(--t);
}
.dropdown__footer:hover {
  background: var(--blau-dark);
  color: var(--weiss) !important;
}
.dropdown__footer:hover svg {
  transform: translateX(4px);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blau);
  border-radius: 2px;
  transition: all var(--t);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--weiss);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(18,38,72,.85) 0%, rgba(18,38,72,.45) 60%, rgba(0,0,0,.3) 100%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gelb);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--gelb);
  border-radius: 999px;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 900;
  color: var(--weiss);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero__title .hl { color: var(--gelb); }
.hero__sub {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  max-width: 600px;
  margin-bottom: 36px;
  color: rgba(255,255,255,.9);
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 4px;
  height: 8px;
  background: var(--gelb);
  border-radius: 2px;
  animation: scroll 1.8s infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
}
.section--dark {
  background: var(--blau-dark);
  color: var(--weiss);
}
.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.section-head .section-sub { margin: 0 auto; }

/* ------- Über uns ------- */
.ueber__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.ueber__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat {
  background: var(--grau-50);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid var(--gelb);
  transition: transform var(--t);
}
.stat:hover { transform: translateY(-4px); }
.stat__num {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--blau);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat__label {
  font-size: 14px;
  color: var(--grau-500);
  font-weight: 600;
}

/* ------- Leistungen (helle Icon-Karten) ------- */
.leistungen-section { background: var(--weiss); }

.leistungen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(27,58,107,.1);
  border-left: 1px solid rgba(27,58,107,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--weiss);
  box-shadow: 0 4px 30px -10px rgba(27,58,107,.08);
}
.leistung {
  position: relative;
  padding: 48px 36px 44px;
  color: var(--grau-700);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--weiss);
  border-right: 1px solid rgba(27,58,107,.1);
  border-bottom: 1px solid rgba(27,58,107,.1);
  transition: background var(--t);
  overflow: hidden;
}
.leistung::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gelb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.leistung:hover {
  background: linear-gradient(180deg, rgba(255,214,10,.06) 0%, transparent 100%);
}
.leistung:hover::before { transform: scaleX(1); }

.leistung__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--blau);
  margin-bottom: 8px;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.leistung__icon::after {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  background: var(--gelb);
  border-radius: 12px;
  top: 18px;
  left: -8px;
  z-index: 0;
  opacity: .25;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.leistung__icon svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.leistung:hover .leistung__icon {
  transform: translateY(-4px);
}
.leistung:hover .leistung__icon::after {
  opacity: .5;
  transform: translate(4px, -4px);
}

.leistung h3 {
  font-size: 1.5rem;
  color: var(--blau);
  font-weight: 800;
}
.leistung p {
  color: var(--grau-500);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 6px;
}
.leistung .link-arrow {
  color: var(--blau);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

/* CTA-Karte als 6. Punkt */
.leistung--cta {
  background: var(--blau);
  color: var(--weiss);
}
.leistung--cta::before { display: none; }
.leistung--cta:hover {
  background: var(--blau-dark);
  color: var(--weiss);
}
.leistung--cta .leistung__icon {
  color: var(--gelb);
}
.leistung--cta .leistung__icon::after { display: none; }
.leistung--cta h3 { color: var(--weiss); }
.leistung--cta p { color: rgba(255,255,255,.8); }
.leistung--cta .link-arrow { color: var(--gelb); }
.leistung--cta:hover .leistung__icon { transform: translateX(6px); }

/* ------- Galerie ------- */
.galerie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.galerie__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--grau-100);
}
.galerie__item--xl {
  grid-column: span 2;
  grid-row: span 2;
}
.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.galerie__item:hover img { transform: scale(1.08); }
.galerie__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  color: var(--weiss);
  font-weight: 600;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.tag {
  display: inline-block;
  background: var(--gelb);
  color: var(--blau);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ------- Warum Lambert (Split-Layout) ------- */
.warum {
  background: var(--grau-50);
  position: relative;
  overflow: hidden;
}
.warum__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.warum__visual {
  position: relative;
  height: 720px;
  position: sticky;
  top: 100px;
}
.warum__image {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.warum__badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--gelb);
  color: var(--blau);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  max-width: 220px;
}
.warum__badge-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.warum__badge-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: .85;
}
.warum__accent {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border: 4px solid var(--gelb);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.warum__content { padding-top: 12px; }

/* Features mit Nummern-Markern */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 40px;
  margin-top: 40px;
}
.feature {
  position: relative;
  padding-left: 0;
  transition: transform var(--t);
}
.feature:hover { transform: translateX(4px); }

.feature__num {
  display: inline-flex;
  align-items: baseline;
  font-size: 14px;
  font-weight: 800;
  color: var(--gelb-dark);
  background: rgba(255,214,10,.18);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--blau);
  line-height: 1.3;
}
.feature p {
  color: var(--grau-500);
  font-size: 15px;
  line-height: 1.6;
}

/* ------- Karriere (überarbeitet) ------- */
.karriere {
  background: var(--blau-dark);
  color: var(--weiss);
  position: relative;
  overflow: hidden;
}
.karriere__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,214,10,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,214,10,.05) 0%, transparent 50%);
  pointer-events: none;
}
.karriere::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px;
  height: 300px;
  background-image:
    linear-gradient(rgba(255,214,10,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,214,10,.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: .5;
}

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

.karriere__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.karriere__sub {
  color: rgba(255,255,255,.75) !important;
  margin: 0 auto !important;
}

.karriere__jobs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.job {
  position: relative;
  background: linear-gradient(155deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.1);
  padding: 40px 36px 32px;
  border-radius: var(--radius-lg);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.job::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gelb), var(--gelb-dark));
  transform: scaleX(0.15);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.job:hover {
  transform: translateY(-6px);
  border-color: rgba(255,214,10,.4);
  background: linear-gradient(155deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.04) 100%);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.4);
}
.job:hover::before { transform: scaleX(1); }

.job__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}
.job__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--gelb);
  background: rgba(255,214,10,.1);
  border: 1.5px solid rgba(255,214,10,.3);
  border-radius: 16px;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.job__icon svg {
  width: 32px;
  height: 32px;
}
.job:hover .job__icon {
  background: var(--gelb);
  color: var(--blau);
  transform: rotate(-6deg);
}
.job__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.job__tag {
  display: inline-block;
  background: var(--gelb);
  color: var(--blau);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.job__location {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

.job h3 {
  color: var(--weiss);
  font-size: 1.45rem;
  line-height: 1.25;
}
.job__mwd {
  color: rgba(255,255,255,.5);
  font-weight: 500;
  font-size: 0.95rem;
}
.job p {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.6;
}

.job__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin: 4px 0 8px;
}
.job__list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.5;
}
.job__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gelb);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,214,10,.15);
}

.job__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 14px 24px;
  background: var(--gelb);
  color: var(--blau);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: all var(--t);
  margin-top: 4px;
}
.job__cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t);
}
.job__cta:hover {
  background: var(--weiss);
  color: var(--blau);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -6px rgba(255,214,10,.4);
}
.job__cta:hover svg {
  transform: translateX(4px);
}

.karriere__foot {
  text-align: center;
  margin-top: 40px;
  color: rgba(255,255,255,.6);
  font-size: 15px;
}
.karriere__foot a {
  color: var(--gelb);
  font-weight: 700;
  border-bottom: 1px solid rgba(255,214,10,.4);
}
.karriere__foot a:hover {
  color: var(--weiss);
  border-color: var(--weiss);
}

/* ------- CTA Banner ------- */
.cta-banner {
  background: var(--gelb);
  padding: 60px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--blau);
  margin-bottom: 6px;
}
.cta-banner p { color: var(--blau); font-size: 1.1rem; opacity: .85; }

/* ------- Kontakt ------- */
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.kontakt__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.kontakt__list li {
  padding: 20px;
  background: var(--grau-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--gelb);
}
.kontakt__list strong {
  display: block;
  color: var(--blau);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.kontakt__list a:hover { color: var(--gelb-dark); }

/* ------- Form ------- */
.form {
  background: var(--grau-50);
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--blau);
}
.form input:not([type="submit"]),
.form textarea {
  border: 1.5px solid var(--grau-300);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--grau-900);
  background: var(--weiss);
  transition: border-color var(--t);
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gelb);
  box-shadow: 0 0 0 3px rgba(255,214,10,.2);
}
.form__check {
  flex-direction: row !important;
  align-items: center;
  font-weight: 500 !important;
  color: var(--grau-700) !important;
}
.form__check input { width: auto; }

/* ------- Contact Form 7 an .form-Design anpassen ------- */
.form .wpcf7-form-control-wrap { display: block; }
.form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.form textarea,
.form select { width: 100%; }
.form input[type="submit"] { width: auto; }
.form select {
  border: 1.5px solid var(--grau-300);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--grau-900);
  background: var(--weiss);
  transition: border-color var(--t);
}
.form select:focus {
  outline: none;
  border-color: var(--gelb);
  box-shadow: 0 0 0 3px rgba(255,214,10,.2);
}
.form .wpcf7-not-valid-tip { color: #d33; font-size: 13px; font-weight: 600; margin-top: 4px; }
.form .wpcf7-response-output {
  margin: 4px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
/* Datenschutz-Checkbox: Häkchen links, Text daneben */
.form__check { align-items: flex-start !important; gap: 10px; }
.form__check .wpcf7-form-control-wrap { display: inline-flex; width: auto; flex-shrink: 0; margin-top: 2px; }
.form__check input[type="checkbox"] { width: auto; flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--anthrazit);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer h4 {
  color: var(--weiss);
  font-size: 1rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer a:hover { color: var(--gelb); }
.footer__logo {
  height: 115px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: rgba(255,255,255,.85);
  transition: all var(--t);
}
.socials a svg {
  width: 18px;
  height: 18px;
  display: block;
}
.socials a:hover {
  background: var(--gelb);
  color: var(--blau);
  transform: translateY(-2px);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  font-size: 14px;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom ul {
  display: flex;
  gap: 24px;
}

/* ============================================
   UNTERSEITEN
   ============================================ */

/* ------- Page Header (statt Hero auf Unterseiten) ------- */
.page-header {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--weiss);
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  overflow: hidden;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--blau-dark);
  z-index: 0;
}
.page-header__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(18,38,72,.92) 0%, rgba(18,38,72,.6) 60%, rgba(0,0,0,.4) 100%);
  z-index: 1;
}
.page-header__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
  font-weight: 500;
}
.breadcrumbs a {
  color: rgba(255,255,255,.8);
  transition: color var(--t);
}
.breadcrumbs a:hover { color: var(--gelb); }
.breadcrumbs span:not([aria-current]) {
  color: rgba(255,255,255,.4);
}
.breadcrumbs [aria-current] {
  color: var(--gelb);
  font-weight: 700;
}

.page-header__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gelb);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid var(--gelb);
  border-radius: 999px;
}
.page-header__title {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  color: var(--weiss);
  margin-bottom: 16px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.page-header__title .hl { color: var(--gelb); }
.page-header__claim {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--gelb);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.page-header__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 620px;
}
.page-header__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ------- Intro (2-Spalter mit Bild + Text) ------- */
.intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro__image {
  position: relative;
}
.intro__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.intro__badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--gelb);
  color: var(--blau);
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  border-left: 4px solid var(--blau);
}
.intro__badge strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.intro__badge span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: .8;
  line-height: 1.4;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-top: 28px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
  color: var(--grau-700);
  font-size: 15px;
  line-height: 1.4;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--gelb);
  color: var(--blau);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

/* ------- Bereich-Grid (6 Service-Punkte einer Leistung) ------- */
.bereich { background: var(--grau-50); }
.bereich__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bereich__item {
  background: var(--weiss);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27,58,107,.08);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.bereich__item::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px;
  height: 60px;
  background: var(--gelb);
  border-radius: 0 var(--radius-lg) 0 60px;
  opacity: 0;
  transition: opacity var(--t);
}
.bereich__item:hover {
  transform: translateY(-4px);
  border-color: var(--gelb);
  box-shadow: var(--shadow);
}
.bereich__item:hover::after { opacity: .25; }
.bereich__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,214,10,.15);
  color: var(--blau);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: all var(--t);
}
.bereich__icon svg { width: 28px; height: 28px; }
.bereich__item:hover .bereich__icon {
  background: var(--gelb);
}
.bereich__item h3 {
  font-size: 1.2rem;
  color: var(--blau);
  margin-bottom: 8px;
}
.bereich__item p {
  color: var(--grau-500);
  font-size: 15px;
  line-height: 1.55;
}

/* ------- Prozess (4 nummerierte Schritte) ------- */
.prozess { background: var(--weiss); }
.prozess__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.prozess__grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gelb) 0 8px, transparent 8px 16px);
  opacity: .4;
  z-index: 0;
}
.prozess__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.prozess__num {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: var(--blau);
  color: var(--gelb);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px var(--weiss), 0 0 0 10px rgba(27,58,107,.1);
  letter-spacing: -0.02em;
  transition: transform var(--t);
}
.prozess__step:hover .prozess__num {
  transform: scale(1.08);
  background: var(--gelb);
  color: var(--blau);
  box-shadow: 0 0 0 8px var(--weiss), 0 0 0 10px rgba(255,214,10,.3);
}
.prozess__step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.prozess__step p {
  color: var(--grau-500);
  font-size: 14px;
  line-height: 1.55;
}

/* ------- Kleinere Bereich-Galerie ------- */
.bereich-galerie { background: var(--grau-50); }
.bereich-galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bereich-galerie figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.bereich-galerie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.bereich-galerie figure:hover img { transform: scale(1.06); }
.bereich-galerie figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  color: var(--weiss);
  font-weight: 700;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
}

/* ------- Warum kompakt (Unterseiten) ------- */
.warum-kompakt { background: var(--weiss); }
.warum-kompakt__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 40px;
}
.wk-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.wk-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--gelb);
  color: var(--blau);
  border-radius: 10px;
  font-weight: 900;
  font-size: 16px;
}
.wk-item h4 {
  font-size: 1.05rem;
  color: var(--blau);
  margin-bottom: 4px;
}
.wk-item p {
  color: var(--grau-500);
  font-size: 14px;
  line-height: 1.5;
}

/* ============================================
   ÜBER-UNS-SEITE
   ============================================ */

/* ------- Story (Firmengeschichte) ------- */
.story { background: var(--weiss); }
.story__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story__text p { margin-bottom: 16px; color: var(--grau-700); }
.story__text p:last-child { margin-bottom: 0; }
.story__text strong { color: var(--blau); }

.story__visual {
  position: relative;
}
.story__image {
  width: 100%;
  height: 460px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.story__timeline {
  position: relative;
  margin-top: 24px;
  background: var(--weiss);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gelb);
}
.tl-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grau-100);
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blau);
  letter-spacing: -0.02em;
  min-width: 70px;
  line-height: 1;
}
.tl-label {
  color: var(--grau-500);
  font-size: 14px;
  font-weight: 600;
}
.tl-item--active .tl-year { color: var(--gelb-dark); }
.tl-item--active { background: rgba(255,214,10,.08); margin: 0 -28px; padding: 14px 28px; border-radius: 0 0 var(--radius-lg) 0; }

/* ------- Werte (6er Grid) ------- */
.werte { background: var(--grau-50); }
.werte__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wert {
  background: var(--weiss);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27,58,107,.08);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.wert::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gelb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.wert:hover {
  transform: translateY(-6px);
  border-color: var(--gelb);
  box-shadow: var(--shadow-lg);
}
.wert:hover::before { transform: scaleX(1); }
.wert__icon {
  width: 64px;
  height: 64px;
  background: var(--blau);
  color: var(--gelb);
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all var(--t);
}
.wert__icon svg { width: 30px; height: 30px; }
.wert:hover .wert__icon {
  background: var(--gelb);
  color: var(--blau);
  transform: rotate(-6deg);
}
.wert h3 {
  font-size: 1.35rem;
  color: var(--blau);
  margin-bottom: 12px;
}
.wert p {
  color: var(--grau-500);
  font-size: 15px;
  line-height: 1.65;
}

/* ------- Versprechen (großes Zitat) ------- */
.versprechen {
  background: var(--blau-dark);
  color: var(--weiss);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.versprechen::before {
  content: '';
  position: absolute;
  top: -40px; left: -20px;
  width: 240px;
  height: 240px;
  border: 6px solid var(--gelb);
  border-radius: 50%;
  opacity: .08;
}
.versprechen::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,214,10,.15) 0%, transparent 70%);
  pointer-events: none;
}
.versprechen__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.versprechen__inner .eyebrow {
  margin-bottom: 28px;
}
.versprechen__quote {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--weiss);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.versprechen__quote .hl {
  color: var(--gelb);
  display: block;
  margin-top: 10px;
}
.versprechen__author {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ------- Team ------- */
.team { background: var(--weiss); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-member {
  background: var(--weiss);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(27,58,107,.08);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.team-member:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gelb);
}
.team-member__photo {
  width: 100%;
  height: 440px;
  background-size: cover;
  background-position: center 25%;
  background-color: var(--grau-100);
  position: relative;
}
.team-member__photo--ph {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--grau-100) 0%, var(--grau-50) 100%);
  color: var(--grau-300);
}
.team-member__photo--ph svg {
  width: 120px;
  height: 120px;
}
.team-member__body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-member h3 {
  font-size: 1.3rem;
  color: var(--blau);
  margin-bottom: 4px;
}
.team-member__role {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gelb-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: rgba(255,214,10,.15);
  border-radius: 6px;
  align-self: flex-start;
}
.team-member__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--grau-100);
}
.team-member__contact li {
  font-size: 14px;
}
.team-member__contact a {
  color: var(--grau-700);
  transition: color var(--t);
}
.team-member__contact a:hover { color: var(--blau); }
.team-member__note {
  color: var(--grau-500);
  font-size: 14px;
  line-height: 1.55;
}

.team-member--cta {
  background: var(--blau);
  color: var(--weiss);
  border: none;
  padding: 40px 32px;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}
.team-member--cta:hover {
  background: var(--blau-dark);
  border: none;
}
.team-member--cta h3 {
  color: var(--weiss);
  font-size: 1.4rem;
  line-height: 1.25;
}
.team-member--cta p {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.team-member__cta-icon {
  width: 56px;
  height: 56px;
  background: var(--gelb);
  color: var(--blau);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.team-member__cta-icon svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   KARRIERE-SEITE
   ============================================ */

/* ------- "Das bieten wir" Grid ------- */
.bieten { background: var(--weiss); }
.bieten__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bietet {
  padding: 32px 28px;
  background: var(--grau-50);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27,58,107,.05);
  transition: all var(--t);
}
.bietet:hover {
  background: var(--weiss);
  border-color: var(--gelb);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.bietet__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--gelb);
  color: var(--blau);
  border-radius: 12px;
  margin-bottom: 18px;
}
.bietet__icon svg { width: 26px; height: 26px; }
.bietet h3 {
  font-size: 1.15rem;
  color: var(--blau);
  margin-bottom: 8px;
}
.bietet p {
  color: var(--grau-500);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ------- Offene Stellen Section ------- */
.stellen {
  background: var(--blau-dark);
  color: var(--weiss);
  position: relative;
  overflow: hidden;
}
.stellen__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,214,10,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,214,10,.05) 0%, transparent 50%);
  pointer-events: none;
}
.stellen .container { position: relative; z-index: 1; }
.stellen__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

/* ------- Initiativbewerbung ------- */
.initiativ {
  background: linear-gradient(135deg, var(--gelb) 0%, var(--gelb-dark) 100%);
}
.initiativ__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.initiativ .section-title { color: var(--blau); }
.initiativ .lead { color: var(--blau); margin-bottom: 32px; }
.initiativ__icon {
  width: 72px;
  height: 72px;
  background: var(--blau);
  color: var(--gelb);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
}
.initiativ__icon svg { width: 36px; height: 36px; }

.initiativ__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 580px;
  margin: 0 auto;
}
.contact-card {
  background: var(--weiss);
  padding: 22px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-decoration: none;
  transition: all var(--t);
  border-left: 4px solid var(--blau);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.contact-card__icon {
  font-size: 22px;
  margin-bottom: 4px;
}
.contact-card__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grau-500);
}
.contact-card__value {
  font-size: 16px;
  font-weight: 800;
  color: var(--blau);
}

/* ============================================
   JOB-DETAILSEITE
   ============================================ */

.page-header--job {
  min-height: 480px;
}
.job-meta-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.job-meta-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--weiss);
  backdrop-filter: blur(8px);
}
.job-meta-pill strong {
  color: var(--gelb);
  font-weight: 700;
  margin-right: 4px;
}

/* ------- Job-Detail Layout ------- */
.job-detail { background: var(--weiss); }
.job-detail__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.job-intro { margin-bottom: 40px; }
.job-intro .lead { font-size: 1.25rem; color: var(--grau-700); }
.job-intro strong { color: var(--blau); }

.job-block {
  background: var(--grau-50);
  padding: 36px 36px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}
.job-block--accent {
  background: var(--blau);
  color: var(--weiss);
}
.job-block__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.job-block__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--blau);
  color: var(--gelb);
  border-radius: 12px;
  flex-shrink: 0;
}
.job-block--accent .job-block__icon {
  background: var(--gelb);
  color: var(--blau);
}
.job-block__icon svg { width: 26px; height: 26px; }
.job-block__head h2 {
  font-size: 1.5rem;
  color: var(--blau);
  margin: 0;
}
.job-block--accent .job-block__head h2 { color: var(--weiss); }

.job-block__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.job-block__list li {
  position: relative;
  padding-left: 32px;
  color: var(--grau-700);
  font-size: 15.5px;
  line-height: 1.55;
}
.job-block__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background: var(--gelb);
  border-radius: 50%;
  background-image: linear-gradient(45deg, transparent 38%, var(--blau) 38% 42%, transparent 42%, transparent 50%, var(--blau) 50% 60%, transparent 60%);
}
.job-block__list--accent li {
  color: rgba(255,255,255,.85);
}
.job-block__list--accent li::before {
  background: var(--gelb);
}

/* Cleaner Check-Icon Variante */
.job-block__list li::before {
  background: var(--gelb);
  background-image: none;
}
.job-block__list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--blau);
  border-bottom: 2px solid var(--blau);
  transform: rotate(-45deg);
}

/* Quick Contact (im Job-Detail) */
.quick-contact {
  margin-top: 36px;
  padding: 32px;
  background: var(--grau-50);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gelb);
}
.quick-contact p {
  font-size: 1.05rem;
  color: var(--grau-700);
  margin-bottom: 18px;
  line-height: 1.6;
}
.quick-contact strong { color: var(--blau); }
.quick-contact__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn--ghost-dark {
  color: var(--blau);
  border-color: var(--blau);
  background: transparent;
}
.btn--ghost-dark:hover {
  background: var(--blau);
  color: var(--weiss);
}

/* ------- Sidebar Job-Side-Card (sticky) ------- */
.job-detail__side {
  position: sticky;
  top: 130px;
}
.job-side-card {
  background: var(--weiss);
  border: 1px solid rgba(27,58,107,.1);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow);
}
.job-side-card h3 {
  font-size: 1.15rem;
  color: var(--blau);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gelb);
}
.job-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.job-facts > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 14.5px;
  border-bottom: 1px dashed var(--grau-300);
  padding-bottom: 10px;
}
.job-facts > div:last-child { border-bottom: none; padding-bottom: 0; }
.job-facts dt {
  color: var(--grau-500);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.job-facts dd {
  color: var(--blau);
  font-weight: 700;
  text-align: right;
}
.job-side-card__cta { width: 100%; }
.job-side-card__note {
  text-align: center;
  font-size: 13px;
  color: var(--grau-500);
  margin-top: 14px;
  font-style: italic;
}

/* ============================================
   BEWERBUNGSFORMULAR
   ============================================ */
.bewerbung { background: var(--grau-50); }
.bewerbung-form {
  max-width: 880px;
  margin: 0 auto;
  background: var(--weiss);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--grau-100);
}
.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.form-section__title {
  font-size: 1.2rem;
  color: var(--blau);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-section__opt {
  font-size: 13px;
  font-weight: 500;
  color: var(--grau-500);
  text-transform: none;
  letter-spacing: 0;
}
.form-grid {
  display: grid;
  gap: 16px;
}
.form-grid--2 { grid-template-columns: 1fr 1fr; }

.bewerbung-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--blau);
}
.bewerbung-form input[type="text"],
.bewerbung-form input[type="email"],
.bewerbung-form input[type="tel"],
.bewerbung-form textarea {
  border: 1.5px solid var(--grau-300);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--grau-900);
  background: var(--weiss);
  transition: all var(--t);
  font-weight: 500;
}
.bewerbung-form input:focus,
.bewerbung-form textarea:focus {
  outline: none;
  border-color: var(--gelb);
  box-shadow: 0 0 0 3px rgba(255,214,10,.2);
}

/* ------- Contact Form 7 (Bewerbungsformular) anpassen ------- */
.bewerbung-form .wpcf7-form-control-wrap { display: block; }
.bewerbung-form input[type="text"],
.bewerbung-form input[type="email"],
.bewerbung-form input[type="tel"],
.bewerbung-form textarea,
.bewerbung-form select { width: 100%; }
.bewerbung-form input[type="file"] {
  width: 100%;
  border: 1.5px dashed var(--grau-300);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  background: var(--grau-50);
  font-family: inherit;
  font-size: 14px;
  color: var(--blau);
  cursor: pointer;
}
.bewerbung-form input[type="file"]:hover { border-color: var(--gelb); background: rgba(255,214,10,.08); }
.bewerbung-form .wpcf7-not-valid-tip { color: #d33; font-size: 13px; font-weight: 600; margin-top: 4px; }
.bewerbung-form .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

/* ------- File Upload ------- */
.file-upload {
  position: relative;
}
.file-upload__label {
  display: block;
  margin-bottom: 6px;
}
.file-upload__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--grau-50);
  border: 1.5px dashed var(--grau-300);
  border-radius: var(--radius-sm);
  color: var(--blau);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--t);
}
.file-upload__btn:hover {
  background: rgba(255,214,10,.1);
  border-color: var(--gelb);
}
.file-upload__btn svg { width: 18px; height: 18px; }
.file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  inset: 18px 0 0 0;
  cursor: pointer;
}
.file-upload__hint {
  font-size: 12px;
  color: var(--grau-500);
  margin-top: 6px;
  font-weight: 500;
}

.form__check {
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 12px !important;
  font-weight: 500 !important;
  color: var(--grau-700) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}
.form__check input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--gelb);
  cursor: pointer;
}
.form__check a { color: var(--blau); text-decoration: underline; }

.form-submit {
  text-align: center;
  margin-top: 8px;
}
.form-submit p {
  font-size: 12px;
  color: var(--grau-500);
  margin-top: 14px;
}

/* ============================================
   PROJEKTE-SEITE (Galerie mit Filter)
   ============================================ */
.galerie-section { background: var(--weiss); padding-top: 70px; }

/* ------- Filter-Gruppen (Leistung + Ort) ------- */
.filter-group {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.filter-group__label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grau-500);
  flex-shrink: 0;
}
.filter-group:last-of-type {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--grau-100);
}

/* ------- Filter-Bar ------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.filter-bar--ort .filter-btn { padding: 8px 16px; font-size: 13px; }
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--grau-50);
  color: var(--blau);
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: 0.01em;
}
.filter-btn:hover {
  background: rgba(255,214,10,.15);
  border-color: var(--gelb);
}
.filter-btn.is-active {
  background: var(--blau);
  color: var(--weiss);
  border-color: var(--blau);
}
.filter-btn.is-active .filter-btn__count {
  background: var(--gelb);
  color: var(--blau);
}
.filter-btn__count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 22px;
  padding: 0 7px;
  background: var(--weiss);
  color: var(--grau-500);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: all var(--t);
}

/* ------- Projekt-Grid ------- */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proj-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--grau-100);
  cursor: pointer;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1),
              transform 0.35s cubic-bezier(.4,0,.2,1);
}
.proj-item.is-hidden {
  opacity: 0;
  transform: scale(.95);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.proj-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.proj-item:hover img { transform: scale(1.08); }

.proj-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--weiss);
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 40%,
    rgba(18,38,72,.4) 65%,
    rgba(18,38,72,.95) 100%);
  transition: background var(--t);
}
.proj-item:hover figcaption {
  background: linear-gradient(180deg,
    rgba(18,38,72,.2) 0%,
    rgba(18,38,72,.5) 50%,
    rgba(18,38,72,.95) 100%);
}
.proj-item figcaption .tag {
  align-self: flex-start;
  display: inline-block;
  background: var(--gelb);
  color: var(--blau);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.proj-item figcaption h3 {
  color: var(--weiss);
  font-size: 1.15rem;
  margin: 0 0 2px;
  line-height: 1.25;
}
.proj-item figcaption p {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

.proj-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--grau-500);
  font-size: 1.05rem;
  background: var(--grau-50);
  border-radius: var(--radius-lg);
}

/* ============================================
   MOVEMENT / ANIMATIONEN
   ============================================ */

/* ------- Scroll-Reveal-Basis ------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(.4,0,.2,1),
    transform 0.7s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"]  { transform: scale(0.94); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ------- HERO Stagger-Animation (initial) ------- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero__eyebrow,
.hero__title,
.hero__sub,
.hero__cta {
  animation: heroFadeUp 0.9s cubic-bezier(.4,0,.2,1) backwards;
}
.hero__eyebrow { animation-delay: 0.2s; }
.hero__title   { animation-delay: 0.4s; }
.hero__sub     { animation-delay: 0.7s; }
.hero__cta     { animation-delay: 0.9s; }

/* Stagger für Page-Header der Unterseiten */
.breadcrumbs,
.page-header__eyebrow,
.page-header__title,
.page-header__claim,
.page-header__sub,
.page-header__cta,
.job-meta-bar {
  animation: heroFadeUp 0.8s cubic-bezier(.4,0,.2,1) backwards;
}
.breadcrumbs            { animation-delay: 0.1s; }
.page-header__eyebrow   { animation-delay: 0.25s; }
.page-header__title     { animation-delay: 0.4s; }
.page-header__claim     { animation-delay: 0.55s; }
.page-header__sub       { animation-delay: 0.7s; }
.page-header__cta       { animation-delay: 0.85s; }
.job-meta-bar           { animation-delay: 0.85s; }

/* ------- Floating Decorative Background-Elemente ------- */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-22px); }
}
@keyframes floatPulse {
  0%, 100% { transform: scale(1); opacity: .15; }
  50%      { transform: scale(1.15); opacity: .25; }
}
.floater {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
  filter: blur(2px);
}
.floater--gelb {
  background: radial-gradient(circle, rgba(255,214,10,.45) 0%, rgba(255,214,10,0) 70%);
  animation: floatY 8s ease-in-out infinite;
}
.floater--blau {
  background: radial-gradient(circle, rgba(27,58,107,.18) 0%, rgba(27,58,107,0) 70%);
  animation: floatPulse 10s ease-in-out infinite;
}

/* ------- MARQUEE / Laufband ------- */
.marquee {
  position: relative;
  overflow: hidden;
  background: var(--blau);
  color: var(--weiss);
  padding: 22px 0;
  border-top: 3px solid var(--gelb);
  border-bottom: 3px solid var(--gelb);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 32px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.marquee__item span {
  color: var(--weiss);
}
.marquee__dot {
  width: 10px;
  height: 10px;
  background: var(--gelb);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* ------- Verstärkte Hover-Effekte ------- */
.leistung,
.bereich__item,
.feature,
.wert,
.bietet,
.job,
.team-member,
.review,
.kc-card {
  transition: all 0.35s cubic-bezier(.4,0,.2,1) !important;
}

/* Ken-Burns Effekt auf Galerie-Bildern */
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0,0); }
  50%  { transform: scale(1.06) translate(-4px,-3px); }
  100% { transform: scale(1.1) translate(2px,4px); }
}
.galerie__item:hover img,
.proj-item:hover img,
.bereich-galerie figure:hover img {
  animation: kenBurns 6s ease-in-out infinite;
}

/* Animierter Underline-Effekt für Footer-Links */
.footer ul li a {
  position: relative;
  display: inline-block;
}
.footer ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gelb);
  transition: width 0.35s cubic-bezier(.4,0,.2,1);
}
.footer ul li a:hover::after { width: 100%; }

/* Subtile Wackel-Animation für die CTA-Karte in Leistungen */
@keyframes pulseArrow {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
.leistung--cta:hover .leistung__icon svg {
  animation: pulseArrow 0.8s ease-in-out infinite;
}

/* Scroll-Indicator etwas auffälliger */
.hero__scroll {
  animation: heroFadeUp 1.2s 1.2s cubic-bezier(.4,0,.2,1) backwards;
}

/* Stars im Reviews leichten Glow */
@keyframes starShine {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255,214,10,0)); }
  50%      { filter: drop-shadow(0 0 6px rgba(255,214,10,.7)); }
}
.review:hover .review__stars span {
  animation: starShine 1.5s ease-in-out infinite;
}
.review:hover .review__stars span:nth-child(1) { animation-delay: 0s; }
.review:hover .review__stars span:nth-child(2) { animation-delay: 0.1s; }
.review:hover .review__stars span:nth-child(3) { animation-delay: 0.2s; }
.review:hover .review__stars span:nth-child(4) { animation-delay: 0.3s; }
.review:hover .review__stars span:nth-child(5) { animation-delay: 0.4s; }

/* Page-Header & Hero Hintergrund-Skalierung für Parallax */
.page-header__bg,
.hero__video,
.warum__image {
  will-change: transform;
  transform: scale(1.08);
}

/* ============================================
   GOOGLE BEWERTUNGEN
   ============================================ */
.reviews {
  background: var(--grau-50);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: rgba(255,214,10,.12);
  border-radius: 50%;
  pointer-events: none;
}
.reviews .container { position: relative; z-index: 1; }

.reviews__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 50px;
}
.reviews__head-left .section-title { margin-bottom: 14px; }

.reviews__summary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.reviews__google {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--weiss);
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gelb);
}
.reviews__google > svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.reviews__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews__rating-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--blau);
  line-height: 1;
  letter-spacing: -0.03em;
}
.reviews__stars {
  display: flex;
  gap: 2px;
}
.reviews__stars span,
.review__stars span {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--gelb);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.reviews__count {
  font-size: 13.5px;
  color: var(--grau-500);
  margin-top: 4px;
  font-weight: 500;
}
.reviews__count strong { color: var(--blau); }

.reviews__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.reviews__cta svg { width: 16px; height: 16px; }

/* Review-Karten */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--weiss);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  border: 1px solid rgba(27,58,107,.08);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gelb);
}

.review__top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.review__author {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review__author strong {
  color: var(--blau);
  font-size: 15px;
  font-weight: 700;
}
.review__author span {
  font-size: 12.5px;
  color: var(--grau-500);
}
.review__google-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.review__stars {
  display: flex;
  gap: 3px;
}
.review__stars span {
  width: 16px;
  height: 16px;
}

.review__text {
  color: var(--grau-700);
  font-size: 14.5px;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.review__project {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gelb-dark);
  padding: 5px 10px;
  background: rgba(255,214,10,.15);
  border-radius: 6px;
  align-self: flex-start;
}

.reviews__note {
  text-align: center;
  margin-top: 30px;
  color: var(--grau-500);
  font-size: 12.5px;
}

/* ============================================
   KONTAKT-SEITE
   ============================================ */

.kontakt-cards { background: var(--weiss); padding: 60px 0 30px; }
.kc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -90px;
  position: relative;
  z-index: 5;
}
.kc-card {
  background: var(--weiss);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gelb);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  transition: all var(--t);
}
.kc-card:not(.kc-card--static):hover {
  transform: translateY(-6px);
  border-top-color: var(--blau);
  box-shadow: 0 25px 50px -10px rgba(27,58,107,.25);
}
.kc-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255,214,10,.18);
  color: var(--blau);
  border-radius: 12px;
  margin-bottom: 6px;
  transition: all var(--t);
}
.kc-card__icon svg { width: 24px; height: 24px; }
.kc-card:not(.kc-card--static):hover .kc-card__icon {
  background: var(--gelb);
}
.kc-card__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grau-500);
}
.kc-card__value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blau);
  line-height: 1.25;
}
.kc-card__hint {
  font-size: 13.5px;
  color: var(--grau-500);
  margin-top: 2px;
}

/* ------- Kontakt-Hauptbereich (Formular + Karte) ------- */
.kontakt-main { background: var(--grau-50); }
.kontakt-main__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.kontakt-main__form-wrap .form { margin-top: 28px; padding: 36px; }

.kontakt-main__form-wrap select {
  border: 1.5px solid var(--grau-300);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--grau-900);
  background: var(--weiss);
  transition: border-color var(--t);
  cursor: pointer;
  font-weight: 500;
}
.kontakt-main__form-wrap select:focus {
  outline: none;
  border-color: var(--gelb);
  box-shadow: 0 0 0 3px rgba(255,214,10,.2);
}

.form__note {
  font-size: 12px;
  color: var(--grau-500);
  margin-top: 4px;
}

/* ------- Karte mit Overlay ------- */
.kontakt-main__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 130px;
}
.map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-card__overlay {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: var(--weiss);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gelb);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.map-card__overlay strong {
  color: var(--blau);
  font-size: 1rem;
  font-weight: 800;
}
.map-card__overlay span {
  font-size: 13.5px;
  color: var(--grau-700);
}
.map-card__route {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--blau);
  font-weight: 700;
  font-size: 13px;
  align-self: flex-start;
  text-decoration: none;
  border-bottom: 2px solid var(--gelb);
  padding-bottom: 2px;
  transition: gap var(--t);
}
.map-card__route:hover { gap: 12px; }
.map-card__route svg { width: 14px; height: 14px; }

/* Emergency / Direkt-Anruf-Card */
.emergency-card {
  background: var(--blau);
  color: var(--weiss);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.emergency-card__icon {
  font-size: 28px;
  background: var(--gelb);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.emergency-card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--weiss);
  margin-bottom: 4px;
}
.emergency-card p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  margin-bottom: 12px;
}
.btn--sm { padding: 10px 18px; font-size: 13px; }

/* ============================================
   LEGAL-SEITEN (Impressum / Datenschutz)
   ============================================ */
.legal { background: var(--weiss); padding: 60px 0 80px; }
.legal__wrap {
  max-width: 820px;
  margin: 0 auto;
}
.legal__head {
  margin-bottom: 50px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grau-100);
}
.legal__head h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--blau);
  margin-bottom: 12px;
}
.legal__head p {
  color: var(--grau-500);
  font-size: 14.5px;
}
.legal__content { color: var(--grau-700); line-height: 1.75; font-size: 15.5px; }
.legal__content h2 {
  font-size: 1.45rem;
  color: var(--blau);
  margin-top: 44px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--gelb);
}
.legal__content h3 {
  font-size: 1.15rem;
  color: var(--blau);
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal__content p { margin-bottom: 14px; }
.legal__content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal__content ul li { margin-bottom: 6px; }
.legal__content a {
  color: var(--blau);
  text-decoration: underline;
  text-decoration-color: var(--gelb);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.legal__content a:hover { color: var(--gelb-dark); }
.legal__content strong { color: var(--blau); }
.legal__content blockquote {
  background: var(--grau-50);
  padding: 18px 22px;
  border-left: 4px solid var(--gelb);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 18px 0;
  font-style: italic;
  color: var(--grau-700);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .leistungen { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .galerie { grid-template-columns: repeat(2, 1fr); }
  .galerie__item--xl { grid-column: span 2; grid-row: span 1; }
  .ueber__grid { grid-template-columns: 1fr; gap: 50px; }
  .karriere__jobs { grid-template-columns: 1fr; gap: 24px; }
  .kontakt__grid { grid-template-columns: 1fr; gap: 50px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Warum: split-layout aufheben auf Tablet */
  .warum__grid { grid-template-columns: 1fr; gap: 70px; }
  .warum__visual { position: relative; top: 0; height: 480px; max-width: 600px; margin: 0 auto; }
  .warum__accent { width: 80px; height: 80px; }

  /* Unterseiten */
  .intro__grid { grid-template-columns: 1fr; gap: 60px; }
  .intro__image img { height: 420px; }
  .bereich__grid { grid-template-columns: repeat(2, 1fr); }
  .prozess__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .prozess__grid::before { display: none; }
  .bereich-galerie__grid { grid-template-columns: repeat(2, 1fr); }
  .warum-kompakt__grid { grid-template-columns: repeat(2, 1fr); }
  .check-list { grid-template-columns: 1fr; }

  /* Über uns */
  .story__grid { grid-template-columns: 1fr; gap: 50px; }
  .story__image { height: 380px; }
  .werte__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .versprechen { padding: 80px 0; }

  /* Karriere */
  .bieten__grid { grid-template-columns: repeat(2, 1fr); }
  .stellen__grid { grid-template-columns: 1fr; gap: 24px; }
  .job-detail__grid { grid-template-columns: 1fr; gap: 40px; }
  .job-detail__side { position: static; }
  .bewerbung-form { padding: 36px; }

  /* Projekte */
  .proj-grid { grid-template-columns: repeat(2, 1fr); }

  /* Kontakt */
  .kc-grid { grid-template-columns: repeat(2, 1fr); margin-top: -60px; }
  .kontakt-main__grid { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-main__side { position: static; }

  /* Bewertungen */
  .reviews__head { grid-template-columns: 1fr; gap: 30px; align-items: start; }
  .reviews__summary { align-items: flex-start; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  :root { --header-h: 88px; }

  /* Mobile-Nav */
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    background: var(--weiss);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform var(--t);
    border-top: 1px solid var(--grau-100);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--grau-100);
    width: 100%;
    justify-content: space-between;
  }
  .nav__cta {
    margin-top: 12px;
    text-align: center;
    border-radius: var(--radius) !important;
  }
  .nav .nav-link:not(.nav__cta)::after { display: none; }

  /* Mobile-Dropdown als Akkordeon */
  .nav-item--has-dropdown { width: 100%; }
  .dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 8px 0 16px 0;
    background: var(--grau-50);
    border-radius: var(--radius);
    margin: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
  }
  .dropdown::before, .dropdown::after { display: none; }
  .nav-item--has-dropdown:hover .dropdown { /* Hover deaktivieren auf Mobile */
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }
  .nav-item--has-dropdown.is-open .dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 800px;
    padding: 8px;
  }
  .nav-item--has-dropdown.is-open .nav-caret {
    transform: rotate(180deg);
  }
  .dropdown__item {
    padding: 10px 12px;
  }
  .dropdown__footer { margin-top: 4px; }

  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .hero { min-height: 600px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .leistungen { grid-template-columns: 1fr; }
  .leistung { padding: 36px 28px; }
  .job { padding: 32px 24px 24px; }
  .job h3 { font-size: 1.25rem; }
  .job__icon { width: 52px; height: 52px; border-radius: 12px; }
  .job__icon svg { width: 26px; height: 26px; }

  /* Unterseiten mobil */
  .page-header { min-height: 480px; padding-bottom: 60px; }
  .page-header__cta { flex-direction: column; align-items: stretch; }
  .page-header__cta .btn { width: 100%; }
  .intro__badge { right: 12px; bottom: -16px; padding: 16px 20px; }
  .intro__badge strong { font-size: 1.4rem; }
  .bereich__grid { grid-template-columns: 1fr; }
  .prozess__grid { grid-template-columns: 1fr; gap: 32px; }
  .bereich-galerie__grid { grid-template-columns: 1fr; }
  .warum-kompakt__grid { grid-template-columns: 1fr; }

  /* Über uns mobil */
  .werte__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .team-member__photo { height: 380px; }
  .versprechen__quote { font-size: 1.4rem; }
  .tl-year { font-size: 1.25rem; min-width: 60px; }

  /* Karriere mobil */
  .bieten__grid { grid-template-columns: 1fr; }
  .initiativ__contact { grid-template-columns: 1fr; }
  .job-meta-bar { flex-direction: column; align-items: flex-start; }
  .job-block { padding: 28px 22px; }
  .job-block__head h2 { font-size: 1.25rem; }
  .bewerbung-form { padding: 24px 20px; }
  .form-grid--2 { grid-template-columns: 1fr; }
  .form-section { margin-bottom: 28px; padding-bottom: 28px; }
  .quick-contact__btns { flex-direction: column; align-items: stretch; }
  .quick-contact__btns .btn { width: 100%; }

  /* Projekte mobil */
  .proj-grid { grid-template-columns: 1fr; gap: 14px; }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 9px 14px; font-size: 13px; }

  /* Kontakt mobil */
  .kc-grid { grid-template-columns: 1fr; margin-top: -40px; }
  .map-card { height: 300px; }
  .kontakt-main__form-wrap .form { padding: 24px; }
  .legal { padding: 40px 0 60px; }
  .legal__content h2 { font-size: 1.25rem; margin-top: 32px; }

  /* Bewertungen mobil */
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__google { padding: 14px 18px; gap: 14px; }
  .reviews__rating-num { font-size: 1.75rem; }
  .reviews__google > svg { width: 36px; height: 36px; }
  .features { grid-template-columns: 1fr; gap: 32px; }
  .warum__visual { height: 360px; }
  .warum__badge { padding: 20px 24px; bottom: -20px; left: -16px; }
  .warum__badge-num { font-size: 2.25rem; }
  .galerie {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .galerie__item--xl { grid-column: span 1; }

  .ueber__stats { grid-template-columns: 1fr 1fr; }
  .form { padding: 28px; }
  .form__row { grid-template-columns: 1fr; }
  .kontakt__list { grid-template-columns: 1fr; }

  .cta-banner__inner { text-align: center; justify-content: center; }
  .cta-banner__inner > div { flex: 1 1 100%; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .header__logo img { height: 52px; }
  .footer__logo { height: 90px; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .stat__num { font-size: 2.25rem; }
  .ueber__stats { grid-template-columns: 1fr; }
}

/* ============================================
   SEO: Einsatzgebiete + FAQ
   ============================================ */

/* ------- Regionale Einsatzgebiete ------- */
.gebiete { background: var(--weiss); }
.gebiete__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
.gebiete__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--grau-50);
  border: 1px solid rgba(27,58,107,.08);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--blau);
  transition: all var(--t);
}
.gebiete__list li:hover {
  background: var(--gelb);
  border-color: var(--gelb);
  transform: translateY(-2px);
}
.gebiete__list svg {
  width: 16px;
  height: 16px;
  color: var(--gelb-dark);
  flex-shrink: 0;
}
.gebiete__list li:hover svg { color: var(--blau); }
.gebiete__note {
  text-align: center;
  margin-top: 28px;
  color: var(--grau-500);
  font-size: 15px;
}

/* ------- FAQ-Akkordeon ------- */
.faq-section { background: var(--grau-50); }
.faq-container { max-width: 820px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--weiss);
  border: 1px solid rgba(27,58,107,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item[open] {
  border-color: var(--gelb);
  box-shadow: var(--shadow-sm);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blau);
  list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { background: rgba(255,214,10,.06); }
.faq-item__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gelb-dark);
  transition: transform var(--t);
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  padding: 0 26px 22px;
  color: var(--grau-700);
  line-height: 1.65;
}
.faq-item__a p { margin: 0; }

/* ============================================
   Projekt-Detailseite (Landingpage)
   ============================================ */
.projekt-detail { max-width: 860px; }
.projekt-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grau-100);
}
.projekt-facts__item {
  background: var(--grau-50);
  border-left: 3px solid var(--gelb);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--grau-700);
}
.projekt-facts__item strong { color: var(--blau); }

.projekt-blocks {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 36px;
}
.projekt-block h2 {
  font-size: 1.5rem;
  color: var(--blau);
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--gelb);
}
.projekt-block p { color: var(--grau-700); line-height: 1.7; }

.projekt-detail__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--grau-100);
}

/* Leistung → Projekte Verlinkung (Button-Reihe) */
.leistung-projekte-link {
  text-align: center;
  margin-top: 36px;
}
