/**
 * Trust strip — compact bewijs onder hero
 */

.trust-strip {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4) var(--space-6);
	justify-content: flex-start;
	align-items: center;
	padding: var(--space-4) 0;
	margin: 0;
	background: transparent;
	border: none;
	box-shadow: none;
}

.trust-strip--boxed {
	padding: var(--space-5) var(--space-6);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-subtle);
	justify-content: center;
}

.trust-strip__item {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	font-size: var(--text-small);
	font-weight: 600;
	color: var(--color-text);
}

.trust-strip__value {
	font-family: var(--font-heading);
	font-size: var(--text-h4);
	font-weight: 700;
	color: var(--color-brand);
	line-height: 1;
}

.trust-strip__label {
	font-size: var(--text-small);
	color: var(--color-text-muted);
	font-weight: 500;
}

.trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	align-items: center;
}

.trust-badges__item {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	font-size: var(--text-small);
	color: var(--color-text-muted);
}

.trust-badges__icon {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	background: var(--color-surface-soft);
	border: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-brand);
}
