/* ============================================================
   SCHRIFTEN (lokal gehostet, keine externen Server)
   ============================================================ */
@font-face { font-family: 'Mulish'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/mulish-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Mulish'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/mulish-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Mulish'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/mulish-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Mulish'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/mulish-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Mulish'; font-style: normal; font-weight: 800; font-display: swap; src: url('/assets/fonts/mulish-latin-800-normal.woff2') format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/fraunces-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/fraunces-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/fraunces-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/fraunces-latin-700-normal.woff2') format('woff2'); }

/* ============================================================
   ALLTAGSHELFER SH — Design System
   Warmes Grün, Pflege & Nähe, freundlich und klar.
   ============================================================ */
:root {
  --leaf-700: #1E7D28;
  --leaf-600: #2E9E33;
  --leaf-500: #46B14B;
  --leaf-400: #6BC56E;
  --leaf-300: #BFE3A8;
  --leaf-100: #E9F5E1;
  --forest-950: #0C3314;
  --forest-900: #123F1C;
  --forest-800: #18512A;

  --cream:    #FBFAF4;
  --paper:    #F2F6EC;
  --white:    #FFFFFF;
  --ink:      #243024;
  --ink-soft: #56655A;
  --line:     #E2E8DA;
  --line-forest: rgba(191, 227, 168, .22);
  --accent-coral: #F2785C;
  --success:  #1E7D28;
  --danger:   #C0392B;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Mulish', system-ui, sans-serif;

  --container: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(18, 63, 28, .06), 0 6px 16px rgba(18, 63, 28, .05);
  --shadow-md: 0 6px 14px rgba(18, 63, 28, .08), 0 20px 44px rgba(18, 63, 28, .10);
  --shadow-lg: 0 10px 24px rgba(18, 63, 28, .12), 0 32px 70px rgba(18, 63, 28, .16);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; -webkit-tap-highlight-color: transparent; }
html.no-scroll, html.no-scroll body { overflow: hidden; }
body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.66;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: var(--leaf-700); text-decoration: none; }
a, button, summary, input, select, textarea, label { touch-action: manipulation; }
a:hover { color: var(--leaf-600); }
ul { padding-left: 1.2em; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest-900);
  line-height: 1.14;
  margin: 0 0 .5em;
  letter-spacing: -.005em;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; }
.icon { width: 22px; height: 22px; flex: none; vertical-align: middle; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--forest-900); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ── Kicker / Sections ── */
.kicker {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--leaf-700);
  margin: 0 0 .9em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: '';
  width: 30px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--leaf-500), transparent);
}
.kicker-light { color: var(--leaf-300); }
.kicker-heart { display: inline-flex; align-items: center; gap: 9px; }
.kicker-heart .mini-heart { width: 18px; height: 18px; color: var(--accent-coral); }
.kicker-heart::before { display: none; }

.section { padding: clamp(60px, 8.5vw, 104px) 0; position: relative; }
.section-light { background: var(--white); }
.section-paper { background: var(--paper); }
.section-cream { background: var(--cream); }
.section-forest {
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(46, 158, 51, .26), transparent 60%),
    radial-gradient(720px 440px at -10% 110%, rgba(70, 177, 75, .16), transparent 55%),
    var(--forest-900);
  color: #DBEBD3;
}
.section-forest h2, .section-forest h3 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 54px); }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head-center .kicker { justify-content: center; }
.section-head-center .kicker::before { display: none; }
.section-intro { font-size: 1.08rem; color: var(--ink-soft); }
.section-forest .section-intro, .areas-band .section-intro { color: #B9D3AE; }
.section-sub { font-size: 1.06rem; color: var(--ink-soft); max-width: 640px; text-wrap: balance; }
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }
.section-foot { margin-top: 44px; text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .01em;
  padding: 13px 27px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary, .btn-leaf {
  background: var(--leaf-600);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 125, 40, .28);
}
.btn-primary:hover, .btn-leaf:hover { background: var(--leaf-700); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(18, 63, 28, .34); }
.btn-light { background: #fff; color: var(--forest-900); box-shadow: 0 8px 22px rgba(12, 51, 20, .14); }
.btn-light:hover { background: var(--leaf-100); color: var(--forest-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(4px); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }
/* sichtbar auf hellem Grund (Hero-Sekundärbutton) */
.btn-outline-dark { border-color: var(--leaf-600); color: var(--leaf-700); background: rgba(255,255,255,.65); }
.btn-outline-dark:hover { border-color: var(--leaf-700); color: #fff; background: var(--leaf-600); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(30,125,40,.26); }
.btn-ghost { border-color: var(--line); color: var(--forest-900); background: #fff; }
.btn-ghost:hover { border-color: var(--leaf-400); color: var(--leaf-700); }
.btn-header { padding: 11px 22px; font-size: .88rem; }
.btn .icon { width: 18px; height: 18px; }

/* ============================================================
   TOPBAR (Status + Telefon)
   ============================================================ */
.topbar {
  background: var(--forest-950);
  color: #CFE5C5;
  font-size: .84rem;
}
.topbar-inner {
  display: flex; align-items: center; gap: 18px;
  min-height: 42px;
}
.topbar-status { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; }
.status-dot {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: #8aa; box-shadow: 0 0 0 0 rgba(70,177,75,.5);
}
.office-status.is-open .status-dot { background: var(--leaf-400); animation: pulseDot 2.4s var(--ease) infinite; }
.office-status.is-closed .status-dot { background: #C9A227; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(107,197,110,.55); } 70% { box-shadow: 0 0 0 8px rgba(107,197,110,0); } 100% { box-shadow: 0 0 0 0 rgba(107,197,110,0); } }
.topbar-hours { color: #9CBA90; }
.topbar-sep { color: rgba(207,229,197,.3); }
.topbar-spacer { flex: 1; }
.topbar-link { color: #DBEBD3; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.topbar-link .icon { width: 16px; height: 16px; color: var(--leaf-400); }
.topbar-link:hover { color: #fff; }
@media (max-width: 880px) {
  .topbar-hours, .topbar-sep { display: none; }
  .topbar-inner { justify-content: space-between; gap: 12px; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(18, 63, 28, .08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; min-height: 88px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.site-header .brand img { height: 46px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a {
  font-family: var(--font-body);
  font-weight: 700; font-size: .92rem;
  letter-spacing: .01em;
  color: var(--ink);
  padding: 10px 0;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.main-nav > a::after {
  content: '';
  position: absolute; left: 50%; transform: translateX(-50%) scaleX(0); bottom: 2px;
  width: 22px; height: 2px; border-radius: 2px;
  background: var(--leaf-500);
  transition: transform .28s var(--ease);
}
.main-nav > a:hover { color: var(--leaf-700); }
.main-nav > a.active { color: var(--forest-900); }
.main-nav > a.active::after { transform: translateX(-50%) scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.lang-pair {
  display: inline-flex; align-items: center;
  font-family: var(--font-body);
  font-weight: 800; font-size: .82rem; letter-spacing: .06em;
}
.lang-pair i { font-style: normal; color: var(--line); padding: 0 8px; }
.lang-pair a { color: #9AAE92; transition: color .2s; }
.lang-pair a:hover { color: var(--forest-900); }
.lang-pair .lang-current { color: var(--leaf-700); }
.lang-pair-big { font-size: 1.05rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--forest-900);
}
.nav-toggle svg { width: 30px; height: 30px; }

/* ============================================================
   MOBILE FULLSCREEN-MENÜ
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background:
    radial-gradient(700px 420px at 85% -10%, rgba(46,158,51,.28), transparent 60%),
    var(--forest-950);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), visibility .45s;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; pointer-events: auto; }
.mobile-menu-top {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-forest);
  flex: none;
}
.mobile-menu-top img { height: 40px; width: auto; }
.mobile-menu-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 10px; color: #fff;
}
.mobile-menu-close svg { width: 28px; height: 28px; }
.mobile-menu-nav {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 12px 32px;
}
.mobile-menu-nav a {
  display: block; text-align: center;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.5rem;
  letter-spacing: .01em;
  color: #fff;
  border-bottom: 1px solid var(--line-forest);
  transition: color .2s;
}
.mobile-menu-nav a:last-child { border-bottom: 0; }
.mobile-menu-nav a.active { color: var(--leaf-300); }
.mobile-menu-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  padding: 10px 24px calc(36px + env(safe-area-inset-bottom));
  flex: none;
}
.mobile-menu-bottom .btn { width: 100%; max-width: 340px; }
.mobile-call {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 700; font-size: 1.05rem;
}
.mobile-call .icon { width: 20px; height: 20px; color: var(--leaf-300); }
.mobile-menu .lang-pair i { color: rgba(191,227,168,.35); padding: 0 12px; }
.mobile-menu .lang-pair a { color: #93AE86; }
.mobile-menu .lang-pair .lang-current { color: #fff; }
body.menu-open { overflow: hidden; }
@media (max-height: 720px) {
  .mobile-menu-nav a { padding: 13px 0; font-size: 1.3rem; }
  .mobile-menu-bottom { gap: 14px; padding-bottom: 24px; }
}

/* ============================================================
   HERO (Startseite)
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(540px, 84vh, 760px);
  min-height: clamp(540px, 84svh, 760px);
  display: flex; align-items: center;
  background: linear-gradient(160deg, #F4FAEF 0%, #E9F5E1 60%, #DCEFD0 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(251,250,244,.97) 0%, rgba(251,250,244,.9) 34%, rgba(251,250,244,.5) 62%, rgba(247,252,242,.12) 100%),
    linear-gradient(to top, rgba(18,63,28,.18), transparent 38%);
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(8px); pointer-events: none; z-index: 1;
}
.hero-blob-1 {
  width: clamp(280px, 32vw, 520px); height: clamp(280px, 32vw, 520px);
  right: -6%; top: -12%;
  background: radial-gradient(circle at 35% 35%, rgba(107,197,110,.5), rgba(46,158,51,.05) 70%);
  animation: floatBlob 16s var(--ease) infinite alternate;
}
.hero-blob-2 {
  width: clamp(200px, 22vw, 360px); height: clamp(200px, 22vw, 360px);
  right: 12%; bottom: -16%;
  background: radial-gradient(circle at 50% 50%, rgba(191,227,168,.55), rgba(191,227,168,0) 70%);
  animation: floatBlob 13s var(--ease) infinite alternate-reverse;
}
@keyframes floatBlob { to { transform: translate(-24px, 22px) scale(1.06); } }
.hero-content { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 56px; }
.hero-kicker {
  font-family: var(--font-body);
  font-size: .84rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--leaf-700);
  display: inline-flex; align-items: center; gap: 11px;
  margin-bottom: 20px;
}
.hero-kicker .kicker-heart-ico { width: 19px; height: 19px; color: var(--accent-coral); }
.hero-title {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: -.012em;
  line-height: 1.08;
  color: var(--forest-950);
  max-width: 16ch;
}
.hero-sub {
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  color: #3C4B3E;
  max-width: 560px;
  margin-bottom: 24px;
}
.hero-values {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 14px;
  font-family: var(--font-body);
  font-size: clamp(.78rem, 1.6vw, .9rem);
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--leaf-700);
  margin-bottom: 30px;
}
.hero-values i { font-style: normal; color: var(--leaf-400); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 36px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badges span {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .86rem; font-weight: 600;
  color: var(--forest-800);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line-forest);
  border-radius: 999px;
  padding: 9px 17px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}
.hero-badges .icon { width: 17px; height: 17px; color: var(--leaf-600); }

/* ============================================================
   PAGE HERO (Unterseiten)
   ============================================================ */
.page-hero {
  background:
    radial-gradient(900px 440px at 84% -20%, rgba(46, 158, 51, .9), transparent 60%),
    linear-gradient(150deg, var(--forest-800), var(--forest-950));
  color: #DBEBD3;
  padding: clamp(56px, 8vw, 96px) 0 clamp(44px, 6.5vw, 80px);
  position: relative; overflow: hidden;
}
.page-hero-emblem {
  position: absolute; right: -120px; bottom: -150px;
  width: 420px; height: 420px; color: #fff; opacity: .07;
  pointer-events: none;
}
.page-hero h1 { color: #fff; max-width: 820px; }
.page-hero-intro { max-width: 760px; font-size: 1.1rem; color: #B9D3AE; margin-bottom: 0; }
.page-hero-slim { padding: clamp(44px, 6vw, 68px) 0; }
.page-hero-icon .svc-icon, .page-hero-icon .icon { width: 52px; height: 52px; color: var(--leaf-300); margin-bottom: 16px; }
.page-hero-service { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 9px;
  font-size: .86rem; color: var(--leaf-300);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--leaf-300); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-current] { color: #EAF4E3; }

/* Split-Hero mit Foto */
.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  position: relative; z-index: 1;
}
.service-hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
  border: 3px solid rgba(255,255,255,.12);
}

/* ============================================================
   LEISTUNGS-FILTER (interaktiv)
   ============================================================ */
.svc-filter {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 34px;
}
.svc-filter-btn {
  font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  padding: 10px 20px; border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff; color: var(--ink-soft); cursor: pointer;
  transition: all .22s var(--ease);
}
.svc-filter-btn:hover { border-color: var(--leaf-400); color: var(--leaf-700); }
.svc-filter-btn.is-active {
  background: linear-gradient(135deg, var(--leaf-500), var(--leaf-700));
  border-color: transparent; color: #fff;
  box-shadow: 0 6px 16px rgba(30,125,40,.3);
}

/* ============================================================
   LEISTUNGS-KARTEN (mit Foto)
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 26px;
}
.svc-grid-full { grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); }
.svc-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Leistungen-Karussell (Leistungen-Seite) */
.svc-carousel { position: relative; }
.svc-carousel-viewport {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
  margin: 0 -6px; padding: 10px 6px 26px;
}
.svc-carousel-viewport::-webkit-scrollbar { display: none; }
.svc-carousel-track {
  display: flex; gap: 26px;
}
.svc-slide { flex: 0 0 calc((100% - 52px) / 3); scroll-snap-align: start; }
.svc-carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 14px;
}
.carousel-btn {
  width: 50px; height: 50px; flex: none; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: #fff; color: var(--leaf-700);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: background .22s var(--ease), color .22s, border-color .22s, transform .22s, opacity .22s;
}
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-btn:hover { background: var(--leaf-600); color: #fff; border-color: var(--leaf-600); transform: translateY(-2px); }
.carousel-btn:disabled { opacity: .4; cursor: default; transform: none; background: #fff; color: var(--leaf-700); border-color: var(--line); }
.carousel-dots { display: flex; gap: 9px; align-items: center; }
.carousel-dot {
  width: 9px; height: 9px; border-radius: 50%; cursor: pointer; padding: 0;
  border: none; background: var(--line); transition: background .25s, transform .25s, width .25s;
}
.carousel-dot.is-active { background: var(--leaf-600); width: 26px; border-radius: 999px; }
.svc-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ink);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s, opacity .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(46,158,51,.32); color: var(--ink); }
.svc-card.is-hidden { display: none; }
.svc-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--leaf-100);
}
.svc-card-photo {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.svc-card:hover .svc-card-photo { transform: scale(1.06); }
.svc-card-media.no-img {
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--leaf-100), #fff);
}
.svc-card-badge {
  position: absolute; left: 14px; top: 14px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}
.svc-card-badge .svc-icon, .svc-card-badge .icon { width: 26px; height: 26px; color: var(--leaf-700); }
.svc-card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card-title { font-size: 1.16rem; margin-bottom: 8px; color: var(--forest-900); }
.svc-card-body p { color: var(--ink-soft); font-size: .97rem; margin-bottom: 18px; flex: 1; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  color: var(--leaf-700); margin-top: auto;
}
.svc-card-link .icon { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.svc-card:hover .svc-card-link .icon { transform: translateX(4px); }

/* ============================================================
   TRUST / FOREST-Sektion
   ============================================================ */
.trust { position: relative; overflow: hidden; }
.trust-glow {
  position: absolute; top: -120px; left: -100px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(46,158,51,.4), transparent 65%);
  z-index: 0; pointer-events: none;
}
/* Editorial Split-Layout (Startseite) */
.trust-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px); align-items: start;
}
.trust-intro .section-intro { color: #C4DDB8; margin-bottom: 34px; }
.trust-list { display: flex; flex-direction: column; gap: 14px; }
.trust-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 26px; border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid var(--line-forest);
  transition: transform .3s var(--ease), background .3s, border-color .3s, box-shadow .3s;
}
.trust-item:hover {
  transform: translateX(6px);
  background: linear-gradient(150deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border-color: rgba(191,227,168,.5); box-shadow: 0 18px 38px rgba(0,0,0,.2);
}
.trust-item-icon {
  flex: none; width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 15px; background: linear-gradient(150deg, var(--leaf-500), var(--leaf-700));
  box-shadow: 0 10px 20px rgba(0,0,0,.22);
}
.trust-item-icon .icon { width: 26px; height: 26px; color: #fff; }
.trust-item-body { min-width: 0; }
.trust-item-body h3 { color: #fff; font-size: 1.18rem; margin-bottom: 6px; }
.trust-item-body p { color: #B9D3AE; font-size: .96rem; margin: 0; line-height: 1.6; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
  position: relative; z-index: 1;
}
.trust-card {
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid var(--line-forest);
  border-radius: var(--radius);
  padding: 34px 30px;
  backdrop-filter: blur(4px);
  transition: transform .3s var(--ease), background .3s, border-color .3s, box-shadow .3s;
}
.trust-card:hover { transform: translateY(-6px); background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.05)); border-color: rgba(191,227,168,.5); box-shadow: 0 24px 48px rgba(0,0,0,.22); }
.trust-card-bordered { border-color: rgba(191,227,168,.4); }
.trust-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--leaf-500), var(--leaf-700));
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  margin-bottom: 20px;
}
.trust-icon .icon { width: 26px; height: 26px; color: #fff; }
.trust-card h3 { color: #fff; font-size: 1.22rem; }
/* Trust-Karten auf hellen Sektionen (z. B. Über uns) */
.section-light .trust-card, .section-paper .trust-card, .section-cream .trust-card {
  background: var(--white); border-color: var(--line);
}
.section-light .trust-card:hover, .section-paper .trust-card:hover, .section-cream .trust-card:hover {
  background: var(--white); border-color: rgba(46,158,51,.3); box-shadow: var(--shadow-md);
}
.section-light .trust-card h3, .section-paper .trust-card h3, .section-cream .trust-card h3 { color: var(--forest-900); }
.section-light .trust-card p, .section-paper .trust-card p, .section-cream .trust-card p { color: var(--ink-soft); }
.trust-card p { color: #B9D3AE; font-size: .96rem; margin: 0; }
.trust-sub {
  display: block; font-family: var(--font-body); font-weight: 400;
  font-size: .92rem; color: var(--leaf-300); margin-top: 2px;
}
.trust-emblem {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 380px; height: 380px; color: #fff; opacity: .05; z-index: 0; pointer-events: none;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
  margin-top: 0;
  padding-top: clamp(26px, 3vw, 34px);
  border-top: 1px solid var(--line-forest);
  text-align: left;
  position: relative; z-index: 1;
}
.trust-stat strong, .trust-stats strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.4rem); font-weight: 700; color: #fff; line-height: 1;
}
.trust-stat span, .trust-stats span { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--leaf-300); margin-top: 8px; }
@media (max-width: 920px) {
  .trust-layout { grid-template-columns: 1fr; gap: 36px; }
  .trust-intro .section-intro { margin-bottom: 28px; }
}
@media (max-width: 480px) {
  .trust-item { padding: 20px; gap: 16px; }
  .trust-item-icon { width: 48px; height: 48px; }
}

/* Warum-Section (Redesign) */
.why-inner { position: relative; z-index: 2; }
.why-head { text-align: center; max-width: 680px; margin: 0 auto clamp(40px, 5vw, 56px); }
.why-head h2 { color: #fff; margin-bottom: 16px; }
.why-intro { color: #C4DDB8; font-size: clamp(1.02rem, 1.6vw, 1.16rem); line-height: 1.65; margin: 0; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  position: relative;
  background: linear-gradient(165deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  border: 1px solid rgba(191,227,168,.2);
  border-radius: var(--radius);
  padding: 38px 30px 32px;
  text-align: center;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s, background .35s;
}
.why-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--leaf-500), var(--leaf-300));
  opacity: 0; transition: opacity .35s;
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(191,227,168,.5);
  background: linear-gradient(165deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  box-shadow: 0 26px 52px rgba(0,0,0,.28);
}
.why-card:hover::before { opacity: 1; }
.why-medal {
  width: 66px; height: 66px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 20px;
  background: linear-gradient(150deg, var(--leaf-500), var(--leaf-700));
  box-shadow: 0 14px 28px rgba(0,0,0,.3), 0 0 0 8px rgba(70,177,75,.12);
}
.why-medal .icon { width: 30px; height: 30px; color: #fff; }
.why-card-label {
  font-family: var(--font-body); font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--leaf-300); margin: 0 0 7px;
}
.why-card h3 { color: #fff; font-size: 1.42rem; margin: 0 0 12px; }
.why-card-text { color: #B9D3AE; font-size: .97rem; line-height: 1.62; margin: 0; }

.why-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(34px, 4vw, 48px);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-forest);
  border-radius: var(--radius);
  overflow: hidden;
}
.why-stat { text-align: center; padding: 26px 16px; border-right: 1px solid var(--line-forest); }
.why-stat:last-child { border-right: 0; }
.why-stat strong {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.1rem); color: #fff; line-height: 1;
}
.why-stat span {
  display: block; font-size: .77rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--leaf-300); margin-top: 9px; line-height: 1.4;
}

@media (max-width: 920px) {
  .why-grid { grid-template-columns: 1fr; gap: 16px; max-width: 520px; margin: 0 auto; }
  .why-card { padding: 32px 26px 28px; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .why-stat:nth-child(2) { border-right: 0; }
  .why-stat:nth-child(1), .why-stat:nth-child(2) { border-bottom: 1px solid var(--line-forest); }
}
@media (max-width: 460px) {
  .why-stats { grid-template-columns: 1fr; }
  .why-stat { border-right: 0; border-bottom: 1px solid var(--line-forest); }
  .why-stat:last-child { border-bottom: 0; }
}

/* ============================================================
   STEPS
   ============================================================ */
/* Ablauf als verbundene Timeline */
.steps-flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
  position: relative;
}
.steps-flow::before {
  content: ''; position: absolute; top: 31px; left: 12.5%; right: 12.5%; height: 3px;
  background: linear-gradient(90deg, var(--leaf-300), var(--leaf-500), var(--leaf-300));
  border-radius: 3px; z-index: 0;
}
.step-node { position: relative; z-index: 1; text-align: center; }
.step-bubble {
  width: 62px; height: 62px; margin: 0 auto 22px;
  display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(140deg, var(--leaf-500), var(--leaf-700));
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  border: 5px solid var(--white);
  box-shadow: 0 10px 22px rgba(30,125,40,.28);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step-node:hover .step-bubble { transform: translateY(-4px) scale(1.04); box-shadow: 0 16px 30px rgba(30,125,40,.34); }
.step-node h3 { color: var(--forest-900); font-size: 1.14rem; margin-bottom: 8px; }
.step-node p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
@media (max-width: 820px) {
  .steps-flow { grid-template-columns: 1fr; gap: 0; max-width: 540px; margin: 0 auto; }
  .steps-flow::before { display: none; }
  .step-node { display: grid; grid-template-columns: 62px 1fr; gap: 20px; text-align: left; padding-bottom: 34px; }
  .step-node:last-child { padding-bottom: 0; }
  .step-bubble { margin: 0; }
  .step-node-body { padding-top: 9px; }
  .step-node:not(:last-child)::before {
    content: ''; position: absolute; left: 31px; top: 62px; bottom: -4px; width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--leaf-400), var(--leaf-300));
  }
}

/* ============================================================
   VOICES / Versprechen-Slider (interaktiv)
   ============================================================ */
.voices { position: relative; }
.voices-panel {
  position: relative; overflow: hidden;
  border-radius: clamp(20px, 3vw, 28px);
  padding: clamp(34px, 4.5vw, 56px) clamp(26px, 5vw, 60px) clamp(28px, 3.5vw, 40px);
  background:
    radial-gradient(820px 420px at 88% -25%, rgba(46,158,51,.34), transparent 60%),
    linear-gradient(150deg, var(--forest-800), var(--forest-950));
  box-shadow: var(--shadow-lg);
}
.voices-panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(420px 300px at 10% 120%, rgba(107,197,110,.18), transparent 60%);
  pointer-events: none;
}
.voices-emblem {
  position: absolute; right: clamp(-30px, -2vw, -10px); bottom: clamp(-34px, -3vw, -18px);
  width: clamp(150px, 22vw, 230px); height: clamp(150px, 22vw, 230px);
  color: #fff; opacity: .06; z-index: 0; pointer-events: none;
}
.voices-emblem .emblem-watermark { position: static; width: 100%; height: 100%; right: auto; bottom: auto; opacity: 1; }
.voices-slider { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.voices-stage { display: grid; }
.voice-slide {
  grid-area: 1 / 1; min-width: 0;
  padding: 2px 4px; text-align: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.voice-slide.is-active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.voice-quote { display: inline-block; color: var(--leaf-400); margin-bottom: 14px; }
.voice-quote .icon { width: 40px; height: 40px; }
.voice-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 2.5vw, 1.72rem);
  line-height: 1.45; color: #fff; font-weight: 400; font-style: italic;
  margin: 0 0 22px; padding: 0; border: 0;
  overflow-wrap: break-word; hyphens: auto;
}
.voice-slide figcaption {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--leaf-300);
}
.voice-slide figcaption .mini-heart { width: 16px; height: 16px; color: var(--accent-coral); }
.voices-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; position: relative; z-index: 1; }
.voices-arrow {
  width: 44px; height: 44px; flex: none; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,.08); color: #fff;
  border: 1.5px solid rgba(191,227,168,.32);
  transition: background .22s var(--ease), border-color .22s, transform .22s;
}
.voices-arrow svg { width: 20px; height: 20px; }
.voices-arrow:hover { background: rgba(255,255,255,.18); border-color: rgba(191,227,168,.6); transform: translateY(-2px); }
.voices-dots { display: flex; justify-content: center; gap: 10px; }
.voices-dot {
  width: 9px; height: 9px; border-radius: 50%; cursor: pointer;
  border: none; background: rgba(255,255,255,.3); padding: 0;
  transition: background .25s, width .25s, transform .25s;
}
.voices-dot.is-active { background: var(--leaf-300); width: 26px; border-radius: 999px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color .25s, box-shadow .25s;
}
.faq-item.is-active { border-color: rgba(46,158,51,.35); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; text-align: left;
  padding: 20px 24px; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--forest-900); background: none; border: none;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 20px; height: 20px; flex: none; position: relative;
  transition: transform .3s var(--ease);
}
.faq-chevron::before, .faq-chevron::after {
  content: ''; position: absolute; top: 50%; width: 11px; height: 2px; border-radius: 2px;
  background: var(--leaf-600);
}
.faq-chevron::before { left: 0; transform: rotate(45deg); }
.faq-chevron::after { right: 0; transform: rotate(-45deg); }
.faq-item.is-active .faq-chevron { transform: rotate(180deg); }
/* sanftes Auf-/Zuklappen über Grid-Rows (kein fixes max-height nötig) */
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-item.is-active .acc-panel, .value-card.is-active .acc-panel { grid-template-rows: 1fr; }
.faq-answer { overflow: hidden; min-height: 0; padding: 0 24px; }
.faq-answer p { color: var(--ink-soft); margin: 0; padding: 2px 0 22px; }

/* ============================================================
   AREAS-BAND
   ============================================================ */
.areas-band { position: relative; overflow: hidden; color: #E4F1DC; }
.areas-band-bg { position: absolute; inset: 0; z-index: 0; }
.areas-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.areas-band-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(12,51,20,.96) 30%, rgba(18,63,28,.88) 62%, rgba(18,63,28,.72));
}
.areas-band-inner { position: relative; z-index: 2; max-width: 760px; }
.areas-band h2 { color: #fff; }
.areas-band .city-lines { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; list-style: none; padding: 0; }
.areas-band .city-lines li { list-style: none; }
.areas-band .city-lines a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  color: #fff; font-weight: 700; font-size: 1.02rem;
  padding: 13px 18px; border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(191,227,168,.22);
  transition: background .22s var(--ease), border-color .22s, transform .22s;
}
.areas-band .city-lines a:hover { background: rgba(255,255,255,.14); border-color: rgba(191,227,168,.5); transform: translateX(3px); }
.areas-band .city-line-arrow { display: inline-flex; }
.areas-band .city-line-arrow .icon { width: 18px; height: 18px; color: var(--leaf-300); transition: transform .22s var(--ease); }
.areas-band .city-lines a:hover .city-line-arrow .icon { transform: translateX(4px); }

/* ============================================================
   HOME DUO (Jobs + Förderung)
   ============================================================ */
.home-duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.duo-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius); padding: 40px 38px;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.duo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.duo-card-jobs { background: linear-gradient(150deg, var(--leaf-600), var(--leaf-700)); color: #EAF6E4; }
.duo-card-fund { background: linear-gradient(150deg, var(--forest-800), var(--forest-950)); color: #DBEBD3; }
.duo-card h2, .duo-card h3 { color: #fff; font-size: clamp(1.45rem, 2.6vw, 1.75rem); margin-bottom: 12px; }
.duo-card .kicker { color: rgba(255,255,255,.82); }
.duo-card .kicker::before { background: linear-gradient(90deg, rgba(255,255,255,.7), transparent); }
.duo-card p { font-size: 1.02rem; opacity: .96; }
.duo-ico { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 15px; background: rgba(255,255,255,.18); margin-bottom: 22px; }
.duo-ico .icon { width: 28px; height: 28px; color: #fff; }
.duo-text { flex: 1; }
.duo-card .btn { margin-top: 24px; }

/* ============================================================
   LOCATION-BAND
   ============================================================ */
.location-band { background: var(--paper); }
.location-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 56px); align-items: stretch; }
.location-card { display: flex; flex-direction: column; justify-content: center; }
.location-list { list-style: none; padding: 0; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 18px; }
.location-list li { display: flex; gap: 15px; align-items: center; }
.location-ico {
  width: 44px; height: 44px; flex: none; display: grid; place-items: center;
  border-radius: 12px; background: var(--leaf-100); border: 1px solid var(--line);
}
.location-ico .icon { width: 20px; height: 20px; color: var(--leaf-700); }
.location-list strong { display: block; font-family: var(--font-body); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 3px; }
.location-list a, .location-list span { color: var(--forest-900); font-weight: 600; }
.location-map { border-radius: var(--radius); overflow: hidden; min-height: 380px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.location-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ============================================================
   STÄDTE-RASTER
   ============================================================ */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); gap: 24px; }
.city-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; color: var(--ink);
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.city-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(46,158,51,.3); color: var(--ink); }
.city-card-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 13px; background: var(--leaf-100); margin-bottom: 16px; }
.city-card-icon .icon { width: 24px; height: 24px; color: var(--leaf-700); }
.city-card h3 { color: var(--forest-900); margin-bottom: 6px; }
.city-card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 16px; flex: 1; }
.city-card-link, .city-line-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .9rem; color: var(--leaf-700); margin-top: auto; }
.city-card-link .icon, .city-line-arrow .icon { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.city-card:hover .city-line-arrow .icon { transform: translateX(4px); }
.city-services { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.city-services li { font-size: .82rem; background: var(--leaf-100); color: var(--forest-800); border-radius: 999px; padding: 5px 13px; }
.city-services li a { display: inline-flex; align-items: center; gap: 6px; color: var(--forest-800); }
.city-services .icon { width: 13px; height: 13px; color: var(--leaf-600); }
.city-lines { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ============================================================
   SERVICE-DETAIL
   ============================================================ */
.service-detail { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr); gap: clamp(34px, 5vw, 64px); align-items: start; }
.service-main { font-size: 1.04rem; }
.service-main p { color: var(--ink-soft); }
.service-body h2 { margin-top: 1.4em; }
.benefit-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 14px; }
.benefit-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink); }
.benefit-list li .icon { width: 24px; height: 24px; flex: none; color: var(--leaf-600); margin-top: 1px; }
.service-aside { position: sticky; top: 112px; }
.aside-card {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--forest-800), var(--forest-950));
  color: #DBEBD3; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-md);
}
.aside-card h3 { color: #fff; }
.aside-emblem { position: absolute; right: -40px; bottom: -40px; width: 180px; height: 180px; color: #fff; opacity: .08; }
.aside-contact { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.aside-contact li, .aside-contact a { display: flex; gap: 12px; align-items: center; }
.aside-contact .icon { width: 19px; height: 19px; color: var(--leaf-300); flex: none; }
.aside-contact a, .aside-contact span { color: #fff; font-weight: 600; }
.aside-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; position: relative; z-index: 1; }
.aside-badges span { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; background: rgba(255,255,255,.1); border: 1px solid var(--line-forest); border-radius: 999px; padding: 6px 13px; color: #DBEBD3; }
.aside-badges .icon { width: 15px; height: 15px; color: var(--leaf-300); }
.aside-emergency { font-size: .9rem; }
.hire-strip-section { background: var(--paper); padding: clamp(30px, 4vw, 46px) 0; }
.hire-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px) clamp(26px, 3.4vw, 40px); box-shadow: var(--shadow-sm);
}
.hire-strip-text h2 { margin-bottom: 6px; }
.hire-strip-text p { color: var(--ink-soft); margin: 0; }
.hire-strip-line { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.about-text p { color: var(--ink-soft); font-size: 1.05rem; }
.about-media { position: relative; }
.about-media::before {
  content: ''; position: absolute; inset: 16px -16px -16px 16px;
  border-radius: var(--radius); z-index: 0;
  background: linear-gradient(150deg, var(--leaf-300), var(--leaf-100));
}
.about-media img { position: relative; z-index: 1; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
/* Anspruch: Intro + Feature-Reihen */
.team-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.team-text p { color: var(--ink-soft); }
.team-tiles { display: flex; flex-direction: column; gap: 16px; }
.team-tile {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.team-tile:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: rgba(46,158,51,.3); }
.team-tile-icon {
  flex: none; width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 14px; margin-bottom: 0;
  background: linear-gradient(150deg, var(--leaf-500), var(--leaf-700));
  box-shadow: 0 10px 20px rgba(30,125,40,.24);
}
.team-tile-icon .icon { width: 26px; height: 26px; color: #fff; }
.team-tile-body { min-width: 0; }
.team-tile h3 { color: var(--forest-900); font-size: 1.16rem; margin-bottom: 6px; }
.team-tile p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* Triad: Mit Herz / Verstand / Diskretion */
.triad-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.triad-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 30px; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.triad-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(46,158,51,.3); }
.triad-icon {
  width: 64px; height: 64px; margin: 0 auto 22px; display: grid; place-items: center;
  border-radius: 50%; background: linear-gradient(150deg, var(--leaf-500), var(--leaf-700));
  box-shadow: 0 12px 24px rgba(30,125,40,.26);
}
.triad-icon .icon { width: 30px; height: 30px; color: #fff; }
.triad-card h3 { color: var(--forest-900); font-size: 1.24rem; margin-bottom: 8px; }
.triad-card p { color: var(--ink-soft); margin: 0; }

/* Assurance: Worauf Sie sich verlassen können */
.assurance { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 4vw, 56px); align-items: center; }
.assurance-intro .section-intro { margin-bottom: 0; }
.assurance-panel {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 3.2vw, 38px); box-shadow: var(--shadow-sm);
}
.assurance-panel .benefit-list { margin: 0; gap: 0; }
.assurance-panel .benefit-list li { padding: 15px 0; border-bottom: 1px solid var(--line); align-items: center; }
.assurance-panel .benefit-list li:first-child { padding-top: 0; }
.assurance-panel .benefit-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.assurance-panel .benefit-list li .icon { width: 26px; height: 26px; color: #fff; background: var(--leaf-600); border-radius: 50%; padding: 5px; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 22px; }
.value-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid var(--line-forest); border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s var(--ease), background .3s, border-color .3s, box-shadow .3s;
}
.value-card:hover { transform: translateY(-6px); background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.05)); border-color: rgba(191,227,168,.5); box-shadow: 0 24px 48px rgba(0,0,0,.22); }
.value-num {
  display: inline-grid; place-items: center;
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff;
  background: linear-gradient(140deg, var(--leaf-500), var(--leaf-700));
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
}
.value-title { color: #fff; font-size: 1.22rem; margin-bottom: 10px; }
.value-card p { color: #C4DDB8; margin: 0; font-size: .98rem; line-height: 1.6; }
.qual-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.qual-card h3 { color: var(--forest-900); }
.qual-card p { color: var(--ink-soft); }

/* ============================================================
   CONTACT + FORMS
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(34px, 5vw, 60px); align-items: start; }
.contact-info h2 { font-size: 1.5rem; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 15px; align-items: center; }
.contact-ico { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 12px; background: var(--leaf-100); border: 1px solid var(--line); }
.contact-ico .icon { width: 20px; height: 20px; color: var(--leaf-700); }
.contact-list strong { display: block; font-family: var(--font-body); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 2px; }
.contact-list a, .contact-list span { color: var(--forest-900); font-weight: 600; }
.contact-note { margin-top: 22px; font-size: .92rem; color: var(--ink-soft); }
.contact-emergency, .foot-emerg { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; }
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-group label { font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: .04em; color: var(--forest-900); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--leaf-500); box-shadow: 0 0 0 3px rgba(70,177,75,.16); background: #fff;
}
.form-check { flex-direction: row; align-items: flex-start; gap: 11px; }
.form-check input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--leaf-700); flex: none; }
.form-check label { font-family: var(--font-body); font-weight: 400; font-size: .88rem; color: var(--ink-soft); margin: 0; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.form-feedback { min-height: 24px; font-size: .92rem; font-weight: 600; color: var(--danger); margin-bottom: 10px; }
.form-feedback.ok { color: var(--success); }
.form-success { text-align: center; padding: 36px 10px; }
.success-icon { width: 64px; height: 64px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: var(--leaf-100); animation: pop .4s var(--ease); }
.success-icon .icon { width: 32px; height: 32px; color: var(--success); }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* Jobs-Formular */
.jobs-points { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: 24px; margin-bottom: 14px; }
.jobs-point {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.jobs-point:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(46,158,51,.3); }
.jobs-point-num {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 18px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.12rem;
  color: #fff; background: linear-gradient(140deg, var(--leaf-500), var(--leaf-700));
  box-shadow: 0 10px 20px rgba(30,125,40,.24);
}
.jobs-point-title { font-size: 1.2rem; margin-bottom: 8px; color: var(--forest-900); }
.jobs-point p { color: var(--ink-soft); font-size: .97rem; margin: 0; }
.jobs-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow-sm); max-width: 860px; margin: 0 auto; }
.jobs-form-title { font-size: 1.6rem; margin-bottom: 4px; }
.jobs-form-subtitle { color: var(--ink-soft); margin-bottom: 26px; }

/* ============================================================
   FÖRDERUNG / PFLEGEKASSE
   ============================================================ */
.fund-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 24px; }
.fund-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.fund-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(46,158,51,.3); }
.fund-card-ico { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(150deg, var(--leaf-500), var(--leaf-700)); box-shadow: 0 10px 20px rgba(30,125,40,.24); margin-bottom: 20px; }
.fund-card-ico .icon { width: 28px; height: 28px; color: #fff; }
.fund-card h3 { color: var(--forest-900); font-size: 1.22rem; line-height: 1.3; margin-bottom: 10px; overflow-wrap: break-word; hyphens: auto; }
.fund-card p { color: var(--ink-soft); font-size: .98rem; margin: 0; line-height: 1.6; }
.fund-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--leaf-700); font-weight: 600; }
.fund-h2 { max-width: 720px; }
.fund-note { display: flex; gap: 14px; align-items: flex-start; background: var(--leaf-100); border: 1px solid var(--line); border-left: 4px solid var(--leaf-500); border-radius: var(--radius-sm); padding: 20px 24px; font-size: .95rem; color: var(--forest-800); margin-bottom: clamp(40px, 5vw, 56px); }
.fund-note-ico { flex: none; color: var(--leaf-600); margin-top: 1px; }
.fund-note-ico .icon { width: 22px; height: 22px; }
.fund-note strong { color: var(--forest-900); }
.pg-calc-label { font-family: var(--font-display); font-weight: 600; color: var(--forest-900); font-size: 1.05rem; margin: 0 0 6px; }
.fund-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 22px; }
.fund-step-num { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--leaf-100); color: var(--leaf-700); font-family: var(--font-display); font-weight: 600; margin-bottom: 14px; }

/* Pflegegrad-Rechner (interaktiv) */
.pg-calc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); max-width: 760px; }
.pg-grades { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.pg-grade {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  min-width: 84px; padding: 16px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--cream); color: var(--forest-900);
  cursor: pointer; text-align: center; transition: all .22s var(--ease); flex: 1 0 auto;
}
.pg-grade small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .72rem; color: var(--ink-soft); margin-top: 3px; letter-spacing: .02em; }
.pg-grade:hover { border-color: var(--leaf-400); }
.pg-grade.is-active { background: linear-gradient(135deg, var(--leaf-500), var(--leaf-700)); border-color: transparent; color: #fff; box-shadow: 0 6px 16px rgba(30,125,40,.3); }
.pg-grade.is-active small { color: rgba(255,255,255,.85); }
.pg-result { background: var(--leaf-100); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px 26px; margin-top: 8px; font-size: 1.05rem; color: var(--forest-900); }
.pg-result strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--leaf-700); }
.pg-disclaimer { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; color: var(--ink-soft); margin-top: 18px; }
.pg-disclaimer .icon { width: 15px; height: 15px; color: var(--leaf-600); margin-top: 2px; }

/* Leistungs-Figuren (Rechner-Ergebnis) */
.pg-fig { display: flex; flex-direction: column; gap: 5px; }
.pg-fig-label { font-size: .7rem; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; line-height: 1.3; }
.pg-fig-val { font-family: var(--font-display); font-size: 1.16rem; color: var(--forest-900); font-weight: 600; }
.pg-fig-val i { font-style: normal; font-family: var(--font-body); font-size: .7rem; font-weight: 600; color: var(--ink-soft); margin-left: 3px; }
.pg-fig-key .pg-fig-val { color: var(--leaf-700); }
.pg-levels-note { display: flex; gap: 11px; align-items: flex-start; margin-top: 22px; padding: 18px 22px; background: var(--leaf-100); border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--forest-800); font-size: .95rem; line-height: 1.6; }
.pg-levels-note-ico { flex: none; color: var(--leaf-600); margin-top: 2px; }
.pg-levels-note-ico .icon { width: 20px; height: 20px; }
.pg-levels-note strong { color: var(--forest-900); }
.pg-calc .pg-levels-note { margin-top: 18px; }

/* Interaktives Ergebnis im Rechner */
.pg-res-head { font-family: var(--font-display); font-weight: 600; color: var(--forest-900); font-size: 1.06rem; margin: 0 0 16px; }
.pg-res-figs { display: grid; grid-template-columns: 1fr 1fr; row-gap: 22px; column-gap: 0; }
.pg-res-figs .pg-fig { padding-left: 26px; border-left: 1px solid var(--line); }
.pg-res-figs .pg-fig:nth-child(odd) { padding-left: 0; padding-right: 26px; border-left: 0; }
@media (max-width: 520px) {
  .pg-res-figs { grid-template-columns: 1fr; row-gap: 16px; }
  .pg-res-figs .pg-fig { padding-left: 0; padding-right: 0; border-left: 0; }
}

/* Rechner auf kleinen Geraeten */
@media (max-width: 560px) {
  .pg-grades { gap: 8px; }
  .pg-grade { min-width: 0; flex: 1 1 auto; padding: 14px 8px; font-size: 1rem; }
  .pg-grade[data-grade="0"] { flex: 1 1 100%; }
  .pg-result { padding: 22px 18px; }
  .pg-res-head { font-size: 1rem; }
}

/* ============================================================
   CTA-BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--leaf-600), var(--leaf-700)); color: #fff; }
.cta-band.section { padding: clamp(54px, 7vw, 88px) 0; }
.cta-inner { position: relative; z-index: 2; max-width: 760px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.08rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 26px; }
.cta-call { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: #fff; }
.cta-call a { color: #fff; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; transition: opacity .2s; }
.cta-call a:hover { color: #fff; opacity: .82; }
/* Links auf dunklen/grünen Flächen immer hell halten (Buttons ausgenommen) */
.cta-band a:not(.btn), .section-forest a:not(.btn), .areas-band a:not(.btn), .duo-card a:not(.btn), .voices-panel a:not(.btn) { color: #fff; }
.cta-call .icon { width: 22px; height: 22px; }
.cta-emblem { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 320px; height: 320px; color: #fff; opacity: .12; z-index: 1; pointer-events: none; }
.emblem-watermark { position: absolute; right: -60px; bottom: -60px; width: 280px; height: 280px; opacity: .1; pointer-events: none; color: #fff; }

/* ============================================================
   LEGAL
   ============================================================ */
.legal .container-narrow { max-width: 840px; }
.legal-date { font-size: .9rem; color: var(--ink-soft); margin-bottom: 2em; }
.legal h2 { font-size: 1.3rem; margin-top: 2em; padding-top: 1.2em; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.legal h2::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--leaf-500); flex: none; }
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h2:first-of-type::before { display: none; }
.legal h3 { font-size: 1.04rem; margin-top: 1.6em; }
.legal p, .legal li { color: var(--ink-soft); }
.legal li { margin-bottom: .4em; }
.legal a { font-weight: 600; overflow-wrap: anywhere; }
.legal strong { color: var(--forest-900); }
.legal-table { width: 100%; border-collapse: collapse; font-size: .92rem; margin: 1em 0 2em; }
.legal-table th, .legal-table td { text-align: left; padding: 11px 13px; border: 1px solid var(--line); vertical-align: top; }
.legal-table th { background: var(--paper); font-family: var(--font-display); font-size: .84rem; letter-spacing: .04em; color: var(--forest-900); }
.legal-table td { color: var(--ink-soft); }

/* ============================================================
   COOKIE-SETTINGS
   ============================================================ */
.cookie-setting-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; margin-bottom: 22px; }
.cookie-setting-head { display: flex; gap: 24px; align-items: flex-start; justify-content: space-between; }
.cookie-setting-head h2 { font-size: 1.14rem; margin-bottom: 6px; }
.cookie-setting-head p { color: var(--ink-soft); font-size: .92rem; margin: 0; }
.cookie-setting-note { font-family: var(--font-body); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--leaf-700); background: var(--leaf-100); border-radius: 999px; padding: 5px 12px; white-space: nowrap; }
.cookie-setting-actions { display: flex; align-items: center; gap: 18px; margin: 26px 0 14px; }
.cookie-saved { display: inline-flex; align-items: center; gap: 7px; color: var(--success); font-weight: 700; }
.cookie-saved .icon { width: 18px; height: 18px; }
.cookie-setting-footer { font-size: .88rem; color: var(--ink-soft); }
.switch { position: relative; display: inline-block; width: 54px; height: 30px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch-slider { position: absolute; cursor: pointer; inset: 0; background: #C9D3C0; border-radius: 999px; transition: background .25s; }
.switch-slider::before { content: ''; position: absolute; height: 22px; width: 22px; left: 4px; bottom: 4px; background: #fff; border-radius: 50%; transition: transform .25s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.switch input:checked + .switch-slider { background: var(--leaf-600); }
.switch input:checked + .switch-slider::before { transform: translateX(24px); }
.switch-disabled .switch-slider { background: var(--leaf-600); opacity: .55; cursor: not-allowed; }
.cookie-settings-link { font-size: .9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--cream); border-top: 1px solid var(--line); position: relative; }
.footer-wave { display: block; width: 100%; height: auto; color: var(--cream); margin-bottom: -6px; }
.footer-wave svg { display: block; width: 100%; height: auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 4vw, 48px); }
.footer-brand .brand img { height: 44px; width: auto; }
.footer-claim, .footer-brand p { color: var(--ink-soft); font-size: .95rem; margin-top: 18px; max-width: 320px; }
.footer-contact { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.footer-contact li { display: flex; gap: 10px; align-items: center; font-size: .94rem; color: var(--ink-soft); }
.footer-contact .icon { width: 17px; height: 17px; color: var(--leaf-600); flex: none; }
.footer-contact a { color: var(--ink-soft); }
.footer-contact a:hover { color: var(--leaf-700); }
.footer-col h3 { font-family: var(--font-body); font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--forest-900); margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink-soft); font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: var(--leaf-700); }
.footer-more { margin-top: 14px; }
.footer-bottom { border-top: 1px solid var(--line); background: var(--paper); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 0; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: .86rem; color: var(--ink-soft); }
.footer-legal { display: flex; gap: 8px 18px; flex-wrap: wrap; }
.footer-legal a { font-size: .86rem; color: var(--ink-soft); }
.footer-legal a:hover { color: var(--leaf-700); }
.footer-credit-line { display: inline-flex; align-items: center; gap: 6px; font-size: .86rem; color: var(--ink-soft); }
.footer-credit { font-weight: 700; color: var(--leaf-700) !important; white-space: nowrap; }
.footer-credit:hover { color: var(--forest-900) !important; }

/* ============================================================
   COOKIE-BANNER
   ============================================================ */
.cookie-banner { position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 150; max-width: 1100px; margin: 0 auto; }
.cookie-inner {
  display: flex; align-items: center; gap: 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px 26px;
}
.cookie-text { font-size: .92rem; color: var(--ink-soft); flex: 1; margin: 0; }
.cookie-text strong { color: var(--forest-900); }
.cookie-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.cookie-actions .btn { padding: 11px 20px; font-size: .9rem; }
.cookie-settings-link a { font-weight: 600; }

/* ============================================================
   WHATSAPP-FLOAT + BACK-TO-TOP
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: calc(22px + env(safe-area-inset-bottom)); z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .42);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; box-shadow: 0 12px 30px rgba(37, 211, 102, .5); }
.wa-float svg { width: 30px; height: 30px; }
.to-top {
  position: fixed; right: 22px; bottom: calc(90px + env(safe-area-inset-bottom)); z-index: 89;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--forest-900); color: #fff; border: none; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--leaf-700); }
.to-top .icon { width: 22px; height: 22px; }

/* ============================================================
   404
   ============================================================ */
.error-scene { text-align: center; padding: clamp(60px, 10vw, 120px) 0; }
.error-inner { max-width: 600px; margin: 0 auto; }
.error-emblem { width: 110px; height: 110px; color: var(--leaf-500); margin: 0 auto 26px; }
.error-code { font-family: var(--font-display); font-size: clamp(4rem, 14vw, 7rem); font-weight: 600; color: var(--leaf-700); line-height: 1; margin-bottom: 6px; }
.error-text { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 30px; }
.error-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   REVEAL-ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.loaded { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-blob { animation: none; }
  .office-status.is-open .status-dot { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .main-nav { gap: 20px; }
  .main-nav > a { font-size: .86rem; }
  .btn-header { display: none; }
}
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail, .about-grid, .contact-grid, .location-grid { grid-template-columns: 1fr; }
  .service-aside { position: static; }
  .about-media::before { display: none; }
  .assurance { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); }
  .header-inner { justify-content: center; position: relative; min-height: 80px; }
  .home-duo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .service-hero-grid { grid-template-columns: 1fr; }
  .service-hero-photo { margin-top: 6px; }
  .service-hero-photo img { aspect-ratio: 16 / 10; box-shadow: 0 14px 34px rgba(0,0,0,.3); }
  .team-grid, .team-tiles, .value-grid { grid-template-columns: 1fr; }
  .value-grid { max-width: 560px; margin: 0 auto; }
  .location-map, .location-map iframe { min-height: 320px; }
  .hire-strip { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 1080px) {
  .svc-slide { flex-basis: calc((100% - 26px) / 2); }
  .svc-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .svc-slide { flex-basis: 100%; }
  .svc-grid-3 { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .triad-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .cta-actions .btn, .hire-strip-line .btn, .location-card .btn { width: 100%; }
  .btn-lg { padding: 15px 26px; }

  /* Hero mittig */
  .hero { min-height: 0; }
  .hero-overlay { background: linear-gradient(180deg, rgba(251,250,244,.84) 0%, rgba(251,250,244,.74) 55%, rgba(250,252,247,.7) 100%); }
  .hero-kicker, .hero-title, .hero-sub, .hero-values { text-shadow: 0 2px 16px rgba(251,250,244,.96), 0 1px 3px rgba(251,250,244,.85); }
  .hero-content { text-align: center; padding: 44px 22px 52px; }
  .hero-kicker { flex-direction: column; gap: 7px; }
  .hero-title, .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-values { justify-content: center; flex-wrap: nowrap; white-space: nowrap; gap: 8px; font-size: .68rem; letter-spacing: .1em; }
  .hero-cta, .hero-badges { justify-content: center; }
  .hero-cta .btn { width: 100%; }

  /* Inhalte mittig bündig */
  .section-head, .section-foot { text-align: center; }
  .section-head .kicker { justify-content: center; }
  .section-head .kicker::before { display: none; }
  .svc-filter { justify-content: center; }
  .svc-card-body { text-align: center; }
  .svc-card-link { justify-content: center; }
  .step-card, .trust-card, .city-card, .qual-card, .fund-card, .jobs-point { text-align: center; }
  .step-num, .trust-icon, .city-card-icon, .fund-card-ico, .fund-step-num, .duo-ico { margin-left: auto; margin-right: auto; }
  .city-card, .duo-card, .jobs-point { align-items: center; }
  .jobs-point { flex-direction: column; }
  .benefit-list li { text-align: left; }
  .city-services { justify-content: center; }
  .city-lines { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .areas-band .city-lines { grid-template-columns: 1fr; max-width: 420px; margin: 22px auto 0; }
  .voices-panel { padding: 36px 20px 30px; }
  .areas-band-inner, .cta-inner, .about-text { text-align: center; }
  .about-text .kicker, .about-text h2 { text-align: center; }
  .pg-grades { justify-content: center; }

  .contact-grid { display: flex; flex-direction: column; align-items: stretch; }
  .contact-form-wrap { order: 1; width: 100%; text-align: left; }
  .contact-info { order: 2; width: 100%; }
  .contact-info h2, .contact-info > p { text-align: center; }
  .contact-list { gap: 12px; }
  .contact-list li { flex-direction: column; align-items: center; text-align: center; gap: 10px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 16px; }
  .location-list li { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .location-card { align-items: center; text-align: center; }

  .page-hero { text-align: center; }
  .page-hero .breadcrumb { justify-content: center; }
  .page-hero h1, .page-hero-intro { margin-left: auto; margin-right: auto; }
  .page-hero-icon { display: flex; justify-content: center; }
  .page-hero .kicker { justify-content: center; }
  .page-hero .kicker::before { display: none; }

  .team-text { text-align: center; }
  .team-text .kicker { justify-content: center; }
  .team-text .kicker::before { display: none; }
  .assurance-intro { text-align: center; }
  .assurance-intro .kicker { justify-content: center; }
  .assurance-intro .kicker::before { display: none; }
  .assurance-panel .benefit-list li { text-align: left; }
  .value-card { text-align: left; }
  .legal, .legal-table, .service-main, .faq-item summary, .faq-answer, .cookie-setting-card, .aside-card { text-align: left; }
  .legal-table { display: block; max-width: 100%; overflow-x: auto; }

  /* Footer mittig */
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 0; padding-bottom: 24px; }
  .footer-col { padding: 24px 0; border-bottom: 1px solid var(--line); }
  .footer-col:last-child { border-bottom: 0; }
  .footer-brand .brand { justify-content: center; width: 100%; }
  .footer-brand p, .footer-claim, .footer-credit-line { margin-left: auto; margin-right: auto; }
  .footer-contact { align-items: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 14px; padding-bottom: calc(20px + 60px); }
  .footer-legal { justify-content: center; }

  /* Cookie-Banner als Sheet */
  .cookie-banner { left: 16px; right: 16px; top: 50%; bottom: auto; transform: translateY(-50%); max-width: 440px; }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 22px 20px 18px; max-height: min(82dvh, 560px); overflow-y: auto; box-shadow: var(--shadow-lg), 0 0 0 100vmax rgba(12, 51, 20, .55); }
  .cookie-text { text-align: center; }
  .cookie-actions { flex-direction: column; align-items: stretch; }
  .cookie-actions .btn { width: 100%; }
  .cookie-settings-link { text-align: center; align-self: center; }

  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; border-top: 0; padding-top: 8px; text-align: center; }
  .trust-intro { text-align: center; }
  .trust-intro .kicker { justify-content: center; }
  .trust-intro .kicker::before { display: none; }
  .trust-stats > div { background: rgba(255,255,255,.05); border: 1px solid var(--line-forest); border-radius: var(--radius-sm); padding: 18px 10px 14px; }
  .cookie-setting-head { flex-direction: column; gap: 12px; }
  .hire-strip-line { width: 100%; }
}

/* Touch: Hover-Transitions deaktivieren */
@media (hover: none), (pointer: coarse) {
  .btn-primary:hover, .btn-leaf:hover, .btn-light:hover, .btn-outline-light:hover,
  .svc-card:hover, .trust-card:hover, .step-card:hover, .team-tile:hover,
  .city-card:hover, .qual-card:hover, .fund-card:hover, .duo-card:hover { transform: none; }
}
