/* ============================================================
   Auxilium – Pflegeberatung Forst Baden
   CI-Palette aus Logo:
     Schmetterling-Orange:  #D98A2B  (warm amber)
     AUXILIUM-Dunkelrot:    #8B1A1A  (crimson/dark red)
     Holz-Grau:             #6B5B4F  (warm taupe)
     Bokeh-Grün:            #C9E1D6  (mint accent)
   ============================================================ */

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  /* Logo-Primärfarbe: Schmetterling Amber-Orange */
  --primary:        #D98A2B;
  --primary-dark:   #B5701A;
  --primary-light:  #FAF0DF;
  --primary-mid:    #F0D5A8;

  /* Logo-Akzentfarbe: AUXILIUM Dunkelrot */
  --accent:         #8B1A1A;
  --accent-dark:    #6B1010;
  --accent-light:   #F5E8E8;

  /* Neutrale Töne – warmes Taupe aus Holztextur */
  --secondary:      #2C2018;   /* fast schwarz, warmbraun */
  --text:           #3A2C1E;
  --text-light:     #7A6550;
  --bg:             #FFFFFF;
  --bg-soft:        #FBF7F2;   /* warmes Cremeweiß */
  --bg-muted:       #F3EDE3;
  --border:         #E8D9C5;

  /* Logo-Bokeh: Minzgrün für sanfte Akzente */
  --mint:           #C9E1D6;
  --mint-dark:      #89C4AE;

  /* Radien & Schatten */
  --radius:         12px;
  --radius-lg:      20px;
  --shadow-sm:      0 2px 8px rgba(44,32,24,0.07);
  --shadow-md:      0 8px 24px rgba(44,32,24,0.11);
  --shadow-lg:      0 16px 48px rgba(44,32,24,0.16);
  --transition:     0.25s ease;

  /* Fonts */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--secondary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-light); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ─── Layout Utilities ───────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section        { padding: 96px 0; }
.section--soft  { background: var(--bg-soft); }
.section--muted { background: var(--bg-muted); }
.section--dark  { background: var(--secondary); color: white; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: white; }
.section--dark p { color: rgba(255,255,255,0.7); }

/* ─── Responsive Grid ────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(217,138,43,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,138,43,0.45);
}
.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(139,26,26,0.3);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,26,26,0.4);
}
/* btn-outline: Überall einheitlich – primary-Amber ausgefüllt */
.btn-outline {
  border: 2px solid var(--primary);
  color: white;
  background: var(--primary);
  box-shadow: 0 4px 16px rgba(217,138,43,0.30);
}
.btn-outline:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,138,43,0.42);
}
.btn-white {
  background: white;
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}
.btn-ghost-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
  background: transparent;
}
.btn-ghost-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.12);
}

/* Buttons im grünen CTA-Kasten */
.btn-green-solid {
  background: white;
  color: #2D7A5E;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-green-solid:hover {
  background: #E6F5EF;
  color: #1F5C46;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.16);
}
.btn-green-ghost {
  border: 2px solid rgba(255,255,255,0.65);
  color: white;
  background: transparent;
}
.btn-green-ghost:hover {
  border-color: white;
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* Mobile-only Kontakt-Link im Nav (auf Desktop versteckt) */
.navbar__nav-cta-mobile { display: none; }

/* ─── #siteHeader-Wrapper ────────────────────────────────── */
/* Wrapper für Navbar (und früher Urlaubsbanner).
   adjustPagePadding() setzt body padding-top auf siteHeader.offsetHeight */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

/* ─── Navigation ─────────────────────────────────────────── */
.navbar {
  /* Navbar sitzt im fixed .site-header – selbst kein fixed mehr */
  position: relative;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
  padding: 10px 0;
  /* Immer weißer Hintergrund – kein transparentes Navbar mehr */
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(44,32,24,0.08);
}
/* Scrolled-State: etwas kompakter + stärkerer Schatten */
.navbar.scrolled {
  padding: 6px 0;
  box-shadow: 0 3px 20px rgba(44,32,24,0.13);
}
/* Unterseiten: weißer Hintergrund (identisch, kein !important nötig) */
.navbar--subpage {
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(44,32,24,0.10);
  padding: 8px 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar__logo-img {
  width: 88px;
  height: 88px;
  border-radius: 0;
  object-fit: contain;
  /* PNG mit Transparenz – kein mix-blend-mode nötig */
  background: transparent;
  mix-blend-mode: normal;
  padding: 0;
  box-shadow: none;
  border: none;
  transition: transform var(--transition);
}
.navbar__logo:hover .navbar__logo-img { transform: scale(1.05); }
.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  justify-content: center;
  height: 88px; /* passt zur Logo-Bildhöhe */
}
.navbar__logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.navbar__logo-sub {
  font-family: var(--font-body);
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  padding: 0 24px;
}
.navbar__nav a {
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  white-space: nowrap;
}
.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--accent);
  background: var(--accent-light);
}
.navbar__cta { flex-shrink: 0; }
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* padding-top wird per JS auf Navbar-Höhe gesetzt (kein Banner: ~68px) */
  padding-top: 68px;
}

.hero {
  /* Echtes Naturfoto als Hintergrund */
  background-image: url('/static/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

/* ── Hero Mikroanimation: Lichtschimmer ──────────────────────────────────── */

/* Lichtschimmer: Overlay pulsiert minimal – simuliert Sonnenlicht durch Blätter */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(251,247,242,0.82) 0%,
    rgba(250,240,223,0.70) 35%,
    rgba(243,237,227,0.28) 58%,
    rgba(200,220,190,0.08) 100%
  );
  pointer-events: none;
  z-index: 1;
  animation: heroLightShimmer 18s ease-in-out infinite alternate;
}

@keyframes heroLightShimmer {
  0%   { opacity: 1.0; }
  25%  { opacity: 0.95; }
  55%  { opacity: 1.0; }
  80%  { opacity: 0.93; }
  100% { opacity: 0.97; }
}

/* 3. Lichtstrahl von oben-links: subtiles God-Ray Glimmen */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  /* Sanfter Übergang unten + God-Ray-Effekt oben-links */
  background:
    linear-gradient(to top, rgba(255,255,255,0.25) 0%, transparent 20%),
    radial-gradient(ellipse 55% 45% at 12% 5%, rgba(255,252,220,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  animation: heroGodRay 22s ease-in-out infinite alternate;
}

@keyframes heroGodRay {
  0%   { opacity: 0.7; }
  40%  { opacity: 1.0; }
  70%  { opacity: 0.8; }
  100% { opacity: 1.0; }
}

/* Respektiert "reduce motion" – alle Hero-Animationen deaktivieren */
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  .hero::after  { animation: none; }
}

/* Hintergrundshapes werden nicht mehr benötigt */
.hero__bg-shapes {
  display: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
  position: relative; z-index: 2;
}
/* Hero-Content bekommt etwas mehr Textschatten für Lesbarkeit auf Foto */
.hero__content {
  position: relative; z-index: 2;
}
.hero__content { position: relative; z-index: 2; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(217,138,43,0.35);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
  box-shadow: 0 2px 16px rgba(44,32,24,0.12);
  backdrop-filter: blur(8px);
}
.hero__badge .badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(217,138,43,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(217,138,43,0); }
}
.hero__title {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.15;
}
.hero__title .highlight { color: var(--accent); }
.hero__title .highlight-amber { color: var(--primary); }
.hero__text {
  font-size: 1.05rem;
  margin-bottom: 38px;
  max-width: 500px;
  line-height: 1.75;
  color: var(--text-light);
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(217,138,43,0.2);
  flex-wrap: wrap;
}
.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--secondary);
}
.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
  line-height: 1.4;
}
/* Hero Visual: Logo freigestellt, kein Rahmen, keine Animation */
.hero__visual {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Logo in voller Texthöhe */
  align-self: stretch;
}
.hero__logo-free {
  width: 100%;
  /* Deutlich größer – Höhe des Hero-Textes links */
  max-width: 560px;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  /* PNG mit Transparenz – drop-shadow reicht */
  mix-blend-mode: normal;
  filter: drop-shadow(0 20px 48px rgba(44,32,24,0.22)) drop-shadow(0 4px 16px rgba(217,138,43,0.18));
}
/* Legacy card (wird nicht mehr verwendet, bleibt für Rückwärtskompatibilität) */
.hero__card-main {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__card-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
}
.hero__floating-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__floating-badge.top-left  { top: -18px; left: -20px; }
.hero__floating-badge.bottom-right { bottom: -18px; right: -20px; }
.hero__floating-badge .badge-icon {
  width: 38px; height: 38px;
  background: var(--primary-light);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.hero__floating-badge .badge-text strong {
  display: block; font-size: 0.88rem; font-weight: 700; color: var(--secondary);
}
.hero__floating-badge .badge-text span {
  font-size: 0.72rem; color: var(--text-light);
}

/* ─── Feature Strip ──────────────────────────────────────── */
.feature-strip {
  background: var(--secondary);
  padding: 28px 0;
}
.feature-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.feature-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
}
.feature-strip__item .icon { font-size: 1.2rem; color: var(--primary); }

/* ─── Cards ──────────────────────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.card__icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.card:hover .card__icon {
  background: var(--primary);
  color: white;
  transform: scale(1.06);
}
.card__title { margin-bottom: 10px; font-size: 1.05rem; }
.card__text  { font-size: 0.875rem; line-height: 1.72; }

/* ─── Info-Icon (contact-info-item) mit FA-Icons ─────────── */
.contact-info-item .info-icon {
  width: 42px; height: 42px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ─── Person Layout (Über Auxilium) ─────────────────────── */
.person-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: flex-start;
}
.person-photo-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.person-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.person-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.person-photo-badge {
  position: absolute;
  bottom: -16px; left: 16px; right: 16px;
  background: white;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--accent);
}
.person-photo-badge i {
  font-size: 1.4rem;
  color: var(--primary);
}
.person-photo-badge strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
}
.person-photo-badge span {
  font-size: 0.75rem;
  color: var(--text-light);
}
.person-logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 20px;
}
.person-logo-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: contain;
  background: white;
  padding: 4px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.person-logo-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}
.person-logo-text {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Badge unterhalb des Fotos (kein Overlay mehr) */
.person-photo-badge--below {
  position: static;
  margin-top: 14px;
  background: white;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--accent);
}
.person-photo-badge--below i {
  font-size: 1.4rem;
  color: var(--primary);
}
.person-photo-badge--below strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
}
.person-photo-badge--below span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Symbol-Box: volle Breite, unterhalb des Zitats in der rechten Spalte */
.person-symbol-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 4px;
}
.person-symbol-img {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  object-fit: contain;
  background: white;
  padding: 6px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.person-symbol-text .person-logo-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}
.person-symbol-text .person-logo-text {
  font-size: 0.83rem;
  line-height: 1.7;
}

.person-text-col { padding-top: 8px; }
.person-quote {
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  position: relative;
}
.person-quote i {
  color: var(--accent);
  opacity: 0.25;
  font-size: 2rem;
  position: absolute;
  top: 12px; right: 16px;
}
.person-quote p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
}
.person-quote cite {
  font-size: 0.8rem;
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}
.person-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.person-value {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.person-value:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.person-value i {
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.person-value__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}
.person-value__text {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── Services Grid (Startseite "Was ich für Sie tue") ───── */
/* Eigenes Grid für gleichmäßige Service-Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.btn-full-width {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  box-sizing: border-box;
}

/* ─── Service Cards (FIXED Layout) ───────────────────────── */
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card__header {
  padding: 22px 20px 18px;
  background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.service-card__icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(217,138,43,0.3);
  transition: all var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(139,26,26,0.3);
}
.service-card__header-text { min-width: 0; flex: 1; overflow: hidden; }
.service-card__title {
  margin-bottom: 4px;
  font-size: 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.service-card__subtitle {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  word-break: break-word;
  display: block;
}
.service-card__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-card__text {
  font-size: 0.875rem;
  line-height: 1.72;
  margin-bottom: 16px;
  flex: 1;
}

/* Preis-Block – sauber und ausgerichtet */
.service-card__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.service-card__price .price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.service-card__price .price-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 84px;
  flex-shrink: 0;
}
.service-card__price .price-new {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  line-height: 1.1;
}
.service-card__price .price-compare {
  font-size: 0.82rem;
  color: var(--text-light);
  white-space: nowrap;
  text-decoration: line-through;
  text-decoration-color: var(--text-light);
}
.service-card__price .price-note {
  font-size: 0.71rem;
  color: var(--text-light);
  margin-top: 1px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.service-card__savings {
  font-size: 0.78rem;
  color: #2D7A3A;
  font-weight: 600;
  background: #EEF8F1;
  border-radius: 6px;
  padding: 5px 10px;
  margin-bottom: 12px;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* ─── Quote Cards ────────────────────────────────────────── */
.quote-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent);
  position: relative;
}
.quote-card__icon {
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 18px; right: 24px;
  font-family: Georgia, serif;
  line-height: 1;
}
.quote-card__text {
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 22px;
}
.quote-card__author { display: flex; align-items: center; gap: 12px; }
.quote-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: white;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.quote-card__name  { font-weight: 700; font-size: 0.9rem; color: var(--secondary); }
.quote-card__role  { font-size: 0.77rem; color: var(--text-light); }

/* ─── Stats Banner ───────────────────────────────────────── */
.stats-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 56px 0;
  color: white;
}
.stats-banner__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.stats-banner__number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
  display: block;
}
.stats-banner__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  margin-top: 6px;
  line-height: 1.4;
}

/* ─── Steps ──────────────────────────────────────────────── */
.step-item { display: flex; gap: 18px; align-items: flex-start; }
.step-number {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(139,26,26,0.3);
}
.step-content { flex: 1; }
.step-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--secondary); }
.step-text  { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ─── Accordion ──────────────────────────────────────────── */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  font-size: 0.95rem; font-weight: 600; color: var(--secondary);
  cursor: pointer; transition: color var(--transition);
  background: none; border: none; text-align: left;
}
.accordion-toggle:hover { color: var(--accent); }
.accordion-toggle .chevron {
  width: 24px; height: 24px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.accordion-toggle.open .chevron { transform: rotate(180deg); }
.accordion-toggle.open { color: var(--accent); }
.accordion-body { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.accordion-body.open { max-height: 400px; }
.accordion-body__inner { padding-bottom: 18px; font-size: 0.875rem; color: var(--text-light); line-height: 1.75; }

/* ─── Funding Box ────────────────────────────────────────── */
.funding-box {
  background: linear-gradient(135deg, var(--primary-light), white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.funding-box__amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 14px 0 6px;
}
.funding-box__label { font-size: 0.88rem; color: var(--text-light); }
.funding-box__note  { font-size: 0.8rem; color: var(--text-light); margin-top: 10px; font-style: italic; }

/* ─── Contact Form ───────────────────────────────────────── */
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.form-group:last-child { margin-bottom: 0; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--secondary); }
.form-input, .form-textarea, .form-select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem; font-family: inherit; color: var(--text);
  background: var(--bg-soft);
  transition: all var(--transition); outline: none; width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(139,26,26,0.10);
}
.form-textarea { resize: vertical; min-height: 120px; }
/* ─── Modernes Form-Feedback (Error + Success) ──────────── */
.form-feedback {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.form-feedback--error {
  background: #fff5f5;
  border: 1px solid #fca5a5;
  color: #7f1d1d;
}
.form-feedback--success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #14532d;
  padding: 20px 24px;
  margin-bottom: 0;
}
.form-feedback__icon {
  font-size: 1.1rem;
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-feedback__text { margin: 0; color: inherit; }
.form-feedback__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: inherit;
}
.form-feedback__check {
  width: 40px;
  height: 40px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Legacy – wird durch .form-feedback--success ersetzt */
.form-success {
  display: none;
  text-align: center; padding: 24px;
  background: #F0FDF4; border: 1px solid #86EFAC;
  border-radius: var(--radius); color: #166534; font-weight: 600;
}

/* ─── Contact Info Items ─────────────────────────────────── */
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; background: white;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-info-item .info-icon {
  width: 42px; height: 42px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item .info-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 3px;
}
.contact-info-item .info-value {
  font-size: 0.9rem; font-weight: 600; color: var(--secondary);
}

/* ─── Page Hero (Unterseiten) ────────────────────────────── */
/* Dunkles Holz + heller Bernstein-Gradient für starken Kontrast */
.page-hero {
  background: linear-gradient(135deg, #1A0D06 0%, #2E1A0F 40%, #3D2415 70%, #2A1509 100%);
  padding: 130px 0 76px;
  color: white;
  position: relative;
  overflow: hidden;
}
/* Amber-Shine von oben rechts */
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(217,138,43,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 5% 90%, rgba(139,26,26,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,200,100,0.08) 0%, transparent 50%);
  pointer-events: none;
}
/* Decorative bokeh circle */
.page-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,225,214,0.10) 0%, transparent 70%);
  top: -100px; right: -80px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
/* Sehr heller Weißton für maximalen Kontrast auf dunklem BG */
.page-hero h1 {
  color: #FFFAF5;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
  letter-spacing: -0.01em;
}
.page-hero p {
  color: rgba(255,245,230,0.90);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
/* Section-Label auf dunklem Hintergrund – Amber mit sichtbarem Kontrast */
.page-hero .section-label {
  color: #FFD580;
  background: rgba(217,138,43,0.22);
  border: 1px solid rgba(255,180,60,0.45);
  font-weight: 800;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

/* ─── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,245,230,0.65);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,245,230,0.65); transition: color var(--transition); }
.breadcrumb a:hover { color: #FFD580; }
.breadcrumb .sep { color: rgba(255,245,230,0.35); }
.breadcrumb .current { color: rgba(255,245,230,0.95); font-weight: 500; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer__logo-img {
  width: 80px; height: 80px;
  border-radius: 10px;
  object-fit: contain;
  /* Weißer Hintergrund: Logo klar lesbar auf dunklem Footer */
  background: #ffffff;
  padding: 8px;
  border: none;
  box-shadow: 0 2px 14px rgba(0,0,0,0.22);
  mix-blend-mode: normal;
}
.footer__logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
}
.footer__desc { font-size: 0.875rem; line-height: 1.72; margin-bottom: 20px; }
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.footer__links li { margin-bottom: 9px; }
.footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.62); transition: color var(--transition); }
.footer__links a:hover { color: var(--primary); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem;
}
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a {
  color: rgba(255,255,255,0.45); font-size: 0.8rem; transition: color var(--transition);
}
.footer__bottom-links a:hover { color: var(--primary); }

/* ─── Leistungen Kategorie-Layout ───────────────────────── */
.kat-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.kat-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 100px;
  background: white;
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.kat-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-1px);
}
.kat-tab-btn i { color: var(--primary); }

.leistungen-kat-section {
  margin-bottom: 48px;
}
.leistungen-kat-section:last-of-type { margin-bottom: 0; }

.leistungen-kat-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.leistungen-kat-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--primary);
  border: 1.5px solid var(--primary-mid);
}
.leistungen-kat-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}
.leistungen-kat-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── Scroll to Top ──────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
  box-shadow: 0 4px 16px rgba(139,26,26,0.4);
  cursor: pointer;
  opacity: 0; transform: translateY(16px);
  transition: all var(--transition);
  z-index: 999; border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* ─── Logo Display (Hero Visual) – Legacy, durch hero__logo-free ersetzt ── */
.logo-hero-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-hero-card img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(44,32,24,0.16));
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.animate-fade-in          { animation: fadeInUp 0.6s ease both; }
.animate-fade-in-delay-1  { animation: fadeInUp 0.6s 0.15s ease both; }
.animate-fade-in-delay-2  { animation: fadeInUp 0.6s 0.30s ease both; }
.animate-fade-in-delay-3  { animation: fadeInUp 0.6s 0.45s ease both; }
.animate-float            { animation: float 4s ease-in-out infinite; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-banner__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .navbar__nav a { padding: 6px 10px; font-size: 0.82rem; }
}

@media (max-width: 900px) {
  /* Tablet: Stats-Banner 1 Spalte sinnvoll */
  .stats-banner__grid { grid-template-columns: 1fr; gap: 20px; max-width: 420px; }

  /* Hero: Logo erscheint ÜBER dem Text auf Mobile */
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    padding: 60px 24px 60px;
  }
  .hero__visual {
    display: flex;
    justify-content: center;
    order: -1; /* Logo zuerst */
  }
  .hero__logo-free {
    max-width: 260px;
  }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  /* 3-spaltig → 2-spaltig bei Tablets */
  .grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  /* Service Cards auf Tablet: 2 nebeneinander */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .grid-3 .service-card { width: 100%; }
  /* Person Layout: stacked */
  .person-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .person-photo-col { position: static; }
  .person-photo {
    height: auto;
    max-height: 480px;
    object-fit: cover;
    object-position: center top;
    width: 100%;
  }
  .person-values { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  /* Mobile Navbar */
  .navbar__nav { display: none; }
  /* Desktop-CTA-Button auf Mobile immer ausblenden */
  .navbar__cta { display: none !important; }
  .navbar__toggle { display: flex; }
  /* Mobile-Menü: navbar__inner als vertikaler Block */
  .navbar.mobile-open {
    background: white !important;
    box-shadow: 0 8px 24px rgba(44,32,24,0.13);
  }
  .navbar.mobile-open .navbar__inner {
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 0;
  }
  /* Logo (order 1) + Toggle (order 2) bleiben in Zeile 1 */
  .navbar.mobile-open .navbar__logo { order: 1; }
  .navbar.mobile-open .navbar__toggle { order: 2; }
  /* Nav kommt in Zeile 2 */
  .navbar.mobile-open .navbar__nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 6px 0 8px;
    gap: 2px;
    border-top: 1px solid var(--border);
    order: 3;
    margin-top: 4px;
  }
  .navbar.mobile-open .navbar__nav a {
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 100%;
    display: block;
    transition: none;
  }
  .navbar.mobile-open .navbar__nav a:hover,
  .navbar.mobile-open .navbar__nav a:focus {
    background: var(--bg-muted);
    color: var(--accent);
    transform: none;
    box-shadow: none;
  }
  /* Kontakt-CTA als letzter Menüpunkt: hervorgehoben */
  .navbar.mobile-open .navbar__nav-cta-mobile {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    padding: 12px 14px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    color: var(--accent) !important;
    background: var(--accent-light) !important;
    border-top: 1px solid var(--border);
    transition: none !important;
  }
  .navbar.mobile-open .navbar__nav-cta-mobile:hover {
    background: var(--accent-light) !important;
    color: var(--accent) !important;
    transform: none !important;
    box-shadow: none !important;
  }

  /* Mobile Grid */
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 24px 18px; }
  .page-hero { padding: 110px 0 60px; }
  .hero__stats { gap: 16px; }

  /* Person-Foto auf Mobile: volle Breite, automatische Höhe */
  .person-photo {
    height: auto;
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .person-logo-box { margin-top: 24px; }
  .person-symbol-box { flex-direction: column; align-items: center; text-align: center; }
  .person-symbol-img { width: 80px; height: 80px; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .feature-strip__inner { gap: 18px; }

  /* Stats-Banner kompakt – Mobile: alle 3 untereinander */
  .stats-banner { padding: 28px 0; }
  .stats-banner__grid { grid-template-columns: 1fr; gap: 20px; max-width: 360px; }
  .stats-banner__number { font-size: 1.8rem; }
  .stats-banner__label { font-size: 0.8rem; margin-top: 3px; }

  /* Footer kompakter auf Mobile */
  .footer { padding: 40px 0 20px; }
  .footer__grid { margin-bottom: 28px; }
  .footer__desc { font-size: 0.82rem; margin-bottom: 14px; }
  .footer__logo-name { font-size: 1.15rem; }
  .footer__links li { margin-bottom: 6px; }
  .footer__links a { font-size: 0.82rem; }

  /* Navbar Logo auf Mobile etwas kleiner */
  .navbar__logo-img { width: 64px; height: 64px; }

  /* Hero auf Mobile: Logo kleiner */
  .hero__logo-free { max-width: 220px; }

  /* Service Cards Mobile: volle Breite, aufgeräumt */
  .service-card {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .service-card__savings { font-size: 0.75rem; }
  .btn.w-full { width: 100%; justify-content: center; display: flex; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__badge { font-size: 0.75rem; }
  /* Stats auf ganz kleinen Bildschirmen: 1 Spalte untereinander */
  .stats-banner { padding: 20px 0; }
  .stats-banner__grid { grid-template-columns: 1fr; gap: 16px; max-width: 300px; }
  .stats-banner__number { font-size: 1.6rem; }
  .stats-banner__label { font-size: 0.75rem; }
  .page-hero { padding: 100px 0 52px; }
  .service-card { max-width: 100%; }
  .service-card__header { padding: 18px 16px 14px; }
  .service-card__body { padding: 14px 16px 18px; }
  /* Footer noch kompakter */
  .footer { padding: 32px 0 16px; }
  .footer__heading { margin-bottom: 10px; }
}

/* ─── CTA Section Green (Schmetterling-Grün) ─────────────── */
.cta-section-green {
  background: linear-gradient(135deg, #4A9B7F, #2D7A5E);
  padding: 72px 0;
}
.cta-section-green__title {
  color: white;
  margin-bottom: 14px;
}
.cta-section-green__text {
  color: rgba(220, 255, 240, 0.90);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.75;
}

/* ─── Utilities ──────────────────────────────────────────── */
.text-center   { text-align: center; }
.text-primary  { color: var(--primary) !important; }
.text-accent   { color: var(--accent) !important; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* ─── Startseite: Kategorien-Kacheln ─────────────────────── */
.home-kat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-kat-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.home-kat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.home-kat-card__icon {
  width: 54px; height: 54px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--primary);
  transition: all var(--transition);
  flex-shrink: 0;
}
.home-kat-card:hover .home-kat-card__icon {
  background: var(--primary);
  color: white;
  transform: scale(1.08);
}
.home-kat-card__name {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.3;
}
.home-kat-card__desc {
  font-size: 0.845rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}
.home-kat-card__arrow {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.home-kat-card:hover .home-kat-card__arrow { gap: 9px; }

@media (max-width: 900px) {
  .home-kat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .home-kat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .home-kat-card { padding: 20px 14px; }
  .home-kat-card__icon { width: 44px; height: 44px; font-size: 1.1rem; }
  .home-kat-card__name { font-size: 0.92rem; }
}

/* ─── Stats: Quellenverweise ──────────────────────────────── */
.stats-banner__source {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}
.stats-banner__source a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.stats-banner__source a:hover {
  color: rgba(255,255,255,0.75);
}

/* ─── Info-Banner Modal ──────────────────────────────────── */
.info-banner-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 13, 6, 0.6);
  z-index: 9800;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.info-banner-backdrop.visible {
  opacity: 1;
}

.info-banner-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%) scale(0.96);
  z-index: 9900;
  width: min(92vw, 620px);
  max-height: 85vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(26, 13, 6, 0.45), 0 4px 16px rgba(26, 13, 6, 0.2);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none !important;
}
.info-banner-modal.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* __bg wird nicht mehr genutzt – Bild direkt am Modal-Element als background-image */
.info-banner-modal__inner {
  /* background kommt per inline-style vom Server (weiß oder halbtransparent) */
  padding: 40px 40px 36px;
  overflow-y: auto;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  /* Kein z-index, kein position:relative nötig – normaler flex-child */
}

.info-banner-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(44, 32, 24, 0.1);
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  color: #2C2018;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}
.info-banner-modal__close:hover {
  background: rgba(44, 32, 24, 0.18);
  transform: scale(1.1) rotate(90deg);
}
.info-banner-modal__close:focus,
.info-banner-modal__close:focus-within,
.info-banner-modal__close:active,
.info-banner-modal__close:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.info-banner-modal__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 32px;
}
.info-banner-modal__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #D98A2B, #B5701A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  box-shadow: 0 4px 14px rgba(217, 138, 43, 0.35);
}
.info-banner-modal__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #2C2018;
  margin: 0;
  line-height: 1.25;
}
.info-banner-modal__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3D2B1A;
}
.info-banner-modal__body p { margin: 0 0 10px; }
.info-banner-modal__body p:last-child { margin-bottom: 0; }
.info-banner-modal__body ul { padding-left: 20px; margin: 0 0 10px; }
.info-banner-modal__body a { color: #D98A2B; text-decoration: underline; }
.info-banner-modal__body strong { color: #2C2018; }
/* Textfarben – bei Hintergrundbild wird Kontrast durch halbtransparenten __inner gewährleistet */

@media (max-width: 540px) {
  .info-banner-modal { width: 96vw; border-radius: 16px; }
  .info-banner-modal__inner { padding: 32px 20px 28px; }
  .info-banner-modal__title { font-size: 1.2rem; }
}

/* ─── Stellenangebote ─────────────────────────────────────── */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.job-card {
  background: white;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.job-card__header {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-muted) 100%);
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--border);
}
.job-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.job-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
  line-height: 1.35;
}
.job-card__subtitle {
  font-size: 0.84rem;
  color: var(--text-light);
}
.job-card__body {
  padding: 18px 22px;
  flex: 1;
}
.job-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-card__footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-light);
}
.job-card__footer-cta {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.job-card:hover .job-card__footer-cta { gap: 9px; }

/* Stellenanzeige Detail-Seite */
.job-detail {
  max-width: 800px;
  margin: 0 auto;
}
.job-detail__header {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.job-detail__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.job-detail__content {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  line-height: 1.8;
}
.job-detail__content h1,
.job-detail__content h2,
.job-detail__content h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}
.job-detail__content p { margin-bottom: 14px; }
.job-detail__content ul, .job-detail__content ol {
  margin-left: 20px;
  margin-bottom: 14px;
}

/* Share-Buttons */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.share-btn-copy { background: var(--bg-muted); color: var(--text); border: 1px solid var(--border); }
.share-btn-copy:hover { background: var(--border); }
.share-btn-whatsapp { background: #25D366; color: white; }
.share-btn-whatsapp:hover { background: #1ebe5d; }
.share-btn-email { background: var(--accent-light); color: var(--accent); border: 1px solid var(--accent); }
.share-btn-email:hover { background: var(--accent); color: white; }
.share-btn-print { background: var(--bg-muted); color: var(--text); border: 1px solid var(--border); }
.share-btn-print:hover { background: var(--border); }

/* Jobs: Leere Seite */
.jobs-empty {
  text-align: center;
  padding: 80px 24px;
}
.jobs-empty__icon {
  font-size: 3rem;
  color: var(--border);
  margin-bottom: 16px;
}
.jobs-empty__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.jobs-empty__text {
  color: var(--text-light);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── Testimonials Slideshow ──────────────────────────────── */
.testimonials-section {
  background: var(--bg-soft);
}
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 4px;
  display: flex;
  justify-content: center;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 720px;
  width: 100%;
  position: relative;
}
.testimonial-card__quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  font-family: Georgia, serif;
  position: absolute;
  top: 16px; left: 24px;
  opacity: 0.3;
  user-select: none;
}
.testimonial-card__text {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--text);
  font-style: italic;
  padding-top: 16px;
  margin-bottom: 24px;
}
.testimonial-card__stars {
  color: #F4B942;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
}
.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.testimonials-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--transition);
  flex-shrink: 0;
}
.testimonials-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.testimonials-dots {
  display: flex;
  gap: 8px;
}
.testimonials-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.testimonials-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ─── Stellenangebote: Print / PDF ──────────────────────────
   JS verschiebt .job-print-area vor dem Drucken direkt an <body>
   und setzt body.printing – so ist die CSS-Kaskade 100% sicher. */
.job-print-area {
  display: none !important;
}
/* beforeprint: body erhält Klasse "printing" */
body.printing > #siteHeader,
body.printing > main,
body.printing > section,
body.printing > .footer,
body.printing > [id="scrollTop"],
body.printing > script {
  display: none !important;
}
body.printing > .job-print-area {
  display: block !important;
  position: fixed !important;
  inset: 0 !important;
  background: white !important;
  z-index: 99999 !important;
  overflow: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}
@media print {
  /* Sicherheitsnetz: Falls beforeprint nicht feuert */
  #siteHeader, .footer, .section, main,
  .navbar, .page-hero, [id="scrollTop"] { display: none !important; }
  .job-print-area {
    display: block !important;
    position: static !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: white !important;
  }
}

/* A4-Flyer für Stellenanzeigen (Admin-Export) */
.flyer-preview {
  width: 210mm;
  min-height: 297mm;
  background: white;
  margin: 0 auto;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 11pt;
  line-height: 1.6;
  border: 1px solid #ddd;
  box-shadow: var(--shadow-lg);
}
.flyer-header {
  background: linear-gradient(135deg, #2C2018 0%, #4A2C14 100%);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.flyer-header img {
  width: 70px; height: 70px;
  object-fit: contain;
}
.flyer-header-text h1 {
  color: white;
  font-size: 20pt;
  font-weight: 700;
  margin: 0;
}
.flyer-header-text p {
  color: rgba(255,255,255,0.65);
  font-size: 9pt;
  margin: 2px 0 0;
}
.flyer-body { padding: 28px 32px; }
.flyer-job-title {
  font-size: 18pt;
  font-weight: 700;
  color: #2C2018;
  border-bottom: 3px solid #D98A2B;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.flyer-content { font-size: 10.5pt; line-height: 1.7; color: #3A2C1E; }
.flyer-footer {
  background: #FBF7F2;
  border-top: 2px solid #D98A2B;
  padding: 18px 32px;
  font-size: 9pt;
  color: #7A6550;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ─── Backup/Update System ────────────────────────────────── */
.backup-list { display: flex; flex-direction: column; gap: 8px; }
.backup-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #FAFAFA;
  border: 1px solid #E8D9C5;
  border-radius: 8px;
  font-size: 0.875rem;
}
.backup-item__info { flex: 1; }
.backup-item__name { font-weight: 600; color: #2C2018; }
.backup-item__meta { font-size: 0.75rem; color: #7A6550; margin-top: 2px; }
.backup-item__actions { display: flex; gap: 6px; flex-shrink: 0; }
.upload-area {
  border: 2px dashed #E8D9C5;
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  background: #FAFAFA;
  transition: all 0.2s;
  cursor: pointer;
}
.upload-area:hover, .upload-area.dragover {
  border-color: #D98A2B;
  background: #FFF8EE;
}
.upload-area i { font-size: 2.5rem; color: #D98A2B; margin-bottom: 12px; display: block; }
.upload-area p { color: #7A6550; font-size: 0.875rem; margin: 0; }
.upload-area strong { color: #2C2018; }

/* ─── Barrierefreiheit: Screen-Reader Only ───────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Barrierefreiheit: Skip-Link ────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--primary, #D98A2B);
  color: white;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #1A0D06;
  outline-offset: 2px;
}

/* ─── Barrierefreiheit: Fokus-Styles ─────────────────────── */
:focus-visible {
  outline: 3px solid #D98A2B;
  outline-offset: 3px;
  border-radius: 3px;
}
/* Für Buttons und Links, die focus-visible nicht unterstützen */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #D98A2B;
  outline-offset: 2px;
}
/* Mouse-Nutzer: kein Outline (bleibt für Tastatur) */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

/* ─── Cookie-Banner ──────────────────────────────────────── */
.cookie-banner-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 13, 6, 0.5);
  z-index: 9700;
  backdrop-filter: blur(2px);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9800;
  display: flex;
  justify-content: center;
  padding: 0 16px 24px;
  pointer-events: none;
}
.cookie-banner__box {
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 28px 32px 24px;
  max-width: 680px;
  width: 100%;
  box-shadow: 0 -8px 40px rgba(26, 13, 6, 0.18);
  pointer-events: all;
  border-top: 3px solid var(--primary, #D98A2B);
}
.cookie-banner__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2C2018;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-banner__desc {
  font-size: 0.85rem;
  color: #5A4535;
  line-height: 1.6;
  margin: 0 0 16px;
}
.cookie-banner__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #E8D9C5;
  background: #FAFAF8;
  font-size: 0.85rem;
}
.cookie-option input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #D98A2B;
}
.cookie-option strong {
  display: block;
  color: #2C2018;
  margin-bottom: 2px;
}
.cookie-option span {
  color: #7A6550;
  font-size: 0.8rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.cookie-btn-all {
  background: #D98A2B;
  color: white;
  border-color: #D98A2B;
}
.cookie-btn-all:hover { background: #B5701A; border-color: #B5701A; }
.cookie-btn-save {
  background: white;
  color: #D98A2B;
  border-color: #D98A2B;
}
.cookie-btn-save:hover { background: #FFF3E0; }
.cookie-btn-necessary {
  background: none;
  color: #7A6550;
  border-color: #E8D9C5;
}
.cookie-btn-necessary:hover { background: #F4F0EB; }

/* Cookie-Einstellungen Button im Footer */
#cookieSettingsBtn {
  text-decoration: none;
  transition: color 0.2s;
}
#cookieSettingsBtn:hover { color: rgba(255,255,255,0.85); text-decoration: underline; }

@media (max-width: 540px) {
  .cookie-banner__box { padding: 20px 16px 16px; border-radius: 16px 16px 0 0; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
}

/* main-content für Skip-Link-Ziel */
#main-content:focus { outline: none; }

/* ─── Ratgeber ──────────────────────────────────────────────── */
.ratgeber-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 8px;
}
/* ─── KI-Kennzeichnung (EU AI Act Art. 50) ───────────────────── */
.ai-figure-wrap {
  position: relative;
  display: block;
}
.ai-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 120px;
  height: auto;
  opacity: 0.92;
  pointer-events: none;
  z-index: 2;
  border-radius: 6px;
}
@media (max-width: 600px) {
  .ai-badge { width: 90px; bottom: 8px; right: 8px; }
}

.ratgeber-card {
  background: white;
  border-radius: 14px;
  padding: 28px 28px 24px;
  box-shadow: 0 2px 12px rgba(44,32,24,0.07);
  border: 1px solid #F0E8DE;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ratgeber-card:hover { box-shadow: 0 6px 28px rgba(44,32,24,0.13); transform: translateY(-2px); }
.ratgeber-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(193,120,45,0.10);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}
.ratgeber-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.ratgeber-card__title a { color: var(--text); text-decoration: none; }
.ratgeber-card__title a:hover { color: var(--accent); }
.ratgeber-card__intro { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; flex: 1; }
.ratgeber-card__link { font-size: 0.85rem; font-weight: 600; color: var(--accent); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.ratgeber-card__link:hover { gap: 10px; }

/* Ratgeber Artikel */
.ratgeber-article__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.ratgeber-article__category { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); background: rgba(193,120,45,0.10); padding: 3px 10px; border-radius: 20px; }
.ratgeber-article__divider { color: var(--text-light); }
.ratgeber-article__read { font-size: 0.8rem; color: var(--text-light); }
.ratgeber-article__title { font-size: 1.8rem; font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.ratgeber-article__intro { font-size: 1.05rem; color: var(--text-light); line-height: 1.7; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid #F0E8DE; }
.ratgeber-article__content { line-height: 1.8; color: var(--text); }
.ratgeber-article__content h2 { font-size: 1.3rem; font-weight: 700; margin: 32px 0 14px; color: var(--text); }
.ratgeber-article__content h3 { font-size: 1.1rem; font-weight: 600; margin: 24px 0 10px; }
.ratgeber-article__content p { margin-bottom: 16px; }
.ratgeber-article__content ul, .ratgeber-article__content ol { margin: 0 0 16px 20px; }
.ratgeber-article__content li { margin-bottom: 6px; }
.ratgeber-article__content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.9rem; }
.ratgeber-article__content blockquote { border-left: 4px solid var(--primary); padding: 12px 20px; background: #FBF7F2; border-radius: 0 8px 8px 0; margin: 20px 0; }
.ratgeber-article__content figure { margin: 0 0 32px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.10); }
.ratgeber-article__content figure img { width: 100%; display: block; object-fit: cover; }
.ratgeber-article__content figcaption { font-size: 0.8rem; color: var(--text-light); padding: 8px 12px; background: #FBF7F2; }
.ratgeber-article__cta { margin-top: 40px; }

.ratgeber-cta-box {
  background: linear-gradient(135deg, #FBF7F2 0%, #F5EFE7 100%);
  border: 1px solid #E8D9C5;
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ratgeber-cta-box__icon { font-size: 2rem; color: var(--primary); flex-shrink: 0; margin-top: 4px; }
.ratgeber-cta-box__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.ratgeber-cta-box__text { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* Verwandte Artikel */
.ratgeber-related { margin-top: 48px; padding-top: 32px; border-top: 1px solid #F0E8DE; }
.ratgeber-related__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.ratgeber-related__card {
  background: white;
  border: 1px solid #F0E8DE;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ratgeber-related__card:hover { box-shadow: 0 4px 16px rgba(44,32,24,0.10); transform: translateY(-2px); color: var(--accent); }
.ratgeber-related__card strong { font-size: 0.9rem; line-height: 1.4; }

@media (max-width: 640px) {
  .ratgeber-grid { grid-template-columns: 1fr; }
  .ratgeber-article__title { font-size: 1.4rem; }
  .ratgeber-cta-box { flex-direction: column; padding: 20px; }
  .ratgeber-related__grid { grid-template-columns: 1fr; }
}

/* Symbol-Box: Schmetterling + Text (Über Uns) – erbt .card-Stil */
.symbol-box {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}
.symbol-box__img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  flex-shrink: 0;
}
.symbol-box__text {
  flex: 1;
}

@media (max-width: 768px) {
  .symbol-box {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 28px;
  }
  .symbol-box__img {
    width: 120px !important;
    max-width: 120px !important;
    height: 120px !important;
    align-self: center;
    flex-shrink: 1;
  }
}

