/* parts-hero-band : ex-bloc <style> de hero-band.php, source de vérité depuis le 09/09/2026 (plan poids-html-blueprint-light, lot 2). Tokens : var(--color-*) uniquement. */
	/* Bande accroche + KPI sous le hero (hubs N1) — Blueprint Light. */
	.khero-band {
		background: var(--khero-band-bg, var(--color-white));
	}
	/* Hairline uniquement en variante blanche par défaut : quand la bande prend
	   la couleur de la section suivante (fusion), pas de séparateur. */
	.khero-band--sep {
		border-bottom: 1px solid var(--color-gray-medium, #E0E0E0);
	}
	.khero-band__inner {
		max-width: var(--container-wide, 1400px);
		margin: 0 auto;
		padding: clamp(48px, 6.5vw, 84px) 60px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: clamp(40px, 6vw, 96px);
	}
	.khero-band__intro {
		display: flex;
		align-items: stretch;
		gap: 20px;
		max-width: 640px;
	}
	.khero-band__bar {
		flex-shrink: 0;
		width: 3px;
		border-radius: 2px;
		background: var(--color-orange, #F27E33);
	}
	.khero-band__text {
		margin: 0;
		padding: 2px 0;
		font-size: clamp(17px, 1.4vw, 21px);
		font-weight: 400;
		line-height: 1.55;
		color: var(--color-bleu, #0d2857);
	}
	.khero-band__text p { margin: 0; }
	.khero-band__text p + p { margin-top: 0.7em; }
	.khero-band__stats {
		display: flex;
		flex-shrink: 0;
		gap: clamp(28px, 3.5vw, 56px);
	}
	.khero-band__stat {
		display: flex;
		flex-direction: column;
		position: relative;
		padding-right: clamp(24px, 3vw, 48px);
	}
	.khero-band__stat:not(:last-child)::after {
		content: '';
		position: absolute;
		right: 0;
		top: 8px;
		bottom: 8px;
		width: 1px;
		background: var(--color-gray-medium, #E0E0E0);
	}
	.khero-band__stat:last-child { padding-right: 0; }
	.khero-band__value {
		font-family: var(--font-title, "Plus Jakarta Sans", system-ui, sans-serif);
		font-size: clamp(36px, 4vw, 56px);
		font-weight: 800;
		line-height: 1;
		letter-spacing: -0.02em;
		color: var(--color-bleu, #0d2857);
		white-space: nowrap;
	}
	.khero-band__value .suffix { color: var(--color-orange, #F27E33); }
	.khero-band__label {
		margin-top: 10px;
		font-size: 11px;
		font-weight: 600;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: var(--color-gray-text, #666666);
	}
	/* Variante KPI seuls (pas d'accroche) : chiffres centrés et amplifiés. */
	.khero-band--center .khero-band__inner { justify-content: center; }
	.khero-band--center .khero-band__stats {
		gap: clamp(48px, 7vw, 110px);
	}
	.khero-band--center .khero-band__stat { padding-right: clamp(48px, 7vw, 110px); }
	.khero-band--center .khero-band__stat:last-child { padding-right: 0; }
	.khero-band--center .khero-band__value {
		font-size: clamp(48px, 6vw, 84px);
	}
	.khero-band--center .khero-band__label {
		margin-top: 14px;
		font-size: 12px;
		letter-spacing: 0.16em;
	}
	@media (max-width: 899px) {
		.khero-band__inner {
			flex-direction: column;
			align-items: flex-start;
			gap: 32px;
			padding: 40px 24px 44px;
		}
		.khero-band--center .khero-band__inner { align-items: center; }
		.khero-band--center .khero-band__stats { gap: 20px; }
		.khero-band--center .khero-band__stat { padding-right: 20px; }
		.khero-band--center .khero-band__value { font-size: clamp(32px, 9vw, 42px); }
		.khero-band__stats {
			width: 100%;
			justify-content: space-between;
			gap: 16px;
		}
		.khero-band__stat { padding-right: 14px; }
		.khero-band__value { font-size: clamp(28px, 8vw, 36px); }
		.khero-band__label { font-size: 10px; }
	}
