/* Bausteine für Landingpages (lp-*) — ergänzt das inline ki-Framework der
 * Produkt-Landingpages um die wenigen Elemente, die es dort nicht gibt.
 * Genutzt von /plattformen und /finanzvertrieb-gruenden.
 * (Auf /crm-wechsel liegen die gleichen Muster noch als wx-* im Seiten-CSS —
 *  könnten später hierher wandern.)
 *
 * Zielgruppe im Schnitt 53,7 Jahre: große Touch-Ziele, hohe Kontraste,
 * keine Interaktion, die nur per Hover erreichbar ist.
 */

/* Trust-Badge unter dem Hero-CTA (aggregierte Bewertungen).
   Auf /, /preise, /referenzen, /baufinanzierung-crm und /crm-wechsel liegen dieselben
   Regeln noch inline im Seiten-CSS — könnten später hierher wandern. */
.trust-badge { display: flex; flex-flow: column; align-items: center; gap: .5rem; margin-top: .75rem; }
.trust-badge-stars { display: flex; gap: .2rem; }
.trust-star { width: 1.15rem; height: 1.15rem; fill: var(--_colors---brand-colors--gold); }
.trust-badge-text { margin: 0; font-size: .9rem; text-align: center; color: var(--_colors---brand-colors--main-text-color); opacity: .78; }
.trust-badge-text strong { font-weight: 600; }

/* Nummerierte Schritte in einer ki-karte */
.lp-schritt-nr {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--_colors---background-colors--bg-light-blue);
  color: var(--_colors---brand-colors--blue);
  font-weight: 600;
  font-size: 1.15rem;
}

/* Häkchen-Listen */
.lp-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.lp-liste li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .97rem;
  line-height: 1.5;
}
.lp-liste svg { flex: none; margin-top: .25rem; }

/* Zweispaltige Panels (Gegenüberstellung, Umfang) */
.lp-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.lp-panel {
  background: var(--_colors---base-colors--white);
  border-radius: var(--_corners---corner-m);
  box-shadow: 0 14px 36px rgba(1, 22, 48, .08);
  padding: 2rem;
}
.lp-panel.ist-hervorgehoben { border: 1px solid var(--_colors---brand-colors--blue-alt); }
.lp-panel h3 { margin: 0 0 .3rem; }
.lp-panel-kicker {
  font-weight: 600;
  color: var(--_colors---brand-colors--blue);
  margin: 0 0 1.1rem;
}
.lp-panel .paragraph + .lp-liste { margin-top: 1.1rem; }

/* Kundenstimmen */
.lp-stimmen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.lp-stimme {
  background: var(--_colors---base-colors--white);
  border-radius: var(--_corners---corner-m);
  box-shadow: 0 14px 36px rgba(1, 22, 48, .08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
}
.lp-stimme blockquote { margin: 0; font-size: 1.02rem; line-height: 1.55; }
.lp-stimme figcaption { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.lp-stimme img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex: none; }
.lp-stimme-name { font-weight: 600; font-size: .95rem; }
.lp-stimme-firma { font-size: .85rem; opacity: .7; }

/* Kundenlogos */
.lp-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.25rem;
  margin-top: 3rem;
}
.lp-logos img { height: 32px; width: auto; opacity: .8; }

.lp-hinweis { font-size: .9rem; color: #4a5568; margin: 2.25rem auto 0; max-width: 920px; }
.lp-cta-block { display: flex; flex-direction: column; align-items: center; margin-top: 3rem; }

@media (max-width: 991px) {
  .lp-panel-grid,
  .lp-stimmen-grid { grid-template-columns: 1fr; }
  .lp-panel { padding: 1.75rem; }
  .lp-logos img { height: 30px; }
}
