
/* Trust band: chiffres clés + logos clients */
#trust-band {
	padding: 3em 0;
	background: #f6f6f6;
	text-align: center;
}

#trust-band .stats-row {
	display: flex;
	justify-content: center;
	gap: 4em;
	flex-wrap: wrap;
	margin-bottom: 2.5em;
}

#trust-band .stat {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#trust-band .stat-number {
	font-size: 2.25em;
	font-weight: 700;
	line-height: 1;
	color: #333;
}

#trust-band .stat-label {
	font-size: 0.85em;
	color: #777;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 0.5em;
}

#trust-band .trust-caption {
	font-size: 0.85em;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1.5em;
}

#trust-band .logos-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3em;
	flex-wrap: wrap;
}

#trust-band .client-logo {
	height: 60px;
	width: auto;
	max-width: 160px;
	object-fit: contain;
	background: #fff;
	padding: 8px 16px;
	border-radius: 6px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
	filter: grayscale(100%);
	opacity: 0.75;
	transition: filter 0.3s ease, opacity 0.3s ease;
}

#trust-band .client-logo:hover {
	filter: grayscale(0%);
	opacity: 1;
}

@media screen and (max-width: 736px) {
	#trust-band .stats-row {
		gap: 2em;
	}
	#trust-band .stat-number {
		font-size: 1.75em;
	}
	#trust-band .logos-row {
		gap: 2em;
	}
	#trust-band .client-logo {
		height: 45px;
		max-width: 120px;
	}
}
