/* ============================================
   Elektro Etzold — Redesign 2025
   Primärfarbe: #ef8e04 | Dunkel: #1a1a2e
   Schriften: Barlow (Überschriften) + DM Sans (Fließtext)
   ============================================ */

:root {
  --amber:       #ef8e04;
  --amber-dk:    #c97800;
  /* OPTIMIERT: WCAG AA-konformer Bernstein-Text auf weißem Hintergrund (4.93:1) */
  --amber-text:  #995c00;
  --amber-bg:    rgba(239,142,4,.1);
  --amber-glow:  rgba(239,142,4,.25);
  --dark:        #1a1a2e;
  --dark-mid:    #252540;
  --ink:         #1e1e2e;
  --muted:       #52525b;
  --subtle:      #a1a1aa;
  --surface:     #ffffff;
  --surface-alt: #f6f4ef;
  --border:      #e4e4e7;
  --sh-sm: 0 1px 2px rgba(0,0,0,.04), 0 2px 6px rgba(0,0,0,.06);
  --sh:    0 1px 3px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.07), 0 8px 24px rgba(0,0,0,.06);
  --sh-lg: 0 2px 4px rgba(0,0,0,.04), 0 8px 16px rgba(0,0,0,.07), 0 20px 48px rgba(0,0,0,.11);
  --r:     10px;
  --r-lg:  18px;
  --tr:    .24s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---- Lokal gehostete Schriften (DSGVO: kein Abruf von Google-Servern) ---- */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Barlow-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Barlow-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/Barlow-800.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/DMSans.woff2') format('woff2');
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
  font-kerning: normal;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--amber); text-decoration: none; transition: color var(--tr); }

/* Skip-Link: unsichtbar bis Tastatur-Fokus, springt zum Hauptinhalt (Barrierefreiheit) */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 2000;
  padding: 12px 20px;
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: var(--sh);
  transition: top var(--tr);
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}
/* Sprungziel nicht hinter dem fixierten Header verstecken */
#inhalt { scroll-margin-top: 84px; }
a:hover { color: var(--amber-dk); }
ul { list-style: none; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Typografie ---- */
h1,h2,h3,h4,h5 {
  font-family: 'Barlow', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
h4 { font-size: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
/* OPTIMIERT: min-height 44px für Touch-Targets (WCAG 2.5.5) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  min-height: 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}
.btn-primary { background: var(--amber); color: #fff; border-color: var(--amber); box-shadow: 0 1px 3px rgba(239,142,4,.3), 0 4px 12px rgba(239,142,4,.22), inset 0 1px 0 rgba(255,255,255,.15); }
.btn-primary:hover { background: var(--amber-dk); border-color: var(--amber-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(239,142,4,.3), 0 8px 24px rgba(239,142,4,.28), inset 0 1px 0 rgba(255,255,255,.12); }
.btn-outline  { background: transparent; color: var(--amber); border-color: var(--amber); }
.btn-outline:hover { background: var(--amber); color: #fff; transform: translateY(-2px); }
.btn-white    { background: #fff; color: var(--amber); border-color: #fff; }
.btn-white:hover { background: var(--amber); color: #fff; border-color: var(--amber); transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97) !important; transition-duration: 80ms !important; }
.btn-primary:active { box-shadow: 0 1px 4px rgba(239,142,4,.2) !important; }
.btn:disabled {
  background: #d1d5db !important;
  border-color: #d1d5db !important;
  color: #6b7280 !important;
  cursor: not-allowed;
  box-shadow: none !important;
  transform: none !important;
  opacity: 1;
}

/* ---- Header ---- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr), background-color var(--tr), border-color var(--tr);
}
.header.scrolled { box-shadow: var(--sh); }

/* Startseite: Header transparent, solange das Hero-Video im Bild ist */
.header--overlay:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
@media (min-width: 769px) {
  .header--overlay:not(.scrolled) .nav-list a { color: rgba(255,255,255,.92); text-shadow: 0 1px 8px rgba(0,0,0,.35); }
  .header--overlay:not(.scrolled) .nav-list a:hover { color: #fff; background: rgba(255,255,255,.14); }
  .header--overlay:not(.scrolled) .nav-list a.active { color: var(--dark); background: rgba(255,255,255,.94); text-shadow: none; }
}
.header--overlay:not(.scrolled) .hamburger span { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.4); }
/* Offenes Mobilmenü braucht wieder festen Grund */
.header--overlay:not(.scrolled):has(.nav-list.open) {
  background: rgba(255,255,255,.97);
  border-bottom-color: var(--border);
}
.header--overlay:not(.scrolled):has(.nav-list.open) .hamburger span { background: var(--ink); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  transition: height var(--tr);
}
.header.scrolled .container { height: 72px; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img { height: 58px; width: auto; object-fit: contain; transition: height var(--tr); }
.header.scrolled .logo img { height: 44px; }
.logo-wordmark {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.4px;
  transition: font-size var(--tr);
}
.header.scrolled .logo-wordmark { font-size: 1.3rem; }
.logo-wordmark em { font-style: normal; color: var(--amber); }

/* Nav */
.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2px;
}
/* OPTIMIERT: min-height 44px für Touch-Targets in Nav */
.nav-list a {
  color: var(--muted);
  font-weight: 500;
  font-size: .9rem;
  padding: 8px 13px;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  transition: all var(--tr);
}
.nav-list a:hover, .nav-list a.active { color: var(--amber); background: var(--amber-bg); }
.nav-list .nav-cta,
.nav-cta-desktop {
  background: var(--amber);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
}
.nav-list .nav-cta { margin-left: 8px; }
.nav-list .nav-cta:hover,
.nav-cta-desktop:hover { background: var(--amber-dk); transform: translateY(-1px); }
.nav-cta-desktop {
  display: none;
  align-items: center;
  min-height: 44px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  transition: all var(--tr);
}
.nav-cta-desktop:focus-visible {
  outline: 3px solid var(--amber-dk);
  outline-offset: 3px;
}

/* Desktop: Logo links, Links mittig, Kontakt-CTA rechts */
@media (min-width: 769px) {
  .header .container { position: relative; }
  .nav-list {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav-list .nav-mobile { display: none; }
  .nav-cta-desktop { display: inline-flex; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--tr);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding-top: 96px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,26,46,.62) 0%, rgba(26,26,46,0) 28%),
    linear-gradient(110deg, rgba(26,26,46,.93) 0%, rgba(26,26,46,.75) 50%, rgba(26,26,46,.28) 100%);
}
.hero > .container { position: relative; z-index: 1; padding-top: 96px; padding-bottom: 80px; width: 100%; }
.hero-content { max-width: 620px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(239,142,4,.12);
  border: 1px solid rgba(239,142,4,.3);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 22px;
  box-shadow: 0 1px 8px rgba(239,142,4,.12), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero h1 {
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}
.hero-lead {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  margin-bottom: 34px;
  max-width: 500px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Floating Card */
.hero-card {
  position: absolute;
  right: 6%;
  bottom: 10%;
  background: #fff;
  border-radius: var(--r);
  padding: 18px 22px;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero-card-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(239,142,4,.15) 0%, rgba(239,142,4,.08) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.hero-card-icon svg { width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hero-card strong { display: block; font-size: .93rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.hero-card span   { font-size: .78rem; color: var(--muted); }

/* ---- Sections ---- */
/* OPTIMIERT: scroll-margin-top für Anker-Links mit fixem Header (88px Offset) */
.section     { padding: 96px 0; scroll-margin-top: 88px; }
.section-alt { background: var(--surface-alt); }
.section-dark { background: var(--dark); }

/* OPTIMIERT: --amber-text für WCAG AA-kontrastreichen Text auf weißem Hintergrund */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-text);
  margin-bottom: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-text));
  border-radius: 2px;
}

.section-hd { margin-bottom: 52px; }
.section-hd.center { text-align: center; }
.section-hd.center .section-label { justify-content: center; }
.section-hd h2 { margin-bottom: 12px; }
.section-hd p  { color: var(--muted); font-size: 1.02rem; max-width: 560px; }
.section-hd.center p { margin: 0 auto; }
.section-dark .section-hd h2 { color: #fff; }
.section-dark .section-hd p  { color: rgba(255,255,255,.6); }
/* Keep full amber for dark-section labels (dark bg = sufficient contrast) */
.section-dark .section-label { color: var(--amber); }
.section-dark .section-label::before { background: var(--amber); }

/* ---- Grids ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
/* Center lone last item in a 3-col grid */
.grid-3.center-last > :last-child:nth-child(3n+1) { grid-column: 2; }

/* ---- Service Cards ---- */
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: all var(--tr);
  box-shadow: 0 1px 3px rgba(0,0,0,.05), 0 2px 8px rgba(0,0,0,.05);
}
.section-alt .svc-card { background: #fff; }
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(239,142,4,.14) 0%, rgba(239,142,4,.07) 100%);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 1px 3px rgba(239,142,4,.1);
}
.svc-icon svg { width: 24px; height: 24px; stroke: var(--amber); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p  { color: var(--muted); font-size: .93rem; margin-bottom: 18px; }
/* OPTIMIERT: --amber-text für WCAG AA-Kontrast auf weißem Hintergrund */
.svc-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--amber-text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--tr), color var(--tr);
}
.svc-link:hover { gap: 10px; color: var(--amber-dk); }
.svc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Feature Items ---- */
.feat-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all var(--tr);
  align-items: flex-start;
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 2px 7px rgba(0,0,0,.04);
}
.feat-item:hover { border-color: var(--amber); box-shadow: var(--sh-sm); }
.feat-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(239,142,4,.14) 0%, rgba(239,142,4,.07) 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 1px 3px rgba(239,142,4,.08);
}
.feat-icon svg { width: 20px; height: 20px; stroke: var(--amber); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feat-body h4 { margin-bottom: 5px; }
.feat-body p  { color: var(--muted); font-size: .88rem; }

/* ---- Split Layout ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.flip > *:first-child { order: 2; }
.split.flip > *:last-child  { order: 1; }
.split-visual { position: relative; }
.split-visual img {
  border-radius: var(--r-lg);
  width: 100%; height: 440px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,.06), 0 12px 24px rgba(0,0,0,.1), 0 24px 56px rgba(0,0,0,.1);
}
.split-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dk) 100%);
  color: #fff;
  border-radius: var(--r);
  padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(239,142,4,.42), 0 2px 8px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.15);
  min-width: 130px;
  text-align: center;
}
.split-badge strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 800;
}
.split-badge span { font-size: .78rem; opacity: .9; }
/* Logo-Variante des Badges: freistehendes Logo ohne Kasten, komplett auf dem Foto */
.split-badge--logo {
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  min-width: 0;
  bottom: 18px;
  right: 18px;
}
.split-badge--logo img {
  width: 110px;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.55)) drop-shadow(0 4px 14px rgba(0,0,0,.35));
}
.split-body h2 { margin-bottom: 16px; }
.split-body p  { color: var(--muted); }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0;
}
.stat-box {
  background: var(--surface-alt);
  border-radius: var(--r);
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 1px 3px rgba(0,0,0,.04);
}
/* OPTIMIERT: --amber-text für WCAG AA-Kontrast auf --surface-alt Hintergrund */
.stat-num {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--amber-text);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl { font-size: .78rem; color: var(--muted); line-height: 1.3; }

/* Checkliste */
.checklist { padding: 0; margin: 14px 0 26px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
}
.checklist li:last-child { border-bottom: none; }
.check-dot {
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dk) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(239,142,4,.3), inset 0 1px 0 rgba(255,255,255,.15);
}
.check-dot svg { width: 10px; height: 10px; stroke: #fff; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Why Grid (dark) – 4 col, compact ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}
.why-card:hover {
  background: rgba(239,142,4,.09);
  border-color: rgba(239,142,4,.24);
  transform: translateY(-2px);
}
.why-icon {
  width: 44px; height: 44px;
  background: rgba(239,142,4,.16);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(239,142,4,.06), 0 3px 12px rgba(239,142,4,.18);
  flex-shrink: 0;
  transition: box-shadow var(--tr);
}
.why-card:hover .why-icon {
  box-shadow: 0 0 0 8px rgba(239,142,4,.1), 0 4px 18px rgba(239,142,4,.3);
}
.why-icon svg { width: 20px; height: 20px; stroke: var(--amber); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-card h4 { color: #fff; font-size: .95rem; font-weight: 700; margin: 0; }
.why-card p  { color: rgba(255,255,255,.62); font-size: .83rem; line-height: 1.6; margin: 0; }

/* ---- Prozess-Schritte ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(90deg, rgba(239,142,4,.3), var(--amber) 25%, var(--amber) 75%, rgba(201,120,0,.3));
  pointer-events: none;
  box-shadow: 0 1px 6px rgba(239,142,4,.25);
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.step-num {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dk) 100%);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 5px rgba(239,142,4,.12), 0 4px 16px rgba(239,142,4,.4), inset 0 1px 0 rgba(255,255,255,.2);
}
.step h4 { margin-bottom: 8px; }
.step p   { color: var(--muted); font-size: .88rem; }

/* Timeline-Animation: Linie und Schritte bauen sich von links nach rechts auf */
body.js-loaded .process-grid::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.45s cubic-bezier(0.25, 1, 0.5, 1) .1s;
}
body.js-loaded .process-grid.visible::before { transform: scaleX(1); }
body.js-loaded .process-grid .step {
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity .55s cubic-bezier(0.25, 1, 0.5, 1), transform .55s cubic-bezier(0.25, 1, 0.5, 1);
}
body.js-loaded .process-grid .step .step-num {
  transform: scale(.4);
  transition: transform .55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
body.js-loaded .process-grid.visible .step { opacity: 1; transform: none; }
body.js-loaded .process-grid.visible .step .step-num { transform: scale(1); }
body.js-loaded .process-grid.visible .step:nth-child(1),
body.js-loaded .process-grid.visible .step:nth-child(1) .step-num { transition-delay: .1s; }
body.js-loaded .process-grid.visible .step:nth-child(2),
body.js-loaded .process-grid.visible .step:nth-child(2) .step-num { transition-delay: .44s; }
body.js-loaded .process-grid.visible .step:nth-child(3),
body.js-loaded .process-grid.visible .step:nth-child(3) .step-num { transition-delay: .78s; }
body.js-loaded .process-grid.visible .step:nth-child(4),
body.js-loaded .process-grid.visible .step:nth-child(4) .step-num { transition-delay: 1.12s; }

/* ---- Team ---- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--tr);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.team-img { width: 100%; height: 340px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; transition: transform .5s ease; }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-info { padding: 22px; text-align: center; }
.team-info h3 { margin-bottom: 3px; }
/* OPTIMIERT: --amber-text für WCAG AA-Kontrast auf weißem Karten-Hintergrund */
.team-role {
  display: block;
  color: var(--amber-text);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-info p { color: var(--muted); font-size: .88rem; }

/* ---- Testimonial ---- */
.t-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 40px;
  align-items: center;
}
.t-video {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(239,142,4,.12),
    0 2px 8px rgba(0,0,0,.08),
    0 12px 32px rgba(0,0,0,.14),
    0 28px 56px rgba(0,0,0,.12),
    0 40px 80px rgba(239,142,4,.07);
  aspect-ratio: 16 / 9;
  background: #000;
}
.t-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.t-card {
  background: linear-gradient(160deg, #fff 0%, #fdf9f3 100%);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  box-shadow:
    0 2px 4px rgba(0,0,0,.04),
    0 8px 20px rgba(0,0,0,.08),
    0 20px 44px rgba(0,0,0,.07),
    inset 0 1px 0 rgba(255,255,255,.9);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.t-mark {
  position: absolute;
  top: -8px;
  left: 28px;
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
  color: var(--amber);
  opacity: .1;
  user-select: none;
  pointer-events: none;
}
.t-quote {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.t-attr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  position: relative;
  z-index: 1;
}
.t-attr-info { display: flex; flex-direction: column; gap: 2px; }
.t-attr-info strong { font-size: .93rem; font-weight: 700; color: var(--ink); }
.t-attr-info span   { font-size: .78rem; color: var(--muted); }
.t-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber-bg);
  color: var(--amber-text);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.t-tag svg { stroke: var(--amber-text); flex-shrink: 0; }

/* Team Foto-Banner */
.team-spread { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.team-spread img { width: 100%; min-height: 400px; object-fit: cover; display: block; }
.team-spread-cap {
  position: absolute;
  inset: auto 0 0;
  padding: 60px 48px 36px;
  background: linear-gradient(to top, rgba(26,26,46,.96) 0%, rgba(26,26,46,.55) 60%, transparent 100%);
  text-align: center;
}
.team-spread-cap h2 { color: #fff; margin-bottom: 8px; }
.team-spread-cap p  { color: rgba(255,255,255,.78); max-width: 600px; margin: 0 auto; }

/* ---- Kontakt ---- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.c-info h3 { margin-bottom: 12px; }
.c-info > p { color: var(--muted); margin-bottom: 28px; }
.c-items { display: flex; flex-direction: column; gap: 14px; }
.c-item { display: flex; gap: 14px; align-items: flex-start; }
.c-item-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(239,142,4,.14) 0%, rgba(239,142,4,.07) 100%);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 1px 3px rgba(239,142,4,.08);
}
.c-item-icon svg { width: 20px; height: 20px; stroke: var(--amber); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.c-item-body h4 { margin-bottom: 2px; font-size: .93rem; }
.c-item-body p  { color: var(--muted); font-size: .88rem; }
.c-item-body a  { color: var(--muted); }
.c-item-body a:hover { color: var(--amber); }
.emergency-box {
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(239,142,4,.07);
  border: 1px solid rgba(239,142,4,.28);
  border-radius: var(--r);
}
.emergency-box h4 { color: var(--amber-text); margin-bottom: 5px; }
.emergency-box p  { color: var(--muted); font-size: .88rem; }

/* Kontaktformular */
.c-form-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--sh);
}
.c-form-card h3 { margin-bottom: 26px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .845rem; margin-bottom: 6px; color: var(--ink); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  color: var(--ink);
  background: var(--surface-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  transition: border-color var(--tr), box-shadow var(--tr);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(239,142,4,.1);
  background: var(--surface);
}
.form-group textarea { resize: vertical; min-height: 126px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-check input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: background var(--tr), border-color var(--tr);
}
.form-check input[type="checkbox"]:hover {
  border-color: #ef8e04;
}
.form-check input[type="checkbox"]:checked {
  background: #ef8e04;
  border-color: #ef8e04;
}
.form-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.form-check span { font-size: .845rem; color: var(--muted); line-height: 1.55; }

/* ---- Page Hero (Unterseiten) ---- */
.page-hero {
  background-size: cover;
  background-position: center;
  padding: 156px 0 76px;
  position: relative;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,.9) 0%, rgba(26,26,46,.65) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--amber);
}
.page-hero p  { color: rgba(255,255,255,.72); font-size: 1.05rem; }

/* Farb-Akzent in h2 – gleiche Schrift, nur hervorgehoben */
h2 em {
  font-style: normal;
  color: var(--amber);
}
.cta-strip h2 em { color: #fff; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--amber); }
.breadcrumb a:hover { color: #fff; }

/* ---- CTA Strip ---- */
.cta-strip { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dk) 100%); padding: 76px 0; text-align: center; }
.cta-strip h2 { color: #fff; margin-bottom: 12px; }
.cta-strip p  {
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Footer ---- */
.footer { background: var(--dark); padding: 68px 0 24px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 28px;
}
.ft-brand .logo-wordmark { color: #fff; font-size: 1.3rem; display: block; margin-bottom: 14px; }
.ft-brand .logo-wordmark em { color: var(--amber); }
.ft-brand p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.7; }
.ft-col h5 {
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ft-col ul li { margin-bottom: 9px; }
.ft-col ul a {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  transition: color var(--tr), padding-left var(--tr);
}
.ft-col ul a:hover { color: var(--amber); padding-left: 4px; }
.ft-col ul li span { color: rgba(255,255,255,.5); font-size: .88rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; margin: 0; }
.ft-legal { display: flex; gap: 22px; }
.ft-legal a { color: rgba(255,255,255,.35); font-size: .82rem; }
.ft-legal a:hover { color: var(--amber); }

/* ---- Impressum / Datenschutz ---- */
.content-wrap { padding: 80px 0; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.35rem; margin: 36px 0 14px; color: var(--ink); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.05rem; margin: 24px 0 10px; color: var(--ink); }
.prose p  { color: var(--muted); margin-bottom: 14px; line-height: 1.75; }
.prose a  { color: var(--amber); }
.prose a:hover { color: var(--amber-dk); }

/* ---- Reveal Animationen ---- */
/* Only hide when JS is active — content remains visible without JS */
body.js-loaded .reveal {
  opacity: 0;
  transform: translateY(18px);
}
.reveal {
  transition: opacity .5s cubic-bezier(0.25, 1, 0.5, 1), transform .5s cubic-bezier(0.25, 1, 0.5, 1);
}
body.js-loaded .reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ---- Hero Entrance ---- */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero-content > * {
  animation: hero-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.12s; }
.hero-content > *:nth-child(2) { animation-delay: 0.22s; }
.hero-content > *:nth-child(3) { animation-delay: 0.32s; }
.hero-content > *:nth-child(4) { animation-delay: 0.42s; }
.hero-content > *:nth-child(5) { animation-delay: 0.52s; }

/* ---- Card Link (amber text on white bg) ---- */
/* OPTIMIERT: --amber-text für WCAG AA-Kontrast */
.card-link {
  color: var(--amber-text);
  font-weight: 600;
  font-size: .875rem;
}
.card-link:hover { color: var(--amber-dk); }

/* ---- Focus Visible – Keyboard Navigation ---- */
/* OPTIMIERT: sichtbarer Fokus-Ring für Tastaturnavigation (WCAG 2.4.7) */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline: 3px solid var(--amber-dk);
  outline-offset: 3px;
}
.nav-list a:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}
/* Entferne Standard-Outline, wenn :focus-visible nicht greift */
:focus:not(:focus-visible) { outline: none; }

/* ---- Hero Phone CTA ---- */
/* OPTIMIERT: Click-to-Call-Link direkt im Hero */
.hero-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: .97rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .01em;
  transition: color var(--tr);
  text-decoration: none;
}
.hero-phone-cta:hover { color: var(--amber); }

/* ---- Trust Bar ---- */
/* OPTIMIERT: Social-Proof-Leiste zwischen Hero und Leistungen */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: transparent;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.trust-item .trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--amber);
  color: #fff;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(239,142,4,.35);
}
@media (max-width: 600px) {
  .trust-bar .container { gap: 16px; justify-content: flex-start; }
  .trust-item { font-size: .8rem; }
}

/* ---- Kontakt-Seite: dunkles Panel + überlappende Formularkarte ---- */
.contact-hero {
  position: relative;
  background: var(--dark);
  padding: 158px 0 96px;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/allgemein/page-header-bg.jpg') center / cover no-repeat;
  opacity: .18;
}
.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 460px at 16% 18%, rgba(239,142,4,.18), transparent 65%),
    linear-gradient(115deg, rgba(26,26,46,.42) 0%, rgba(26,26,46,.9) 55%, rgba(26,26,46,.97) 100%);
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero .breadcrumb { justify-content: flex-start; margin: 0 0 28px; }
.ch-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: start;
}
.ch-info h1,
.ch-info h2 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.ch-info h1 em,
.ch-info h2 em {
  font-style: normal;
  color: var(--amber);
}

/* Variante für Panels mitten auf der Seite (z. B. Bewerbung auf der Karriere-Seite) */
.contact-hero--inline { padding: 96px 0; scroll-margin-top: 88px; }
.ch-lead { color: rgba(255,255,255,.72); max-width: 46ch; margin-bottom: 42px; }
.section-label--light { color: var(--amber); }
.section-label--light::before { background: var(--amber); }

/* Kontaktwege als ruhige Zeilen mit Akzentkante statt Icon-Boxen */
.ch-rows { display: flex; flex-direction: column; }
.ch-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  column-gap: 22px;
  align-items: baseline;
  padding: 18px 0 18px 22px;
  border-left: 2px solid rgba(255,255,255,.16);
  text-decoration: none;
  transition: border-color var(--tr), transform var(--tr);
}
.ch-row-label {
  grid-row: span 2;
  align-self: start;
  padding-top: 5px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.ch-row-value {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #fff;
  transition: color var(--tr);
}
.ch-row-hint { grid-column: 2; font-size: .8rem; color: rgba(255,255,255,.42); }
a.ch-row:hover { border-left-color: var(--amber); transform: translateX(5px); }
a.ch-row:hover .ch-row-value { color: var(--amber); }

.ch-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 40px 0 0;
  font-size: .84rem;
  color: rgba(255,255,255,.55);
}
.ch-proof strong { color: #fff; font-weight: 600; }
.ch-proof .star { color: #f5b301; letter-spacing: 2px; font-size: .88rem; text-shadow: 0 1px 6px rgba(245,179,1,.4); }
.ch-proof .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.3); }

/* Formularkarte ragt in die Folgesektion hinein */
.c-form-card--float { margin-bottom: -150px; box-shadow: var(--sh-lg); }
.form-kicker {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber-text);
  margin-bottom: 8px;
}
.c-form-card--float h3 { margin-bottom: 6px; }
.form-sub { color: var(--muted); font-size: .9rem; margin-bottom: 26px; }
.form-privacy-note {
  margin: 14px 0 0;
  font-size: .78rem;
  color: var(--subtle);
  text-align: center;
}
.form-success { text-align: center; padding: 34px 8px; }
.form-success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dk) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(239,142,4,.12), 0 6px 18px rgba(239,142,4,.35);
}
.form-success-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.form-success h4 { font-size: 1.15rem; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: .92rem; max-width: 40ch; margin: 0 auto; }

/* Folgesektion nimmt die Überlappung auf */
.contact-after { background: var(--surface-alt); padding: 232px 0 96px; }
.region-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.region-band h2 { margin-bottom: 12px; }
.region-band p { color: var(--muted); max-width: 46ch; }
.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}
.region-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.region-tag:hover { border-color: var(--amber); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.region-tag--main {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dk) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(239,142,4,.35), inset 0 1px 0 rgba(255,255,255,.18);
}
.region-tag--outline { background: transparent; border-style: dashed; color: var(--muted); }

@media (max-width: 1024px) {
  .ch-grid { grid-template-columns: 1fr; gap: 52px; }
  .c-form-card--float { margin-bottom: -84px; }
  .contact-after { padding-top: 160px; }
  .region-band { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .contact-hero { padding: 118px 0 72px; }
  .contact-after { padding-bottom: 64px; }
}
@media (max-width: 480px) {
  .ch-row { grid-template-columns: 1fr; row-gap: 2px; }
  .ch-row-label { grid-row: auto; padding-top: 0; }
  .ch-row-hint { grid-column: 1; }
  .ch-row-value { font-size: 1.05rem; }
}

/* ---- Page-Hero-Varianten: jede Hauptseite mit eigenem Gesicht ---- */
.page-hero--left { text-align: left; }
.page-hero--left .breadcrumb { justify-content: flex-start; }
.page-hero--left p { max-width: 58ch; }
.page-hero-tag {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(239,142,4,.4);
}
/* Foto-Variante: Verlauf gibt rechts den Blick aufs Bild frei */
.page-hero--photo::before {
  background: linear-gradient(100deg, rgba(26,26,46,.94) 0%, rgba(26,26,46,.72) 45%, rgba(26,26,46,.28) 100%);
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.24);
  color: #fff !important;
  font-size: .85rem;
  font-weight: 600;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}
.hero-chip:hover { background: var(--amber); border-color: var(--amber); transform: translateY(-2px); }

/* ---- Nummerierte Vorteile (Karriere) ---- */
.num-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 64px; }
.num-item { border-top: 2px solid var(--border); padding-top: 20px; }
.num-item .num {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--amber);
  margin-bottom: 12px;
}
.num-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.num-item p { color: var(--muted); font-size: .92rem; margin: 0; }
.num-grid .num-item:nth-child(even) { transform: translateY(30px); }

/* ---- Stellen-Liste (Karriere) ---- */
.job-list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--border); }
.job-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 10px;
  border-bottom: 1px solid var(--border);
  transition: padding-left var(--tr), box-shadow var(--tr), background var(--tr);
}
.job-row h3 { font-size: 1.12rem; margin-bottom: 4px; }
.job-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: .85rem; }
.job-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--subtle); flex-shrink: 0; }
.job-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber-text);
  font-weight: 600;
  font-size: .875rem;
  white-space: nowrap;
}
.job-cta svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--tr); }
.job-row:hover { padding-left: 22px; box-shadow: inset 3px 0 0 var(--amber); background: rgba(239,142,4,.03); }
.job-row:hover .job-cta svg { transform: translateX(4px); }

@media (max-width: 768px) {
  .num-grid { grid-template-columns: 1fr; gap: 30px; }
  .num-grid .num-item:nth-child(even) { transform: none; }
  .job-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .job-cta { margin-left: 0; }
}

/* ---- Startseite: Leistungs-Showcase (großes Feature + Zeilenliste) ---- */
.section-hd--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section-hd--row h2 { margin-bottom: 0; }
.home-svc {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.home-svc-feature {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--sh);
}
.home-svc-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
}
.home-svc-feature:hover img { transform: scale(1.05); }
.home-svc-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.92) 0%, rgba(26,26,46,.38) 48%, rgba(26,26,46,.05) 75%);
}
.home-svc-feature-body {
  position: absolute;
  inset: auto 0 0;
  padding: 34px 32px;
  z-index: 1;
}
.home-svc-tag {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(239,142,4,.4);
}
.home-svc-feature h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.home-svc-feature p { color: rgba(255,255,255,.82); font-size: .93rem; max-width: 46ch; margin-bottom: 14px; }
.home-svc-feature .svc-link { color: var(--amber); }
.home-svc-list { display: flex; flex-direction: column; }
.home-svc-row {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 6px;
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 0 0 0 transparent;
  transition: padding-left var(--tr), box-shadow var(--tr);
}
.home-svc-row:last-child { border-bottom: none; }
.home-svc-row .feat-icon { width: 46px; height: 46px; }
.home-svc-row h3 { font-size: 1.02rem; margin-bottom: 2px; }
.home-svc-row p { color: var(--muted); font-size: .85rem; margin: 0; }
.home-svc-arrow {
  margin-left: auto;
  flex-shrink: 0;
  width: 18px; height: 18px;
  stroke: var(--subtle);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--tr), stroke var(--tr);
}
.home-svc-row:hover { padding-left: 16px; box-shadow: inset 3px 0 0 var(--amber); }
.home-svc-row:hover h3 { color: var(--amber-dk); }
.home-svc-row:hover .home-svc-arrow { transform: translateX(5px); stroke: var(--amber); }

/* ---- Startseite: Über-uns-Vorschau mit Offset-Rahmen + schwebender Zahl ---- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ap-visual { position: relative; }
.ap-visual::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px; right: 26px; bottom: 26px;
  border: 2px solid rgba(239,142,4,.45);
  border-radius: var(--r-lg);
  pointer-events: none;
}
.ap-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.ap-card {
  position: absolute;
  z-index: 2;
  bottom: -26px;
  right: 22px;
  background: #fff;
  border-radius: var(--r);
  padding: 16px 22px;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.ap-card-num {
  font-family: 'Barlow', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--amber-text);
  letter-spacing: -.02em;
}
.ap-card-lbl { font-size: .78rem; color: var(--muted); line-height: 1.4; }
.ap-facts { display: flex; gap: 34px; flex-wrap: wrap; margin: 28px 0 30px; }
.ap-fact { border-left: 2px solid rgba(239,142,4,.5); padding: 4px 0 4px 16px; }
.ap-fact strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}
.ap-fact span { font-size: .8rem; color: var(--muted); }
.ap-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* ---- Startseite: Bewertungen als Summary + versetzte Kartenwand ---- */
.reviews-layout {
  display: grid;
  grid-template-columns: .85fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.reviews-summary h2 { margin: 12px 0 24px; }
.reviews-score { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.reviews-score-num {
  font-family: 'Barlow', sans-serif;
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink);
}
.reviews-score-sub { display: block; font-size: .85rem; color: var(--muted); margin-top: 4px; }
.reviews-summary > p { color: var(--muted); font-size: .95rem; max-width: 36ch; }
.reviews-logo { width: 212px; height: auto; margin-top: 30px; }
.reviews-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.reviews-col { display: flex; flex-direction: column; gap: 20px; }
.reviews-col--offset { margin-top: 48px; }

@media (max-width: 1024px) {
  .home-svc { grid-template-columns: 1fr; }
  .home-svc-feature { min-height: 360px; }
  .about-preview { grid-template-columns: 1fr; gap: 56px; }
  .reviews-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 680px) {
  .reviews-wall { grid-template-columns: 1fr; }
  .reviews-col--offset { margin-top: 0; }
  .ap-visual::before { display: none; }
  .ap-card { right: 12px; bottom: -20px; }
}

/* ---- Mitgliedschaften & Zertifikate (Logo-Leiste) ---- */
.partner-strip {
  padding: 48px 0 52px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.partner-strip-label {
  text-align: center;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 28px;
}
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
}
.partner-logos img {
  width: auto;
  transition: transform var(--tr);
}
.partner-logos img:hover { transform: translateY(-2px); }
.partner-logo { height: 44px; }
.partner-logo--sm { height: 52px; }
@media (max-width: 600px) {
  .partner-logo { height: 34px; }
  .partner-logo--sm { height: 42px; }
}

/* ---- Social-Media-Links ---- */
.social-row { display: flex; align-items: center; gap: 12px; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: border-color var(--tr), background var(--tr), color var(--tr), transform var(--tr);
}
.social-link svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-link:hover { border-color: var(--amber); background: var(--amber); color: #fff; transform: translateY(-2px); }
/* Prominente Variante mit Label (Startseite) */
.social-row--big { flex-wrap: wrap; }
.social-row--big .social-link {
  width: auto;
  height: 52px;
  gap: 10px;
  padding: 0 22px 0 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
}
.social-row--big .social-link svg { width: 22px; height: 22px; }
/* Variante für dunkle Untergründe (Footer, Kontakt-Panel, Team-Banner) */
.social-row--invert .social-link { border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.75); }
.social-row--invert .social-link:hover { border-color: var(--amber); background: var(--amber); color: #fff; }
.ft-brand .social-row { margin-top: 20px; }
.reviews-summary .social-lead { margin: 30px 0 0; font-weight: 600; color: var(--ink); font-size: .95rem; }
.reviews-summary .social-row { margin-top: 14px; }
.ch-info .social-row { margin-top: 26px; }
.team-spread-cap .social-row { justify-content: center; margin-top: 18px; }
.split-body .social-row { margin-top: 26px; }

/* ---- Utility ---- */
.mt-6  { margin-top: 1.5rem; }
.mb-0  { margin-bottom: 0 !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-4, .why-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .t-split { grid-template-columns: 1fr; gap: 28px; }
  .t-card  { padding: 28px 24px; height: auto; }
  .t-attr  { flex-direction: column; align-items: flex-start; gap: 12px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.flip > * { order: unset !important; }
  .split-visual img { height: 340px; }
  .split-badge { bottom: 16px; right: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .page-hero { padding: 110px 0 48px; }
  .hero > .container { padding-top: 48px; padding-bottom: 56px; }
  .cta-strip { padding: 52px 0; }
  .content-wrap { padding: 52px 0; }
  .split-visual img { height: 260px; }
  .team-spread img { min-height: 260px; }

  /* WICHTIG: backdrop-filter macht den Header sonst zum Containing-Block für
     das position:fixed Mobil-Menü → das Panel würde relativ zum ~72px hohen
     Header positioniert und auf Höhe 0 kollabieren (Menü "öffnet nicht").
     Auf Mobil deaktivieren; der Header-Hintergrund ist ohnehin fast deckend. */
  .header {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  /* Mobile Nav */
  .nav-list {
    display: none;
    position: fixed;
    inset: 72px 0 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    overflow-y: auto;
    z-index: 800;
  }
  .nav-list.open { display: flex; }
  .nav-list li a { padding: 14px 16px; font-size: .95rem; border-radius: 8px; }
  .nav-list .nav-cta { margin-left: 0; text-align: center; justify-content: center; margin-top: 8px; }
  .hamburger { display: flex; }

  .hero-card    { display: none; }
  .grid-3       { grid-template-columns: repeat(2, 1fr); }
  .grid-3.center-last > :last-child:nth-child(3n+1) { grid-column: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-row    { grid-template-columns: 1fr; gap: 10px; }
  .c-form-card  { padding: 24px 18px; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-top   { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .team-spread-cap { padding: 40px 20px 28px; }
}

@media (max-width: 480px) {
  .container    { padding: 0 16px; }
  .section      { padding: 48px 0; }
  .page-hero    { padding: 100px 0 40px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .grid-2       { grid-template-columns: 1fr; }
  .grid-3       { grid-template-columns: 1fr; }
  .grid-4       { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
}

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 3px 8px rgba(0,0,0,.05);
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
}
.faq-item[open] {
  background: linear-gradient(180deg, rgba(239,142,4,.03) 0%, #fff 50%);
  border-color: rgba(239,142,4,.5);
  box-shadow:
    0 2px 4px rgba(0,0,0,.04),
    0 8px 20px rgba(0,0,0,.07),
    0 0 0 3px rgba(239,142,4,.1);
}
.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  user-select: none;
  transition: background var(--tr);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: var(--surface-alt); }
.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--amber);
  transition: transform var(--tr);
}
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-item[open] .faq-q { color: var(--amber-text); }
.faq-a {
  padding: 0 22px 18px;
  font-size: .9rem;
  line-height: 1.78;
  color: var(--muted);
}

/* ---- Google Reviews ---- */
.google-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px 5px 10px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .03em;
  margin-bottom: 14px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.review-card {
  background: linear-gradient(160deg, #fff 0%, #fdfcfa 100%);
  border-radius: var(--r-lg);
  padding: 26px 28px 22px;
  box-shadow:
    0 1px 2px rgba(0,0,0,.04),
    0 4px 12px rgba(0,0,0,.07),
    0 12px 28px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.85);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--tr), box-shadow var(--tr);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(0,0,0,.04),
    0 8px 20px rgba(0,0,0,.09),
    0 20px 44px rgba(0,0,0,.09),
    0 0 0 1px rgba(239,142,4,.1),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fcd34d 0%, var(--amber) 100%);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .5px;
  box-shadow: 0 2px 8px rgba(239,142,4,.35);
}
.review-info { flex: 1; min-width: 0; }
.review-info strong { font-size: .92rem; font-weight: 700; color: var(--ink); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-stars { color: #f59e0b; font-size: .88rem; letter-spacing: 1px; line-height: 1.4; text-shadow: 0 1px 4px rgba(245,158,11,.35); }
.review-g { flex-shrink: 0; opacity: .85; }
.review-text { font-size: .875rem; line-height: 1.75; color: var(--muted); flex: 1; margin: 0; }
.review-date { font-size: .73rem; color: var(--subtle); }

@media (max-width: 680px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---- Image Service Cards ---- */
.svc-card--img { padding: 0; }
.svc-card--img .svc-img { height: 185px; overflow: hidden; }
.svc-card--img .svc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.svc-card--img:hover .svc-img img { transform: scale(1.06); }
.svc-card--img .svc-card-body { padding: 22px 26px 26px; }

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  body.js-loaded .reveal,
  body.js-loaded .reveal.visible { opacity: 1 !important; transform: none !important; }
  body.js-loaded .process-grid::before { transform: none !important; }
  body.js-loaded .process-grid .step,
  body.js-loaded .process-grid .step .step-num { opacity: 1 !important; transform: none !important; }
  .hero-content > * { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-video { display: none; }
}