/* ============================================================
   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.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  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 {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.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; }

/* ─── Navigation ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 14px 0;
  /* Standardmäßig transparent – auf heller Startseite */
  background: transparent;
}
/* Scrolled-State (Startseite nach unten scrollen) */
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(44,32,24,0.10);
  padding: 8px 0;
}
/* Unterseiten: immer weißer Hintergrund (page-hero ist dunkel) */
.navbar--subpage {
  background: rgba(255,255,255,0.97) !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: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(44,32,24,0.18);
  border: 2px solid var(--primary-mid);
  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;
}
.navbar__logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.navbar__logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 3px;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.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;
  background: linear-gradient(150deg, #FBF7F2 0%, #FAF0DF 55%, #F3EDE3 100%);
  padding-top: 80px;
}
.hero__bg-shapes {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.hero__bg-shapes .shape {
  position: absolute; border-radius: 50%;
}
.hero__bg-shapes .shape-1 {
  width: 600px; height: 600px;
  background: var(--primary);
  opacity: 0.08;
  top: -200px; right: -150px;
}
.hero__bg-shapes .shape-2 {
  width: 300px; height: 300px;
  background: var(--accent);
  opacity: 0.05;
  bottom: -100px; left: 8%;
}
.hero__bg-shapes .shape-3 {
  width: 180px; height: 180px;
  background: var(--mint-dark);
  opacity: 0.12;
  top: 25%; left: 3%;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero__content { position: relative; z-index: 2; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero__badge .badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.hero__title { margin-bottom: 20px; }
.hero__title .highlight { color: var(--accent); }
.hero__title .highlight-amber { color: var(--primary); }
.hero__text {
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  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 { position: relative; z-index: 2; }
.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: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  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;
}
.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: 5px;
  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.15rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.service-card__price .price-compare {
  font-size: 0.9rem;
  color: var(--text-light);
  white-space: nowrap;
  /* KEIN line-through mehr */
  text-decoration: none;
}
.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(4, 1fr);
  gap: 24px;
  text-align: center;
}
.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; }
.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: 46px; height: 46px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(217,138,43,0.4);
}
.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); }

/* ─── 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) ────────────────────────── */
.logo-hero-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.logo-hero-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ─── 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(2, 1fr); }
  .navbar__nav a { padding: 6px 10px; font-size: 0.82rem; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .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-photo-badge { position: static; margin-top: 12px; }

  .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 */
  .stats-banner { padding: 28px 0; }
  .stats-banner__grid { grid-template-columns: 1fr 1fr; gap: 12px 8px; }
  .stats-banner__number { font-size: 1.5rem; }
  .stats-banner__label { font-size: 0.72rem; 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; }

  /* 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: 2 Spalten aber noch kompakter */
  .stats-banner { padding: 22px 0; }
  .stats-banner__grid { grid-template-columns: 1fr 1fr; gap: 10px 6px; }
  .stats-banner__number { font-size: 1.3rem; }
  .stats-banner__label { font-size: 0.68rem; }
  .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; }
