/* ═══════════════════════════════════════════════
   PFLEGE — B2B-Landingpage für Pflegeeinrichtungen
   1:1-Adaption des Gamma-Designs (Indigo + Magenta).
   Tokens lokal unter `body.theme-care`, Pflicht-Snippets
   (Skip-Link, Focus-Visible, Back-to-Top) aus shared.css.
═══════════════════════════════════════════════ */

/* ── Gamma-Farb-Tokens (Override) ──────────────── */
body.theme-care {
  --gm-indigo:       #4950bc;  /* Hauptfarbe: Buttons, Links, Headlines-Akzent */
  --gm-indigo-dark:  #2f36a2;  /* Hover/Dim */
  --gm-indigo-light: #6269d5;  /* Light variant */
  --gm-blue:         #6393db;  /* Card-Variante hellblau */
  --gm-pink:         #DA33BF;  /* Magenta — CTA-Akzent, Card-Highlight */
  --gm-pink-dark:    #b51e9c;
  --gm-bg-muted:     #dadbf1;  /* Lavendel-Hintergrund */
  --gm-bg-soft:      #f6f4f4;  /* Off-white Section */
  --gm-bg-grey:      #f2f2f2;
  --gm-text:         #272525;
  --gm-text-muted:   #4D4D4D;
  --gm-border:       #E5E0DF;
  --gm-white:        #ffffff;

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--gm-text);
  background: #fff;
  overflow-x: hidden;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Skip-Link & Focus-Outline aufs Gamma-Schema mappen */
body.theme-care .skip-link { background: var(--gm-indigo); }
body.theme-care a:focus-visible,
body.theme-care button:focus-visible,
body.theme-care [role="button"]:focus-visible,
body.theme-care input:focus-visible,
body.theme-care [tabindex]:focus-visible {
  outline-color: var(--gm-pink);
}

/* Back-to-Top */
body.theme-care .back-to-top { background: var(--gm-indigo); }
body.theme-care .back-to-top:hover { background: var(--gm-indigo-dark); }

/* ── NAV ───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(47, 54, 162, 0.97);
  backdrop-filter: blur(8px);
  padding: 0 5%; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}
nav .logo { display: flex; align-items: center; text-decoration: none; }
nav .logo img {
  width: auto; height: 34px;
  filter: brightness(0) invert(1);
}
nav ul { list-style: none; display: flex; gap: 24px; align-items: center; }
nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.15s;
}
nav a:hover { color: #fff; }
nav .nav-cta {
  background: var(--gm-pink) !important;
  color: #fff !important;
  padding: 9px 18px; border-radius: 8px;
  font-weight: 600 !important; font-size: 13px !important;
  box-shadow: 0 2px 8px rgba(218,51,191,0.35);
  transition: transform 0.15s, box-shadow 0.15s !important;
}
nav .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(218,51,191,0.45) !important;
}

/* ── HERO (zweispaltig, hellgrund + Indigo-Akzente) ── */
.hero {
  background: linear-gradient(180deg, var(--gm-bg-muted) 0%, #fff 100%);
  padding: 130px 5% 90px;
  position: relative;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-text { padding-right: 12px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  color: var(--gm-indigo);
  border: 1px solid var(--gm-indigo-light);
  border-radius: 999px;
  padding: 7px 18px; font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gm-pink);
}
.hero-text h1 {
  font-family: 'Inter', sans-serif;
  font-size: 3.4rem; font-weight: 800; line-height: 1.1;
  color: var(--gm-text);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero-text h1 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--gm-indigo) 0%, var(--gm-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.hero-sub {
  font-size: 1.32rem; color: var(--gm-text);
  line-height: 1.45; margin-bottom: 18px; font-weight: 500;
  max-width: 560px;
}
.hero-note {
  background: #fff;
  border: 1px solid var(--gm-border);
  border-left: 4px solid var(--gm-pink);
  color: var(--gm-text);
  padding: 14px 20px; border-radius: 10px;
  font-size: 0.98rem; line-height: 1.55;
  margin-bottom: 32px; max-width: 540px;
}
.hero-note strong { color: var(--gm-indigo); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gm-pink); color: #fff;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  box-shadow: 0 4px 14px rgba(218,51,191,0.32);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--gm-pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(218,51,191,0.4);
}
.btn-ghost {
  background: transparent; color: var(--gm-indigo);
  padding: 12px 26px; border-radius: 10px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  border: 2px solid var(--gm-indigo);
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: var(--gm-indigo); color: #fff; }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-visual::before {
  content: ''; position: absolute;
  inset: -8%;
  background: radial-gradient(circle, rgba(73,80,188,0.18) 0%, transparent 65%);
  z-index: 0;
}
.hero-visual img {
  position: relative; z-index: 1;
  width: 100%; max-width: 520px; height: auto;
  border-radius: 18px;
}

/* ── INTRO + 3 BULLETS + PREIS-HIGHLIGHT ───────── */
.intro-section {
  padding: 90px 5%;
  background: #fff;
}
.intro-inner { max-width: 1100px; margin: 0 auto; }
.intro-lead {
  font-size: 1.18rem; line-height: 1.7;
  color: var(--gm-text); max-width: 880px; margin: 0 auto 56px;
  text-align: center;
  font-weight: 400;
}
.intro-lead strong { color: var(--gm-indigo); font-weight: 600; }
.intro-bullets {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 56px;
}
.intro-bullet {
  background: #fff;
  border: 1px solid var(--gm-border);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.intro-bullet:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(73,80,188,0.10);
  border-color: var(--gm-indigo-light);
}
.intro-bullet-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--gm-bg-muted);
  color: var(--gm-indigo);
  border-radius: 12px;
  margin-bottom: 18px;
}
.intro-bullet-icon svg { width: 26px; height: 26px; }
.intro-bullet h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.18rem; font-weight: 700;
  color: var(--gm-text); margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.intro-bullet p { color: var(--gm-text-muted); font-size: 0.97rem; line-height: 1.6; }
.intro-price {
  background: linear-gradient(96deg, var(--gm-indigo) 0%, var(--gm-pink) 100%);
  border-radius: 18px;
  padding: 44px 36px;
  text-align: center;
  color: #fff;
  max-width: 720px; margin: 0 auto;
  box-shadow: 0 18px 48px rgba(73,80,188,0.28);
}
.intro-price-amount {
  font-family: 'Inter', sans-serif;
  font-size: 3.6rem; font-weight: 800; line-height: 1;
  color: #fff; margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.intro-price-unit {
  font-size: 0.92rem; color: rgba(255,255,255,0.88);
  text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
  margin-bottom: 14px;
}
.intro-price p { color: rgba(255,255,255,0.95); font-size: 1.02rem; line-height: 1.6; }
.intro-price strong { color: #fff; font-weight: 600; }

/* ── SECTION-LABEL + GLOBALE H2/H3-STYLES ──────── */
.section-label {
  display: inline-block;
  font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gm-pink); font-weight: 700;
  margin-bottom: 12px;
}
section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem; font-weight: 800;
  color: var(--gm-text); line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
section h2 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--gm-indigo) 0%, var(--gm-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
section h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.18rem; font-weight: 700;
  color: var(--gm-text); line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
section p { line-height: 1.7; color: var(--gm-text); }

/* ── PROBLEM SECTION ───────────────────────────── */
.problem-section { padding: 100px 5%; background: var(--gm-bg-soft); }
.problem-intro { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; max-width: 1100px; margin: 0 auto;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--gm-border);
  border-radius: 14px; padding: 40px 36px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.problem-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gm-bg-muted);
  color: var(--gm-indigo);
  border-radius: 12px;
  margin-bottom: 16px;
}
.problem-icon svg { width: 28px; height: 28px; }
.problem-card h3 { color: var(--gm-text); margin-bottom: 14px; font-size: 1.32rem; }
.problem-card p { color: var(--gm-text-muted); margin-bottom: 14px; }
.problem-card p:last-child { margin-bottom: 0; }

/* ── WISSENSCHAFT SECTION ──────────────────────── */
.wissenschaft-section {
  padding: 100px 5%;
  background: #fff;
}
.wissenschaft-inner { max-width: 1180px; margin: 0 auto; }
.wissenschaft-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.wissenschaft-header p { color: var(--gm-text-muted); font-size: 1.05rem; margin-top: 12px; }
.studie-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.studie-card {
  background: var(--gm-bg-muted);
  border-radius: 14px; padding: 36px 30px;
  position: relative;
}
.studie-card:nth-child(2) { background: var(--gm-blue); color: #fff; }
.studie-card:nth-child(3) { background: var(--gm-pink); color: #fff; }
.studie-card:nth-child(2) h3,
.studie-card:nth-child(2) p,
.studie-card:nth-child(3) h3,
.studie-card:nth-child(3) p,
.studie-card:nth-child(2) strong,
.studie-card:nth-child(3) strong { color: #fff; }
.studie-tag {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gm-indigo); font-weight: 700;
  margin-bottom: 12px;
}
.studie-card:nth-child(2) .studie-tag,
.studie-card:nth-child(3) .studie-tag { color: rgba(255,255,255,0.88); }
.studie-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.studie-card p { color: var(--gm-text); font-size: 0.97rem; line-height: 1.65; }
.studie-card { display: flex; flex-direction: column; }
.studie-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: auto; padding-top: 18px;
  align-self: flex-start;
  color: var(--gm-indigo); text-decoration: none;
  font-weight: 600; font-size: 0.92rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.studie-link:hover { color: var(--gm-pink); border-bottom-color: var(--gm-pink); }
.studie-card:nth-child(2) .studie-link,
.studie-card:nth-child(3) .studie-link { color: #fff; }
.studie-card:nth-child(2) .studie-link:hover,
.studie-card:nth-child(3) .studie-link:hover {
  color: #fff; border-bottom-color: #fff;
}

/* ── MD SECTION ───────────────────────────────── */
.md-section {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--gm-indigo) 0%, var(--gm-indigo-dark) 100%);
  color: #fff;
}
.md-inner { max-width: 1180px; margin: 0 auto; }
.md-header { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.md-header .section-label { color: #f0a8e3; }
.md-header h2 { color: #fff; }
.md-header h2 em {
  background: none;
  -webkit-text-fill-color: #f0a8e3;
  color: #f0a8e3;
}
.md-header p { color: rgba(255,255,255,0.86); font-size: 1.05rem; }
.md-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.md-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px; padding: 32px 28px;
  backdrop-filter: blur(4px);
}
.md-card.highlight {
  background: var(--gm-pink);
  border-color: var(--gm-pink);
}
.md-card-tag {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 1.2px; text-transform: uppercase;
  color: #f0a8e3; font-weight: 700; margin-bottom: 12px;
}
.md-card.highlight .md-card-tag { color: rgba(255,255,255,0.92); }
.md-card h3 { color: #fff; font-size: 1.18rem; margin-bottom: 12px; }
.md-card p { color: rgba(255,255,255,0.88); font-size: 0.96rem; }
.md-card.highlight p { color: rgba(255,255,255,0.96); }
.md-card.highlight strong { color: #fff; }
.md-foot {
  text-align: center; max-width: 880px; margin: 48px auto 0;
  color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.7;
}

/* ── RESERVE SECTION (zweispaltig: Bild + Text) ── */
.reserve-section { padding: 100px 5%; background: #fff; }
.reserve-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: center;
}
.reserve-image img {
  width: 100%; height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(73,80,188,0.18);
}
.reserve-lead {
  color: var(--gm-text-muted); font-size: 1.05rem;
  margin-bottom: 28px; line-height: 1.7;
}
.reserve-list {
  list-style: none; display: flex; flex-direction: column; gap: 22px;
}
.reserve-list li {
  display: flex; gap: 16px; align-items: flex-start;
}
.reserve-icon {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--gm-bg-muted);
  color: var(--gm-indigo);
  border-radius: 12px;
}
.reserve-icon svg { width: 24px; height: 24px; }
.reserve-list h3 { margin-bottom: 6px; font-size: 1.1rem; }
.reserve-list p { color: var(--gm-text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ── ENTLASTUNG SECTION ───────────────────────── */
.entlastung-section {
  padding: 100px 5%;
  background: var(--gm-bg-soft);
}
.entlastung-inner { max-width: 1180px; margin: 0 auto; }
.entlastung-header { max-width: 860px; margin: 0 auto 56px; text-align: center; }
.entlastung-header p { color: var(--gm-text-muted); font-size: 1.05rem; margin-top: 12px; }
.entlastung-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.entlastung-card {
  background: #fff;
  border-radius: 14px;
  padding: 38px 30px;
  border: 1px solid var(--gm-border);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.entlastung-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem; font-weight: 800;
  background: linear-gradient(96deg, var(--gm-indigo) 0%, var(--gm-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block; line-height: 1; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.entlastung-card h3 { margin-bottom: 12px; font-size: 1.18rem; }
.entlastung-card p { color: var(--gm-text-muted); font-size: 0.97rem; }

/* ── STUFEN SECTION ───────────────────────────── */
.stufen-section { padding: 100px 5%; background: #fff; }
.stufen-inner { max-width: 1180px; margin: 0 auto; }
.stufen-header { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.stufen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stufen-card {
  background: #fff;
  border: 2px solid var(--gm-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.stufen-card:hover {
  border-color: var(--gm-indigo);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(73,80,188,0.14);
}
.stufen-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--gm-bg-muted);
  overflow: hidden;
}
.stufen-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.stufen-body {
  padding: 28px 26px 32px;
}
.stufen-level {
  display: inline-block;
  background: var(--gm-indigo); color: #fff;
  padding: 5px 14px; border-radius: 999px;
  font-size: 0.74rem; letter-spacing: 1px; font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.stufen-card:nth-child(2) .stufen-level { background: var(--gm-blue); }
.stufen-card:nth-child(3) .stufen-level { background: var(--gm-pink); }
.stufen-body h3 { margin-bottom: 10px; font-size: 1.18rem; }
.stufen-body p { color: var(--gm-text-muted); font-size: 0.97rem; }

/* ── PREIS SECTION ────────────────────────────── */
.preis-section {
  padding: 100px 5%;
  background: var(--gm-bg-soft);
}
.preis-inner { max-width: 1180px; margin: 0 auto; }
.preis-header { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.preis-header p { color: var(--gm-text-muted); font-size: 1.04rem; margin-top: 10px; }
.preis-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: stretch;
}
.preis-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--gm-border);
}
.preis-card.highlight {
  background: linear-gradient(180deg, var(--gm-indigo) 0%, var(--gm-pink) 100%);
  border: none;
  box-shadow: 0 16px 40px rgba(73,80,188,0.24);
  transform: scale(1.04);
  color: #fff;
}
.preis-amount {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--gm-text); line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.preis-card.highlight .preis-amount { color: #fff; }
.preis-unit {
  font-size: 0.88rem; color: var(--gm-text-muted);
  font-weight: 600; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1px;
}
.preis-card.highlight .preis-unit { color: rgba(255,255,255,0.88); }
.preis-card p { font-size: 0.92rem; color: var(--gm-text-muted); }
.preis-card.highlight p { color: rgba(255,255,255,0.95); }
.preis-foot {
  text-align: center; max-width: 820px; margin: 32px auto 0;
  color: var(--gm-text-muted); font-size: 0.85rem; line-height: 1.6;
}

/* ── FINANZ SECTION ───────────────────────────── */
.finanz-section {
  padding: 100px 5%;
  background: var(--gm-bg-muted);
}
.finanz-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  align-items: center;
}
.finanz-text .section-label { color: var(--gm-pink); }
.finanz-text h2 { color: var(--gm-text); }
.finanz-text p { color: var(--gm-text); font-size: 1.04rem; margin-bottom: 22px; }
.finanz-text strong { color: var(--gm-indigo); font-weight: 600; }
.finanz-callout {
  background: linear-gradient(96deg, var(--gm-indigo) 0%, var(--gm-pink) 100%);
  border-radius: 16px;
  padding: 28px 30px;
  display: inline-flex; flex-direction: column; align-items: flex-start;
  margin-top: 6px;
  color: #fff;
  box-shadow: 0 12px 32px rgba(73,80,188,0.28);
}
.finanz-callout-amount {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem; font-weight: 800;
  color: #fff; line-height: 1;
  letter-spacing: -0.02em;
}
.finanz-callout-label {
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem; text-transform: uppercase;
  letter-spacing: 1.5px; font-weight: 600;
  margin-top: 8px; margin-bottom: 10px;
}
.finanz-callout p { color: rgba(255,255,255,0.94); font-size: 0.94rem; margin: 0; }
.finanz-cover {
  display: flex; justify-content: center;
}
.finanz-cover img {
  width: 100%; max-width: 320px; height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  transform: rotate(-3deg);
}

/* ── FAQ SECTION ──────────────────────────────── */
.faq-section { background: #fff; padding: 90px 5%; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h2 { font-size: 2rem; }
.faq-item {
  background: var(--gm-bg-soft);
  border: 1px solid var(--gm-border);
  border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; color: var(--gm-text);
  font-size: 0.97rem; transition: color 0.15s;
  background: transparent; border: none; width: 100%;
  font-family: inherit; text-align: left;
}
.faq-q:hover { color: var(--gm-indigo); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gm-bg-muted);
  color: var(--gm-indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform 0.3s, background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg); background: var(--gm-pink); color: #fff;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 24px 22px; color: var(--gm-text-muted); line-height: 1.7; font-size: 0.95rem; }

/* ── VERTRAUT BRIDGE (zweispaltig: Bild + Quote) ── */
.vertraut-section {
  padding: 90px 5%;
  background: var(--gm-bg-soft);
}
.vertraut-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 50px; align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 48px;
  border: 1px solid var(--gm-border);
  box-shadow: 0 6px 24px rgba(73,80,188,0.08);
}
.vertraut-image img {
  width: 100%; height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(73,80,188,0.18);
}
.vertraut-text p {
  font-family: 'Inter', sans-serif;
  font-size: 1.32rem; line-height: 1.55;
  color: var(--gm-text); font-weight: 500;
  letter-spacing: -0.01em;
}
.vertraut-text strong {
  color: var(--gm-pink); font-weight: 700;
}

/* ── FINAL CTA ────────────────────────────────── */
.final-cta {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 110px 5%;
  background: linear-gradient(135deg, var(--gm-indigo) 0%, var(--gm-indigo-dark) 50%, var(--gm-pink) 100%);
  color: #fff;
}
.final-cta-content { position: relative; z-index: 1; max-width: 760px; }
.final-cta-content .final-label {
  color: #f0a8e3 !important;
  display: block; margin-bottom: 12px;
}
.final-cta-content h2 {
  font-size: 2.6rem; color: #fff; line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.final-cta-content h2 em {
  font-style: normal;
  background: none;
  -webkit-text-fill-color: #f0a8e3;
  color: #f0a8e3;
}
.final-cta-content p {
  font-size: 1.08rem; color: rgba(255,255,255,0.92);
  margin-bottom: 24px; line-height: 1.7;
}
.final-cta-content strong { color: #fff; font-weight: 600; }
.final-naechster-schritt {
  background: rgba(255,255,255,0.10);
  border-left: 4px solid #f0a8e3;
  padding: 16px 22px; border-radius: 8px;
  margin-bottom: 32px !important;
  font-size: 1rem !important;
}
.final-btn-wrap {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn-final-main {
  background: #fff; color: var(--gm-indigo);
  padding: 16px 38px; border-radius: 10px;
  font-weight: 700; font-size: 1.05rem; text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-final-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}
.final-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.final-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.final-trust {
  margin-top: 30px;
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
}
.final-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.88rem; color: rgba(255,255,255,0.82); font-weight: 500;
}
.final-trust-item::before { content: '✓'; color: #f0a8e3; font-weight: 700; }

/* ── FOOTER ───────────────────────────────────── */
footer { background: var(--gm-indigo-dark); padding: 52px 5% 36px; }
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
  max-width: 1100px; margin: 0 auto 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-logo-wrap img {
  width: auto; height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}
.footer-brand-desc { font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
.footer-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.87rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.footer-disclaimer {
  max-width: 1100px; margin: 20px auto 0;
  font-size: 0.75rem; color: rgba(255,255,255,0.85); line-height: 1.6;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.22);
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { padding-right: 0; text-align: center; }
  .hero-eyebrow,
  .hero-sub,
  .hero-note { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 380px; }
  .intro-bullets,
  .studie-grid,
  .md-grid,
  .entlastung-grid,
  .stufen-grid,
  .preis-grid { grid-template-columns: 1fr 1fr; }
  .preis-card.highlight { transform: none; }
  .reserve-inner { grid-template-columns: 1fr; gap: 40px; }
  .reserve-image { max-width: 480px; margin: 0 auto; }
  .finanz-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .finanz-callout { align-items: center; }
  .vertraut-inner { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .vertraut-image { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 760px) {
  nav ul { display: none; }
  nav { padding: 0 4%; }
  .hero { padding: 100px 5% 60px; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1.1rem; }
  .intro-lead { font-size: 1.05rem; }
  .intro-price-amount { font-size: 2.6rem; }
  .intro-bullets,
  .problem-grid,
  .studie-grid,
  .md-grid,
  .reserve-grid,
  .entlastung-grid,
  .stufen-grid,
  .preis-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .final-cta-content h2 { font-size: 1.9rem; }
  section h2 { font-size: 1.7rem; }
  .intro-section,
  .problem-section,
  .wissenschaft-section,
  .md-section,
  .reserve-section,
  .entlastung-section,
  .stufen-section,
  .preis-section,
  .finanz-section { padding: 70px 5%; }
  .btn-primary, .btn-ghost, .btn-final-main { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  nav { padding: 0 3%; }
  nav a, nav strong { font-size: 0.9rem; }

  /* ── HERO ───────────────────────────────── */
  .hero { padding: 60px 4% 40px; }
  .hero-inner { gap: 30px; }
  .hero-text { padding-right: 0; }
  .hero-eyebrow { font-size: 0.9rem; text-align: center; margin: 0 auto 12px; }
  .hero-text h1 { font-size: 1.9rem; line-height: 1.3; text-align: center; margin-left: auto; margin-right: auto; }
  .hero-sub { font-size: 1rem; text-align: center; margin-left: auto; margin-right: auto; }
  .hero-note { font-size: 0.85rem; margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; flex-direction: column; gap: 12px; }
  .hero-visual img { max-width: 280px; }
  .btn-primary, .btn-ghost { width: 100%; min-height: 48px; padding: 14px 16px; font-size: 0.95rem; text-align: center; }
  .btn-final-main { width: 100%; min-height: 48px; padding: 14px 16px; font-size: 0.95rem; }

  /* ── INTRO ───────────────────────────────── */
  .intro-section { padding: 50px 4%; }
  .intro-inner { max-width: 100%; padding: 0; }
  .intro-lead { font-size: 1rem; line-height: 1.6; max-width: 100%; }
  .intro-bullets { gap: 16px; }
  .intro-bullet { padding: 20px; }
  .intro-bullet h3 { font-size: 1rem; }
  .intro-bullet p { font-size: 0.9rem; }
  .intro-price { padding: 32px 20px; max-width: 100%; }
  .intro-price-amount { font-size: 2.2rem; }
  .intro-price-unit { font-size: 0.85rem; }
  .intro-price p { font-size: 0.95rem; }

  /* ── SECTIONS ───────────────────────────── */
  section h2 { font-size: 1.5rem; margin-bottom: 24px; text-align: center; }
  .problem-section,
  .wissenschaft-section,
  .md-section,
  .reserve-section,
  .entlastung-section,
  .stufen-section,
  .preis-section,
  .finanz-section { padding: 50px 4%; }
  .section-label { text-align: center; display: block; margin-bottom: 12px; }

  /* ── PROBLEM ───────────────────────────── */
  .problem-intro { text-align: center; }
  .problem-list li { font-size: 0.95rem; padding: 10px 0; }

  /* ── STUDIE (RESEARCH) ──────────────────── */
  .studie-card { padding: 20px; }
  .studie-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
  .studie-card p { font-size: 0.9rem; }

  /* ── MD ──────────────────────────────────── */
  .md-card { padding: 20px; }
  .md-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
  .md-list li { font-size: 0.9rem; padding: 6px 0; }

  /* ── RESERVE ─────────────────────────────── */
  .reserve-grid { gap: 24px; }
  .reserve-image { max-width: 100%; }
  .reserve-image img { width: 100%; }
  .reserve-inner { gap: 24px; }

  /* ── RELIEF (ENTLASTUNG) ──────────────────── */
  .entlastung-card { padding: 16px; }
  .entlastung-card .number { font-size: 1.3rem; width: 40px; height: 40px; }
  .entlastung-card h3 { font-size: 1rem; margin-bottom: 10px; }
  .entlastung-card p { font-size: 0.9rem; }

  /* ── DIFFICULTY LEVELS ────────────────────── */
  .stufen-card { padding: 20px; }
  .stufen-card h3 { font-size: 1rem; margin-bottom: 10px; }
  .stufen-card p { font-size: 0.9rem; }

  /* ── PRICING ────────────────────────────── */
  .preis-card { padding: 24px 16px; }
  .preis-card h3 { font-size: 1.1rem; margin-bottom: 16px; }
  .preis-list li { font-size: 0.9rem; padding: 8px 0; }

  /* ── FINANCING ──────────────────────────── */
  .finanz-inner { gap: 24px; }
  .finanz-callout { flex-direction: column; gap: 16px; }
  .finanz-image { max-width: 100%; }

  /* ── FAQ ─────────────────────────────────── */
  .faq-item { padding: 16px; margin-bottom: 12px; }
  .faq-question { font-size: 0.95rem; padding-right: 32px; }
  .faq-answer { font-size: 0.9rem; }

  /* ── TRUSTED ─────────────────────────────── */
  .vertraut-inner { padding: 24px; }
  .vertraut-image { max-width: 100%; }

  /* ── FINAL CTA ────────────────────────────── */
  .final-cta-content h2 { font-size: 1.6rem; line-height: 1.3; margin-bottom: 16px; text-align: center; }
  .final-cta-content p { font-size: 0.95rem; text-align: center; }

  /* ── FOOTER ───────────────────────────────── */
  .footer-top { gap: 20px; }
  .footer-col h4 { font-size: 1rem; margin-bottom: 12px; }
  .footer-col p, .footer-col a { font-size: 0.9rem; }
}
