/* =========================================================
   Fainhaus-Pflegebox · Stylesheet
   Palette: #2563eb (primary) · #38bdf8 (sky) · #14213D (ink)
   Buttons: gradient sky → blue (90deg, #38bdf8 → #2563eb)
   ========================================================= */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --sky: #38bdf8;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --btn-gradient: linear-gradient(90deg, #38bdf8 0%, #2563eb 100%);
  --btn-gradient-hover: linear-gradient(90deg, #0ea5e9 0%, #1d4ed8 100%);
  --ink: #14213D;
  --ink-muted: #3C4A66;
  --muted: #64748B;
  --gray: #64748B;
  --gray-light: #94A3B8;
  --border: #E2E8F0;
  --bg: #FFFFFF;
  --bg-light: #EEF6FF;
  --bg-mid: #DBEAFE;
  --bg-cold: #F8FAFC;
  --footer-bg: #0B2447;
  --success: #059669;
  --warn: #D97706;
  --danger: #DC2626;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 6px rgba(20,33,61,.06);
  --shadow: 0 10px 30px rgba(11,103,163,.10);
  --shadow-lg: 0 20px 60px rgba(11,103,163,.18);

  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --container: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); margin-bottom: .6rem; }
h4 { font-size: 1.05rem; margin-bottom: .6rem; }

p { color: var(--ink-muted); }

ul { list-style: none; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { padding: clamp(56px, 8vw, 110px) 0; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-lg { padding: 18px 34px; font-size: 1.1rem; }

.btn-primary {
  background: var(--btn-gradient);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37,99,235,.32);
}
.btn-primary:hover { background: var(--btn-gradient-hover); color:#fff; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,99,235,.42); }

.btn-accent {
  background: var(--btn-gradient);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37,99,235,.32);
}
.btn-accent:hover { background: var(--btn-gradient-hover); color:#fff; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,99,235,.42); }

.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover { background: var(--bg-light); color: var(--primary-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color:#fff; }

.btn-ghost {
  background: rgba(11,103,163,.08);
  color: var(--primary);
}
.btn-ghost:hover { background: rgba(11,103,163,.14); color: var(--primary-dark); }

/* =========================================================
   TOPBAR — slim trust strip
   ========================================================= */
.topbar {
  position: relative;
  z-index: 99;
  background: linear-gradient(90deg, #0B2447 0%, #14213D 50%, #0B2447 100%);
  color: #cbd5e1;
  font-size: .82rem;
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(56, 189, 248, .12);
}
.topbar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 24px;
  gap: 20px;
}
.topbar__badges {
  display: inline-flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.topbar__badges > span { display: inline-flex; align-items: center; gap: 6px; }
.topbar i { color: var(--sky); }
.topbar__sep { color: #7BC4F2; opacity: .35; }

@media (max-width: 720px) {
  .topbar__sep { display: none; }
  .topbar__badges { gap: 8px 14px; font-size: .76rem; }
  .topbar__inner { padding: 8px 16px; }
}

/* =========================================================
   HEADER — floating pill (AR-style)
   ========================================================= */
.site-header {
  position: relative;
  z-index: 100;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(213,228,248,.55);
  padding: 12px 16px;
  transition: padding .25s ease;
}
/* Nav sitzt jetzt im normalen Flow über dem Hero */
main {
  padding-top: 0;
}
.site-header.is-scrolled {
  background: transparent;
  box-shadow: none;
  border-bottom-color: transparent;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 8px 10px 8px 18px;
  max-width: 1240px;
  margin: 0 auto;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(213,228,248,.65);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.65);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.is-scrolled .site-header__inner {
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 40px rgba(15,23,42,.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.logo__mark {
  position: relative;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
  color: #fff;
  border-radius: 13px;
  font-size: 1.15rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}
.logo__mark::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), transparent 50%);
  pointer-events: none;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
}
.logo__text strong {
  font-size: 1.08rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.logo__text em {
  font-style: normal;
  font-size: .78rem;
  color: var(--primary);
  font-weight: 700;
  margin-top: 3px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* Pill navigation (Links sitzen direkt im Header-Pill) */
.nav { display: flex; justify-content: center; }
.nav__pill {
  display: inline-flex;
  gap: 2px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.nav__link {
  position: relative;
  padding: 9px 16px;
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
  border-radius: 999px;
  transition: color .22s ease, background .22s ease, transform .22s ease;
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--primary);
  background: rgba(255,255,255,.85);
}
.nav__link.is-active {
  color: #fff;
  background: linear-gradient(90deg, #38bdf8 0%, #2563eb 100%);
  box-shadow: 0 6px 14px rgba(37,99,235,.30);
}

/* Right action group */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  transition: background .2s ease;
}
.header-phone:hover { background: rgba(238,246,255,.7); color: var(--ink); }
.header-phone__icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(56,189,248,.18), rgba(37,99,235,.18));
  color: var(--primary);
  border-radius: 50%;
  font-size: .9rem;
}
.header-phone__text {
  display: flex; flex-direction: column; line-height: 1; font-family: var(--font-display);
}
.header-phone__text em {
  font-style: normal; font-size: .68rem; font-weight: 600;
  color: var(--gray); letter-spacing: .02em; text-transform: uppercase;
  margin-bottom: 3px;
}
.header-phone__text strong { font-size: .92rem; color: var(--ink); }

.site-header__cta { padding: 11px 20px; }
.site-header__cta i { font-size: .9rem; }

@media (max-width: 1180px) {
  .header-phone__text { display: none; }
  .header-phone { padding: 4px; }
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(238,246,255,.85);
  border: 1px solid rgba(213,228,248,.7);
  border-radius: 12px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background .2s ease;
}
.burger:hover { background: #fff; }
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 14px 18px 22px;
  background: #fff;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 14px;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}
.mobile-nav a i { color: var(--primary); width: 20px; text-align: center; }
.mobile-nav a:hover { background: var(--bg-light); color: var(--primary); }
.mobile-nav a.is-active { background: linear-gradient(90deg, #38bdf8, #2563eb); color: #fff; }
.mobile-nav a.is-active i { color: #fff; }
.mobile-nav__phone {
  margin-top: 8px;
  background: var(--bg-light);
  justify-content: center;
}
.mobile-nav__cta {
  justify-content: center;
  margin-top: 6px;
}
.mobile-nav.is-open { display: flex; }

@media (max-width: 980px) {
  .nav { display: none; }
  .site-header__actions { display: none; }
  .burger { display: inline-flex; }
  .site-header__inner { grid-template-columns: 1fr auto; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  margin-top: 0;
  padding: clamp(40px, 5vw, 72px) 0 clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 80% 10%, rgba(29,78,216,.08), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(11,103,163,.10), transparent 55%),
    linear-gradient(180deg, #F8FBFF 0%, #EEF6FF 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* HERO mit Fullscreen-Background (ohne Visual rechts) */
.hero--bg {
  padding: clamp(50px, 6vw, 90px) 0 clamp(28px, 3.5vw, 48px);
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero--bg .hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero-bg.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: -2;
}
.hero--bg .hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 251, 255, .96) 0%, rgba(248, 251, 255, .82) 40%, rgba(248, 251, 255, .35) 70%, rgba(248, 251, 255, .05) 100%),
    radial-gradient(circle at 15% 20%, rgba(11, 103, 163, .12), transparent 55%);
  z-index: -1;
}
.hero--bg .hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero--bg .hero__content {
  grid-column: 1;
  max-width: 600px;
}
.hero--bg h1 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  line-height: 1.14;
  margin-bottom: 10px;
}
.hero--bg .hero__lead {
  max-width: 540px;
  font-size: .98rem;
  margin-bottom: 14px;
}
.hero--bg .hero__badges { gap: 6px 12px; }
.hero--bg .hero__badges li { font-size: .85rem; }

@media (max-width: 960px) {
  .hero--bg {
    padding: clamp(70px, 11vw, 120px) 0 clamp(70px, 11vw, 120px);
    min-height: 560px;
  }
  .hero--bg .hero__bg {
    background-position: 70% center;
    opacity: 1;
  }
  .hero--bg .hero__overlay {
    background:
      linear-gradient(180deg, rgba(248, 251, 255, .88) 0%, rgba(248, 251, 255, .72) 55%, rgba(248, 251, 255, .55) 100%),
      radial-gradient(circle at 20% 30%, rgba(11, 103, 163, .10), transparent 60%);
  }
  .hero--bg .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero--bg .hero__content { max-width: 100%; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(11,103,163,.10);
  color: var(--primary);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero__eyebrow i { font-size: .9rem; }
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.hero h1 span { color: var(--primary); position: relative; }
.hero__lead {
  font-size: 1.12rem;
  color: var(--ink-muted);
  max-width: 540px;
  margin-bottom: 26px;
  line-height: 1.55;
  font-weight: 500;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}
.hero__badges i {
  color: var(--success);
  font-size: .95rem;
}
.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(20,33,61,.10);
  font-size: .85rem;
  color: var(--gray);
}
.hero__trust strong { color: var(--ink); font-weight: 700; }
.hero__trust .rating i { color: #F59E0B; margin-right: 2px; }

/* =========================================================
   BENEFITS / VORTEILE
   ========================================================= */
.benefits {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(1100px 420px at 50% -10%, rgba(56,189,248,.08), transparent 70%),
    linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
}
.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(rgba(11,103,163,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  opacity: .55;
}
.benefits__blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.benefits__blob--1 {
  top: -120px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(56,189,248,.30), transparent 70%);
}
.benefits__blob--2 {
  bottom: -140px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(11,103,163,.18), transparent 70%);
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}
.section-head__eyebrow {
  display: inline-block;
  color: var(--primary);
  background: var(--bg-light);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.section-head p {
  font-size: 1.08rem;
  margin-top: 10px;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit {
  position: relative;
  text-align: left;
  padding: 36px 28px 32px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 18px 40px -24px rgba(11,103,163,.18);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.benefit::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: .85;
  transform: scaleX(.35);
  transform-origin: left center;
  transition: transform .4s ease, opacity .3s ease;
}
.benefit:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 28px 50px -22px rgba(11,103,163,.30);
  border-color: rgba(56,189,248,.25);
}
.benefit:hover::before { transform: scaleX(1); opacity: 1; }
.benefit:hover .benefit__icon {
  transform: rotate(-4deg) scale(1.05);
  box-shadow: 0 14px 28px -8px rgba(11,103,163,.45);
}
.benefit__num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(11,103,163,.16);
  user-select: none;
  pointer-events: none;
}
.benefit__icon {
  width: 56px; height: 56px;
  margin: 0 0 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 22px -6px rgba(11,103,163,.35);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.benefit h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.benefit p {
  font-size: .94rem;
  line-height: 1.6;
  color: var(--muted);
}

/* =========================================================
   PFLEGEGRAD INFO / ÜBER UNS
   ========================================================= */
.pflegegrad {
  position: relative;
  background: linear-gradient(180deg, #F4FAFF 0%, #ffffff 100%);
  overflow: hidden;
}
.pflegegrad__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(56, 189, 248, .18), transparent 55%),
    radial-gradient(circle at 88% 82%, rgba(37, 99, 235, .12), transparent 55%);
}
.pflegegrad__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- MEDIA / BILD --- */
.pflegegrad__media {
  position: relative;
  isolation: isolate;
}
.pflegegrad__media::before {
  content: '';
  position: absolute;
  inset: -28px -28px 28px -18px;
  background: linear-gradient(135deg, rgba(56, 189, 248, .22), rgba(37, 99, 235, .12));
  border-radius: 40px;
  transform: rotate(-2.2deg);
  z-index: -1;
}
.pflegegrad__frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(15, 23, 42, .25),
    0 12px 28px -12px rgba(37, 99, 235, .2);
  transform: rotate(.3deg);
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}
.pflegegrad__frame:hover { transform: rotate(0) scale(1.01); }
.pflegegrad__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.pflegegrad__stat {
  position: absolute;
  right: -24px;
  bottom: 28px;
  background: #fff;
  border-radius: 22px;
  padding: 18px 22px;
  box-shadow:
    0 24px 50px -20px rgba(15, 23, 42, .28),
    0 0 0 1px rgba(219, 234, 254, .9);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  min-width: 180px;
}
.pflegegrad__stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pflegegrad__stat-label {
  font-size: .82rem;
  color: var(--ink-muted);
  line-height: 1.35;
}

.pflegegrad__chip {
  position: absolute;
  top: 20px;
  left: -16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 999px;
  box-shadow:
    0 18px 40px -18px rgba(15, 23, 42, .3),
    0 0 0 1px rgba(219, 234, 254, .9);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .02em;
  z-index: 2;
}
.pflegegrad__chip i {
  color: var(--primary);
  font-size: .95rem;
}

/* --- CONTENT / RECHTE SEITE --- */
.pflegegrad__content { max-width: 560px; }
.pflegegrad__content .section-head__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
}
.pflegegrad h2 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  line-height: 1.15;
}
.pflegegrad__lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.pflegegrad__lead strong {
  color: var(--primary);
  font-weight: 700;
}

.pflegegrad__list {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.pflegegrad__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(219, 234, 254, .8);
  box-shadow: 0 2px 0 rgba(15, 23, 42, .02), 0 8px 24px -12px rgba(37, 99, 235, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pflegegrad__list li:hover {
  transform: translateX(4px);
  border-color: rgba(56, 189, 248, .45);
  box-shadow: 0 4px 0 rgba(15, 23, 42, .02), 0 14px 32px -12px rgba(37, 99, 235, .18);
}
.pflegegrad__list-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #E0F2FE 0%, #DBEAFE 100%);
  color: var(--primary);
  font-size: 1.05rem;
}
.pflegegrad__list strong {
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}
.pflegegrad__list span {
  color: var(--ink-muted);
  font-size: .94rem;
  line-height: 1.5;
}

.pflegegrad__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
}
.pflegegrad__cta i { transition: transform .25s ease; }
.pflegegrad__cta:hover i { transform: translateX(4px); }

@media (max-width: 960px) {
  .pflegegrad__grid { grid-template-columns: 1fr; gap: 48px; }
  .pflegegrad__media::before { inset: -18px -12px 18px -8px; border-radius: 32px; }
  .pflegegrad__stat { right: 12px; bottom: -18px; padding: 14px 18px; min-width: 0; }
  .pflegegrad__stat-value { font-size: 1.75rem; }
  .pflegegrad__chip { top: 14px; left: 12px; }
  .pflegegrad__content { max-width: 100%; }
}

/* =========================================================
   STEPS / SO FUNKTIONIERT ES
   ========================================================= */
.steps {
  background: #fff;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.step {
  text-align: center;
  padding: 40px 22px;
  background: var(--bg-cold);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: all .3s ease;
}
.step:hover {
  background: var(--bg-light);
  transform: translateY(-4px);
  border-color: transparent;
}
.step__num {
  position: absolute;
  top: -22px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(11,103,163,.40);
}
.step__icon {
  font-size: 2rem;
  color: var(--primary);
  margin: 20px 0 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .94rem; }

/* =========================================================
   PRODUCTS / TYPISCHE INHALTE — Clean Symmetric Grid
   ========================================================= */
.products {
  background: linear-gradient(180deg, #F8FBFF, #EEF6FF);
  position: relative;
  overflow: hidden;
}
.products::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(56, 189, 248, .12), transparent 70%);
  pointer-events: none;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: center;
  gap: 18px;
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 6px rgba(20, 33, 61, .04);
  transition: transform .32s cubic-bezier(.2,.7,.2,1),
              box-shadow .32s ease,
              border-color .32s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(20, 33, 61, .10);
  border-color: rgba(11, 103, 163, .18);
}

/* Media Area */
.product-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: linear-gradient(135deg, #EEF6FF 0%, #DBEAFE 100%);
  flex-shrink: 0;
}
.product-card[data-cat="hygiene"] .product-card__media {
  background: linear-gradient(135deg, #EFF8FF 0%, #CFE6FB 100%);
}
.product-card[data-cat="desinfektion"] .product-card__media {
  background: linear-gradient(135deg, #EFF4FF 0%, #C7D7F5 100%);
}
.product-card[data-cat="schutz"] .product-card__media {
  background: linear-gradient(135deg, #E9EEF5 0%, #CBD5E1 100%);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-card__media img { transform: scale(1.05); }

/* Kategorie-Chip */
.product-card__cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--ink-muted);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: 0 2px 8px rgba(20, 33, 61, .08);
}
.product-card[data-cat="hygiene"]      .product-card__cat { color: #0369A1; }
.product-card[data-cat="desinfektion"] .product-card__cat { color: var(--primary-dark); }
.product-card[data-cat="schutz"]       .product-card__cat { color: #334155; }

/* Body */
.product-card__body {
  padding: 14px 16px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
  line-height: 1.3;
}
.product-card__body p {
  font-size: .84rem;
  color: var(--gray);
  margin-bottom: 10px;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tags */
.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 12px 0;
  padding: 0;
  list-style: none;
}
.product-card__tags li {
  display: inline-flex;
  align-items: center;
  background: #F1F5F9;
  color: var(--ink-muted);
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: .02em;
}
.product-card[data-cat="hygiene"]      .product-card__tags li { background: #EFF8FF; color: #0369A1; }
.product-card[data-cat="desinfektion"] .product-card__tags li { background: #EFF4FF; color: var(--primary-dark); }
.product-card[data-cat="schutz"]       .product-card__tags li { background: #EEF2F7; color: #334155; }

/* CTA-Link */
.product-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: .84rem;
  align-self: flex-start;
  padding: 10px 0 2px;
  border-top: 1px solid var(--border);
  width: 100%;
  padding-top: 10px;
  transition: gap .22s ease, color .22s ease;
}
.product-card__cta:hover { gap: 12px; color: var(--primary-dark); }
.product-card__cta i {
  font-size: .78rem;
  transition: transform .2s ease;
  margin-left: auto;
}
.product-card__cta:hover i { transform: translateX(3px); }

/* Footer-CTA unter Grid */
.products__footer {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.products__footer .btn { min-width: 280px; }
.products__foot-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: .88rem;
  font-weight: 500;
}
.products__foot-note i { color: var(--primary); font-size: .95rem; }

/* Tablet */
@media (max-width: 960px) {
  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 300px));
    gap: 14px;
    max-width: 640px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card__body { padding: 12px 14px; }
  .product-card__body h3 { font-size: .95rem; }
  .product-card__body p { font-size: .8rem; -webkit-line-clamp: 2; }
  .product-card__tags { display: none; }
  .products__footer { margin-top: 36px; }
  .products__footer .btn { min-width: 0; width: 100%; }
}

/* =========================================================
   INSURANCE LOGOS / KRANKENKASSEN
   ========================================================= */
.insurances {
  position: relative;
  padding: clamp(64px, 8vw, 96px) 0;
  background:
    radial-gradient(1200px 360px at 50% -10%, rgba(56,189,248,.10), transparent 70%),
    #ffffff;
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
  overflow: hidden;
}
.insurances__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}
.insurances__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.insurances__head h2 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 12px;
}
.insurances__head p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 56ch;
}

/* Marquee */
.insurances__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.insurances__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: insurance-scroll 38s linear infinite;
}
.insurances__marquee:hover .insurances__track { animation-play-state: paused; }
@keyframes insurance-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .insurances__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

.insurance-logo {
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  padding: 18px 26px;
  height: 88px;
  width: 180px;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.insurance-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -10px rgba(15,23,42,.18);
  border-color: rgba(56,189,248,.35);
}
.insurance-logo img {
  max-height: 48px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(35%);
  opacity: .9;
  transition: filter .25s ease, opacity .25s ease;
}
.insurance-logo:hover img { filter: grayscale(0%); opacity: 1; }

/* Foot row with checkmarks */
.insurances__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: clamp(28px, 4vw, 40px);
  font-size: .95rem;
  color: var(--ink);
}
.insurances__foot span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.insurances__foot i {
  color: #22c55e;
  font-size: 1rem;
}

@media (max-width: 760px) {
  .insurance-logo { width: 152px; height: 76px; padding: 12px 20px; border-radius: 12px; }
  .insurance-logo img { max-height: 40px; max-width: 112px; }
  .insurances__foot { gap: 10px 18px; font-size: .88rem; }
}

/* =========================================================
   CTA BLOCK (auf Innenseiten)
   ========================================================= */
/* =========================================================
   FINAL CTA HERO (vor Footer)
   ========================================================= */
.cta-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(40px, 5vw, 64px) 0;
  background-color: #0b67a3;
  background-image: url('/assets/img/ctaheropflegebox.webp');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: #fff;
}
.cta-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(6,30,60,.85) 0%, rgba(11,103,163,.55) 50%, rgba(11,103,163,.05) 100%);
}
.cta-hero__inner {
  position: relative;
  z-index: 1;
}
.cta-hero__content {
  max-width: 620px;
}
.cta-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.cta-hero__eyebrow i { color: #7dd3fc; }
.cta-hero h2 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 12px;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.cta-hero p {
  color: rgba(255,255,255,.92);
  font-size: .98rem;
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: 54ch;
  text-shadow: 0 1px 8px rgba(0,0,0,.18);
}
.cta-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-bottom: 18px;
}
.cta-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}
.cta-hero__phone i {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center;
  font-size: 1rem;
  transition: background .2s ease, transform .2s ease;
}
.cta-hero__phone:hover i { background: rgba(255,255,255,.26); transform: scale(1.06); }
.cta-hero__phone span { display: flex; flex-direction: column; line-height: 1.15; }
.cta-hero__phone em { font-style: normal; font-size: .78rem; opacity: .85; letter-spacing: .04em; text-transform: uppercase; }
.cta-hero__phone strong { font-size: 1.18rem; font-weight: 700; letter-spacing: -.01em; }
.cta-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .92rem;
  color: rgba(255,255,255,.92);
}
.cta-hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.cta-hero__trust i { color: #7dd3fc; }

@media (max-width: 760px) {
  .cta-hero {
    background-position: 70% center;
    padding: 40px 0;
  }
  .cta-hero__overlay {
    background:
      linear-gradient(180deg, rgba(6,30,60,.78) 0%, rgba(11,103,163,.7) 100%);
  }
  .cta-hero__content { max-width: 100%; text-align: center; }
  .cta-hero__actions { justify-content: center; }
  .cta-hero__trust { justify-content: center; }
}

.cta-block {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255,255,255,.14), transparent 50%);
  pointer-events: none;
}
.cta-block h2 { color: #fff; margin-bottom: 14px; }
.cta-block p { color: rgba(255,255,255,.92); font-size: 1.08rem; margin-bottom: 28px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-block .btn { margin: 0 6px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: #fff;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--bg-cold);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial__stars { color: #F59E0B; margin-bottom: 14px; }
.testimonial__stars i { margin-right: 2px; }
.testimonial__text {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testimonial__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial__name { display: block; font-weight: 700; color: var(--ink); }
.testimonial__role { display: block; color: var(--gray); font-size: .88rem; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: var(--bg-cold); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(11,103,163,.10);
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
  color: var(--primary);
  transition: transform .3s ease;
}
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item__body {
  padding: 0 24px 22px;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* =========================================================
   PAGE HEADER (Innenseiten)
   ========================================================= */
.page-head {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-mid));
  padding: clamp(50px, 7vw, 90px) 0 clamp(40px, 6vw, 70px);
  text-align: center;
}
.page-head h1 { margin-bottom: 14px; }
.page-head p { font-size: 1.1rem; max-width: 680px; margin: 0 auto; }
.breadcrumbs {
  display: flex; justify-content: center; gap: 8px;
  font-size: .9rem; color: var(--gray);
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs i { font-size: .7rem; align-self: center; color: var(--gray-light); }

/* =========================================================
   FUNNEL / PFLEGEBOX BEANTRAGEN
   ========================================================= */
.pbx-shell {
  background: var(--bg-cold);
  padding: clamp(40px, 6vw, 70px) 0 clamp(50px, 7vw, 90px);
  min-height: 70vh;
}

.pbx-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 860px;
  margin: 0 auto 40px;
  position: relative;
  flex-wrap: wrap;
}
.pbx-step {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  color: var(--gray);
  font-size: .92rem;
  transition: all .2s ease;
}
.pbx-step__num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.pbx-step.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 6px 14px rgba(11,103,163,.30);
}
.pbx-step.active .pbx-step__num {
  background: #fff;
  color: var(--primary);
}
.pbx-step.completed {
  background: var(--bg-light);
  color: var(--primary);
  border-color: var(--primary);
}
.pbx-step.completed .pbx-step__num { background: var(--primary); color: #fff; }

.pbx-wrap {
  max-width: 1320px;
  margin: 0 auto;
}

/* 2-Spalten Layout: Produkte links · Sidebar rechts */
.pbx-split {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(310px, 380px);
  gap: 26px;
  align-items: start;
}
.pbx-left { min-width: 0; }
.pbx-right {
  position: sticky;
  top: 110px;
  align-self: start;
}

.pbx-box {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  border: 1px solid #d5e4f8;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(41,77,128,.08);
}
.pbx-box-top h3 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--ink);
}
.pbx-box-top p {
  margin: 0 0 14px;
  color: #607089;
  font-size: .9rem;
  line-height: 1.4;
}

.pbx-progress-wrap { margin-bottom: 14px; }
.pbx-progress {
  width: 100%;
  height: 12px;
  background: #dfeef0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.pbx-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
  transition: width .4s cubic-bezier(.2,.8,.2,1), background .3s ease;
}

.pbx-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.pbx-stat {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(191,211,239,.95);
  border-radius: 14px;
  padding: 10px 12px;
}
.pbx-stat span {
  display: block;
  color: #6d7b93;
  font-size: .75rem;
  margin-bottom: 4px;
  font-weight: 600;
}
.pbx-stat strong {
  font-size: 1.4rem;
  color: var(--ink);
  font-family: var(--font-display);
}

.pbx-selected {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  max-height: 300px;
  overflow-y: auto;
}
.pbx-selected-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #dbe6f5;
}
.pbx-selected-row:last-child { border-bottom: none; }
.pbx-selected-thumb {
  width: 38px; height: 38px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
  border: 1px solid #dbe6f5;
}
.pbx-selected-name {
  font-weight: 600;
  color: var(--ink);
  font-size: .85rem;
  line-height: 1.25;
}
.pbx-selected-meta {
  color: #6d7b93;
  font-size: .72rem;
  font-weight: 500;
}
.pbx-selected-qty {
  font-weight: 800;
  color: var(--ink);
  font-size: .95rem;
  font-family: var(--font-display);
  background: #fff;
  border: 1px solid #d5e4f8;
  padding: 4px 10px;
  border-radius: 999px;
}
.pbx-empty {
  color: #7a899f;
  font-size: .88rem;
  text-align: center;
  padding: 14px 6px;
}

.pbx-next {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 16px 18px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #38bdf8 0%, #2563eb 100%);
  box-shadow: 0 10px 22px rgba(37,99,235,.22);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.pbx-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37,99,235,.30);
}
.pbx-next:disabled {
  opacity: .55;
  cursor: not-allowed;
  box-shadow: none;
}
.pbx-back-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: var(--gray);
  font-size: .85rem;
  font-weight: 600;
}
.pbx-back-link:hover { color: var(--primary); }

@media (max-width: 1020px) {
  .pbx-split { grid-template-columns: 1fr; }
  .pbx-right { position: static; }
}

.pbx-stage { display: none; }
.pbx-stage.is-active { display: block; }

.pbx-stage__head { text-align: center; margin-bottom: 36px; }
.pbx-stage__head h2 { margin-bottom: 10px; }
.pbx-stage__head p { font-size: 1.02rem; color: var(--ink-muted); }

/* Budget display */
.pbx-budget {
  max-width: 620px;
  margin: 0 auto 34px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.pbx-budget__bar {
  height: 10px;
  background: var(--bg-light);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.pbx-budget__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  transition: width .5s cubic-bezier(.2,.8,.2,1), background .3s ease, box-shadow .3s ease;
  position: relative;
}
.pbx-budget__fill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  transform: translateX(-100%);
  animation: shimmer 2.2s ease-in-out infinite;
  opacity: .0;
}
.pbx-budget.is-near-full .pbx-budget__fill { box-shadow: 0 0 0 0 rgba(217,119,6,.6); animation: budgetPulseWarn 1.6s ease-in-out infinite; }
.pbx-budget.is-full .pbx-budget__fill { box-shadow: 0 0 0 0 rgba(220,38,38,.6); animation: budgetPulseFull 1.2s ease-in-out infinite; }
.pbx-budget.is-full .pbx-budget__fill::after { opacity: 1; }

@keyframes budgetPulseWarn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,119,6,.45); }
  50%      { box-shadow: 0 0 0 10px rgba(217,119,6,0); }
}
@keyframes budgetPulseFull {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29,78,216,.55); }
  50%      { box-shadow: 0 0 0 14px rgba(29,78,216,0); }
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.pbx-budget__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.pbx-budget__meta span { color: var(--gray); font-weight: 500; font-size: .9rem; }
.pbx-budget__meta strong { color: var(--primary); font-size: 1.1rem; }

.pbx-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 16px;
  margin-bottom: 0;
}
.pbx-split .pbx-stage__head { text-align: left; margin-bottom: 22px; }
.pbx-split .pbx-stage__head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

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

.pbx-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid #d9e4f2;
  border-radius: 20px;
  min-height: 280px;
  box-shadow: 0 8px 22px rgba(27,60,104,.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pbx-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(27,60,104,.10);
}
.pbx-card-main {
  padding: 18px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pbx-card-image-wrap {
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  background: #eef4fb;
  border-radius: 14px;
  overflow: hidden;
}
.pbx-card-image {
  max-width: 100%; max-height: 100%;
  width: 100%; height: 100%;
  object-fit: cover;
}
.pbx-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.18;
  margin-bottom: 4px;
}
.pbx-card-sub {
  color: #7c8aa5;
  font-size: .78rem;
  line-height: 1.35;
  min-height: 18px;
  margin-bottom: 8px;
}
.pbx-card-price {
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: .95rem;
  margin-bottom: 6px;
}
.pbx-card-price strong { font-size: 1.15rem; }
.pbx-card-note {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  color: #9a5b00;
  background: #fff3cd;
  border: 1px solid #f6d68a;
}
.pbx-card-note.is-hidden { visibility: hidden; }

.pbx-card.is-over-budget .pbx-card-media,
.pbx-card.is-over-budget .pbx-card-body {
  opacity: .58;
  filter: saturate(.85);
  transition: opacity .2s ease, filter .2s ease;
}
.pbx-card.is-over-budget .pbx-card-note {
  opacity: 1;
  filter: none;
}
.pbx-card.is-over-budget [data-plus] {
  cursor: not-allowed;
}

.pbx-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  padding: 12px 16px 16px;
  border-top: 1px solid #edf3fa;
  background: rgba(246,250,255,.75);
}
.pbx-minus, .pbx-plus {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1.3rem; line-height: 1;
  font-weight: 700; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .15s ease, opacity .2s ease, box-shadow .2s ease, background .2s ease;
}
.pbx-minus { background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%); box-shadow: 0 8px 14px rgba(100,116,139,.18); }
.pbx-plus  { background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%); box-shadow: 0 8px 14px rgba(37,99,235,.20); }
.pbx-minus:hover:not(:disabled),
.pbx-plus:hover:not(:disabled) { transform: scale(1.06); }
.pbx-plus:disabled {
  background: #f1f5f9;
  color: #94a3b8;
  border: 2px solid #cbd5e1;
  box-shadow: none;
  cursor: not-allowed;
}
.pbx-minus:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.pbx-qty {
  min-width: 28px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: 1.1rem;
}

.pbx-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  max-width: 620px;
  margin: 0 auto;
}

/* Form step */
.pbx-form {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.pbx-form__row { display: grid; gap: 18px; margin-bottom: 16px; }
.pbx-form__row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .pbx-form__row--2 { grid-template-columns: 1fr; } }

.pbx-form label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: .92rem;
  margin-bottom: 6px;
}
.pbx-form input,
.pbx-form select,
.pbx-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-cold);
  transition: border-color .2s ease, background .2s ease;
}
.pbx-form input:focus,
.pbx-form select:focus,
.pbx-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11,103,163,.15);
}
.pbx-form__check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .92rem;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.pbx-form__check input { width: 18px; height: 18px; margin-top: 3px; }
.pbx-form__check a { color: var(--primary); font-weight: 600; }
.pbx-form__check.is-error,
.pbx-check-toggle.is-error {
  background: #FEF2F2;
  border: 1px solid #DC2626;
  border-radius: 10px;
  padding: 10px 12px;
  animation: shake .35s;
}
.pbx-form__check.is-error input,
.pbx-check-toggle.is-error input { outline: 2px solid #DC2626; }

/* Question Blocks (Beratung / Versorgung) */
.pbx-quest {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 22px 0 0;
  min-inline-size: auto;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.pbx-quest + .pbx-quest {
  margin-top: 18px;
  padding-top: 18px;
}
.pbx-quest legend {
  display: block;
  float: none;
  width: 100%;
  padding: 0;
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.4;
}
.pbx-quest__opts {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.pbx-opt {
  position: relative;
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .93rem;
  font-weight: 500 !important;
  color: var(--ink);
  margin-bottom: 0 !important;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.pbx-opt span {
  flex: 1;
  line-height: 1.4;
}
.pbx-opt:hover {
  border-color: rgba(56,189,248,.45);
  background: #fff;
}
.pbx-opt input[type="radio"],
.pbx-opt input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.pbx-opt input:checked + span {
  font-weight: 600;
  color: var(--primary-dark);
}
.pbx-opt:has(input:checked) {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11,103,163,.10);
}
.pbx-opt.is-error {
  border-color: var(--danger);
  background: #FEF2F2;
}
.pbx-quest__text {
  margin-top: 12px;
}
.pbx-quest__text textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: .95rem;
  resize: vertical;
  min-height: 80px;
  background: #fff;
}
.pbx-quest__text textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,103,163,.15);
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- Geburtsdatum als TT/MM/JJJJ ---- */
.pbx-dob {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.pbx-dob:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,103,163,.15);
}
.pbx-dob.is-error {
  border-color: var(--danger);
  background: #FEF2F2;
}
.pbx-dob__part {
  border: 0 !important;
  background: transparent !important;
  padding: 8px 2px !important;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  text-align: center;
  width: 2.4em;
  outline: none;
  color: var(--ink);
  font-weight: 600;
}
.pbx-dob__part--year { width: 3.8em; }
.pbx-dob__part::placeholder { color: #9CA3AF; font-weight: 400; }
.pbx-dob__sep {
  color: #9CA3AF;
  font-weight: 600;
  user-select: none;
}
.pbx-dob__hint {
  display: block;
  margin-top: 6px;
  font-size: .82rem;
  color: var(--danger);
}
.pbx-dob__hint[hidden] { display: none; }

/* ---- Custom Datepicker (Geburtsdatum) ---- */
.pbx-dp { position: relative; }
.pbx-dp__field {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease;
  min-height: 46px;
}
.pbx-dp__field:hover { border-color: var(--primary); }
.pbx-dp__field:focus,
.pbx-dp__field.is-open {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,103,163,.12);
}
.pbx-dp__field.is-error {
  border-color: var(--danger);
  background: #FEF2F2;
}
.pbx-dp__field i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.pbx-dp__value {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pbx-dp__value.is-placeholder { color: #9CA3AF; font-weight: 400; }

.pbx-dp__pop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 40;
  width: 300px;
  max-width: 100%;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(15,23,42,.16);
  user-select: none;
}
.pbx-dp__head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.pbx-dp__title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s ease;
}
.pbx-dp__title:hover { background: rgba(11,103,163,.08); color: var(--primary-dark); }

.pbx-dp__body {
  display: grid;
  gap: 6px;
  min-height: 180px;
}
.pbx-dp__body.is-years,
.pbx-dp__body.is-months { grid-template-columns: repeat(3, 1fr); }
.pbx-dp__body.is-days   { grid-template-columns: repeat(7, 1fr); gap: 2px; }

.pbx-dp__cell {
  appearance: none;
  border: none;
  background: transparent;
  font: inherit;
  font-size: .92rem;
  padding: 10px 4px;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
}
.pbx-dp__cell:hover:not(:disabled) {
  background: rgba(11,103,163,.1);
  color: var(--primary-dark);
}
.pbx-dp__cell.is-dim { color: #C4CBD4; }
.pbx-dp__cell.is-today { font-weight: 700; color: var(--primary); }
.pbx-dp__cell.is-selected {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
.pbx-dp__cell.is-selected:hover { background: var(--primary-dark); color: #fff; }
.pbx-dp__cell:disabled { opacity: .35; cursor: not-allowed; }
.pbx-dp__cell--dow {
  font-size: .7rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 4px 0;
  cursor: default;
  pointer-events: none;
}
.pbx-dp__cell--day { padding: 8px 0; font-variant-numeric: tabular-nums; }

.pbx-dp__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #EEF2F6;
}
.pbx-dp__nav-btn,
.pbx-dp__ok {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.pbx-dp__nav-btn:hover { background: rgba(11,103,163,.08); border-color: var(--primary); color: var(--primary); }
.pbx-dp__spacer { flex: 1; }
.pbx-dp__ok {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pbx-dp__ok:hover:not(:disabled) { background: var(--primary-dark); border-color: var(--primary-dark); }
.pbx-dp__ok:disabled { opacity: .45; cursor: not-allowed; }

.pbx-dob__btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
  flex-shrink: 0;
}
.pbx-dob__btn:hover {
  background: var(--primary-soft, #EEF5FF);
  border-color: var(--primary);
}
.pbx-dob__btn:active { transform: scale(.96); }
.pbx-dob__btn i { font-size: 1.05rem; }

.pbx-dob__picker {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---- Ja/Nein-Toggle fuer Fragen ---- */
.pbx-yesno {
  display: inline-flex;
  margin-top: 8px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color .18s ease;
}
.pbx-yesno__opt {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 26px;
  min-width: 78px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  transition: background .18s ease, color .18s ease;
  margin: 0 !important;
  line-height: 1.4;
}
.pbx-yesno__opt span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pbx-yesno__opt span i { display: none; }
.pbx-yesno__opt:hover:not(:has(input:checked)) {
  color: var(--primary-dark);
  background: rgba(11,103,163,.05);
}
.pbx-yesno__opt input { position: absolute; opacity: 0; pointer-events: none; }
.pbx-yesno__opt:has(input:checked) {
  background: rgba(11,103,163,.1);
  color: var(--primary-dark);
  font-weight: 600;
}
.pbx-yesno.is-error {
  border-color: var(--danger);
  background: #FEF2F2;
}

/* ---- Sub-Frage nach Ja/Nein (z.B. Beratungsart) ---- */
.pbx-subq {
  margin-top: 14px;
  padding: 14px 16px;
  background: #F8FBFF;
  border: 1px dashed var(--border);
  border-radius: 12px;
  animation: pbxSubqIn .22s ease;
}
.pbx-subq[hidden] { display: none; }
.pbx-subq__label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.pbx-subq__hint {
  display: block;
  margin-top: 8px;
  font-size: .78rem;
  color: var(--muted, #6B7280);
}
@keyframes pbxSubqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pbx-hint {
  display: block;
  margin-top: 4px;
  font-size: .78rem;
  color: var(--muted, #6B7280);
  letter-spacing: .01em;
}

/* ---- Autocomplete (Pflegekasse) ---- */
.pbx-ac__wrap {
  position: relative;
}
.pbx-ac__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 30;
  margin: 0;
  padding: 6px;
  list-style: none;
  max-height: 260px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .14);
}
.pbx-ac__list li {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .95rem;
  color: var(--ink);
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
  line-height: 1.35;
}
.pbx-ac__list li strong {
  color: var(--primary);
  font-weight: 700;
}
.pbx-ac__list li:hover,
.pbx-ac__list li.is-active {
  background: rgba(11,103,163,.08);
  color: var(--primary-dark);
}
.pbx-ac__list li.is-active strong,
.pbx-ac__list li:hover strong {
  color: var(--primary-dark);
}

/* ---- Abweichende Lieferanschrift ---- */
.pbx-check-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin: 22px 0 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.pbx-check-toggle:hover { border-color: rgba(56,189,248,.45); }
.pbx-check-toggle input {
  width: 18px; height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin: 0;
}
.pbx-check-toggle:has(input:checked) {
  border-color: var(--primary);
  background: rgba(11,103,163,.05);
  color: var(--primary-dark);
}
.pbx-shipping {
  margin-top: 14px;
  padding: 18px;
  background: rgba(11,103,163,.04);
  border: 1px dashed rgba(11,103,163,.25);
  border-radius: var(--radius);
  animation: pbxShippingIn .25s ease;
}
@keyframes pbxShippingIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Summary */
.pbx-summary {
  max-width: 620px;
  margin: 0 auto 22px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
}
.pbx-summary h3 { font-size: 1rem; margin-bottom: 14px; }
.pbx-summary__list { display: grid; gap: 10px; }
.pbx-summary__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: .95rem;
}
.pbx-summary__row:last-child { border-bottom: none; }
.pbx-summary__row strong { color: var(--ink); font-family: var(--font-display); }

/* =========================================================
   PREFOOTER CTA
   ========================================================= */
.prefoot {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: clamp(40px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.prefoot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(255,255,255,.12), transparent 50%);
  pointer-events: none;
}
.prefoot__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.prefoot h2 { color: #fff; margin-bottom: 10px; }
.prefoot p { color: rgba(255,255,255,.92); font-size: 1.05rem; }
.prefoot__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.prefoot__phone {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex; align-items: center; gap: 10px;
}
.prefoot__phone:hover { color: #fff; opacity: .85; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: linear-gradient(180deg, #0B2447 0%, #08193A 100%);
  color: #CBD5E1;
  padding: 70px 0 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, .4), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer__col h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a {
  color: #CBD5E1;
  font-size: .94rem;
  transition: color .2s ease;
}
.footer__col a:hover { color: #fff; }

.logo--footer .logo__text strong { color: #fff; }
.logo--footer .logo__text em { color: var(--sky); }

.footer__tag {
  color: #94A3B8;
  font-size: .94rem;
  margin: 18px 0 22px;
  max-width: 320px;
  line-height: 1.6;
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(56, 189, 248, .10);
  border: 1px solid rgba(56, 189, 248, .18);
  border-radius: 10px;
  color: #fff;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.footer__socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer__contact { display: grid; gap: 10px; }
.footer__contact li {
  display: flex; align-items: center; gap: 10px;
  font-size: .94rem;
}
.footer__contact i {
  color: var(--sky);
  width: 16px;
  text-align: center;
}

.footer__bottom {
  border-top: 1px solid rgba(56, 189, 248, .12);
  padding: 22px 0;
  font-size: .88rem;
}
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { color: #94A3B8; }
.footer__legal a:hover { color: #fff; }

/* =========================================================
   SCROLL TO TOP
   ========================================================= */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  z-index: 80;
  transition: transform .2s ease, background .2s ease;
}
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* =========================================================
   ANIMATIONS · Scroll reveal + Header scrolled state
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(11,103,163,.08);
  background: rgba(255,255,255,.98);
}

.scroll-top { opacity: 0; pointer-events: none; transform: translateY(20px); transition: opacity .3s, transform .3s; }
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

/* Hover micro-interactions */
.btn { transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease, background .2s ease, color .2s ease; }
.btn:active { transform: translateY(1px) scale(.98); }

.product__img img { transition: transform .6s cubic-bezier(.2,.7,.2,1); }

.pbx-qty { transition: transform .2s ease, color .2s ease; display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero__grid, .pflegegrad__grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .products__grid, .testimonials__grid, .pbx-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .prefoot__inner { grid-template-columns: 1fr; text-align: center; }
  .prefoot__cta { align-items: center; }
}

@media (max-width: 768px) {
  .nav, .site-header__cta { display: none; }
  .burger { display: flex; }

  .benefits__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .products__grid, .testimonials__grid, .pbx-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .pbx-steps { gap: 4px; }
  .pbx-step { padding: 8px 10px; font-size: .82rem; }
}

/* =========================================================
   Kontakt-Sektion (One-Pager)
   ========================================================= */
.contact {
  padding: clamp(60px, 9vw, 110px) 0;
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(56,189,248,.10), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(37,99,235,.08), transparent 60%),
    #F8FAFC;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact__info h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.15;
  margin: 14px 0 16px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.contact__lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 46ch;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.contact__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact__list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(2, 6, 23, .06);
  border-color: rgba(37, 99, 235, .25);
}
.contact__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(37, 99, 235, .25);
}
.contact__list strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}
.contact__list a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.contact__list a:hover { text-decoration: underline; }
.contact__list em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: .88rem;
  margin-top: 2px;
}
.contact__list span {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}

.contact__form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 30px 60px -25px rgba(2, 6, 23, .15);
}
.contact__form h3 {
  font-size: 1.4rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.contact__form > p {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: .96rem;
}

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

/* =========================================================
   Unterschrift (Stage 4)
   ========================================================= */
.pbx-sig-block { background: #fff; }
.pbx-sig-block h3 i { color: var(--primary); margin-right: 8px; }
.pbx-req { color: #DC2626; font-weight: 800; }
.pbx-sig-hint {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0 0 14px;
}
.pbx-sig-frame {
  position: relative;
  width: 100%;
  height: 200px;
  background:
    linear-gradient(180deg, #FAFCFF 0%, #F1F5FB 100%);
  border: 2px dashed #94A3B8;
  border-radius: 14px;
  overflow: hidden;
  cursor: crosshair;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.pbx-sig-frame.is-signed {
  border-style: solid;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .08);
  cursor: default;
}
.pbx-sig-line {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 38px;
  height: 1px;
  background: repeating-linear-gradient(90deg, #CBD5E1 0 6px, transparent 6px 12px);
  pointer-events: none;
}
.pbx-sig-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #94A3B8;
  font-style: italic;
  font-size: .98rem;
  letter-spacing: .01em;
  pointer-events: none;
  transition: opacity .2s ease;
}
.pbx-sig-frame.is-signed .pbx-sig-placeholder { opacity: 0; }
.pbx-sig-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
}
.pbx-sig-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pbx-sig-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  color: var(--muted);
  font-weight: 600;
}
.pbx-sig-status.is-ok { color: #059669; }
.pbx-sig-status.is-ok i::before { content: "\f058"; font-weight: 900; }

/* =========================================================
   CART PERSISTENCE — Header Badge, Resume Banner, Exit Modal
   ========================================================= */

/* ---------- Header Cart Badge ---------- */
.cart-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 999px;
  color: var(--primary-dark);
  text-decoration: none;
  font-family: inherit;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 2px 6px rgba(37, 99, 235, .08);
}
.cart-badge:hover {
  transform: translateY(-1px);
  background: #DBEAFE;
  box-shadow: 0 6px 18px rgba(37, 99, 235, .18);
  color: var(--primary-dark);
}
.cart-badge__icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
}
.cart-badge__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #DC2626;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px #fff;
  line-height: 1;
  animation: cart-pop .35s ease;
}
@keyframes cart-pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.cart-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.cart-badge__text em {
  font-style: normal;
  font-size: 11px;
  color: #64748B;
  font-weight: 500;
}
.cart-badge__text strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-dark);
}
@media (max-width: 900px) {
  .cart-badge__text { display: none; }
  .cart-badge { padding: 4px; gap: 0; }
}

/* ---------- Resume Banner ---------- */
.resume-banner {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: linear-gradient(90deg, #0B67A3, #2563eb);
  color: #fff;
  font-family: inherit;
  box-shadow: 0 2px 12px rgba(11, 103, 163, .24);
  animation: slide-in-top .4s ease;
}
@keyframes slide-in-top {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.resume-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.resume-banner__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FCD34D;
  box-shadow: 0 0 0 0 rgba(252, 211, 77, .9);
  animation: pulse-dot 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(252, 211, 77, .8); }
  70%  { box-shadow: 0 0 0 12px rgba(252, 211, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(252, 211, 77, 0); }
}
.resume-banner__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}
.resume-banner__text strong { font-size: 14px; font-weight: 800; }
.resume-banner__text span { font-size: 12px; color: rgba(255, 255, 255, .85); }
.resume-banner__btn {
  background: #fff;
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.resume-banner__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
  color: var(--primary-dark);
}
.resume-banner__close {
  background: transparent;
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .8;
  transition: opacity .18s ease, background .18s ease;
}
.resume-banner__close:hover { opacity: 1; background: rgba(255,255,255,.12); }
@media (max-width: 640px) {
  .resume-banner__inner { padding: 8px 12px; gap: 10px; }
  .resume-banner__text strong { font-size: 13px; }
  .resume-banner__text span { font-size: 11px; }
  .resume-banner__btn { padding: 6px 10px; font-size: 12px; }
}

/* ---------- Exit Intent Modal ---------- */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  padding: 20px;
}
.exit-modal.is-open { opacity: 1; pointer-events: auto; }
.exit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .68);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.exit-modal__card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px 28px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .4);
  transform: translateY(16px) scale(.97);
  transition: transform .3s cubic-bezier(.17,.84,.44,1);
  text-align: center;
}
.exit-modal.is-open .exit-modal__card { transform: translateY(0) scale(1); }
.exit-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #F1F5F9;
  cursor: pointer;
  color: #475569;
  transition: background .18s ease, transform .18s ease;
  font-size: 14px;
}
.exit-modal__close:hover { background: #E2E8F0; transform: rotate(90deg); }
.exit-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--primary);
  background: #EFF6FF;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.exit-modal__card h3 {
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #0F172A;
  letter-spacing: -0.01em;
}
.exit-modal__card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.exit-modal__form {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.exit-modal__form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #CBD5E1;
  font-family: inherit;
  font-size: 14px;
  background: #F8FAFC;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.exit-modal__form input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}
.exit-modal__form button { white-space: nowrap; padding: 12px 18px; }
.exit-modal__actions {
  margin: 14px 0 8px;
}
.exit-modal__note {
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 8px;
  margin: 6px 0 0;
}
.exit-modal__note.is-ok { background: #DCFCE7; color: #166534; }
.exit-modal__note.is-error { background: #FEE2E2; color: #991B1B; }
.exit-modal__meta {
  font-size: 12px;
  color: #94A3B8;
  margin: 14px 0 0;
}
.exit-modal__meta i { color: #10B981; margin-right: 4px; }
@media (max-width: 520px) {
  .exit-modal__card { padding: 30px 22px 22px; }
  .exit-modal__card h3 { font-size: 20px; }
  .exit-modal__form { flex-direction: column; }
  .exit-modal__form button { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .resume-banner,
  .cart-badge__count,
  .resume-banner__pulse,
  .exit-modal,
  .exit-modal__card { animation: none !important; transition: none !important; }
}

/* =========================================================
   STATS / ANIMATED COUNTER
   ========================================================= */
.stats {
  background: linear-gradient(135deg, #0B2447 0%, #14213D 60%, #0B67A3 100%);
  color: #fff;
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, .18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(37, 99, 235, .22), transparent 55%);
  pointer-events: none;
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat {
  padding: 20px 16px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.18), transparent);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #fff 0%, #7DD3FC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  display: block;
  font-size: .92rem;
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
  line-height: 1.4;
  max-width: 220px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 8px 4px; }
  .stat + .stat::before { display: none; }
  .stat { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 420px) {
  .stat__label { font-size: .82rem; }
}

/* =========================================================
   STICKY MOBILE CTA BAR
   ========================================================= */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(11, 36, 71, .12);
  padding: 8px max(10px, env(safe-area-inset-left)) max(8px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-right));
  gap: 10px;
  transform: translateY(0);
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
}
.mobile-cta.is-hidden { transform: translateY(120%); }

.mobile-cta__phone,
.mobile-cta__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  min-height: 48px;
}
.mobile-cta__phone:active,
.mobile-cta__primary:active { transform: scale(.97); }

.mobile-cta__phone {
  flex: 0 0 auto;
  background: #F1F5F9;
  color: var(--ink);
  padding: 14px 18px;
  border: 1px solid var(--border);
}
.mobile-cta__phone i { color: var(--primary); font-size: 1.05rem; }

.mobile-cta__primary {
  flex: 1;
  background: var(--btn-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, .28);
}
.mobile-cta__primary i { font-size: 1rem; }

.mobile-cta { display: none !important; }

/* =========================================================
   MOBILE POLISH — Gesamte Site + Funnel
   ========================================================= */
@media (max-width: 768px) {
  /* Container & Sections luftiger aber nicht riesig */
  .wrap { padding: 0 18px; }
  section { padding: 48px 0; }

  /* Typography skaliert runter */
  h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); line-height: 1.18; }
  h2 { font-size: clamp(1.45rem, 5.4vw, 1.9rem); line-height: 1.2; }
  h3 { font-size: 1.08rem; }

  /* Section heads kompakter */
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: .95rem; }
  .section-head__eyebrow { font-size: .72rem; padding: 4px 10px; margin-bottom: 10px; }

  /* Buttons besser tappbar */
  .btn { padding: 13px 22px; font-size: .96rem; min-height: 48px; }
  .btn-lg { padding: 15px 26px; font-size: 1rem; min-height: 52px; }
  .btn-sm { padding: 9px 16px; font-size: .88rem; min-height: 40px; }

  /* Header */
  .site-header__inner { padding: 10px 18px; gap: 10px; }
  .logo__mark { width: 36px; height: 36px; font-size: 1rem; border-radius: 11px; }
  .logo__text strong { font-size: .98rem; }
  .logo__text em { font-size: .68rem; margin-top: 2px; }
  .burger { width: 42px; height: 42px; }

  /* Hero */
  .hero--bg { padding: 80px 0 90px; min-height: 600px; }
  .hero--bg h1 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
  .hero--bg .hero__lead { font-size: 1.05rem; margin-bottom: 30px; line-height: 1.6; }
  .hero__eyebrow { font-size: .76rem; padding: 6px 12px; margin-bottom: 18px; }
  .hero__ctas { margin-bottom: 30px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__badges { gap: 10px 14px; }
  .hero__badges li { font-size: .85rem; }

  /* Insurances */
  .insurances__foot { font-size: .82rem; gap: 8px 14px; }

  /* Benefits */
  .benefit { padding: 22px 18px 20px; border-radius: 16px; }
  .benefit__icon { width: 44px; height: 44px; font-size: 1.05rem; margin-bottom: 14px; }
  .benefit__num { font-size: 1.8rem; top: 12px; right: 16px; }
  .benefit h3 { font-size: 1rem; margin-bottom: 6px; }
  .benefit p { font-size: .88rem; line-height: 1.5; }

  /* Steps */
  .step { padding: 30px 18px 22px; }
  .step__num { width: 38px; height: 38px; top: -18px; font-size: .95rem; }
  .step__icon { font-size: 1.6rem; margin: 12px 0 10px; }
  .step h3 { font-size: 1rem; }
  .step p { font-size: .88rem; }

  /* Testimonials */
  .testimonial { padding: 22px 18px; border-radius: 16px; }
  .testimonial__text { font-size: .94rem; line-height: 1.6; margin-bottom: 16px; }
  .testimonial__author { padding-top: 14px; }
  .testimonial__avatar { width: 40px; height: 40px; }

  /* FAQ */
  .faq-item summary { padding: 16px 18px; font-size: .95rem; gap: 10px; }
  .faq-item__body { padding: 0 18px 18px; font-size: .92rem; line-height: 1.6; }

  /* CTA-Hero */
  .cta-hero { padding: 44px 0; }
  .cta-hero h2 { font-size: 1.55rem; }
  .cta-hero p { font-size: .94rem; }
  .cta-hero__phone strong { font-size: 1.05rem; }
  .cta-hero__phone em { font-size: .72rem; }
  .cta-hero__trust { font-size: .86rem; gap: 8px 16px; }

  /* Prefoot */
  .prefoot { padding: 40px 0; }
  .prefoot__inner { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .prefoot h2 { font-size: 1.4rem; }
  .prefoot p { font-size: .96rem; }
  .prefoot__cta { align-items: center; width: 100%; }
  .prefoot__cta .btn { width: 100%; max-width: 360px; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer__grid { gap: 28px; margin-bottom: 32px; }
  .footer__col h4 { margin-bottom: 12px; }
  .footer__contact li, .footer__col a { font-size: .9rem; }
  .footer__tag { font-size: .9rem; margin: 14px 0 16px; }
  .footer__bottom { padding: 18px 0; font-size: .82rem; }
  .footer__legal { gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* =========================================================
     FUNNEL / PFLEGEBOX
     ========================================================= */
  .pbx-shell { padding: 28px 0 40px; }
  .pbx-wrap { padding: 0; }

  /* Step-Bar: kompakter, horizontal scroll-safe */
  .pbx-steps {
    gap: 6px;
    margin: 0 -4px 22px;
    padding: 0 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .pbx-steps::-webkit-scrollbar { display: none; }
  .pbx-step {
    padding: 7px 10px;
    font-size: .78rem;
    flex-shrink: 0;
    gap: 7px;
  }
  .pbx-step__num { width: 22px; height: 22px; font-size: .78rem; }
  .pbx-step span { white-space: nowrap; }

  /* Stage Head */
  .pbx-stage__head { margin-bottom: 20px; }
  .pbx-stage__head h2 { font-size: 1.4rem; margin-bottom: 6px; }
  .pbx-stage__head p { font-size: .92rem; }
  .pbx-split .pbx-stage__head h2 { font-size: 1.35rem; }

  /* Split-Layout: Sidebar unter Grid (existing @960) */
  .pbx-split { gap: 18px; }

  /* Pbx-Box (rechts, wird auf mobile unten) */
  .pbx-box { padding: 16px; border-radius: 16px; }
  .pbx-box-top h3 { font-size: 1.25rem; }
  .pbx-box-top p { font-size: .85rem; }
  .pbx-progress { height: 10px; }
  .pbx-stats { gap: 8px; margin-bottom: 12px; }
  .pbx-stat { padding: 8px 10px; border-radius: 12px; }
  .pbx-stat strong { font-size: 1.15rem; }
  .pbx-selected { max-height: 220px; }

  /* Top-Budget (Stage 1 mobile) */
  .pbx-budget { padding: 14px 16px; margin-bottom: 18px; border-radius: 14px; }
  .pbx-budget__meta strong { font-size: 1rem; }
  .pbx-budget__meta span { font-size: .82rem; }

  /* Produktkarten im Funnel */
  .pbx-grid { grid-template-columns: 1fr; gap: 10px; }
  .pbx-card { min-height: 0; border-radius: 14px; }
  .pbx-card-main {
    display: grid;
    grid-template-columns: 84px 1fr;
    column-gap: 14px;
    row-gap: 2px;
    align-items: center;
    text-align: left;
    padding: 14px 14px 10px;
  }
  .pbx-card-image-wrap {
    grid-row: 1 / span 3;
    grid-column: 1;
    width: 84px; height: 84px;
    margin-bottom: 0;
    border-radius: 10px;
  }
  .pbx-card-title,
  .pbx-card-sub,
  .pbx-card-note { grid-column: 2; }
  .pbx-card-title { font-size: .96rem; margin-bottom: 2px; }
  .pbx-card-sub { font-size: .76rem; min-height: 0; margin-bottom: 2px; }
  .pbx-card-note { font-size: .62rem; padding: 3px 7px; margin-top: 2px; }
  .pbx-controls { padding: 10px 14px 12px; gap: 12px; border-top: 1px solid #edf3fa; }
  .pbx-minus, .pbx-plus { width: 38px; height: 38px; font-size: 1.2rem; }
  .pbx-qty { min-width: 24px; font-size: 1rem; }

  /* Form */
  .pbx-form { padding: 18px 16px; border-radius: 14px; }
  .pbx-form__row { gap: 14px; margin-bottom: 12px; }
  .pbx-form label { font-size: .88rem; margin-bottom: 5px; }
  .pbx-form input,
  .pbx-form select,
  .pbx-form textarea { padding: 12px 14px; font-size: 16px; border-radius: 12px; }

  /* Radio/Checkbox Optionen */
  .pbx-quest legend { font-size: .9rem; }
  .pbx-opt { padding: 10px 12px; font-size: .88rem; gap: 10px; }
  .pbx-quest__text textarea { min-height: 70px; font-size: .92rem; }

  /* Datepicker-Field */
  .pbx-dp__field { padding: 12px 14px; font-size: .95rem; min-height: 44px; }
  .pbx-dp__pop { width: 280px; padding: 12px; }

  /* Check-Toggles (DSGVO/Beratung) */
  .pbx-form__check { font-size: .86rem; gap: 8px; margin-bottom: 12px; }
  .pbx-check-toggle { padding: 11px 13px; font-size: .88rem; margin-top: 16px; }

  /* Shipping block */
  .pbx-shipping { padding: 14px; border-radius: 12px; }

  /* Summary */
  .pbx-summary { padding: 18px 16px; border-radius: 14px; margin-bottom: 18px; }
  .pbx-summary h3 { font-size: .95rem; margin-bottom: 10px; }
  .pbx-summary__row { font-size: .9rem; padding: 6px 0; }

  /* Signature canvas */
  .pbx-sig-frame { height: 150px; border-radius: 12px; }
  .pbx-sig-hint { font-size: .88rem; margin-bottom: 10px; }

  /* Next/Back Navigation */
  .pbx-next { padding: 14px 16px; font-size: 1rem; }
  .pbx-nav { gap: 10px; }

  /* Krankenkasse-Autocomplete */
  .pbx-ac__list { max-height: 220px; }
  .pbx-ac__list li { padding: 10px 12px; font-size: .9rem; }

  /* Resume-Banner über Header kompakter */
  .resume-banner__inner { padding: 8px 12px; gap: 10px; }
}

/* Extra-klein: iPhone SE / 360px */
/* =========================================================
   ANIMATIONS · Trust-Paket
   ========================================================= */

/* Hero Logo-Icon sanft schweben */
.hero--bg .logo__mark { animation: floatSoft 4.2s ease-in-out infinite; }
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce) {
  .logo__mark { animation: none; }
}

/* Steps Connector — Linie die sich beim Scroll zeichnet */
.steps__grid { position: relative; }
.steps__grid::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 10%, var(--primary) 90%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
  z-index: 0;
  opacity: .35;
}
.steps__grid.is-connected::before { transform: scaleX(1); }
.step { position: relative; z-index: 1; }
@media (max-width: 1024px) {
  .steps__grid::before { display: none; }
}

/* Stat-Counter sanfter Fade beim Ankommen */
.stat__num {
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.stat.is-counting .stat__num {
  transform: scale(1.04);
}

/* Section-Head Eyebrow Slide-In */
.section-head__eyebrow {
  transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .6s ease;
}
.reveal .section-head__eyebrow { transform: translateY(-6px); opacity: 0; }
.reveal.is-visible .section-head__eyebrow { transform: translateY(0); opacity: 1; transition-delay: .1s; }

/* Benefits Icon Ripple bei Hover (bereits existiert rotate/scale, jetzt + Wellen-Effekt) */
.benefit__icon { position: relative; }
.benefit__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(56,189,248,.3);
  opacity: 0;
  transform: scale(.9);
  transition: opacity .4s ease, transform .5s ease;
  pointer-events: none;
}
.benefit:hover .benefit__icon::after { opacity: 1; transform: scale(1.25); }

/* =========================================================
   FUNNEL ANIMATIONS · Delight-Paket
   ========================================================= */

/* Card-Pop wenn Produkt dazukommt */
@keyframes cardPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.025); }
  100% { transform: scale(1); }
}
.pbx-card.is-popped {
  animation: cardPop .4s cubic-bezier(.2,.8,.2,1);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.14), 0 12px 26px rgba(27,60,104,.10);
}

/* Plus/Minus Button Bump */
@keyframes btnBump {
  0%   { transform: scale(1); }
  40%  { transform: scale(.85); }
  100% { transform: scale(1); }
}
.pbx-plus.is-bumped,
.pbx-minus.is-bumped { animation: btnBump .3s ease; }

/* Produkt-Karte markiert (qty > 0) */
.pbx-card.is-active {
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 8px 22px rgba(27,60,104,.08), 0 0 0 2px rgba(37,99,235,.08);
}

/* Stage-Transition Slide */
@keyframes stageSlideIn {
  0%   { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes stageSlideInBack {
  0%   { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}
.pbx-stage.is-active { animation: stageSlideIn .45s cubic-bezier(.2,.8,.2,1); }
.pbx-stage.is-active.is-back { animation: stageSlideInBack .45s cubic-bezier(.2,.8,.2,1); }

/* Step-Bar: active-Step hat sanften Glow-Puls */
@keyframes stepActivePulse {
  0%, 100% { box-shadow: 0 6px 14px rgba(11,103,163,.30), 0 0 0 0 rgba(37,99,235,.25); }
  50%      { box-shadow: 0 6px 14px rgba(11,103,163,.30), 0 0 0 6px rgba(37,99,235,0); }
}
.pbx-step.active { animation: stepActivePulse 2.4s ease-in-out infinite; }

/* Selected-Row im Summary pulsiert kurz wenn hinzugefügt */
@keyframes rowAdded {
  0%   { background: rgba(37,99,235,.12); transform: translateX(-4px); }
  100% { background: transparent; transform: translateX(0); }
}
.pbx-selected-row.is-new { animation: rowAdded .55s ease; }

/* Signature Canvas Glow wenn aktiv beschrieben */
.pbx-sig-frame.is-drawing {
  border-color: var(--primary);
  box-shadow: 0 0 0 6px rgba(37,99,235,.10);
}

/* Success-Check (danke.php) SVG Stroke-Draw */
.success-check {
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  display: block;
}
.success-check__circle {
  fill: none;
  stroke: url(#checkGrad);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: checkDrawCircle .8s cubic-bezier(.2,.8,.2,1) .1s forwards;
}
.success-check__mark {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: checkDrawMark .5s cubic-bezier(.2,.8,.2,1) .8s forwards;
}
.success-check__fill {
  transform: scale(0);
  transform-origin: center;
  transform-box: fill-box;
  animation: checkFill .5s cubic-bezier(.2,.8,.2,1) .5s forwards;
}
@keyframes checkDrawCircle { to { stroke-dashoffset: 0; } }
@keyframes checkDrawMark   { to { stroke-dashoffset: 0; } }
@keyframes checkFill       { to { transform: scale(1); } }

@media (max-width: 400px) {
  .wrap { padding: 0 14px; }
  section { padding: 40px 0; }
  .site-header__inner { padding: 9px 14px; gap: 8px; }
  .logo__text em { display: none; }
  .hero--bg { padding: 70px 0 80px; min-height: 560px; }
  .hero--bg h1 { font-size: 1.8rem; margin-bottom: 16px; }
  .hero--bg .hero__lead { font-size: 1rem; margin-bottom: 26px; }
  .pbx-card-image-wrap { width: 72px; height: 72px; }
  .pbx-minus, .pbx-plus { width: 36px; height: 36px; }
  .pbx-step { padding: 6px 9px; font-size: .72rem; }
  .pbx-step__num { width: 20px; height: 20px; font-size: .72rem; }
  .mobile-cta__phone { padding: 12px 14px; font-size: .88rem; }
  .mobile-cta__primary { padding: 12px 10px; font-size: .9rem; }
}

/* =========================================================
   Cookie-Banner (DSGVO)
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(20px);
  width: calc(100% - 32px);
  max-width: 960px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
  padding: 18px 22px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.cookie-banner__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.cookie-banner__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.cookie-banner__text strong {
  display: block;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 4px;
  font-weight: 700;
}
.cookie-banner__text p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.45;
  color: #475569;
}
.cookie-banner__text a {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__actions .btn-sm {
  padding: 11px 18px;
  font-size: .88rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 12px;
    padding: 16px;
    width: calc(100% - 20px);
    border-radius: 16px;
  }
  .cookie-banner__inner {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }
  .cookie-banner__actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .cookie-banner__actions .btn-sm {
    flex: 1;
    padding: 12px 14px;
  }
  .cookie-banner__text p { font-size: .82rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: opacity .01s linear; }
}

/* =========================================================
   Funnel Autosave-Indikator
   ========================================================= */
.pbx-autosave {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.96);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.pbx-autosave.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.pbx-autosave i {
  font-size: .95rem;
}
@media (max-width: 640px) {
  .pbx-autosave {
    right: 12px;
    bottom: 14px;
    padding: 9px 13px;
    font-size: .8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pbx-autosave { transition: opacity .01s linear; }
}

/* =========================================================
   PARTNER CTA — Pflegebox Kooperation (1 Card, image + content)
   ========================================================= */
.partner-cta {
  padding: clamp(48px, 6vw, 90px) 0;
  background: var(--bg);
}
.partner-cta__card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: linear-gradient(135deg, #EEF6FF 0%, #DBEAFE 60%, #BFDBFE 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
  max-width: 1140px;
  margin: 0 auto;
  min-height: 460px;
}
.partner-cta__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.partner-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.partner-cta__content {
  padding: clamp(32px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  color: var(--ink);
  position: relative;
}
.partner-cta__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.partner-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.06);
}
.partner-cta__badge i {
  font-size: .82rem;
  color: var(--primary);
}
.partner-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.18;
  color: var(--ink);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}
.partner-cta__text {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}
.partner-cta__text strong {
  color: var(--primary);
  font-weight: 700;
}
.partner-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 6px;
}
.partner-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 320px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--btn-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.32);
}
.partner-cta__btn:hover {
  transform: translateY(-2px);
  background: var(--btn-gradient-hover);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.4);
}
.partner-cta__btn i {
  transition: transform .2s ease;
}
.partner-cta__btn:hover i {
  transform: translateX(4px);
}
.partner-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s ease;
}
.partner-cta__link:hover {
  border-bottom-color: var(--ink);
}
.partner-cta__link i {
  transition: transform .2s ease;
}
.partner-cta__link:hover i {
  transform: translateX(3px);
}
@media (max-width: 860px) {
  .partner-cta__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .partner-cta__media {
    min-height: 260px;
    max-height: 320px;
  }
}
@media (max-width: 560px) {
  .partner-cta__content {
    padding: 28px 22px;
  }
  .partner-cta__btn {
    min-width: 0;
    width: 100%;
  }
}

/* ============================================================
   PRODUCTS V10 — Sticky Detail Ansicht
   ============================================================ */
.products-v10 {
  padding: 110px 0 90px;
  background: linear-gradient(180deg, #ffffff 0%, #F6F9FD 100%);
  position: relative;
}
.pv10-split {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  align-items: flex-start;
  margin-top: 48px;
}
.pv10-list {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid #E5EEFB;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 20px 40px -24px rgba(15,23,42,.12);
}
/* Scrollbar Liste, sobald viele Produkte vorhanden sind (>=8) */
.pv10-split--scrollable .pv10-list {
  max-height: 620px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 28px), transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 28px), transparent 100%);
}
.pv10-split--scrollable .pv10-list::-webkit-scrollbar { width: 6px; }
.pv10-split--scrollable .pv10-list::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 6px; }
.pv10-group-head {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
  padding: 14px 16px 6px;
  border-top: 1px solid #eef2f7;
}
.pv10-group-head:first-child {
  border-top: none;
  padding-top: 4px;
}
.pv10-item {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 16px;
  cursor: pointer;
  transition: background .25s ease, box-shadow .25s ease;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  color: inherit;
}
.pv10-item:hover {
  background: #F6F9FD;
}
.pv10-item.is-active {
  background: linear-gradient(135deg, #F1F6FD 0%, #E0F2FE 100%);
  box-shadow: inset 0 0 0 1px #2563eb;
}
.pv10-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, #E0F2FE, #DBEAFE);
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.pv10-item.is-active .pv10-item__icon {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #fff;
}
.pv10-item__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pv10-item__cat {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: #2563eb;
}
.pv10-item__name {
  font-size: 1rem;
  font-weight: 700;
  color: #0B2447;
}
.pv10-item__arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  color: #0B2447;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  transition: background .25s ease, color .25s ease;
}
.pv10-item.is-active .pv10-item__arrow {
  background: #2563eb;
  color: #fff;
}
.pv10-stage {
  position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, #F6FBFF 50%, #EFF7FE 100%);
  border: 1px solid #D7E4F6;
  border-radius: 32px;
  padding: 48px;
  color: #0B2447;
  min-height: 560px;
  overflow: hidden;
}
.pv10-stage::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(56,189,248,.22), transparent 70%);
  pointer-events: none;
}
.pv10-stage::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,.12), transparent 70%);
  pointer-events: none;
}
.pv10-panel {
  display: none;
  position: relative;
  z-index: 1;
}
.pv10-panel.is-active {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  align-items: center;
  animation: pv10Fade .45s ease;
}
@keyframes pv10Fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.pv10-panel__info {
  min-width: 0;
}
.pv10-panel__cat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 18px;
}
.pv10-panel__cat::before {
  content: '';
  width: 32px;
  height: 2px;
  background: #2563eb;
}
.pv10-panel__name {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #0B2447;
  margin: 0 0 18px;
}
.pv10-panel__desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 28px;
}
.pv10-panel__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.pv10-panel__spec {
  padding: 13px 18px;
  background: #fff;
  border: 1px solid #D7E4F6;
  border-radius: 14px;
  font-size: .92rem;
  color: #0B2447;
  font-weight: 500;
}
.pv10-panel__spec i {
  color: #2563eb;
  margin-right: 10px;
}
.pv10-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  background: linear-gradient(135deg, #0B2447 0%, #14213D 100%);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  box-shadow: 0 14px 30px -12px rgba(11,36,71,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pv10-panel__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -12px rgba(11,36,71,.5);
}
.pv10-panel__cta i {
  transition: transform .25s ease;
}
.pv10-panel__cta:hover i {
  transform: translateX(4px);
}
.pv10-panel__img {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 60px -24px rgba(37,99,235,.3);
  border: 1px solid #D7E4F6;
}
.pv10-panel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.products-v10 .products__footer {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 960px) {
  .pv10-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pv10-list {
    position: static;
  }
  .pv10-split--scrollable .pv10-list {
    max-height: 460px;
  }
  .pv10-stage {
    padding: 32px 24px;
    min-height: 0;
  }
  .pv10-panel.is-active {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pv10-panel__img {
    max-width: 280px;
    margin: 0 auto;
  }
  .pv10-panel__name {
    font-size: 1.8rem;
  }
}
@media (max-width: 560px) {
  .products-v10 {
    padding: 70px 0 60px;
  }
  .pv10-stage {
    padding: 24px 18px;
    border-radius: 22px;
  }
  .pv10-panel__specs {
    grid-template-columns: 1fr;
  }
  .pv10-panel__name {
    font-size: 1.55rem;
  }
}
