/* ============================================================
   CARINA CARE24 — DESIGN SYSTEM v3 (Frame Layout)
   Inspiriert vom Card-in-Frame-Stil der Referenz-Website
   ============================================================ */

/* ------------------------------------------------------------
   1. INTER FONT
   ------------------------------------------------------------ */

/* Inter wurde durch Arial ersetzt (kein Webfont-Download noetig) */

/* ------------------------------------------------------------
   2. CSS-VARIABLEN — Hausfarben + Pastell-Tints
   ------------------------------------------------------------ */

:root {
  /* Hausfarben (verbindlich) */
  --primary: #1c6eb1;
  --primary-dark: #155a91;
  --primary-darker: #0f3d5e;
  --accent: #72a91b;
  --accent-dark: #5a8615;
  --tertiary: #f29400;
  --tertiary-dark: #c47800;

  /* Pastell-Tints fuer Section-Cards */
  --tint-blue: #e8f1f9;
  --tint-blue-soft: #f3f8fc;
  --tint-green: #eef7da;
  --tint-green-soft: #f5fae8;
  --tint-orange: #fef0db;
  --tint-orange-soft: #fff8ec;
  --tint-warm: #faf6f0;

  /* Neutrale */
  --ink: #0f172a;
  --ink-soft: #334155;
  --ink-light: #64748b;
  --ink-faded: #94a3b8;
  --frame: #f5f7fa;
  --soft: #f8fafc;
  --line: #d8dfe8;
  --line-soft: #e5ebf2;
  --white: #ffffff;
  --gold: #f59e0b;

  /* Typografie */
  --font-sans: Arial, Helvetica, sans-serif;

  /* Spacing */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem; --s-5: 1.25rem;
  --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem; --s-12: 3rem; --s-16: 4rem;
  --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  /* Radius */
  --r-sm: 6px; --r: 10px; --r-lg: 12px; --r-xl: 15px; --r-2xl: 15px; --r-full: 15px;

  /* Schatten */
  --sh-xs: 0 1px 2px rgba(15,23,42,0.04);
  --sh-sm: 0 2px 6px rgba(15,23,42,0.05), 0 4px 10px rgba(15,23,42,0.04);
  --sh: 0 6px 16px rgba(15,23,42,0.06), 0 12px 32px rgba(15,23,42,0.04);
  --sh-lg: 0 12px 32px rgba(15,23,42,0.08), 0 4px 12px rgba(15,23,42,0.04);

  /* Container */
  --container: 1280px;
  --frame-pad: var(--s-4);
}

@media (min-width: 768px) { :root { --frame-pad: var(--s-8); } }
@media (min-width: 1280px) { :root { --frame-pad: var(--s-12); } }

/* ------------------------------------------------------------
   3. RESET
   ------------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; }
::selection { background: var(--primary); color: var(--white); }

/* ------------------------------------------------------------
   4. BASE — FRAME LAYOUT (das Herzstueck)
   ------------------------------------------------------------ */

html { font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--frame);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: absolute; top: -40px; left: 0;
  padding: var(--s-2) var(--s-4);
  background: var(--primary); color: var(--white);
  z-index: 10000; font-weight: 600;
  border-radius: 0 0 var(--r) 0;
}
.skip-link:focus { top: 0; }

/* DAS Frame-Layout — Sections werden zu Cards im Soft-Background */
.page-frame {
  padding: var(--frame-pad);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) { .page-frame { gap: 20px; } }

/* Sektionen innerhalb von <main> bekommen denselben 20px-Abstand */
.page-frame > main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ------------------------------------------------------------
   5. TYPOGRAFIE
   ------------------------------------------------------------ */

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 6vw, 3.75rem); margin-bottom: var(--s-6); }
h2 { font-size: clamp(1.875rem, 4.5vw, 2.75rem); margin: 0 0 var(--s-6); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.625rem); margin: var(--s-8) 0 var(--s-3); font-weight: 700; }
h4 { font-size: 1.125rem; margin: var(--s-6) 0 var(--s-2); font-weight: 700; }
p { margin-bottom: var(--s-4); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--ink); }

/* Two-Tone-Headlines: Wort in Primary-Farbe + Underline-Highlight */
.h-accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
  z-index: 0;
}
.h-accent::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: 0.05em;
  height: 0.35em;
  background: var(--tint-orange);
  z-index: -1;
  border-radius: 4px;
  pointer-events: none;
}
.h-accent--green::after { background: var(--tint-green); }
.h-accent--blue::after { background: var(--tint-blue); }

/* Eyebrow — kleiner Label-Text ueber H2 */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.eyebrow--green { color: var(--accent-dark); }
.eyebrow--green::before { background: var(--accent); }
.eyebrow--orange { color: var(--tertiary-dark); }
.eyebrow--orange::before { background: var(--tertiary); }
.eyebrow--white { color: var(--white); }
.eyebrow--white::before { background: rgba(255,255,255,0.6); }

/* Lead */
.lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 65ch;
}
@media (min-width: 768px) { .lead { font-size: 1.1875rem; } }

/* Prose-Listen */
.prose ul, .prose ol { margin: var(--s-4) 0; padding-left: 0; }
.prose ul li {
  position: relative; padding-left: 2rem;
  margin-bottom: var(--s-3); list-style: none; line-height: 1.6;
}
.prose ul li::before {
  content: '\2713';
  position: absolute; left: 0; top: 0.05em;
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.prose ol { counter-reset: list; }
.prose ol li {
  position: relative; padding-left: 2.5rem;
  margin-bottom: var(--s-3); list-style: none;
  counter-increment: list;
}
.prose ol li::before {
  content: counter(list);
  position: absolute; left: 0; top: 0;
  width: 28px; height: 28px;
  background: var(--tint-blue); color: var(--primary);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem;
}

.prose a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

/* ------------------------------------------------------------
   6. CONTAINER UND SECTION-CARDS
   ------------------------------------------------------------ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--s-4);
  padding-right: var(--s-4);
}
@media (min-width: 768px) { .container { padding-left: var(--s-8); padding-right: var(--s-8); } }
@media (min-width: 1280px) { .container { padding-left: var(--s-12); padding-right: var(--s-12); } }

/* SECTION-CARD: jede Section ist ein abgerundeter Container */
.section {
  position: relative;
  padding: var(--s-12) 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
}
@media (min-width: 768px) { .section { padding: var(--s-16) 0; border-radius: var(--r-2xl); } }
@media (min-width: 1024px) { .section { padding: var(--s-20) 0; } }

.section--white { background: var(--white); }
.section--blue { background: var(--tint-blue); }
.section--blue-soft { background: var(--tint-blue-soft); }
.section--green { background: var(--tint-green); }
.section--green-soft { background: var(--tint-green-soft); }
.section--orange { background: var(--tint-orange); }
.section--orange-soft { background: var(--tint-orange-soft); }
.section--warm { background: var(--tint-warm); }
.section--soft { background: var(--soft); }

.section--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
.section--primary h1, .section--primary h2, .section--primary h3 { color: var(--white); }
.section--primary p, .section--primary li { color: rgba(255,255,255,0.92); }
.section--primary .lead { color: rgba(255,255,255,0.88); }
.section--primary a:not(.btn) { color: var(--white); text-decoration: underline; }

/* CTA-Stripe — schmales Band als Trenner zwischen Sections */
.cta-stripe {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s-6) var(--s-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-4);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-stripe {
    flex-direction: row;
    text-align: left;
    padding: var(--s-6) var(--s-10);
    border-radius: var(--r-2xl);
  }
}
.cta-stripe::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(114,169,27,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-stripe-text { flex: 1; position: relative; }
.cta-stripe-text h3 {
  margin: 0 0 var(--s-1);
  font-size: 1.25rem;
  color: var(--white);
}
.cta-stripe-text p { margin: 0; color: rgba(255,255,255,0.85); font-size: 0.9375rem; }
.cta-stripe .btn { position: relative; flex-shrink: 0; }

.cta-stripe--accent {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
}
.cta-stripe--accent::before {
  background: radial-gradient(circle, rgba(28,110,177,0.20) 0%, transparent 70%);
}

.cta-stripe--orange {
  background: linear-gradient(90deg, var(--tertiary) 0%, var(--tertiary-dark) 100%);
}

/* ------------------------------------------------------------
   7. HEADER (auch im Frame-Stil)
   ------------------------------------------------------------ */

.site-header {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s-3) var(--s-5);
  box-shadow: var(--sh-xs);
  position: sticky;
  top: var(--frame-pad);
  z-index: 100;
}
@media (min-width: 768px) {
  .site-header { padding: var(--s-3) var(--s-6); border-radius: var(--r-2xl); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-shrink: 0;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo img { height: 36px; width: auto; }
@media (min-width: 768px) { .logo img { height: 40px; } .logo { font-size: 1.5rem; } }
.logo .logo-accent { color: var(--accent); }
.logo .logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
@media (min-width: 768px) { .logo .logo-mark { width: 40px; height: 40px; font-size: 1.125rem; } }

.main-nav {
  display: none;
  align-items: center;
  gap: 2px;
}
@media (min-width: 1024px) { .main-nav { display: flex; } }

.main-nav > a,
.main-nav .nav-trigger {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.2s;
  white-space: nowrap;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.main-nav > a:hover,
.main-nav .nav-trigger:hover { color: var(--primary); background: var(--tint-blue); }
.main-nav > a.is-active { color: var(--primary); background: var(--tint-blue); font-weight: 600; }

.nav-trigger .chev {
  width: 14px; height: 14px;
  transition: transform 0.2s;
}
.nav-item--mega { position: relative; }
.nav-item--mega.is-open .nav-trigger,
.nav-item--mega:hover .nav-trigger {
  color: var(--primary);
  background: var(--tint-blue);
}
.nav-item--mega.is-open .chev,
.nav-item--mega:hover .chev { transform: rotate(180deg); }

/* Mega Menu Panel */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 560px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.15), 0 0 0 1px var(--line-soft);
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px; height: 16px;
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}
.nav-item--mega:hover .mega-menu,
.nav-item--mega.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-bridge {
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 16px;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mega-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.15s;
}
.mega-card:hover { background: var(--tint-blue-soft); }
.mega-card-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mega-card-icon--blue { background: var(--tint-blue); color: var(--primary); }
.mega-card-icon--green { background: var(--tint-green); color: var(--accent-dark); }
.mega-card-icon--orange { background: var(--tint-orange); color: var(--tertiary-dark); }
.mega-card-icon--warm { background: var(--tint-warm); color: var(--primary); }
.mega-card-icon svg { width: 20px; height: 20px; }
.mega-card-text { line-height: 1.3; }
.mega-card-title {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9375rem;
  margin-bottom: 2px;
}
.mega-card-desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--ink-light);
  font-weight: 400;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
@media (min-width: 768px) { .header-cta { gap: var(--s-3); } }

.phone-pill {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ink);
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.phone-pill .phone-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.phone-pill .phone-label small {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.phone-pill svg { color: var(--accent-dark); width: 18px; height: 18px; flex-shrink: 0; }
.phone-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--tint-blue-soft);
}
@media (min-width: 1024px) { .phone-pill { display: inline-flex; } }

.burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-2);
  border-radius: var(--r);
  background: var(--soft);
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-drawer {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 99;
  padding: var(--s-16) var(--s-6) var(--s-8);
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer ul { display: flex; flex-direction: column; gap: var(--s-1); }
.mobile-drawer .drawer-group {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  padding: 16px 12px 6px;
  margin-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.mobile-drawer .drawer-group:first-child { border-top: 0; margin-top: 0; }
.mobile-drawer a {
  display: block;
  padding: var(--s-4) var(--s-3);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--r);
}
.mobile-drawer a:hover { background: var(--tint-blue); color: var(--primary); }
.mobile-drawer .btn-primary { margin-top: var(--s-6); }
.drawer-close {
  position: absolute;
  top: var(--s-4); right: var(--s-4);
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  background: var(--soft);
}

/* ------------------------------------------------------------
   8. BUTTONS
   ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px var(--s-6);
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  text-align: center;
  transition: all 0.18s cubic-bezier(.2,.7,.4,1);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(114,169,27,0.30);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(114,169,27,0.40);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(28,110,177,0.25);
}
.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(28,110,177,0.35);
}

.btn-orange {
  background: var(--tertiary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(242,148,0,0.30);
}
.btn-orange:hover {
  background: var(--tertiary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(242,148,0,0.40);
}

.btn-outline {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--tint-blue-soft);
  transform: translateY(-1px);
}

.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.30);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.20);
  border-color: var(--white);
}

.btn-lg { padding: 16px var(--s-8); font-size: 1rem; }

/* ------------------------------------------------------------
   9. HERO — Frame-Layout-Variante
   ------------------------------------------------------------ */

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--tint-blue) 0%, var(--tint-blue-soft) 60%, var(--tint-orange-soft) 100%);
  border-radius: var(--r-xl);
  padding: var(--s-12) var(--s-4);
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding: var(--s-20) var(--s-8); border-radius: var(--r-2xl); }
}
@media (min-width: 1024px) { .hero { padding: var(--s-20) var(--s-12); } }

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(114,169,27,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(242,148,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: var(--s-12);
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: var(--s-16); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  background: var(--white);
  color: var(--accent-dark);
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: var(--s-5);
  box-shadow: var(--sh-xs);
  border: 1px solid var(--line-soft);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(114,169,27,0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(114,169,27,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(114,169,27,0.10); }
}

.hero h1 { color: var(--ink); margin-bottom: var(--s-5); }
.hero .lead { margin-bottom: var(--s-8); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}

/* Trust-Row im Hero — prominent */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-4) var(--s-5);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line-soft);
  max-width: 540px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.hero-trust .stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 0.9375rem;
}
.hero-trust .label {
  font-size: 0.8125rem;
  color: var(--ink-light);
  line-height: 1.3;
}
.hero-trust .value {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9375rem;
  display: block;
}
.hero-trust-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
  display: none;
}
@media (min-width: 640px) { .hero-trust-divider { display: block; } }

/* Hero-Visual — Stage mit floating cards und SVG-Illustration */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-stage {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  background: var(--white);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-visual-stage > svg {
  width: 80%;
  height: auto;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-3) var(--s-4);
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 2;
  border: 1px solid var(--line-soft);
}
.floating-card .icon {
  width: 36px; height: 36px;
  border-radius: var(--r);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.floating-card .icon svg { width: 18px; height: 18px; }
.floating-card .icon-blue { background: var(--tint-blue); color: var(--primary); }
.floating-card .icon-green { background: var(--tint-green); color: var(--accent-dark); }
.floating-card .icon-orange { background: var(--tint-orange); color: var(--tertiary-dark); }
.floating-card .text { line-height: 1.3; }
.floating-card .text-sub { font-size: 0.75rem; color: var(--ink-light); font-weight: 500; }

.floating-card-1 { top: 8%; left: -8%; animation: float1 6s ease-in-out infinite; }
.floating-card-2 { bottom: 12%; right: -10%; animation: float2 7s ease-in-out infinite; }
.floating-card-3 { top: 50%; right: -6%; animation: float3 8s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Auf engen Viewports (Tablet, Smartphone, halbierte Browserfenster)
   die Floating Cards komplett ausblenden — sonst ueberlappen sie chaotisch. */
@media (max-width: 1023px) {
  .floating-card-1, .floating-card-2, .floating-card-3 { display: none; }
}

/* ============================================================
   FRANK-FIRST HERO  —  Personalisierter Hero mit Foto + Quote
   ============================================================ */

.hero--frank {
  background: linear-gradient(135deg, var(--tint-blue) 0%, var(--tint-blue-soft) 50%, #f7fbe9 100%);
}
.hero-frank-grid {
  display: grid;
  gap: var(--s-8);
  align-items: center;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-frank-grid {
    grid-template-columns: 280px minmax(0, 620px);
    gap: var(--s-10);
    justify-content: center;
  }
}

/* === Frank-Card (Foto + Caption) === */
.frank-card {
  position: relative;
  background: var(--white);
  border-radius: 15px;
  padding: 12px 12px 16px;
  box-shadow: 0 12px 40px rgba(15,23,42,0.08), 0 0 0 1px var(--line-soft);
  max-width: 280px;
  margin: 0 auto;
}
.frank-card::before {
  content: '';
  position: absolute;
  top: -4px; left: 12px; right: 12px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px 3px 0 0;
}

.frank-photo-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 4 / 3;
}
.frank-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.frank-online-dot {
  position: absolute;
  bottom: 8px; right: 8px;
  width: 12px; height: 12px;
  background: var(--accent);
  border: 2.5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(114,169,27,0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}

.frank-caption {
  padding-top: 12px;
  text-align: center;
}
.frank-caption strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1px;
}
.frank-caption span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-bottom: 10px;
}
.frank-direct-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: var(--tint-blue);
  color: var(--primary) !important;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.18s;
}
.frank-direct-call:hover {
  background: var(--primary);
  color: var(--white) !important;
}
.frank-direct-call svg { width: 13px; height: 13px; }

/* === Hero Content === */
.hero-frank-content { position: relative; }
.hero--frank h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: var(--s-5);
  letter-spacing: -0.02em;
}

.frank-quote {
  position: relative;
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 18px;
  margin: 0 0 var(--s-5);
}
.frank-quote .quote-mark { display: none; }
.frank-quote p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  margin: 0 0 6px;
  font-style: italic;
}
.frank-quote cite {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-light);
  font-style: normal;
}

@media (min-width: 768px) {
  .frank-quote p { font-size: 1.0625rem; }
}

.hero--frank .lead {
  font-size: 1rem;
  margin-bottom: var(--s-6);
  color: var(--ink-soft);
}

/* Trust-Bar als Inline-Liste, kein Card-Look */
.hero--frank .hero-trust {
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0;
  max-width: none;
  gap: 18px;
  flex-wrap: wrap;
}
.hero--frank .hero-trust-divider { display: none; }
.hero--frank .hero-trust-item {
  position: relative;
  padding-right: 18px;
}
.hero--frank .hero-trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 24px;
  background: var(--line);
}
.hero--frank .hero-trust .value { font-size: 0.875rem; }
.hero--frank .hero-trust .label { font-size: 0.75rem; }

@media (prefers-reduced-motion: reduce) {
  .floating-card { animation: none; }
  .hero-badge .dot { animation: none; }
}

/* ------------------------------------------------------------
   10. ANSWER BOX
   ------------------------------------------------------------ */

.answer-box {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  margin: var(--s-8) 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  box-shadow: var(--sh-sm);
}
.section--primary .answer-box {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  border-left-color: var(--accent);
  color: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
}

/* ------------------------------------------------------------
   11. USP STRIP
   ------------------------------------------------------------ */

.usp-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin: var(--s-8) 0;
}
@media (min-width: 768px) { .usp-strip { grid-template-columns: repeat(4, 1fr); } }

.usp {
  position: relative;
  padding: var(--s-5);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  transition: all 0.2s;
}
.usp:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh);
  border-color: var(--tint-blue);
}
.usp-icon {
  width: 48px; height: 48px;
  border-radius: var(--r);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-3);
}
.usp-icon svg { width: 22px; height: 22px; }
.usp-icon-blue { background: var(--tint-blue); color: var(--primary); }
.usp-icon-green { background: var(--tint-green); color: var(--accent-dark); }
.usp-icon-orange { background: var(--tint-orange); color: var(--tertiary-dark); }

.usp-title { font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: var(--s-1); }
.usp-text { font-size: 0.875rem; color: var(--ink-light); line-height: 1.5; }

/* ------------------------------------------------------------
   12. SERVICE CARDS — mit Bild-Platzhalter
   ------------------------------------------------------------ */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-top: var(--s-8);
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.card-grid--2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .card-grid--2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  transition: all 0.2s;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

a.card { text-decoration: none; color: inherit; }

/* Card-Bild-Platzhalter mit Pastell-Bubble */
.card-image {
  aspect-ratio: 16 / 10;
  background: var(--tint-blue);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-image--green { background: var(--tint-green); }
.card-image--orange { background: var(--tint-orange); }
.card-image--warm { background: var(--tint-warm); }
.card-image svg { width: 60%; height: 60%; opacity: 0.8; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }

.card-body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.card-body h3 { margin: 0; font-size: 1.125rem; line-height: 1.3; }
.card-body p { color: var(--ink-light); font-size: 0.9375rem; line-height: 1.6; flex: 1; }

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: var(--s-2);
}
.card-arrow svg { transition: transform 0.2s; }
.card:hover .card-arrow svg { transform: translateX(4px); }

/* Featured-Card — eine hervorgehoben in Primary */
.card.is-featured .card-image {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.card.is-featured .card-image svg { color: var(--white); opacity: 0.4; }

/* ------------------------------------------------------------
   13. STATS
   ------------------------------------------------------------ */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin: var(--s-8) 0;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); gap: var(--s-6); } }

.stat {
  text-align: center;
  padding: var(--s-6) var(--s-4);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
}
.stat-value {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--s-2);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--ink-light);
  font-weight: 500;
  line-height: 1.3;
}

/* ------------------------------------------------------------
   14. PRICE TABLE
   ------------------------------------------------------------ */

.price-table-wrap { overflow-x: auto; margin: var(--s-6) 0; border-radius: var(--r-lg); }
.price-table {
  width: 100%;
  min-width: 480px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: var(--s-4) var(--s-5);
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.9375rem;
}
.price-table th {
  background: var(--tint-blue);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:hover td { background: var(--soft); }
.price-table td.price { font-weight: 700; color: var(--accent-dark); white-space: nowrap; }

/* ------------------------------------------------------------
   15. FAQ AKKORDEON
   ------------------------------------------------------------ */

.faq-list { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-6); }
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--tint-blue); }
.faq-item.is-open { border-color: var(--primary); box-shadow: var(--sh-sm); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: var(--s-5) var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--soft); }
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tint-blue);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
  flex-shrink: 0;
}
.faq-item.is-open .faq-q::after {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
}
.faq-a {
  display: none;
  padding: 0 var(--s-6) var(--s-6);
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-item.is-open .faq-a { display: block; }

/* ------------------------------------------------------------
   16. PFLEGEKRAFT-CARDS
   ------------------------------------------------------------ */

.pflegekraft-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: all 0.2s;
}
.pflegekraft-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }

.pflegekraft-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--tint-blue) 0%, var(--tint-orange-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.pflegekraft-img img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  display: block;
}
.pflegekraft-info { padding: var(--s-4); }
.pflegekraft-info h4 { margin: 0 0 var(--s-1); font-size: 1rem; }
.pflegekraft-info p { margin: 0; font-size: 0.8125rem; color: var(--ink-light); }

/* ------------------------------------------------------------
   17. BREADCRUMBS
   ------------------------------------------------------------ */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-1);
  padding: var(--s-4) 0;
  font-size: 0.875rem;
  color: var(--ink-light);
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep::before { content: '\203A'; padding: 0 var(--s-2); color: var(--ink-faded); }
.breadcrumbs .current { color: var(--ink-soft); }

/* ------------------------------------------------------------
   18. SOCIAL PROOF BAR
   ------------------------------------------------------------ */

.social-proof-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-2) var(--s-4);
  padding: var(--s-3) var(--s-5);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-full);
  font-size: 0.875rem;
  color: var(--ink-soft);
  text-align: center;
  max-width: max-content;
  margin: 0 auto;
  box-shadow: var(--sh-xs);
}
.social-proof-bar .stars { color: var(--gold); letter-spacing: 1px; font-weight: 600; }
.social-proof-bar a { color: var(--primary); font-weight: 500; }

/* ------------------------------------------------------------
   19. FORMULARE
   ------------------------------------------------------------ */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  background: var(--white);
  padding: var(--s-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-sm);
}
@media (min-width: 768px) { .form { padding: var(--s-8); } }

.form-row { display: grid; gap: var(--s-4); }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field label { font-weight: 500; font-size: 0.875rem; color: var(--ink); }
.field label .req { color: var(--tertiary-dark); }

.field input, .field select, .field textarea {
  padding: var(--s-3) var(--s-4);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(28,110,177,0.12);
}
.field textarea { min-height: 140px; resize: vertical; font-family: inherit; }

.checkbox {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.checkbox input { margin-top: 4px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--accent); }

.hp { position: absolute; left: -9999px; opacity: 0; }

/* ------------------------------------------------------------
   20. FOOTER (auch im Frame-Stil)
   ------------------------------------------------------------ */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: var(--s-12) var(--s-6) var(--s-6);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .site-footer { padding: var(--s-16) var(--s-10) var(--s-8); border-radius: var(--r-2xl); }
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(28,110,177,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.site-footer > * { position: relative; }

.site-footer h4 {
  color: var(--white);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-4);
  font-weight: 700;
}
.site-footer a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.site-footer a:hover { color: var(--accent); }

.footer-trust {
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-6);
  margin-bottom: var(--s-10);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-size: 0.9375rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-trust .stars { color: var(--gold); letter-spacing: 1px; }
.footer-trust .label { color: rgba(255,255,255,0.95); font-weight: 600; }

.footer-grid {
  display: grid;
  gap: var(--s-8);
  margin-bottom: var(--s-10);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-grid ul { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-grid p { color: rgba(255,255,255,0.75); font-size: 0.9375rem; line-height: 1.65; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: var(--s-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom ul { display: flex; gap: var(--s-4); flex-wrap: wrap; }

/* ------------------------------------------------------------
   21. STICKY MOBILE CTA
   ------------------------------------------------------------ */

.sticky-mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: var(--s-2) var(--s-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2);
  z-index: 50;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
}
.sticky-mobile-cta .btn { padding: var(--s-3) var(--s-2); font-size: 0.875rem; }
@media (min-width: 768px) { .sticky-mobile-cta { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 70px; } }

/* ------------------------------------------------------------
   22. REVEAL ANIMATION
   ------------------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ------------------------------------------------------------
   23. UTILITIES
   ------------------------------------------------------------ */

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--s-4); }
.mt-8 { margin-top: var(--s-8); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--s-4); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); }
.justify-center { justify-content: center; }
.items-center { align-items: center; }

.muted { color: var(--ink-light); font-size: 0.875rem; }
.note {
  background: var(--tint-blue-soft);
  border-left: 3px solid var(--primary);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin: var(--s-4) 0;
}
.note--green { background: var(--tint-green-soft); border-left-color: var(--accent); }
.note--orange { background: var(--tint-orange-soft); border-left-color: var(--tertiary); }

/* Section header pattern (eyebrow + h2 + lead) */
.section-header { margin-bottom: var(--s-10); max-width: 820px; }
.section-header.text-center { margin-left: auto; margin-right: auto; }

/* ============================================================
   PFLEGEKRÄFTE-PILLAR — Profile Cards, Lang-Badges, Frank-Versprechen
   ============================================================ */

/* Profile-Cards */
.profile-card .card-body { padding: 22px; }
.profile-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.profile-head h3 {
  margin: 0 0 2px;
  font-size: 1.0625rem;
}
.profile-sub {
  font-size: 0.8125rem;
  color: var(--ink-light);
}

.profile-avatar {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  font-family: Arial, sans-serif;
}
.profile-avatar--blue { background: linear-gradient(135deg, var(--primary) 0%, #2d8bd9 100%); }
.profile-avatar--green { background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%); }
.profile-avatar--orange { background: linear-gradient(135deg, var(--tertiary-dark) 0%, var(--tertiary) 100%); }

.profile-photo {
  flex-shrink: 0;
  width: 64px; height: 64px;
  display: block;
  position: relative;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 0;
  margin-bottom: 14px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.profile-stats > div {
  display: flex;
  flex-direction: column;
}
.profile-stats strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.profile-stats span {
  font-size: 0.75rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.tag--blue { background: var(--tint-blue); color: var(--primary); }
.tag--green { background: var(--tint-green); color: var(--accent-dark); }
.tag--orange { background: var(--tint-orange); color: var(--tertiary-dark); }

.profile-quote {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  padding-top: 4px;
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

/* Ausbildung-Badge in Profile-Cards */
.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--tint-green);
  color: var(--accent-dark);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.profile-badge svg {
  width: 13px; height: 13px;
}

/* Sprach-Badges */
.lang-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.lang-badge--a2 { background: var(--tint-blue); color: var(--primary); }
.lang-badge--b1 { background: var(--tint-green); color: var(--accent-dark); }
.lang-badge--b2 { background: var(--tint-orange); color: var(--tertiary-dark); }

/* Frank-Versprechen-Block */
.frank-promise {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 26px 28px;
  margin: 24px 0 36px;
  border: 1px solid rgba(255,255,255,0.18);
}
.promise-quote {
  font-size: 1.125rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--white);
  margin: 0 0 12px;
  font-weight: 400;
}
.frank-promise cite {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  font-style: normal;
  font-weight: 600;
}

.promise-grid {
  display: grid;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .promise-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}
.promise-col {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.14);
}
.promise-col h3 {
  font-size: 1rem;
  color: var(--white);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.promise-col h3::before {
  content: '';
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.promise-col--yes h3::before { background: var(--accent); }
.promise-col--no h3::before { background: var(--tertiary); }
.promise-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.promise-col li {
  position: relative;
  padding: 7px 0 7px 20px;
  color: rgba(255,255,255,0.92);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.promise-col--yes li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 7px;
  color: var(--accent);
  font-weight: 800;
}
.promise-col--no li::before {
  content: '×';
  position: absolute;
  left: 0; top: 5px;
  color: var(--tertiary);
  font-weight: 800;
  font-size: 1.125rem;
}

/* Step-number badge für Auswahl-Cards */
.step-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-dark);
  background: var(--tint-green);
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
