/* ── trust.css — „Strategie. Umsetzung. Ergebnis." + Proof-Kacheln (A2) ───────
   Beleg statt Logowand: pro Kunde ein Ergebnis (KPI + Quelle), darunter eine
   schlanke Logo-Zeile für Breite. KPI-Zahlen sind Platzhalter bis zur Freigabe.
   ──────────────────────────────────────────────────────────────────────────── */

.trust {
	background: var(--c-surface);
}

.trust h2 {
	font-size: var(--fs-h2-fluid);
	max-width: 40rem;
}

.trust__intro {
	max-width: 44rem;
	font-size: 1.0625rem;
}

/* ── Proof-Kacheln ──────────────────────────────────────────────────────── */
.trust__proof {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin: 2.5rem 0 0;
	padding: 0;
	list-style: none;
}

.proof-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	min-width: 0;
	height: 100%;
	background: var(--c-bg);
	border-radius: var(--radius);
	padding: 1.75rem;
	text-decoration: none;
	color: var(--c-text);
	box-shadow: var(--shadow-card);
	transition: box-shadow 0.2s, transform 0.2s;
}

.proof-card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-0.1875rem);
	color: var(--c-text);
}

.proof-card:focus-visible {
	outline: 0.1875rem solid var(--c-accent-dark);
	outline-offset: 0.1875rem;
}

/* Echtes Logo (getrimmte Graustufen-Wortmarke), links ausgerichtet */
.proof-card__logo {
	height: 2.25rem;
	width: auto;
	max-width: 12rem;
	object-fit: contain;
	object-position: left center;
}

/* Fallback-Wortmarke, solange ein Logo fehlt (z. B. EGLO) */
.proof-card__brand {
	display: flex;
	align-items: center;
	min-height: 2.25rem;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.0625rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-text-muted);
}

.proof-card__kpi {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.proof-card__num {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 2.25rem;
	line-height: 1;
	letter-spacing: -0.01em;
	color: var(--c-primary);
	font-variant-numeric: tabular-nums;
}

.proof-card__metric {
	font-size: 0.9375rem;
	color: var(--c-text-muted);
}

.proof-card__source {
	margin-top: auto;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--fs-sm);
	color: var(--c-link);
}

/* ── Sekundäre Logo-Zeile ───────────────────────────────────────────────── */
.trust__strip-label {
	margin: 2.25rem 0 0.75rem;
	font-size: var(--fs-sm);
	color: var(--c-text-muted);
}

/* volle Breite: Logos gleichmäßig über die ganze Breite verteilt, auch in der letzten Zeile */
.trust__logo-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	gap: 2.25rem 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Logos ohne Kästchen, transparent direkt auf der Fläche */
.trust__logo-strip li {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 2.5rem;
}

.trust__logo-strip img {
	max-width: 8.5rem;
	max-height: 2rem;
	width: auto;
	height: auto;
	object-fit: contain;
}

@media (max-width: 64rem) {
	.trust__proof {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 40rem) {
	.trust__proof {
		grid-template-columns: 1fr;
	}
}
