/* ============================================
   HILFSPAKETE24 - Modern 2026 Design System
   Inspired by best-in-class German Pflegebox sites
   ============================================ */

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body { min-height: 100vh; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- A11y: Globaler Focus-State (Tastaturnavigation) --- */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--clr-primary-500, #A56873);
  outline-offset: 2px;
  border-radius: 4px;
}
/* Sticky-Mobile-CTA und dunkle Kontexte: heller Focus-Ring */
.final-cta a:focus-visible,
.cta-section a:focus-visible,
.footer a:focus-visible,
.crosssell-big a:focus-visible,
.promise__card a:focus-visible {
  outline-color: #FBF5F6;
}

/* --- Skip-Link für Tastatur-User --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--clr-primary-700);
  color: white;
  padding: 12px 20px;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: top var(--transition-base, 250ms);
}
.skip-link:focus { top: 0; }

/* --- Reduced Motion: Animationen abschalten --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Reusable spin (Form-Submit Loading) --- */
@keyframes hp24-spin { to { transform: rotate(360deg); } }

/* --- Design Tokens --- */
:root {
  --clr-primary-50: #FBF5F6;
  --clr-primary-100: #F5E6E8;
  --clr-primary-200: #E8C9CE;
  --clr-primary-300: #D5A3AB;
  --clr-primary-400: #BE8088;
  --clr-primary-500: #A56873;
  --clr-primary-600: #8B5560;
  --clr-primary-700: #6F434D;
  --clr-primary-800: #553540;
  --clr-primary-900: #3D2630;

  --clr-accent-50: #FDF6EE;
  --clr-accent-100: #FAE8D2;
  --clr-accent-200: #F4D0A4;
  --clr-accent-300: #ECB373;
  --clr-accent-400: #E29A4D;
  --clr-accent-500: #D4823A;
  --clr-accent-600: #B5682B;
  --clr-accent-700: #8E4F22;

  --clr-emerald-50: #ECFDF5;
  --clr-emerald-100: #D1FAE5;
  --clr-emerald-200: #A7F3D0;
  --clr-emerald-300: #6EE7B7;
  --clr-emerald-400: #34D399;
  --clr-emerald-500: #10B981;
  --clr-emerald-600: #059669;

  --clr-bg: #FFFFFF;
  --clr-bg-alt: #F8FAFC;
  --clr-bg-elevated: #FFFFFF;
  --clr-text: #0F172A;
  --clr-text-secondary: #475569;
  --clr-text-muted: #64748B; /* WCAG AA-konform (4.55:1 auf weiß) */
  --clr-border: #E2E8F0;
  --clr-border-light: #F1F5F9;

  --ff-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: clamp(1.75rem, 1.5rem + 1vw, 2rem);
  --fs-4xl: clamp(2rem, 1.5rem + 2vw, 2.75rem);
  --fs-5xl: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.15);
  --shadow-glow: 0 0 40px rgba(165,104,115,.18);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --transition-fast: 150ms cubic-bezier(.4,0,.2,1);
  --transition-base: 250ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 350ms cubic-bezier(.4,0,.2,1);
}

/* --- Base --- */
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background: var(--clr-bg);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section { padding: var(--space-16) 0; }
.section--large { padding: var(--space-20) 0; }
.section--compact { padding: var(--space-10) 0; }
.section--alt { background: var(--clr-bg-alt); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}
.section-header__eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-primary-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}
.section-header__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color: var(--clr-text);
  margin-bottom: var(--space-4);
}
.section-header__subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--clr-primary-900);
  color: white;
  padding: var(--space-2) 0;
  font-size: var(--fs-sm);
  text-align: center;
}
.announcement-bar p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.announcement-bar svg { flex-shrink: 0; }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition-base);
}
.header--scrolled {
  border-bottom-color: var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-3) var(--space-6);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  color: var(--clr-text);
}
.header__logo-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--clr-primary-500), var(--clr-primary-600));
  color: white;
  border-radius: var(--radius-sm);
}
.header__logo-img {
  height: 110px;
  width: auto;
  display: block;
}
.footer__logo-img {
  height: 125px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.header__nav-links {
  display: flex;
  gap: var(--space-6);
}
.header__nav-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}
.header__nav-link:hover { color: var(--clr-primary-600); }
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-primary-500);
  border-radius: 1px;
  transition: width var(--transition-base);
}
.header__nav-link:hover::after { width: 100%; }
.header__nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.header__phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-secondary);
  transition: color var(--transition-fast);
}
.header__phone:hover { color: var(--clr-primary-600); }
/* --- Nav Dropdown --- */
.header__nav-dropdown {
  position: relative;
}
.header__nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.header__nav-dropdown-btn svg {
  transition: transform var(--transition-fast);
}
.header__nav-dropdown:hover .header__nav-dropdown-btn svg,
.header__nav-dropdown.open .header__nav-dropdown-btn svg {
  transform: rotate(180deg);
}
.header__nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 100;
}
.header__nav-dropdown:hover .header__nav-dropdown-menu,
.header__nav-dropdown.open .header__nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header__nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: white;
  border-left: 1px solid var(--clr-border);
  border-top: 1px solid var(--clr-border);
}
.header__nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}
.header__nav-dropdown-item:hover {
  background: var(--clr-bg-alt);
}
.header__nav-dropdown-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header__nav-dropdown-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: 2px;
}
.header__nav-dropdown-sub {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* --- Service Cards (Cross-Sell) --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.service-card {
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--clr-primary-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
}
.service-card__icon--blue { background: var(--clr-primary-50); color: var(--clr-primary-500); }
.service-card__icon--orange { background: var(--clr-accent-50); color: var(--clr-accent-500); }
.service-card__icon--teal { background: #F0FDFA; color: #0D9488; }
.service-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-3);
}
.service-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-5);
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--clr-primary-600);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  transition: gap var(--transition-fast);
}
.service-card:hover .service-card__link { gap: var(--space-3); }
.services__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-10);
  padding: var(--space-5);
  background: var(--clr-emerald-50);
  border: 1px solid var(--clr-emerald-200);
  border-radius: var(--radius-lg);
  color: var(--clr-emerald-600);
  font-size: var(--fs-sm);
  text-align: center;
}

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}
.header__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition-base);
}
.header__mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__mobile-toggle.active span:nth-child(2) { opacity: 0; }
.header__mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  padding: var(--space-2) var(--space-5);
}
.btn--sm { padding: var(--space-2) var(--space-4); font-size: var(--fs-xs); }
.btn--lg { padding: var(--space-3) var(--space-6); font-size: var(--fs-base); }
.btn--xl { padding: var(--space-4) var(--space-8); font-size: var(--fs-base); }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--clr-primary-600);
  color: white;
  box-shadow: 0 1px 3px rgba(139,85,96,.3);
}
.btn--primary:hover {
  background: var(--clr-primary-700);
  box-shadow: 0 4px 12px rgba(139,85,96,.35);
  transform: translateY(-1px);
}

.btn--accent {
  /* Gradient von accent-600 → accent-700 für WCAG-AA-Kontrast (4.5:1+) auf weißem Text */
  background: linear-gradient(135deg, var(--clr-accent-600), var(--clr-accent-700));
  color: white;
  box-shadow: 0 2px 8px rgba(181,104,43,.35);
}
.btn--accent:hover {
  background: linear-gradient(135deg, var(--clr-accent-700), #6B3919);
  box-shadow: 0 6px 20px rgba(142,79,34,.4);
  transform: translateY(-2px);
}

.btn--glass {
  background: rgba(255,255,255,.15);
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border);
  backdrop-filter: blur(4px);
}
.btn--glass:hover {
  background: rgba(255,255,255,.5);
  border-color: var(--clr-primary-300);
}

.btn--white {
  background: white;
  color: var(--clr-primary-700);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
}

/* --- Pills --- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
}
.pill--green {
  background: var(--clr-emerald-50);
  color: var(--clr-emerald-600);
  border: 1px solid var(--clr-emerald-200);
}
.pill--blue {
  background: var(--clr-primary-50);
  color: var(--clr-primary-600);
  border: 1px solid var(--clr-primary-200);
}

.gradient-text {
  background: linear-gradient(135deg, var(--clr-primary-500), var(--clr-emerald-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Hero --- */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-16) 0 0;
  background: linear-gradient(180deg, var(--clr-bg-alt) 0%, var(--clr-bg) 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__gradient {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165,104,115,.10) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(165,104,115,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.hero__badges {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.hero__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-extrabold);
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: var(--space-6);
}
.hero__description {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}
.hero__checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.hero__check-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-secondary);
}
.hero__check-item svg { color: var(--clr-emerald-500); flex-shrink: 0; }
.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Hero visual / Price card */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__price-card {
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  animation: float-card 6s ease-in-out infinite;
}
.hero__price-top {
  padding: var(--space-6) var(--space-6) var(--space-5);
  text-align: center;
  background: linear-gradient(135deg, var(--clr-primary-50), var(--clr-emerald-50));
  border-bottom: 1px solid var(--clr-border-light);
}
.hero__price-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-primary-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin: var(--space-2) 0;
}
.hero__price-currency {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
}
.hero__price-value {
  font-family: var(--ff-heading);
  font-size: 3.5rem;
  font-weight: var(--fw-extrabold);
  color: var(--clr-text);
  line-height: 1;
}
.hero__price-period {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  font-weight: var(--fw-medium);
}
.hero__price-sub {
  font-size: var(--fs-xs);
  color: var(--clr-emerald-600);
  font-weight: var(--fw-medium);
}
.hero__price-items {
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.hero__price-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}
.hero__price-item span { flex: 1; }
.hero__price-item svg { flex-shrink: 0; }
.hero__price-item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dot-color, var(--clr-primary-500));
  flex-shrink: 0;
}
.hero__price-footer {
  padding: var(--space-3) var(--space-6);
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* Floating badges */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  font-size: var(--fs-sm);
  white-space: nowrap;
}
.hero__float--1 { top: 20px; left: -40px; animation: float-1 5s ease-in-out infinite; }
.hero__float--2 { bottom: 40px; right: -30px; animation: float-2 6s ease-in-out infinite 1s; }
.hero__float-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.hero__float-icon--green { background: var(--clr-emerald-50); color: var(--clr-emerald-500); }
.hero__float-icon--blue { background: var(--clr-primary-50); color: var(--clr-primary-500); }
.hero__float-title { font-weight: var(--fw-semibold); color: var(--clr-text); }
.hero__float-sub { font-size: var(--fs-xs); color: var(--clr-text-muted); }

/* Stats bar */
.hero__stats-bar {
  margin-top: var(--space-12);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--clr-border-light);
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-primary-600);
}
.hero__stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

/* --- Logos Bar --- */
.logos-bar {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--clr-border-light);
}
.logos-bar__label {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-5);
}
.logos-bar__track { overflow: hidden; }
.logos-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.logos-bar__logo {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text-muted);
  opacity: .5;
  transition: opacity var(--transition-base);
}
.logos-bar__logo:hover { opacity: .8; }
.logos-bar__sep {
  font-size: var(--fs-sm);
  color: var(--clr-primary-500);
  font-weight: var(--fw-semibold);
}

/* --- Product Cards --- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.product-card {
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
}
.product-card:hover {
  border-color: var(--clr-primary-200);
  box-shadow: var(--shadow-lg), 0 0 0 3px var(--clr-primary-50);
  transform: translateY(-4px);
}
.product-card__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
  margin: 0 auto var(--space-5);
}
.product-card__image {
  width: 110px;
  height: 110px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-card__icon--blue { background: var(--clr-primary-50); color: var(--clr-primary-500); }
.product-card__icon--teal { background: #F0FDFA; color: #0D9488; }
.product-card__icon--purple { background: #F5F3FF; color: #7C3AED; }
.product-card__icon--orange { background: var(--clr-accent-50); color: var(--clr-accent-500); }
.product-card__icon--pink { background: #FDF2F8; color: #DB2777; }
.product-card__icon--green { background: var(--clr-emerald-50); color: var(--clr-emerald-500); }
.product-card__name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
}
.product-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}
.products__cta {
  text-align: center;
  margin-top: var(--space-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.products__cta-text {
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
}

/* --- Steps --- */
.steps { position: relative; }
.steps__connector {
  display: none;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.step {
  text-align: center;
  position: relative;
}
.step__icon-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-6);
}
.step__number {
  position: absolute;
  top: -8px; right: -8px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--clr-accent-500);
  color: white;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(212,130,58,.3);
}
.step__icon {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  background: var(--clr-primary-50);
  color: var(--clr-primary-600);
  border-radius: var(--radius-xl);
  border: 2px solid var(--clr-primary-100);
}
.step__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-3);
}
.step__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 280px;
  margin: 0 auto;
}

/* --- Benefit Cards --- */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.benefit-card {
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.benefit-card:hover {
  border-color: var(--clr-primary-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.benefit-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}
.benefit-card__icon--blue { background: var(--clr-primary-50); color: var(--clr-primary-500); }
.benefit-card__icon--teal { background: #F0FDFA; color: #0D9488; }
.benefit-card__icon--orange { background: var(--clr-accent-50); color: var(--clr-accent-500); }
.benefit-card__icon--purple { background: #F5F3FF; color: #7C3AED; }
.benefit-card__icon--green { background: var(--clr-emerald-50); color: var(--clr-emerald-500); }
.benefit-card__icon--pink { background: #FDF2F8; color: #DB2777; }
.benefit-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
}
.benefit-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
}
.benefit-card__tag {
  display: inline-flex;
  padding: var(--space-1) var(--space-3);
  background: var(--clr-emerald-50);
  color: var(--clr-emerald-600);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
}

/* --- Promise Section --- */
.promise {
  padding: var(--space-16) 0;
}
.promise__card {
  background: linear-gradient(135deg, var(--clr-primary-800), var(--clr-primary-900));
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  display: flex;
  align-items: center;
  gap: var(--space-12);
  color: white;
  position: relative;
  overflow: hidden;
}
.promise__card::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(165,104,115,.25) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.promise__content { flex: 1; position: relative; z-index: 1; }
.promise__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-4);
}
.promise__text {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.8);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
  max-width: 560px;
}
.promise__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.promise__check {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,.9);
}
.promise__check svg { color: var(--clr-emerald-400); flex-shrink: 0; }
.promise__visual {
  text-align: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.promise__price {
  font-family: var(--ff-heading);
  font-size: 6rem;
  font-weight: var(--fw-extrabold);
  line-height: 1;
  background: linear-gradient(135deg, white, var(--clr-emerald-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.promise__price-label {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.6);
  font-weight: var(--fw-medium);
  margin-top: var(--space-2);
}

/* --- FAQ --- */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}
.faq-item.active {
  border-color: var(--clr-primary-200);
  box-shadow: 0 0 0 3px var(--clr-primary-50);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  text-align: left;
  gap: var(--space-4);
}
.faq-item__icon {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-item__icon span {
  position: absolute;
  background: var(--clr-text-muted);
  border-radius: 1px;
  transition: var(--transition-base);
}
.faq-item__icon span:first-child {
  width: 14px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__icon span:last-child {
  width: 2px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.active .faq-item__icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq-item.active .faq-item__answer {
  max-height: 300px;
}
.faq-item__answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

/* --- Contact --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-12);
  align-items: start;
}
.contact__info-title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
}
.contact__info-text {
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}
.contact__methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.contact__method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  transition: background var(--transition-fast);
}
.contact__method:hover { background: var(--clr-bg-alt); }
.contact__method-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.contact__method-icon--blue { background: var(--clr-primary-50); color: var(--clr-primary-500); }
.contact__method-icon--green { background: var(--clr-emerald-50); color: var(--clr-emerald-500); }
.contact__method-icon--orange { background: var(--clr-accent-50); color: var(--clr-accent-500); }
.contact__method-title {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--clr-text);
}
.contact__method-text {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}
.contact__trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.contact__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}

/* Form */
.contact__form {
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form__group { margin-bottom: var(--space-4); }
.form__label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--clr-primary-400);
  box-shadow: 0 0 0 3px var(--clr-primary-50);
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--clr-text-muted); }
.form__textarea { min-height: 100px; resize: vertical; }
.form__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.form__checkbox-group {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  margin-bottom: var(--space-5);
}
.form__checkbox {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--clr-primary-600);
  flex-shrink: 0;
}
.form__checkbox-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
}
.form__checkbox-label a { color: var(--clr-primary-600); text-decoration: underline; }
.form__disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-top: var(--space-4);
  text-align: center;
}

/* --- Page Hero (Unterseiten) --- */
.page-hero {
  padding: var(--space-16) 0 var(--space-12);
  background: linear-gradient(180deg, var(--clr-bg-alt) 0%, var(--clr-bg) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.page-hero__content { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.page-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  padding: var(--space-2) var(--space-4);
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  color: var(--clr-text);
  box-shadow: var(--shadow-sm);
}
.page-hero__brand-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--clr-primary-500), var(--clr-primary-600));
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(2.25rem, 1.8rem + 2vw, 3.25rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  margin-bottom: var(--space-5);
  color: var(--clr-text);
}
.page-hero__lead {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 640px;
  margin: 0 auto;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--clr-primary-600);
  font-weight: var(--fw-medium);
  transition: gap var(--transition-fast);
  position: relative;
  z-index: 2;
}
.legal-back:hover { gap: var(--space-3); }

/* --- Leistungstabelle --- */
.leistungstabelle-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  background: white;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-6);
}
.leistungstabelle {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  min-width: 720px;
}
.leistungstabelle thead th {
  background: var(--clr-primary-900);
  color: white;
  padding: var(--space-4) var(--space-3);
  font-weight: var(--fw-semibold);
  text-align: left;
  font-size: var(--fs-sm);
}
.leistungstabelle thead th:first-child { padding-left: var(--space-5); }
.leistungstabelle thead th:not(:first-child) { text-align: center; }
.leistungstabelle tbody td {
  padding: var(--space-4) var(--space-3);
  border-top: 1px solid var(--clr-border-light);
  vertical-align: middle;
  text-align: center;
  color: var(--clr-text);
  font-weight: var(--fw-semibold);
}
.leistungstabelle tbody td:first-child {
  text-align: left;
  padding-left: var(--space-5);
  font-weight: var(--fw-normal);
  color: var(--clr-text);
}
.leistungstabelle tbody td:first-child strong {
  display: block;
  color: var(--clr-text);
  font-weight: var(--fw-semibold);
}
.tbl-sub {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  font-weight: var(--fw-normal);
}
.tbl-muted { color: var(--clr-text-muted) !important; font-weight: var(--fw-normal) !important; }
.tbl-highlight td { background: var(--clr-emerald-50); color: var(--clr-emerald-600) !important; }
.tbl-highlight td:first-child { color: var(--clr-emerald-600) !important; }
.tbl-highlight td:first-child strong { color: var(--clr-emerald-600); }
.leistungstabelle-note {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-top: var(--space-3);
}

.tbl-cta {
  margin-top: var(--space-8);
  background: linear-gradient(135deg, var(--clr-primary-50), var(--clr-emerald-50));
  border: 1px solid var(--clr-primary-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.tbl-cta__content {
  font-size: var(--fs-base);
  color: var(--clr-text);
  line-height: var(--lh-relaxed);
  flex: 1;
}

/* --- Pflegegrad-Cards --- */
.pg-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.pg-card {
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  transition: all var(--transition-base);
}
.pg-card:hover {
  border-color: var(--clr-primary-200);
  box-shadow: var(--shadow-lg);
}
.pg-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--clr-border-light);
}
.pg-card__number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--clr-primary-500), var(--clr-primary-700));
  color: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1.75rem;
  font-weight: var(--fw-extrabold);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37,99,235,.25);
}
.pg-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: 2px;
}
.pg-card__sub {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}
.pg-card__points {
  margin-left: auto;
  background: var(--clr-primary-50);
  color: var(--clr-primary-600);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
}
.pg-card__desc {
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-5);
}
.pg-card__benefits strong {
  display: block;
  color: var(--clr-text);
  margin-bottom: var(--space-3);
  font-size: var(--fs-sm);
}
.pg-card__benefits ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-5);
}
.pg-card__benefits li {
  position: relative;
  padding-left: var(--space-5);
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: 1.5;
}
.pg-card__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-emerald-500);
  font-weight: var(--fw-bold);
}
.pg-card__benefits li.highlight {
  color: var(--clr-emerald-600);
  font-weight: var(--fw-semibold);
}

/* --- Module-Grid (NBA) --- */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
.module-card {
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
}
.module-card__weight {
  display: inline-block;
  background: var(--clr-primary-50);
  color: var(--clr-primary-600);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
}
.module-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
}
.module-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}
.module-note {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  max-width: 760px;
  margin: 0 auto;
  font-style: italic;
}

/* --- CrossNav Cards (Cross-Links zwischen Subpages) --- */
.crossnav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.crossnav-card {
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}
.crossnav-card:hover {
  border-color: var(--clr-primary-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.crossnav-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.crossnav-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
}
.crossnav-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-3);
}
.crossnav-card__link {
  color: var(--clr-primary-600);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

/* --- Info-Boxen für Pflegegrad-beantragen & Pflegeberatung --- */
.info-box {
  background: var(--clr-primary-50);
  border-left: 4px solid var(--clr-primary-500);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin: var(--space-5) 0;
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.info-box--warning {
  background: var(--clr-accent-50);
  border-left-color: var(--clr-accent-500);
}
.info-box--success {
  background: var(--clr-emerald-50);
  border-left-color: var(--clr-emerald-500);
}
.info-box__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--clr-primary-500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: var(--fw-bold);
}
.info-box--warning .info-box__icon { background: var(--clr-accent-500); }
.info-box--success .info-box__icon { background: var(--clr-emerald-500); }
.info-box__content {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text);
}
.info-box__content strong { display: block; margin-bottom: 4px; color: var(--clr-text); }

/* --- Process steps (vertical timeline) --- */
.process-steps {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding-left: var(--space-12);
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--clr-primary-300), var(--clr-primary-100));
}
.process-step {
  position: relative;
  margin-bottom: var(--space-8);
}
.process-step:last-child { margin-bottom: 0; }
.process-step__number {
  position: absolute;
  left: calc(var(--space-12) * -1 + 3px);
  top: 0;
  width: 44px; height: 44px;
  background: var(--clr-primary-500);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-family: var(--ff-heading);
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
  border: 3px solid white;
}
.process-step__content {
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-sm);
}
.process-step__content h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
}
.process-step__content p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

/* --- Generic feature list --- */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.feature-list li {
  position: relative;
  padding-left: var(--space-8);
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 22px; height: 22px;
  background: var(--clr-emerald-500);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.feature-list li strong { color: var(--clr-text); }

/* --- Two Column Grid --- */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
.two-col-grid__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-3);
}

/* --- Rights Grid --- */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.right-card {
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
}
.right-card:hover {
  border-color: var(--clr-primary-200);
  box-shadow: var(--shadow-md);
}
.right-card__num {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: var(--fw-extrabold);
  color: var(--clr-primary-600);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.right-card h3 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
}
.right-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-normal);
}

/* --- Card Box (Widerspruch / Höherstufung) --- */
.card-box {
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}
.card-box__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.card-box h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-3);
}
.card-box p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

/* --- Crosssell Big (dunkler Kasten mit Preis) --- */
.crosssell-big {
  background: linear-gradient(135deg, var(--clr-primary-800), var(--clr-primary-900));
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  display: flex;
  align-items: center;
  gap: var(--space-10);
  color: white;
  position: relative;
  overflow: hidden;
}
.crosssell-big::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.crosssell-big__content { flex: 1; position: relative; z-index: 1; }
.crosssell-big__content .section-header__eyebrow { color: rgba(255,255,255,.7); }
.crosssell-big__content h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.75rem, 1.5rem + 1.5vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-4);
  line-height: 1.15;
  color: white;
}
.crosssell-big__content p {
  font-size: var(--fs-base);
  color: rgba(255,255,255,.8);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}
.crosssell-big__content strong { color: white; }
.crosssell-big__visual {
  text-align: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.crosssell-big__price {
  font-family: var(--ff-heading);
  font-size: 5rem;
  font-weight: var(--fw-extrabold);
  line-height: 1;
  background: linear-gradient(135deg, white, var(--clr-emerald-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.crosssell-big__price-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.6);
  margin-top: var(--space-2);
}

/* Page hero actions */
.page-hero__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}

/* --- Anspruch-Grid (Beratung) --- */
.anspruch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  max-width: 900px;
  margin: 0 auto;
}
.anspruch-item {
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  transition: all var(--transition-base);
}
.anspruch-item:hover {
  border-color: var(--clr-primary-200);
  box-shadow: var(--shadow-md);
}
.anspruch-item__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.anspruch-item h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-1);
}
.anspruch-item p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-normal);
}

/* --- Format-Cards (3 Wege zur Beratung) --- */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 900px;
  margin: 0 auto;
}
.format-card {
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}
.format-card:hover {
  border-color: var(--clr-primary-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.format-card--featured {
  border-color: var(--clr-accent-500);
  box-shadow: 0 0 0 3px var(--clr-accent-100);
}
.format-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-accent-500);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
}
.format-card__icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}
.format-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
}
.format-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
}
.format-card__link {
  color: var(--clr-primary-600);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
}

/* --- Trust-Grid (4 Metriken) --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}
.trust-item {
  padding: var(--space-5);
  border-right: 1px solid var(--clr-border);
}
.trust-item:last-child { border-right: none; }
.trust-item__num {
  font-family: var(--ff-heading);
  font-size: 2.25rem;
  font-weight: var(--fw-extrabold);
  color: var(--clr-primary-600);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.trust-item__label {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--space-1);
}
.trust-item__sub {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
}

/* --- Typische Situationen (statt Testimonials) --- */
.situations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.situation-card {
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}
.situation-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-primary-200);
  box-shadow: var(--shadow-lg);
}
.situation-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.situation-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-3);
  line-height: 1.3;
  font-style: italic;
}
.situation-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
  flex: 1;
}
.situation-card__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: var(--space-1) var(--space-3);
  background: var(--clr-primary-50);
  color: var(--clr-primary-600);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
}
/* Responsive: .situations__grid wird global im 1024er+768er-Block gehandhabt */

/* ============================================
   RATGEBER / BLOG
   ============================================ */

/* --- Ratgeber-Übersichtsseite --- */
.ratgeber-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.ratgeber-card {
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}
.ratgeber-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-primary-200);
  box-shadow: var(--shadow-lg);
}
.ratgeber-card__cover {
  height: 160px;
  background: linear-gradient(135deg, var(--clr-primary-100), var(--clr-emerald-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.ratgeber-card__cover--blue { background: linear-gradient(135deg, var(--clr-primary-100), var(--clr-primary-200)); }
.ratgeber-card__cover--orange { background: linear-gradient(135deg, var(--clr-accent-100), var(--clr-accent-200)); }
.ratgeber-card__cover--green { background: linear-gradient(135deg, var(--clr-emerald-100), var(--clr-emerald-200)); }
.ratgeber-card__cover--purple { background: linear-gradient(135deg, #E9D5FF, #DDD6FE); }
.ratgeber-card__cover--news {
  background: linear-gradient(135deg, #FEE2E2, #FECACA);
  color: #991B1B;
}

/* --- News Badge (rot-warm, für Aktualitäts-Kennzeichnung) --- */
.news-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 3px 10px;
  background: #DC2626;
  color: white;
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(220,38,38,.3);
}
.news-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  animation: news-pulse 2s ease-in-out infinite;
}
@keyframes news-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Ratgeber-Featured Card (Hero-Karte auf Übersicht) --- */
.ratgeber-featured {
  background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
  border: 1px solid #FECACA;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  margin-bottom: var(--space-10);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-8);
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.ratgeber-featured:hover {
  border-color: #F87171;
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}
.ratgeber-featured::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(220,38,38,.05) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.ratgeber-featured__badges {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}
.ratgeber-featured__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  font-weight: var(--fw-extrabold);
  color: var(--clr-text);
  line-height: 1.2;
  margin-bottom: var(--space-3);
}
.ratgeber-featured__excerpt {
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
}
.ratgeber-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: #991B1B;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  transition: gap var(--transition-fast);
}
.ratgeber-featured:hover .ratgeber-featured__cta { gap: var(--space-3); }
.ratgeber-featured__visual {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  z-index: 1;
}
.ratgeber-featured__visual-logo {
  max-width: 110px;
  height: auto;
  margin: 0 auto var(--space-4);
  display: block;
}
.ratgeber-featured__visual-year {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: var(--fw-extrabold);
  color: #DC2626;
  line-height: 1;
}
.ratgeber-featured__visual-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--fw-semibold);
  margin-top: var(--space-2);
}
.ratgeber-featured__visual-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-top: var(--space-3);
}

@media (max-width: 1024px) {
  .ratgeber-featured { grid-template-columns: 1fr; padding: var(--space-6); }
}

/* --- Warnbox (für Draft-Law-Hinweise) --- */
.warn-box {
  background: #FEF2F2;
  border-left: 4px solid #DC2626;
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin: var(--space-5) 0;
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.warn-box__icon {
  width: 28px; height: 28px;
  background: #DC2626;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
}
.warn-box__content {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text);
}
.warn-box__content strong { display: block; margin-bottom: 4px; color: #991B1B; }

/* --- Article-Callout (Hilfspakete24-Perspektive) --- */
.article-callout {
  background: linear-gradient(135deg, var(--clr-primary-50), var(--clr-emerald-50));
  border: 1px solid var(--clr-primary-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin: var(--space-8) 0;
}
.article-callout__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}
.article-callout__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-3);
}
.article-callout p:last-child { margin-bottom: 0; }

/* --- Aktuelles-Strip (Homepage-Teaser) --- */
.aktuelles-strip {
  padding: var(--space-6) 0;
  background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
  border-top: 1px solid #FECACA;
  border-bottom: 1px solid #FECACA;
}
.aktuelles-strip__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.aktuelles-strip__icon {
  width: 64px; height: 64px;
  background: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DC2626;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  padding: 6px;
}
.aktuelles-strip__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.aktuelles-strip__content { flex: 1; min-width: 260px; }
.aktuelles-strip__badges {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  flex-wrap: wrap;
}
.aktuelles-strip__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-1);
}
.aktuelles-strip__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-normal);
}
.aktuelles-strip__cta {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .aktuelles-strip__inner { text-align: center; }
  .aktuelles-strip__icon { margin: 0 auto; }
}

/* --- Ratgeber Hero Logo --- */
.ratgeber-hero__logo {
  display: block;
  max-width: 96px;
  height: auto;
  margin: 0 auto var(--space-5);
}

/* ================================================
   EDITORIAL ARTICLE STYLE (Magazin-Look wie pflege.de)
   ================================================ */

/* Hero-Cover mit Illustration (statt reines Text-Hero) */
.article-cover {
  position: relative;
  padding: var(--space-10) 0 var(--space-8);
  background: linear-gradient(160deg, #FBF5F6 0%, #FEF2F2 100%);
  overflow: hidden;
}
.article-cover__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 1;
}
.article-cover__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.article-cover__breadcrumb a { color: var(--clr-primary-600); }
.article-cover__breadcrumb a:hover { text-decoration: underline; }
.article-cover__breadcrumb-sep { opacity: .5; }
.article-cover__badges {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}
.article-cover__title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  color: var(--clr-text);
  margin-bottom: var(--space-5);
  max-width: 780px;
}
.article-cover__lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--clr-text-secondary);
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: var(--space-6);
}
.article-cover__meta {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  padding-top: var(--space-5);
  border-top: 1px solid var(--clr-border);
}
.article-cover__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.article-cover__logo {
  max-width: 80px;
  height: auto;
  margin-bottom: var(--space-5);
}

/* Illustration container */
.article-cover__illustration {
  position: relative;
  margin: var(--space-8) auto var(--space-6);
  max-width: 720px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #EEE9F3, #FBE5DC);
  box-shadow: 0 20px 40px -20px rgba(139,85,96,.25);
}
.article-cover__illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Editorial article body */
.article-editorial {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-6) var(--space-16);
}
.article-editorial > .article-toc { margin-bottom: var(--space-10); }
.article-editorial .article-prose {
  font-size: clamp(1.05rem, 1rem + 0.25vw, 1.15rem);
  line-height: 1.75;
  color: #2C3849;
}

/* Drop-Cap für ersten Absatz */
.article-editorial .article-prose > p.has-dropcap::first-letter,
.article-editorial .article-prose > p:first-of-type::first-letter {
  float: left;
  font-family: var(--ff-heading);
  font-size: 4.5rem;
  line-height: 0.9;
  font-weight: var(--fw-extrabold);
  padding: 6px 12px 0 0;
  color: var(--clr-primary-600);
}
.article-editorial .article-prose h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 1.85rem);
  font-weight: var(--fw-extrabold);
  color: var(--clr-primary-700);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: none;
  scroll-margin-top: var(--space-10);
}
.article-editorial .article-prose h3 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--clr-primary-700);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}
.article-editorial .article-prose ul li,
.article-editorial .article-prose ol li {
  margin-bottom: var(--space-3);
}
.article-editorial .article-prose a {
  color: var(--clr-primary-700);
  text-decoration-thickness: 1.5px;
}

/* =========================================
   CALLOUT-BOXEN — INFO / TIPP / WARN
   Inspiriert von pflege.de: Icon links, Label oben, Titel bold, Text darunter
   ========================================= */
.callout {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-5);
  border-radius: var(--radius-lg);
  margin: var(--space-8) 0;
  align-items: flex-start;
}
.callout__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.callout__icon svg { width: 24px; height: 24px; }
.callout__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-1);
  color: var(--clr-text-muted);
}
.callout__title {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  margin-bottom: var(--space-3);
  color: var(--clr-text);
}
.callout__body {
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--clr-text-secondary);
}
.callout__body p:last-child { margin-bottom: 0; }
.callout__body strong { color: var(--clr-text); }
.callout__body a { color: var(--clr-primary-700); font-weight: var(--fw-medium); text-decoration: underline; }

/* INFO — blau-grau, freundlich */
.callout--info {
  background: #EEF4F9;
  border-left: 4px solid #4B7CA6;
}
.callout--info .callout__icon { background: #DDE7F0; color: #325F87; }
.callout--info .callout__label { color: #325F87; }
.callout--info .callout__title { color: #1F3E5C; }

/* TIPP — warm-gelb, positiv */
.callout--tip {
  background: #FEF9EF;
  border-left: 4px solid #D69538;
}
.callout--tip .callout__icon { background: #FBEED4; color: #9B6812; }
.callout--tip .callout__label { color: #9B6812; }
.callout--tip .callout__title { color: #5C3F0B; }

/* WARN — rot-warm, wichtig */
.callout--warn {
  background: #FEF2F2;
  border-left: 4px solid #DC2626;
}
.callout--warn .callout__icon { background: #FCE1E1; color: #991B1B; }
.callout--warn .callout__label { color: #991B1B; }
.callout--warn .callout__title { color: #7F1D1D; }

/* HANDLUNG — HP24-Perspektive, brand */
.callout--action {
  background: linear-gradient(135deg, var(--clr-primary-50), #F5E6E8);
  border-left: 4px solid var(--clr-primary-600);
}
.callout--action .callout__icon { background: white; color: var(--clr-primary-600); }
.callout--action .callout__label { color: var(--clr-primary-700); }
.callout--action .callout__title { color: var(--clr-primary-800); }

/* Mobile: Icon oben statt links */
@media (max-width: 640px) {
  .callout {
    grid-template-columns: 1fr;
    padding: var(--space-4);
  }
  .callout__icon { margin-bottom: var(--space-2); }
}

/* --- Article Update-Notice --- */
.article-update-notice {
  background: var(--clr-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.ratgeber-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ratgeber-card__cat {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}
.ratgeber-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}
.ratgeber-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
  margin-bottom: var(--space-4);
}
.ratgeber-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  padding-top: var(--space-3);
  border-top: 1px solid var(--clr-border-light);
}
.ratgeber-card__link {
  color: var(--clr-primary-600);
  font-weight: var(--fw-semibold);
}

/* --- Artikel-Hero --- */
.article-hero {
  padding: var(--space-12) 0 var(--space-8);
  background: linear-gradient(180deg, var(--clr-bg-alt) 0%, var(--clr-bg) 100%);
}
.article-hero__inner { max-width: 800px; margin: 0 auto; }
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}
.article-breadcrumb a { color: var(--clr-primary-600); }
.article-breadcrumb a:hover { text-decoration: underline; }
.article-breadcrumb__sep { opacity: .5; }
.article-hero__cat {
  display: inline-block;
  background: var(--clr-primary-50);
  color: var(--clr-primary-600);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}
.article-hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: var(--space-5);
}
.article-hero__lead {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-5);
}
.article-meta {
  display: flex;
  gap: var(--space-5);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  padding-top: var(--space-4);
  border-top: 1px solid var(--clr-border);
}
.article-meta__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* --- Artikel-Body --- */
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-8) 0 var(--space-16);
}
.article-toc {
  background: var(--clr-primary-50);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-8);
}
.article-toc h3 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
}
.article-toc ol {
  margin: 0;
  padding-left: var(--space-5);
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}
.article-toc a { color: var(--clr-primary-600); text-decoration: none; }
.article-toc a:hover { text-decoration: underline; }

.article-prose { font-size: var(--fs-base); line-height: var(--lh-relaxed); color: var(--clr-text-secondary); }
.article-prose h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--clr-primary-100);
  scroll-margin-top: var(--space-10);
}
.article-prose h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}
.article-prose p { margin-bottom: var(--space-4); }
.article-prose strong { color: var(--clr-text); font-weight: var(--fw-semibold); }
.article-prose ul, .article-prose ol {
  padding-left: var(--space-6);
  margin-bottom: var(--space-5);
}
.article-prose li { margin-bottom: var(--space-2); }
.article-prose a {
  color: var(--clr-primary-600);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: var(--fw-medium);
}
.article-prose a:hover { color: var(--clr-primary-700); }

/* --- In-Article CTA (drives back to Pflegebox) --- */
.article-cta {
  background: linear-gradient(135deg, var(--clr-primary-50), var(--clr-emerald-50));
  border: 1px solid var(--clr-primary-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin: var(--space-8) 0;
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.article-cta__icon {
  width: 64px; height: 64px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: var(--fw-extrabold);
  color: var(--clr-primary-600);
  box-shadow: var(--shadow-sm);
}
.article-cta__content { flex: 1; }
.article-cta__title {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--space-1);
}
.article-cta__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  margin: 0;
}

/* --- Related articles --- */
.article-related {
  background: var(--clr-bg-alt);
  padding: var(--space-12) 0;
  border-top: 1px solid var(--clr-border);
}
.article-related__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-6);
  text-align: center;
}
.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Ratgeber-Hero (Übersichtsseite) --- */
.ratgeber-hero {
  padding: var(--space-16) 0 var(--space-10);
  background: linear-gradient(180deg, var(--clr-bg-alt) 0%, var(--clr-bg) 100%);
  text-align: center;
}
.ratgeber-hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2.25rem, 1.8rem + 2vw, 3rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
.ratgeber-hero p {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .ratgeber-grid { grid-template-columns: repeat(2, 1fr); }
  .article-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ratgeber-grid { grid-template-columns: 1fr; }
  .article-related__grid { grid-template-columns: 1fr; }
  .article-cta { flex-direction: column; text-align: center; }
}

/* --- Final CTA --- */
.final-cta {
  background: linear-gradient(135deg, var(--clr-primary-600), var(--clr-primary-800));
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  top: -200px; left: -100px;
  border-radius: 50%;
}
.final-cta__content { position: relative; z-index: 1; }
.final-cta__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: white;
  margin-bottom: var(--space-4);
}
.final-cta__text {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.8);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}
.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--clr-text);
  color: rgba(255,255,255,.7);
  padding: var(--space-16) 0 var(--space-8);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: white;
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-4);
}
.footer__logo .header__logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--clr-primary-400), var(--clr-primary-500));
}
.footer__brand-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,.5);
}
.footer__heading {
  color: white;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-5);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.5);
  transition: color var(--transition-fast);
}
.footer__links a:hover { color: white; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.3);
}
.footer__bottom-links {
  display: flex;
  gap: var(--space-5);
}
.footer__bottom-links a {
  color: rgba(255,255,255,.3);
  transition: color var(--transition-fast);
}
.footer__bottom-links a:hover { color: rgba(255,255,255,.6); }

/* --- Sticky Mobile CTA --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--clr-border);
  z-index: 90;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}
.sticky-cta.visible { transform: translateY(0); }

/* --- Animations --- */
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, -8px); }
}
@keyframes float-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-6px, -10px); }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  transform: translateX(-30px);
}
.reveal--left.visible { transform: translateX(0); }
.reveal--right {
  transform: translateX(30px);
}
.reveal--right.visible { transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }
.reveal-delay-5 { transition-delay: 0.25s; }
.reveal-delay-6 { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services__grid,
  .formats-grid,
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .rights-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .trust-item:nth-child(2) { border-right: none; }
  .two-col-grid { grid-template-columns: 1fr; }
  .anspruch-grid { grid-template-columns: 1fr; }
  .crossnav-grid { grid-template-columns: 1fr; }
  .pg-card__benefits ul { grid-template-columns: 1fr; }
  .pg-card__header { flex-wrap: wrap; }
  .pg-card__points { margin-left: 0; }
  .tbl-cta { flex-direction: column; text-align: center; }
  .crosssell-big { flex-direction: column; text-align: center; padding: var(--space-8); }
  .header__nav-dropdown-menu { min-width: 260px; }

  .hero__content { grid-template-columns: 1fr; text-align: center; }
  .hero__badges { justify-content: center; }
  .hero__checklist { align-items: center; }
  .hero__actions { justify-content: center; }
  .hero__visual { margin-top: var(--space-8); }
  .hero__float--1 { left: 10px; top: -10px; }
  .hero__float--2 { right: 10px; bottom: 20px; }
  .hero__stat-divider { display: none; }
  .hero__stats { gap: var(--space-8); }

  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .situations__grid { grid-template-columns: repeat(2, 1fr); }

  .promise__card { flex-direction: column; text-align: center; padding: var(--space-8); }
  .promise__checks { justify-items: center; }
  .promise__text { max-width: 100%; }

  .contact__grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-4); }
  .section--large { padding: var(--space-12) 0; }

  /* Subpages mobile */
  .services__grid,
  .formats-grid,
  .module-grid,
  .rights-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--clr-border); padding-bottom: var(--space-5); }
  .trust-item:last-child { border-bottom: none; }
  .pg-card { padding: var(--space-5); }
  .pg-card__header { gap: var(--space-3); }
  .pg-card__number { width: 48px; height: 48px; font-size: 1.5rem; }
  .process-steps { padding-left: var(--space-10); }
  .process-step__number { left: calc(var(--space-10) * -1 + 2px); width: 36px; height: 36px; font-size: var(--fs-sm); }
  .crosssell-big__price { font-size: 3.5rem; }

  /* Dropdown - zeige als Liste im Mobile-Menü */
  .header__nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    min-width: auto;
  }
  .header__nav-dropdown-menu::before { display: none; }
  .header__nav-dropdown-btn svg { display: none; }

  .header__nav-links { display: none; }
  .header__phone { display: none; }
  .header__mobile-toggle { display: flex; }
  .header__nav { gap: var(--space-4); }

  .header__nav.active {
    position: fixed;
    inset: 0;
    top: 60px;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    z-index: 99;
  }
  .header__nav.active .header__nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
  }
  .header__nav.active .header__nav-links .header__nav-link {
    font-size: var(--fs-xl);
  }
  .header__nav.active .header__nav-actions { flex-direction: column; }

  .hero { padding-top: var(--space-10); }
  .hero__title { font-size: clamp(1.75rem, 1.5rem + 2vw, 2.75rem); }
  .hero__description { font-size: var(--fs-base); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__float { display: none; }
  .hero__price-card { max-width: 340px; margin: 0 auto; }
  .hero__stats { gap: var(--space-6); }
  .hero__stat-number { font-size: var(--fs-2xl); }

  .logos-bar__logos { gap: var(--space-5); }

  .products__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .product-card { padding: var(--space-5); }

  .steps__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .step { display: flex; text-align: left; gap: var(--space-4); align-items: flex-start; }
  .step__icon-wrap { margin-bottom: 0; }
  .step__text { max-width: none; margin: 0; }

  .benefits__grid { grid-template-columns: 1fr; }
  .situations__grid { grid-template-columns: 1fr; }

  .promise__card { padding: var(--space-6); }
  .promise__price { font-size: 4rem; }
  .promise__checks { grid-template-columns: 1fr; }

  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: var(--space-6); }

  .footer__top { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer__bottom { flex-direction: column; gap: var(--space-4); text-align: center; }

  .sticky-cta { display: block; }
  .final-cta { padding: var(--space-12) 0; }
  .final-cta__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr; }
  .hero__price-card { max-width: 100%; }
  .logos-bar__logos { gap: var(--space-4); }
  .logos-bar__logo { font-size: var(--fs-base); }
}

/* --- Print --- */
@media print {
  .header, .announcement-bar, .sticky-cta, .final-cta { display: none; }
  .section { padding: 1rem 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
