/* ============================================================
   SPITEX SANCURA — Design System v3
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg:           #FBFAF6;
  --bg-soft:      #E9F4EE;
  --bg-mint:      #DCEDE5;
  --bg-mint-pale: #F1F8F4;
  --bg-aqua:      #DEF0F2;
  --bg-warm:      #F5EFE4;
  --bg-blue:      #E5EEF6;

  --primary:      #1F6B8A;
  --primary-dark: #14506A;
  --primary-soft: #DCEAF1;

  --accent-mint:  #41E3AA;
  --accent-aqua:  #42C6D2;
  --accent-deep:  #2A9B9C;

  --text:         #1F2A2E;
  --text-soft:    #4F5A60;
  --text-muted:   #7E8A90;
  --border:       #E2DFD7;
  --border-soft:  #EDEAE2;
  --white:        #FFFFFF;

  --shadow-xs: 0 1px 2px rgba(20, 80, 106, 0.04);
  --shadow-sm: 0 2px 8px rgba(20, 80, 106, 0.05), 0 1px 2px rgba(20, 80, 106, 0.03);
  --shadow-md: 0 8px 32px rgba(20, 80, 106, 0.07), 0 2px 8px rgba(20, 80, 106, 0.04);
  --shadow-lg: 0 24px 64px rgba(20, 80, 106, 0.09), 0 8px 24px rgba(20, 80, 106, 0.05);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-full: 9999px;

  --container: 1200px;
  --container-narrow: 920px;

  --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ÄNDERUNG #5: Smooth Scroll wird via JS gesteuert (kontrollierbares Easing).
   scroll-padding sorgt für Header-Abstand */
html {
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--primary-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); letter-spacing: -0.015em; font-weight: 600; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.5rem, 2.5vw, 1.85rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.4rem;
  display: inline-block;
}
.lead { font-size: 1.18rem; line-height: 1.65; color: var(--text-soft); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
em.accent { font-style: italic; color: var(--accent-deep); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ============================================================
   LADER
   ============================================================ */
#loader {
  position: fixed; inset: 0; background: var(--bg); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
#loader-symbol {
  width: 110px; height: auto;
  animation: heartbeat 1.3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  transform-origin: center;
}
@keyframes heartbeat {
  0%   { transform: scale(1);    opacity: 0.95; }
  18%  { transform: scale(1.18); opacity: 1; }
  30%  { transform: scale(1);    opacity: 0.95; }
  46%  { transform: scale(1.12); opacity: 1; }
  60%  { transform: scale(1);    opacity: 0.92; }
  100% { transform: scale(1);    opacity: 0.95; }
}

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.site-header.scrolled { border-bottom-color: var(--border-soft); box-shadow: var(--shadow-xs); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2rem; max-width: var(--container); margin: 0 auto; gap: 2rem;
}
.nav-logo img { height: 44px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-menu a {
  font-size: 0.98rem; font-weight: 500; color: var(--text);
  position: relative; padding: 0.4rem 0; transition: color var(--t-fast);
  white-space: nowrap;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--accent-deep);
  transition: width var(--t-base);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu a.active::after, .nav-menu a:hover::after { width: 100%; }

/* Submenü (Dropdown) — kein Pfeil sichtbar, nur Hover öffnet */
.nav-menu .has-sub { position: relative; }
.nav-submenu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  box-shadow: 0 12px 30px rgba(20, 80, 106, 0.12);
  list-style: none;
  padding: 0.6rem 0;
  margin: 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
}
.nav-menu .has-sub:hover > .nav-submenu,
.nav-menu .has-sub:focus-within > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-submenu li { margin: 0; }
.nav-submenu a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
}
.nav-submenu a:hover { background: var(--bg-soft); color: var(--accent-deep); }
.nav-submenu a::after { display: none; }

@media (max-width: 980px) {
  .nav-submenu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    padding: 0 0 0 1rem;
    min-width: 0;
  }
  .nav-submenu a { padding: 0.6rem 0; font-size: 1rem; }
}

/* ÄNDERUNG #10: Nur EIN "Beratung anfordern" — der separate Menüpunkt entfällt
   Header-CTA mit Logo-Farbverlauf (Mint → Aqua) */
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, #41E3AA 0%, #42C6D2 100%);
  color: var(--white);
  padding: 0.78rem 1.5rem; border-radius: var(--r-md);
  font-size: 0.95rem; font-weight: 600;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(66, 198, 210, 0.25);
}
.nav-cta:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(66, 198, 210, 0.4);
  background: linear-gradient(135deg, #2ECC9A 0%, #2AAFBC 100%);
}

.menu-toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--r-md); color: var(--text);
}
.menu-toggle svg { width: 24px; height: 24px; }

@media (max-width: 980px) {
  .nav-menu, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .nav-menu.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); padding: 1rem 2rem 2rem;
    border-bottom: 1px solid var(--border-soft); box-shadow: var(--shadow-md);
  }
  .nav-menu.open li { border-bottom: 1px solid var(--border-soft); }
  .nav-menu.open li:last-child { border-bottom: none; }
  .nav-menu.open a { display: block; padding: 1rem 0; font-size: 1.05rem; }
  .nav-menu.open .mobile-cta {
    background: var(--primary); color: var(--white); text-align: center;
    border-radius: var(--r-md); margin-top: 1rem; padding: 1rem;
  }
  .nav-menu.open .mobile-cta::after { display: none; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.8rem; border-radius: var(--r-md);
  font-size: 1rem; font-weight: 600; font-family: inherit;
  transition: all var(--t-fast); cursor: pointer;
  text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--white); color: var(--primary); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-2px); }
/* Logo-Farbverlauf-Variante (Beratung anfordern) */
.btn-gradient {
  background: linear-gradient(135deg, #41E3AA 0%, #42C6D2 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(66, 198, 210, 0.28);
  border: none;
}
.btn-gradient:hover {
  color: var(--white);
  background: linear-gradient(135deg, #2ECC9A 0%, #2AAFBC 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(66, 198, 210, 0.4);
}

/* ============================================================
   ÄNDERUNG #1: HERO mit Video-Hintergrund (Vollbild)
   ============================================================ */
.hero-video {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

/* Hintergrund-Layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg video,
.hero-bg .hero-fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-fallback-img {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(31, 107, 138, 0.30), transparent 60%),
    linear-gradient(135deg, #4a6470 0%, #2d4855 50%, #1a3340 100%);
}

/* Dunkler Overlay über dem Video für Lesbarkeit */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(20, 35, 45, 0.78) 0%,
      rgba(20, 35, 45, 0.55) 40%,
      rgba(20, 35, 45, 0.20) 70%,
      rgba(20, 35, 45, 0.05) 100%);
}

/* Sanfter Übergang am unteren Rand zur nächsten Sektion */
.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
}

.hero-video .container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.hero-content {
  max-width: 720px;
}
.hero-content .eyebrow {
  color: var(--accent-mint);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}
.hero-content h1 em {
  color: var(--accent-mint);
  font-style: italic;
  font-weight: 400;
}
.hero-content .lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.22rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  max-width: 600px;
}
.hero-content .hero-actions {
  display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap;
}
.hero-content .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-content .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
  color: var(--white);
}

/* Trust-Zeile auf Hero-Video */
.hero-trust {
  display: flex; gap: 2.5rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  max-width: 600px;
}
.hero-trust > div { font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.hero-trust strong {
  display: block; color: var(--accent-mint);
  font-size: 1.6rem; font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 0.2rem;
}

@media (max-width: 880px) {
  .hero.hero-video {
    height: 55vh;
    min-height: 400px;
    max-height: 540px;
  }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(20, 35, 45, 0.70) 0%,
      rgba(20, 35, 45, 0.55) 100%);
  }
  .hero-trust { flex-wrap: wrap; gap: 1.2rem 2rem; }
}

/* HERO mit Video-Hintergrund — feste Höhe wie Pflegewegweiser,
   Video füllt via object-fit: cover, links/rechts Cropping bei schmaler Ansicht */
.hero.hero-video {
  padding: 0;
  width: 100%;
  height: 75vh;
  min-height: 540px;
  max-height: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--text);
  text-align: center;
  overflow: hidden;
}

/* FADE-IN des Videos nur beim ersten Laden */
.hero-video-bg video {
  opacity: 0;
  animation: video-fade-in 1.8s ease-out 0.3s forwards;
}
@keyframes video-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero.hero-video::before, .hero.hero-video::after { display: none; }
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #2C3E50 0%, #1F6B8A 100%);
}
.hero-video-bg video,
.hero-video-bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-bg .video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2rem;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(65, 227, 170, 0.15), transparent 60%),
    linear-gradient(135deg, #2C3E50 0%, #1F6B8A 80%, #2A9B9C 100%);
}
.hero-video-bg .video-placeholder svg { width: 80px; height: 80px; opacity: 0.4; margin-bottom: 1rem; }
.hero-video-bg .video-placeholder span { font-size: 0.95rem; font-style: italic; max-width: 480px; line-height: 1.5; }
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.38) 50%, rgba(0,0,0,0.50) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero.hero-video .container {
  position: relative;
  z-index: 2;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  max-width: 820px;
}
.hero.hero-video .hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.hero.hero-video h1.hero-h1-eyebrow {
  color: #41E3AA;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
}
.hero.hero-video .hero-headline {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 4px 40px rgba(0, 0, 0, 0.35);
}
.hero.hero-video em.accent {
  color: #41E3AA;
  font-style: italic;
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 4px 40px rgba(0, 0, 0, 0.35);
}
.hero.hero-video .lead {
  color: rgba(255,255,255,0.98);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 500;
  max-width: 620px;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.hero.hero-video .eyebrow {
  color: #41E3AA;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.hero.hero-video .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.hero.hero-video .hero-trust {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 1.6rem;
  margin-top: 1rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero.hero-video .hero-trust > div {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero.hero-video .hero-trust strong {
  color: #41E3AA;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.hero.hero-video .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.hero.hero-video .btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
  color: var(--white);
}
@media (max-width: 720px) {
  .hero.hero-video {
    aspect-ratio: auto;
    height: 85vh;
    min-height: 600px;
    max-height: 820px;
  }
  .hero.hero-video .container { padding-top: 3rem; padding-bottom: 3rem; }
  .hero.hero-video .hero-trust { gap: 1.5rem; }
}

/* Karten — gleiche Höhe (Flexbox) */
.cards-grid { align-items: stretch; }
.card { display: flex; flex-direction: column; }
.card p { flex-grow: 1; }
.card .card-link { margin-top: auto; padding-top: 1.5rem; }

/* HERO Eintritts-Animation */
body.hero-entrance .hero-content > * {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
body.hero-entrance .hero-content > *:nth-child(1) { animation-delay: 0.10s; }
body.hero-entrance .hero-content > *:nth-child(2) { animation-delay: 0.22s; }
body.hero-entrance .hero-content > *:nth-child(3) { animation-delay: 0.34s; }
body.hero-entrance .hero-content > *:nth-child(4) { animation-delay: 0.46s; }
body.hero-entrance .hero-content > *:nth-child(5) { animation-delay: 0.58s; }
@keyframes hero-rise { to { opacity: 1; transform: translateY(0); } }

/* Page-Hero (Unterseiten) */
.page-hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, var(--bg-aqua) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-soft);
  position: relative; overflow: hidden;
}
.page-hero .container { text-align: center; max-width: 760px; position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero .lead { max-width: 620px; margin: 0 auto; }
.breadcrumb { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }

/* SECTION HEADERS */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--text-soft); font-size: 1.1rem; }

/* ============================================================
   ÄNDERUNG #2: Karten alle gleich hoch + "Mehr erfahren" unten
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: stretch;
}
.cards-grid.two { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  /* Gleiche Höhe + Link unten ausgerichtet */
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(42, 155, 156, 0.18); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; color: var(--accent-deep);
  box-shadow: var(--shadow-xs);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.5rem; margin-bottom: 0.8rem; font-weight: 500; }
.card p {
  color: var(--text-soft); font-size: 1rem; line-height: 1.6;
  flex-grow: 1; /* drückt den Link nach unten */
}
.card-link {
  margin-top: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.95rem; font-weight: 600; color: var(--primary);
  align-self: flex-start;
}
.card-link svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.card:hover .card-link svg { transform: translateX(4px); }

.card.warm { background: var(--bg-warm); }
.card.mint { background: var(--bg-mint); }
.card.aqua { background: var(--bg-aqua); }

@media (max-width: 880px) {
  .cards-grid, .cards-grid.two { grid-template-columns: 1fr; }
}

/* FEATURE LIST */
.feature-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem;
}
.feature { display: flex; gap: 1.2rem; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  border-radius: var(--r-md); background: var(--bg-mint); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h4 { margin-bottom: 0.3rem; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 1.05rem; }
.feature p { font-size: 0.98rem; color: var(--text-soft); margin: 0; }

@media (max-width: 720px) { .feature-list { grid-template-columns: 1fr; } }

/* ============================================================
   ÄNDERUNG #5: SERVICE BLOCK — Nummern weg, Titel größer
   ============================================================ */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; margin-bottom: 6rem;
  /* Damit der Sprung-Anker nicht hinter Header verschwindet */
  scroll-margin-top: 100px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block .image-placeholder,
.service-block .image-real {
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--bg-aqua) 0%, var(--bg-mint) 100%);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  color: var(--text-muted); text-align: center; padding: 2rem;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.service-block .image-real { padding: 0; }
.service-block .image-real img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-block .image-placeholder svg { width: 70px; height: 70px; opacity: 0.4; margin-bottom: 1rem; color: var(--accent-deep); }
.service-block .image-placeholder span { font-size: 0.9rem; font-style: italic; }

/* ÄNDERUNG #5: Eyebrow ohne Nummer, größer */
.service-content .eyebrow {
  color: var(--accent-deep);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}
/* ÄNDERUNG #5: Service-Titel deutlich größer */
.service-content h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.service-content > p { color: var(--text-soft); margin-bottom: 1.5rem; }

.service-list { list-style: none; margin-top: 1.5rem; }
.service-list li {
  padding: 0.7rem 0 0.7rem 2rem;
  position: relative; color: var(--text); font-size: 1rem;
  border-bottom: 1px solid var(--border-soft);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 1.15rem;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent-deep);
  border-bottom: 2px solid var(--accent-deep);
  transform: rotate(-45deg);
}

/* Highlight-Box für 24h-Betreuung */
.highlight-box {
  margin-top: 1.8rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-mint);
  border-left: 3px solid var(--accent-deep);
  border-radius: var(--r-md);
  font-size: 0.98rem;
}
.highlight-box strong { color: var(--accent-deep); display: block; margin-bottom: 0.3rem; font-weight: 600; }
.highlight-box p { color: var(--text-soft); margin: 0; }

@media (max-width: 880px) {
  .service-block { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 4rem; }
  .service-block.reverse { direction: ltr; }
}

/* TRUST */
.trust-section {
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, var(--bg-aqua) 0%, transparent 70%),
    var(--bg-soft);
  border-radius: var(--r-xl); padding: 5rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}
.trust-section .container-narrow { padding: 0; position: relative; z-index: 1; }
.trust-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin-top: 3rem; padding-top: 3rem;
  border-top: 1px solid rgba(31, 107, 138, 0.15);
}
.trust-stats > div { text-align: center; }
.trust-stats strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 400;
  color: var(--accent-deep); margin-bottom: 0.4rem; line-height: 1;
}
.trust-stats span { font-size: 0.95rem; color: var(--text-soft); }

@media (max-width: 720px) {
  .trust-section { padding: 3rem 1.5rem; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.team-card { text-align: left; }
.team-photo {
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--bg-aqua) 0%, var(--bg-mint) 100%);
  aspect-ratio: 4 / 5; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  color: var(--accent-deep); overflow: hidden; box-shadow: var(--shadow-sm);
}
.team-photo svg { width: 70px; height: 70px; opacity: 0.4; margin-bottom: 0.8rem; }
.team-photo span { font-size: 0.85rem; font-style: italic; padding: 0 1rem; text-align: center; color: var(--text-soft); }
.team-photo-real { padding: 0; background: none; }
.team-photo-real img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; margin-bottom: 0.2rem; }
.team-role {
  font-size: 0.95rem; color: var(--accent-deep); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1rem;
}
.team-bio { color: var(--text-soft); font-size: 1rem; line-height: 1.7; }

@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value { padding: 2rem 0; border-top: 2px solid var(--accent-deep); }
.value-num { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--accent-deep); margin-bottom: 1rem; letter-spacing: 0.1em; font-weight: 600; }
.value h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 0.8rem; }
.value p { color: var(--text-soft); font-size: 0.98rem; }

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

/* ============================================================
   ÄNDERUNG #4: CTA-Block mit kreativen Varianten
   ============================================================ */
.cta-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 5rem 3rem; border-radius: var(--r-xl);
  text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute;
  top: -40%; right: -15%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(65, 227, 170, 0.20) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.cta-block::after {
  content: ''; position: absolute;
  bottom: -30%; left: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(66, 198, 210, 0.18) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.cta-block h2 { color: var(--white); margin-bottom: 1.2rem; position: relative; }
.cta-block p { color: rgba(255, 255, 255, 0.85); font-size: 1.15rem; max-width: 560px; margin: 0 auto 2rem; position: relative; }
.cta-block .btn-primary { background: var(--white); color: var(--primary); position: relative; }
.cta-block .btn-primary:hover { background: var(--bg); color: var(--primary-dark); }
.cta-contacts {
  display: flex; justify-content: center; gap: 2.5rem;
  margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  flex-wrap: wrap; position: relative;
}
.cta-contacts a { color: var(--white); font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; }
.cta-contacts a:hover { color: var(--accent-mint); }
.cta-contacts svg { width: 18px; height: 18px; }

@media (max-width: 720px) { .cta-block { padding: 3rem 1.5rem; } }

/* KONTAKT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; margin-bottom: 1.8rem; }
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem 0; border-bottom: 1px solid var(--border-soft);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail .icon {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: var(--r-md); background: var(--bg-mint); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail .icon svg { width: 20px; height: 20px; }
.contact-detail strong {
  display: block; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.3rem;
}
.contact-detail p, .contact-detail a { font-size: 1.05rem; color: var(--text); line-height: 1.5; }

.contact-form { background: var(--bg-soft); padding: 2.5rem; border-radius: var(--r-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.form-group label .required { color: #C84B47; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  background: var(--white); font-family: inherit; font-size: 1rem; color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(42, 155, 156, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.9rem; color: var(--text-soft);
  margin-bottom: 1.5rem; line-height: 1.5;
}
.form-checkbox input { width: auto; margin-top: 0.2rem; }
.form-error {
  padding: 1rem; border-radius: var(--r-md);
  margin-bottom: 1rem; font-size: 0.95rem; display: none;
  background: #FDF1F0; color: #9F3936; border: 1px solid #F5C6C2;
}
.form-error.show { display: block; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.8rem; }
}

/* ============================================================
   ÄNDERUNG #10: Erfolgs-Modal nach Formular-Absendung
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(20, 35, 45, 0.65);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.show { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  max-width: 480px; width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal-overlay.show .modal { transform: translateY(0) scale(1); }

.modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.8rem;
  display: inline-flex; align-items: center; gap: 0.7rem;
  flex-wrap: wrap; justify-content: center;
}
.modal h3 .heart-inline {
  width: 32px; height: 32px;
  display: inline-block; vertical-align: middle;
}
.modal p {
  color: var(--text-soft); font-size: 1.05rem;
  margin-bottom: 1.8rem; line-height: 1.6;
}
.modal-close {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: var(--primary); color: var(--white);
  border-radius: var(--r-md); font-weight: 600; font-size: 0.98rem;
  transition: background var(--t-fast);
}
.modal-close:hover { background: var(--primary-dark); }

/* ============================================================
   ÄNDERUNG #9: FAQ
   ============================================================ */
.faq-grid {
  max-width: 820px; margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-item:hover { border-color: rgba(42, 155, 156, 0.3); }
.faq-item[open] { border-color: var(--accent-deep); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 1.3rem 1.5rem;
  cursor: pointer; list-style: none;
  font-weight: 600; font-size: 1.05rem; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  color: var(--accent-deep);
  transition: transform var(--t-fast);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-soft); line-height: 1.7;
}

/* ============================================================
   ÄNDERUNG #8: Marketing-Box (für Angehörigenpflege)
   ============================================================ */
.marketing-box {
  background: linear-gradient(135deg, var(--bg-mint) 0%, var(--bg-aqua) 100%);
  padding: 3rem; border-radius: var(--r-xl);
  text-align: center; margin: 3rem auto; max-width: 720px;
  position: relative; overflow: hidden;
}
.marketing-box::before {
  content: ''; position: absolute;
  top: -50%; right: -20%; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(65, 227, 170, 0.25) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.marketing-box .price-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 600;
  color: var(--accent-deep); line-height: 1;
  margin-bottom: 0.5rem;
  position: relative;
}
.marketing-box .price-big small {
  font-size: 1.5rem; color: var(--text-soft);
  font-weight: 400;
}
.marketing-box .price-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 1.2rem;
  display: inline-block;
}
.marketing-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; margin-bottom: 0.8rem;
  position: relative;
}
.marketing-box p {
  color: var(--text-soft); font-size: 1rem;
  max-width: 540px; margin: 0 auto;
  position: relative;
}

/* Bullet-Liste Stats für Angehörigen-Daten */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin: 2.5rem 0;
}
.stat-item {
  text-align: center; padding: 1.5rem;
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
}
.stat-item .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600;
  color: var(--accent-deep);
  line-height: 1; margin-bottom: 0.5rem;
}
.stat-item .stat-label {
  font-size: 0.95rem; color: var(--text-soft);
  line-height: 1.4;
}

@media (max-width: 720px) {
  .stats-row { grid-template-columns: 1fr; gap: 1rem; }
  .marketing-box { padding: 2rem 1.5rem; }
  .marketing-box .price-big { font-size: 3rem; }
}

/* ============================================================
   ÄNDERUNG #7: FOOTER mit Pastell-Verlauf (wie SpitexDona)
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg,
    rgba(252, 251, 248, 0) 0%,
    var(--bg-mint-pale) 30%,
    var(--bg-aqua) 100%);
  color: var(--text-soft);
  padding: 6rem 0 2rem;
  margin-top: 6rem;
  position: relative;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand img {
  height: 44px; margin-bottom: 1.2rem;
  /* Original-Farbe — keine Invertierung mehr */
}
.footer-brand p {
  color: var(--text-soft); font-size: 0.95rem; line-height: 1.6;
}
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; color: var(--text-soft); font-size: 0.95rem; }
.footer-col a {
  color: var(--text-soft); font-size: 0.95rem;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--accent-deep); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 107, 138, 0.15);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: var(--text-muted);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: var(--text-soft); }
.footer-bottom a:hover { color: var(--accent-deep); }
.footer-legal { display: flex; gap: 1.4rem; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INLINE-KONTAKTFORMULAR (auf mehreren Seiten)
   ============================================================ */
.kontakt-inline {
  background:
    radial-gradient(ellipse at top right, rgba(65, 227, 170, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(66, 198, 210, 0.08) 0%, transparent 50%),
    var(--bg);
  padding: 6rem 0;
  position: relative;
}
.kontakt-inline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.kontakt-inline-info h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}
.kontakt-inline-info > p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.kontakt-inline-info .contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kontakt-inline-info .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.kontakt-inline-info .contact-list li:last-child { border-bottom: none; }
.kontakt-inline-info .contact-list .icon-bubble {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(65, 227, 170, 0.15) 0%, rgba(66, 198, 210, 0.15) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-deep);
}
.kontakt-inline-info .contact-list .icon-bubble svg { width: 18px; height: 18px; }
.kontakt-inline-info .contact-list strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.kontakt-inline-info .contact-list a {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 500;
}
.kontakt-inline-info .contact-list a:hover { color: var(--accent-deep); }

.kontakt-inline-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--r-xl);
  box-shadow: 0 14px 40px rgba(20, 80, 106, 0.08);
  border: 1px solid var(--border-soft);
}
.kontakt-inline-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.kontakt-inline-form .form-field {
  margin-bottom: 1rem;
}
.kontakt-inline-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.kontakt-inline-form label .req { color: #C24545; }
.kontakt-inline-form input[type="text"],
.kontakt-inline-form input[type="email"],
.kontakt-inline-form input[type="tel"],
.kontakt-inline-form select,
.kontakt-inline-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.kontakt-inline-form input:focus,
.kontakt-inline-form select:focus,
.kontakt-inline-form textarea:focus {
  outline: none;
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(42, 155, 156, 0.12);
}
.kontakt-inline-form textarea { min-height: 120px; resize: vertical; }
.kontakt-inline-form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1.2rem 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.kontakt-inline-form .checkbox-row input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent-deep);
}
.kontakt-inline-form .form-error {
  display: none;
  background: #FBE8E8;
  color: #8B2424;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.kontakt-inline-form .form-error.show { display: block; }
.kontakt-inline-form .btn-gradient { width: 100%; justify-content: center; }

@media (max-width: 880px) {
  .kontakt-inline-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .kontakt-inline-form { padding: 1.8rem; }
  .kontakt-inline-form .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   MIT/OHNE — Vergleichs-Block (Pflegewegweiser-Stil)
   ============================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 980px;
  margin: 3rem auto 0;
}
.compare-card {
  padding: 2.5rem;
  border-radius: var(--r-lg);
  position: relative;
}
.compare-card.compare-with {
  background: linear-gradient(135deg, rgba(65, 227, 170, 0.10) 0%, rgba(66, 198, 210, 0.10) 100%);
  border: 1px solid rgba(65, 227, 170, 0.25);
}
.compare-card.compare-without {
  background: var(--bg-warm);
  border: 1px solid var(--border-soft);
}
.compare-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}
.compare-card ul { list-style: none; padding: 0; margin: 0; }
.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.7rem 0;
  font-size: 0.98rem;
  color: var(--text);
}
.compare-card .compare-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 0.15rem;
}
.compare-with .compare-icon { color: var(--accent-deep); }
.compare-without .compare-icon { color: #B8956E; opacity: 0.8; }

@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card { padding: 1.8rem; }
}

/* ============================================================
   3-SCHRITTE-PROZESS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.step-item {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #41E3AA 0%, #42C6D2 100%);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  font-feature-settings: "lnum" 1;
  font-variant-numeric: lining-nums;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(66, 198, 210, 0.3);
}
.step-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.step-item p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2rem 1.5rem; }
  .step-item { padding: 1.5rem 0.5rem; }
  .step-item h3 { font-size: 1.3rem; }
  .step-item p { font-size: 0.92rem; }
}

@media (max-width: 420px) {
  .steps-grid { gap: 1.5rem 1rem; }
  .step-number { width: 64px; height: 64px; font-size: 2rem; }
  .step-item h3 { font-size: 1.15rem; }
  .step-item p { font-size: 0.88rem; }
}

/* ============================================================
   KARTE (Leaflet) — auf Kontaktseite
   ============================================================ */
.map-container {
  width: 100%;
  height: 380px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 30px rgba(20, 80, 106, 0.08);
  background: var(--bg-soft);
}
#sancura-map { width: 100%; height: 100%; }
.leaflet-container { background: var(--bg-soft) !important; font-family: inherit !important; }
.leaflet-popup-content-wrapper { border-radius: var(--r-md) !important; box-shadow: 0 8px 24px rgba(20, 80, 106, 0.18) !important; }
.leaflet-popup-content { font-family: inherit !important; font-size: 0.92rem !important; line-height: 1.55 !important; margin: 14px 18px !important; }
.leaflet-popup-content strong { color: var(--accent-deep); font-size: 1rem; }
.leaflet-popup-content a { color: var(--accent-deep); font-weight: 600; }
.leaflet-control-attribution { font-size: 10px !important; }

/* Pin-Marker leicht heben */
.leaflet-marker-icon { filter: drop-shadow(0 4px 8px rgba(20, 80, 106, 0.25)); }

/* ============================================================
   MODAL — Bestätigung nach Kontaktformular
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 35, 45, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-card {
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 3.5rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 32px 80px rgba(20, 80, 106, 0.25);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal-overlay.show .modal-card { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-soft);
  transition: background var(--t-fast), color var(--t-fast);
}
.modal-close:hover { background: var(--bg-mint); color: var(--accent-deep); }
.modal-close svg { width: 18px; height: 18px; }
.modal-heart {
  width: 100px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  animation: heartbeat 1.3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  transform-origin: center;
}
.modal-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.modal-card p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.modal-heart-bottom {
  width: 32px; height: auto;
  margin: 1.5rem auto 0;
  display: block;
  opacity: 0.6;
}
.modal-card .btn {
  margin-top: 0.5rem;
}

/* ============================================================
   FAQ Akkordeon
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  transition: border-color var(--t-base);
}
.faq-item:first-child { border-top: 1px solid var(--border-soft); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--accent-deep); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-mint);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t-base), background var(--t-fast);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent-deep); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.faq-item.open .faq-answer {
  opacity: 1;
}
.faq-answer-inner {
  padding: 0 0 1.5rem 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-answer-inner p { margin-bottom: 0.8rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ====================================================
   FAQ — verbesserte Variante (grössere Schrift, gerahmt)
   ==================================================== */
.faq-list-boxed {
  max-width: 880px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-list-boxed .faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  background: var(--white);
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
.faq-list-boxed .faq-item:hover {
  border-color: rgba(66, 198, 210, 0.5);
  background: linear-gradient(135deg, rgba(65, 227, 170, 0.04) 0%, rgba(66, 198, 210, 0.04) 100%);
  box-shadow: 0 6px 18px rgba(66, 198, 210, 0.10);
}
.faq-list-boxed .faq-item:hover .faq-icon {
  background: linear-gradient(135deg, #41E3AA 0%, #42C6D2 100%);
  color: var(--white);
}
.faq-list-boxed .faq-item:hover .faq-question {
  color: var(--accent-deep);
}
.faq-list-boxed .faq-item.open {
  border-color: var(--accent-deep);
  background: linear-gradient(135deg, rgba(65, 227, 170, 0.06) 0%, rgba(66, 198, 210, 0.06) 100%);
  box-shadow: 0 8px 24px rgba(20, 80, 106, 0.10);
}
.faq-list-boxed .faq-question {
  padding: 1rem 1.6rem;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
}
.faq-list-boxed .faq-answer-inner {
  padding: 0 1.6rem 1.1rem 1.6rem;
  font-size: 1.02rem;
}

/* ============================================================
   ANGEHÖRIGEN-FEATURE auf Homepage
   ============================================================ */
.angehoerige-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  background:
    radial-gradient(ellipse at top right, rgba(65, 227, 170, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(66, 198, 210, 0.10) 0%, transparent 50%),
    var(--bg);
  padding: 4rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-soft);
}
.angehoerige-feature-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.4rem;
  font-weight: 600;
}
.angehoerige-feature-content p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.angehoerige-feature-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.angehoerige-feature-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ang-stat {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.8rem 2rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 24px rgba(20, 80, 106, 0.06);
  text-align: center;
}
.ang-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  background: linear-gradient(135deg, #2A9B9C 0%, #1F6B8A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.ang-stat-label {
  font-size: 0.92rem;
  color: var(--text-soft);
}

@media (max-width: 980px) {
  .angehoerige-feature { grid-template-columns: 1fr; padding: 2.5rem; gap: 2rem; }
  .angehoerige-feature-stats { flex-direction: row; }
  .ang-stat { flex: 1; padding: 1.4rem; }
  .ang-stat-num { font-size: 1.8rem; }
}
@media (max-width: 640px) {
  .angehoerige-feature-stats { flex-direction: column; }
  .angehoerige-feature { padding: 2rem 1.5rem; }
}

/* 4-Karten-Grid responsive */
.cards-grid[style*="repeat(4"] { gap: 1.5rem; }
@media (max-width: 1100px) {
  .cards-grid[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .cards-grid[style*="repeat(4"] { grid-template-columns: 1fr !important; }
}

/* ============================================================
   KONTAKT — direct (Telefon/Mail/Adresse als 4er-Grid)
   ============================================================ */
.kontakt-direct {
  background: var(--bg-warm);
  padding: 5rem 0;
}
.kontakt-direct-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.kontakt-direct-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}
a.kontakt-direct-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(20, 80, 106, 0.10);
  border-color: rgba(42, 155, 156, 0.35);
  color: var(--text);
}
.kontakt-direct-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(65, 227, 170, 0.18) 0%, rgba(66, 198, 210, 0.18) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  margin-bottom: 0.4rem;
}
.kontakt-direct-icon svg { width: 24px; height: 24px; }
.kontakt-direct-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-soft);
}
.kontakt-direct-value {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.4;
  font-weight: 500;
}

@media (max-width: 880px) { .kontakt-direct-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .kontakt-direct-grid { grid-template-columns: 1fr; } }

/* FADE-IN beim Scrollen */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  #loader-symbol, .modal-heart { animation: none; }
}

/* ============================================================
   INTERAKTIVE 3-SCHRITTE (Homepage)
   ============================================================ */
.steps-interactive {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.step-interactive-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
  text-align: center;
}
.step-interactive-item:hover {
  border-color: rgba(66, 198, 210, 0.5);
  background: linear-gradient(135deg, rgba(65, 227, 170, 0.04) 0%, rgba(66, 198, 210, 0.04) 100%);
  box-shadow: 0 4px 16px rgba(66, 198, 210, 0.10);
}
.step-interactive-item .step-number {
  width: 48px; height: 48px;
  font-size: 1.5rem;
  margin: 0 auto 0.8rem;
}
.step-interactive-item h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
  transition: color var(--t-base);
}
.step-interactive-item:hover h4 { color: var(--accent-deep); }
.step-interactive-item .step-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}
.step-interactive-item.open .step-detail {
  max-height: 200px;
  opacity: 1;
  margin-top: 1rem;
}
.step-interactive-item.open {
  border-color: var(--accent-deep);
  background: linear-gradient(135deg, rgba(65, 227, 170, 0.06) 0%, rgba(66, 198, 210, 0.06) 100%);
  box-shadow: 0 6px 20px rgba(20, 80, 106, 0.08);
}
.step-interactive-item .step-detail p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 720px) {
  .steps-interactive {
    flex-direction: row;
    gap: 1.2rem;
  }
  .step-interactive-item { flex: 1; }
}

/* ============================================================
   RESPONSIVENESS — Ultra-Wide (21:9) + Fluid Scaling
   ============================================================ */

/* Ultra-Wide Monitors: Content zentriert, nicht gestreckt */
@media (min-width: 1800px) {
  .container { max-width: 1320px; }
  .hero.hero-video .container { max-width: 900px; }
  .nav { max-width: 1320px; }
  h1 { font-size: 4.4rem; }
  h2 { font-size: 3rem; }
}

/* Desktop-Large: sanftes Fluid-Scaling */
@media (min-width: 1200px) and (max-width: 1799px) {
  .container { max-width: min(var(--container), 90vw); }
}

/* Header: fluid gap zwischen Nav-Items */
.nav-menu { gap: clamp(1rem, 2vw, 2.5rem); }

/* Footer: fluid Padding und Spalten */
.footer-grid {
  gap: clamp(2rem, 3vw, 4rem);
}
.site-footer .container {
  padding-left: clamp(1.5rem, 3vw, 4rem);
  padding-right: clamp(1.5rem, 3vw, 4rem);
}

/* Cards: responsive Grid-Spalten */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr !important; }
}

/* Feature-List: responsive 3→2→1 Spalten */
@media (max-width: 880px) {
  .feature-list { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .feature-list { grid-template-columns: 1fr !important; }
}

/* Values-Grid: responsive */
@media (max-width: 880px) {
  .values-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr !important; }
}

/* Service-Blocks: auf kleinen Screens vertikal */
@media (max-width: 880px) {
  .service-block { grid-template-columns: 1fr !important; }
  .service-block .image-placeholder,
  .service-block .image-real { aspect-ratio: 1 / 1; max-width: 400px; margin: 0 auto; }
}

/* Footer-Bottom: zentriert auf Mobile */
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* H1 als Eyebrow — visuell identisch */
h1.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.4;
}

/* H1 als Feature-Titel — visuell identisch zu H4 */
h1.feature-h1 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.3;
  margin: 0;
}

/* ============================================================
   COOKIEBOT — Sancura-Custom-Branding
   1. Banner-Buttons mit Sancura-Verlauf
   2. Cookiebot-Standard-Schild ausgeblendet
   3. Eigener runder Button mit Herz-Logo in Weiss
   ============================================================ */

/* --- Banner-Buttons im Verlauf --- */
#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll,
#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection,
#CybotCookiebotDialogBodyButtonAccept,
.CybotCookiebotDialogBodyButton.CybotCookiebotDialogBodyButtonAccept {
  background: linear-gradient(135deg, #41E3AA 0%, #42C6D2 100%) !important;
  background-color: #42C6D2 !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(66, 198, 210, 0.3) !important;
  transition: transform 0.15s ease, box-shadow 0.2s ease !important;
}

#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:hover,
#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection:hover,
#CybotCookiebotDialogBodyButtonAccept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(66, 198, 210, 0.45) !important;
}

/* "Ablehnen" — dezent */
#CybotCookiebotDialogBodyButtonDecline,
#CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll {
  background: #f4f4f0 !important;
  color: #14506A !important;
  border: 1px solid rgba(31, 107, 138, 0.15) !important;
}

/* Toggle-Schalter im Banner */
.CybotCookiebotDialogBodyLevelButtonSliderWrapper input:checked + .CybotCookiebotDialogBodyLevelButtonSlider {
  background: linear-gradient(135deg, #41E3AA 0%, #42C6D2 100%) !important;
  background-color: #42C6D2 !important;
}

/* Aktiver Tab */
#CybotCookiebotDialogNavList a.CybotCookiebotDialogActive,
.CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive {
  border-bottom-color: #42C6D2 !important;
  color: #14506A !important;
}

/* Links */
#CybotCookiebotDialog a,
#CybotCookiebotDialogDetailBody a {
  color: #42C6D2 !important;
}

/* --- Cookiebot-Standard-Trigger komplett ausblenden --- */
#CookiebotWidget,
.CookiebotWidget {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* --- Eigener runder Sancura-Cookie-Button --- */
.sancura-cookie-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #41E3AA 0%, #42C6D2 100%);
  box-shadow: 0 4px 14px rgba(66, 198, 210, 0.35);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sancura-cookie-btn img {
  width: 26px;
  height: auto;
  pointer-events: none;
}

.sancura-cookie-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(66, 198, 210, 0.5);
}

.sancura-cookie-btn:focus {
  outline: 3px solid rgba(66, 198, 210, 0.35);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .sancura-cookie-btn {
    bottom: 14px;
    left: 14px;
    width: 46px;
    height: 46px;
  }
  .sancura-cookie-btn img {
    width: 23px;
  }
}
