/* =============================================================
   02 - LAYOUT
   Container, navigation, structure des sections.
   ============================================================= */

.ctn {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.br-main {
	display: block;
}

.br-section {
	padding: 100px 0;
	position: relative;
}

/* Espacement plus serré pour la bande logos */
.br-logos {
	padding: 48px 0;
}

/* ====================== NAVIGATION ====================== */

.br-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 14px 0;
	background: rgba(250, 250, 249, 0.75);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid var(--b);
	transition: background 0.3s ease;
}

.br-nav.scrolled {
	background: rgba(250, 250, 249, 0.95);
}

.br-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

/* ====================== LOGO ====================== */

.br-logo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--fd);
	font-weight: 800;
	font-size: 1.3rem;
	letter-spacing: -0.04em;
	color: var(--t);
	text-decoration: none;
	white-space: nowrap;
}

.br-logo-mark {
	width: 28px;
	height: 28px;
	background: var(--a);
	border-radius: 7px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 800;
	color: #fff;
	position: relative;
	flex-shrink: 0;
}

.br-logo-mark::after {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 9px;
	border: 1px solid var(--a);
	opacity: 0.2;
	animation: pu 2.5s ease-in-out infinite;
}

/* ====================== BARRE ALERTE ====================== */

.br-alert {
	margin-top: 57px;
	background: linear-gradient(
		90deg,
		rgba(79, 70, 229, 0.04),
		rgba(217, 119, 6, 0.04)
	);
	border-bottom: 1px solid rgba(217, 119, 6, 0.10);
	padding: 9px 0;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--t2);
}

.br-alert .ctn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	text-align: center;
}

.br-alert strong {
	color: var(--o);
	font-weight: 700;
}

.br-alert a {
	color: var(--a);
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 600;
}

.br-alert-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	background: var(--o);
	border-radius: 50%;
	animation: pu 2s ease-in-out infinite;
	flex-shrink: 0;
}

/* ====================== FOOTER ====================== */

.br-footer {
	padding: 48px 0 36px;
	border-top: 1px solid var(--b);
	background: var(--bg2);
}

.br-footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px;
	flex-wrap: wrap;
}

.br-footer-brand {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 360px;
}

.br-footer-brand .br-logo {
	font-size: 1.05rem;
}

.br-footer-brand .br-logo-mark {
	width: 22px;
	height: 22px;
	border-radius: 5px;
	font-size: 0.6rem;
}

.br-footer-tagline {
	font-size: 0.82rem;
	color: var(--tm);
	line-height: 1.55;
}

.br-footer-meta {
	font-size: 0.78rem;
	color: var(--tm);
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.br-footer-meta a {
	color: var(--t2);
	transition: color 0.2s ease;
}

.br-footer-meta a:hover {
	color: var(--a);
}

.br-footer-sep {
	opacity: 0.5;
}

/* Footer — liens légaux */
.br-footer-legal {
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid var(--b);
}

.br-footer-legal-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 28px;
	margin: 0;
	padding: 0;
}

.br-footer-legal-list a {
	font-size: 0.78rem;
	color: var(--tm);
	text-decoration: none;
	transition: color 0.2s ease;
}

.br-footer-legal-list a:hover {
	color: var(--a);
}