/* STYLE MINIMAL CALME – PALETTE BLEU MARINE / MINT
	Polices : Goldman (titres) / Exo 2 (texte) */

:root {
	--bg: #f1f3f5;
	--panel: #f8fafb;
	--text: #1f3f68;
	--muted: #42586f;
	--accent: #2d9a7d;
	--accent-strong: #5f9fe7;
	--accent-soft: #e6f7f2;
	--border: #d3dee8;
	--shadow: 0 12px 36px rgba(31, 63, 104, 0.11);
	--card-bg-1: #dce9e8;
	--card-bg-2: #cde4dd;
	--card-bg-3: #d9e4ef;
	--footer-bg: #274d78;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Exo 2', sans-serif;
	line-height: 1.6;
	color: var(--text);
	background: radial-gradient(circle at 80% 5%, #f6fcff, var(--bg) 42%);
	padding-top: 76px; /* espace pour la nav fixe */
	-webkit-font-smoothing: antialiased;
}

/* Skip-to-content link (accessible au clavier) */
.skip-to-content {
	position: absolute;
	top: -9999px;
	left: -9999px;
	background: var(--accent);
	color: #fff;
	padding: 0.75rem 1rem;
	border-radius: 6px;
	font-weight: 600;
	z-index: 10000;
}

.skip-to-content:focus {
	top: 0.5rem;
	left: 0.5rem;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Goldman', sans-serif;
	color: var(--text);
}

a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover { color: #0f4ea7; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid #7fc6ff;
	outline-offset: 2px;
}

img { max-width: 100%; height: auto; display: block; }

.container {
	width: min(980px, 100% - 2.5rem);
	margin: 0 auto;
}

/* NAVIGATION */
nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(248, 250, 251, 0.92);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(211, 222, 232, 0.8);
	box-shadow: 0 8px 22px rgba(31, 63, 104, 0.07);
	z-index: 1000;
}

nav .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem 0;
}

nav .logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

nav .logo img {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	object-fit: cover;
}

nav .logo strong { color: var(--text); font-size: 1.25rem; }

#nav-menu {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	list-style: none;
}

#nav-menu > li {
	position: relative;
}

#nav-menu a {
	display: inline-block;
	padding: 0.5rem 0.4rem;
	border-radius: 0;
	color: var(--text);
	font-weight: 500;
	font-size: 1.02rem;
	border: 1px solid transparent;
	position: relative;
}

#nav-menu a:hover {
	color: #4f95df;
}

.nav-dropdown-toggle {
	display: inline-block;
	padding: 0.5rem 0.4rem;
	border-radius: 0;
	color: var(--text);
	font-weight: 500;
	font-size: 1.02rem;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	font-family: inherit;
	position: relative;
}

.nav-dropdown-toggle::after {
	content: '▾';
	margin-left: 0.32rem;
	font-size: 0.85em;
	color: #5a7ca2;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
	color: #4f95df;
}

.nav-submenu {
	position: absolute;
	top: calc(100% + 0.55rem);
	left: 50%;
	transform: translateX(-50%);
	min-width: 230px;
	list-style: none;
	padding: 0.45rem;
	margin: 0;
	background: #f8fafc;
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: var(--shadow);
	display: none;
	z-index: 1200;
}

.nav-submenu a {
	display: block;
	padding: 0.58rem 0.72rem;
	border-radius: 9px;
	white-space: nowrap;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.open .nav-submenu {
	display: block;
}

#nav-menu li:first-child a {
	color: #5ca5e9;
}

#nav-menu li:first-child a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.35rem;
	height: 2px;
	border-radius: 999px;
	background: #9ce7d4;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0.25rem;
}

.hamburger span {
	width: 28px;
	height: 3px;
	background: var(--text);
	border-radius: 999px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* SECTIONS */
section {
	padding: 4.5rem 0;
}

section h2 {
	text-align: center;
	font-size: clamp(2rem, 3vw, 3.1rem);
	margin-bottom: 2.5rem;
	letter-spacing: 0.5px;
}
section h2 i[data-lucide] {
	width: 1.08em;
	height: 1.08em;
	stroke-width: 2;
	vertical-align: -0.12em;
	margin-right: 0.28rem;
}

section h2 .section-title-logo {
	width: 1.02em;
	height: 1.02em;
	object-fit: contain;
	vertical-align: -0.11em;
	margin-right: 0.28rem;
	display: inline-block;
}

section > p {
	text-align: center;
	color: var(--muted);
	max-width: 720px;
	margin: 0 auto 2rem;
}

/* PAGE MENTIONS */
body.mentions-page .container {
	width: min(1200px, 100% - 2.5rem);
}

body.mentions-page .mentions-hero-title {
	font-size: clamp(2rem, 3vw, 2.8rem);
	text-align: center;
	margin-bottom: 1rem;
}

body.mentions-page .mentions-hero-intro {
	text-align: center;
	color: var(--muted);
	max-width: 980px;
	margin: 0 auto 2rem;
}

body.mentions-page .card {
	max-width: min(1120px, 100%) !important;
	margin: 0 auto !important;
	text-align: left !important;
	display: block;
	padding: 2rem 2rem;
}

body.mentions-page .card p {
	max-width: none;
	line-height: 1.7;
}

/* HERO */
#accueil {
	background: radial-gradient(circle at 20% 12%, #f8feff, #f1f3f5 58%),
				linear-gradient(115deg, #f6f9fb 0%, #eef2f7 100%);
	position: relative;
	overflow: hidden;
}

#accueil::before,
#accueil::after {
	content: '';
	position: absolute;
	pointer-events: none;
	opacity: 0.5;
}

#accueil::before {
	width: 84px;
	height: 84px;
	left: 30%;
	top: 22%;
	background-image: radial-gradient(#cfe8ff 26%, transparent 27%);
	background-size: 22px 22px;
}

#accueil::after {
	width: 86px;
	height: 16px;
	right: 24%;
	bottom: 15%;
	border: 3px solid #7ebcf4;
	border-radius: 999px;
	transform: rotate(44deg);
}

#accueil .overlay::before,
#accueil .overlay::after {
	content: '';
	position: absolute;
	pointer-events: none;
	opacity: 0.62;
}

#accueil .overlay::before {
	width: 26px;
	height: 26px;
	right: 19%;
	top: 20%;
	background:
		linear-gradient(#9fead6, #9fead6) center/100% 3px no-repeat,
		linear-gradient(#9fead6, #9fead6) center/3px 100% no-repeat;
	transform: rotate(45deg);
}

#accueil .overlay::after {
	width: 14px;
	height: 14px;
	left: 31%;
	bottom: 16%;
	border: 3px solid #9fead6;
	border-radius: 50%;
}

.floating-logos {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.floating-logo {
	position: absolute;
	object-fit: contain;
	pointer-events: none;
	filter: grayscale(8%);
	opacity: 0.3;
}

#accueil .overlay {
	text-align: center;
	padding: 4.8rem 1.25rem 5.8rem;
	position: relative;
	z-index: 1;
}

#accueil h1 {
	font-size: clamp(2.7rem, 5vw, 4.8rem);
	color: var(--text);
	max-width: 10ch;
	margin: 0 auto 1rem;
	animation: slideInFromLeft 0.8s ease-out;
	min-height: 1.2em;
	line-height: 1.16;
}

#hero-title::after {
	content: '|';
	animation: blink 1.1s step-end infinite;
}

@keyframes slideInFromLeft {
	0% {
		opacity: 0;
		transform: translateX(-100px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes blink {
	0%, 50% {
		opacity: 1;
	}
	51%, 100% {
		opacity: 0;
	}
}

#dynamic-slogan {
	font-weight: 700;
	color: #5a9cde;
	font-size: clamp(1.1rem, 2.3vw, 1.28rem);
	margin-bottom: 0.95rem;
}

#accueil p {
	color: #2d3c4f;
	font-size: 1.18rem;
	max-width: 650px;
	margin: 0 auto;
}

#accueil .overlay p + p {
	margin-top: 0.55rem;
}

#accueil .overlay p:last-of-type {
	margin-bottom: 0.35rem;
}

#accueil .trust-short {
	margin-top: 1rem;
	padding: 0.7rem 1rem;
	max-width: 740px;
	font-size: 1.02rem;
	background: rgba(236, 247, 243, 0.9);
	border: 1px solid #cfe7de;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: #264a69;
}

#accueil .trust-short svg {
	width: 18px;
	height: 18px;
	stroke-width: 2.2;
	flex: 0 0 auto;
	color: #4f95df;
}


.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin: 2rem auto 0;
    padding: 0.95rem 1.7rem;
    width: fit-content;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
	background: linear-gradient(90deg, var(--accent) 0%, var(--accent-strong) 100%);
	color: #fff;
	font-weight: 700;
	font-size: 0.98rem;
	font-family: 'Exo 2', sans-serif;
	text-align: center;
	box-shadow: 0 10px 26px rgba(95, 159, 231, 0.24);
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 36px rgba(95, 159, 231, 0.34);
	background: linear-gradient(90deg, #63cbb6 0%, #4b8fdc 100%);
}

/* CARDS (mission / valeurs) */
.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
}

/* Forcer 3 colonnes pour la section valeurs (6 cartes sur 2 lignes) */
#mission .cards {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 1rem;
}

#valeurs .cards {
	grid-template-columns: repeat(3, 1fr);
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (max-width: 900px) {
	#mission .cards {
		grid-template-columns: repeat(2, 1fr);
	}

	#valeurs .cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	#mission .cards {
		grid-template-columns: 1fr;
	}

	#valeurs .cards {
		grid-template-columns: 1fr;
	}

	#mission .card,
	#valeurs .card {
		min-height: auto;
	}
}

.card {
	background: var(--card-bg-1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 16px;
	padding: 2.35rem 1.8rem;
	box-shadow: 0 12px 28px rgba(31, 63, 104, 0.08);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(31, 63, 104, 0.14);
	border-color: #eef6ff;
}

.card .icon {
	font-size: 2rem;
	margin: 0 auto 1rem;
	width: 98px;
	height: 98px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	background: rgba(111, 214, 194, 0.33);
}
.card .icon svg {
	width: 44px;
	height: 44px;
	stroke-width: 2;
	color: #2a678f;
}

.card h3 {
	font-size: clamp(1.25rem, 1.3vw, 1.9rem);
	line-height: 1.2;
	max-width: 16ch;
	margin: 0 auto 0.9rem;
	color: #5fbf9a;
}

.card p {
	color: var(--muted);
	font-weight: 500;
	max-width: 30ch;
	line-height: 1.5;
}

#mission .card {
	min-height: 395px;
	border-radius: 18px;
}

#mission .card .icon {
	margin-bottom: 1.6rem;
	width: 132px;
	height: 132px;
}

#mission .card h3 {
	font-size: clamp(1.8rem, 2.4vw, 2.25rem);
	max-width: 12ch;
	margin-bottom: 1rem;
}

#mission .card p {
	font-size: 1.18rem;
	max-width: 26ch;
}

#valeurs .card {
	min-height: 330px;
	padding-top: 2rem;
}

#valeurs .card .icon {
	width: 120px;
	height: 120px;
	font-size: 1.8rem;
}

#mission .card .icon svg,
#valeurs .card .icon svg {
	width: 88px;
	height: 88px;
}

#valeurs .card h3 {
	font-size: clamp(1.35rem, 1.8vw, 1.7rem);
	max-width: 14ch;
}

#mission .card:nth-child(1) { background: var(--card-bg-1); }
#mission .card:nth-child(2) { background: var(--card-bg-2); }
#mission .card:nth-child(3) { background: var(--card-bg-3); }

#mission .card:nth-child(2) h3 { color: #57a178; }
#mission .card:nth-child(3) h3 { color: #5a99de; }

#valeurs .card:nth-child(3n + 1) { background: var(--card-bg-1); }
#valeurs .card:nth-child(3n + 2) { background: var(--card-bg-2); }
#valeurs .card:nth-child(3n + 3) { background: var(--card-bg-3); }

#valeurs .card:nth-child(3n + 1) h3 { color: #60c299; }
#valeurs .card:nth-child(3n + 2) h3 { color: #54a07b; }
#valeurs .card:nth-child(3n + 3) h3 { color: #5a99de; }

/* PREUVE DE CONFIANCE */
#confiance {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

#confiance > p {
	max-width: 860px;
	margin-bottom: 2.4rem;
}

#confiance .trust-responsibility {
	max-width: 980px;
	margin: 0 auto 1.7rem;
	padding: 0.95rem 1.05rem;
	background: #f4f8fb;
	border: 1px solid #d8e6f1;
	border-left: 4px solid #4f95df;
	border-radius: 12px;
	text-align: left;
	color: #2d3c4f;
	line-height: 1.48;
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
}

#confiance .trust-responsibility svg {
	width: 18px;
	height: 18px;
	stroke-width: 2;
	color: #4f95df;
	flex: 0 0 auto;
	margin-top: 0.1rem;
}

.trust-grid {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.4rem;
}

.trust-card {
	background: #eaf2f7;
	border: 1px solid #d8e7f1;
	border-radius: 16px;
	padding: 1.45rem 1.2rem;
	box-shadow: 0 10px 24px rgba(31, 63, 104, 0.08);
}

.trust-card--soft {
	background: #e7f2ef;
	border-color: #d2e6e0;
}

.trust-card h3 {
	display: flex;
	align-items: center;
	gap: 0.48rem;
	font-size: 1.22rem;
	margin-bottom: 0.8rem;
	color: var(--text);
}

.trust-card h3 svg {
	width: 20px;
	height: 20px;
	stroke-width: 2;
	color: #4f95df;
	flex: 0 0 auto;
}

.trust-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.trust-card li {
	display: block;
	padding: 0;
	margin: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--muted);
	line-height: 1.45;
}

/* TIMELINE (fonctionnement) */
.timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.3rem;
	align-items: stretch;
	max-width: 1100px;
	margin: 0 auto;
}

@media (max-width: 900px) {
	.timeline {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.trust-grid {
		grid-template-columns: 1fr;
	}

	.timeline {
		grid-template-columns: 1fr;
	}
}

.step {
	background: #edf4f8;
	border: 1px solid #e1ebf3;
	border-radius: 16px;
	padding: 1.55rem 1.2rem;
	text-align: center;
	box-shadow: 0 10px 22px rgba(31, 63, 104, 0.08);
}

.step-number {
	display: inline-block;
	background: linear-gradient(90deg, #dbf6ee 0%, #e7f1ff 100%);
	color: var(--text);
	border-radius: 999px;
	padding: 0.42rem 1rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	animation: workflowPulse 10s infinite ease-in-out;
}

.timeline .step:nth-child(1) .step-number { animation-delay: 0s; }
.timeline .step:nth-child(2) .step-number { animation-delay: 1.5s; }
.timeline .step:nth-child(3) .step-number { animation-delay: 3s; }
.timeline .step:nth-child(4) .step-number { animation-delay: 4.5s; }

@keyframes workflowPulse {
	0%, 12% { 
		transform: scale(1.08); 
		background: linear-gradient(90deg, var(--accent) 0%, var(--accent-strong) 100%); 
		color: white; 
		box-shadow: 0 0 10px rgba(95, 159, 231, 0.3); 
	}
	20%, 100% { 
		transform: scale(1); 
		background: linear-gradient(90deg, #dbf6ee 0%, #e7f1ff 100%); 
		color: var(--text); 
		box-shadow: none; 
	}
}

.step-text {
	display: block;
	color: var(--muted);
	font-weight: 600;
}

/* LISTES SIMPLES (permanences, bénévoles) */
section ul {
	list-style: none;
	padding: 0;
	margin: 1.25rem auto 0;
	max-width: 720px;
	display: grid;
	gap: 0.6rem;
	color: var(--muted);
}

section ul li {
	padding: 0.85rem 1rem;
	background: #ecf4f7;
	border: 1px solid #dbe8ef;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.list-icon {
	width: 18px;
	height: 18px;
	stroke-width: 2;
	flex: 0 0 auto;
	color: #4f95df;
}
/* FOOTER */
footer {
	background: var(--footer-bg);
	color: #e5e7eb;
	padding: 2.8rem min(4vw, 3rem);
	text-align: left;
	margin-top: 3rem;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.1fr;
	gap: 0.8rem 2rem;
}

footer > strong {
	grid-column: 1;
	grid-row: 1;
}

footer > p:first-of-type {
	grid-column: 1;
	grid-row: 2;
	max-width: 34ch;
}

footer > ul {
	grid-column: 2;
	grid-row: 1 / span 2;
}

footer > p:last-of-type {
	grid-column: 3;
	grid-row: 1 / span 2;
	align-self: center;
	max-width: 32ch;
}

footer strong { display: block; font-size: 1.2rem; margin-bottom: 0.6rem; }

.footer-title-logo {
	width: 1.05em;
	height: 1.05em;
	object-fit: contain;
	vertical-align: -0.11em;
	margin-right: 0.28rem;
	display: inline-block;
}

footer i[data-lucide] {
	width: 1em;
	height: 1em;
	stroke-width: 2;
	vertical-align: -0.12em;
}

footer ul {
	list-style: none;
	display: grid;
	gap: 0.7rem;
	justify-content: start;
	margin: 0;
	padding: 0;
	color: #cbd5e1;
}

footer li { font-weight: 600; }

footer a {
	color: #cbd5e1;
	text-decoration: underline;
	text-underline-offset: 3px;
}

footer a:hover {
	color: #ffffff;
}

/* MODALES */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.55);
	justify-content: center;
	align-items: center;
	padding: 1rem;
	z-index: 2000;
}

.modal-content {
	background: var(--panel);
	padding: 1.5rem;
	border-radius: 14px;
	width: min(420px, 100%);
	box-shadow: var(--shadow);
	position: relative;
}

.modal-content h3 { margin-bottom: 0.75rem; }

.modal-content p { color: var(--muted); margin-bottom: 1rem; }

.modal-content form { display: grid; gap: 0.75rem; }

.modal-content label {
	display: block;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--text);
	margin-bottom: 0.35rem;
	margin-top: 0.85rem;
}

.modal-content label:first-of-type {
	margin-top: 0;
}

.modal-content input,
.modal-content textarea {
	width: 100%;
	padding: 0.75rem;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: #fafbfc;
	font-family: 'Exo 2', sans-serif;
}

.modal-content textarea { resize: vertical; min-height: 100px; }

.modal .btn { width: fit-content; }

.form-helper {
	font-size: 0.92rem;
	color: var(--muted);
	margin: 0;
}

.form-status {
	min-height: 1.2rem;
	font-size: 0.92rem;
	font-weight: 600;
	margin: 0;
}

.form-status.is-info { color: var(--muted); }
.form-status.is-success { color: #0f766e; }
.form-status.is-error { color: #b91c1c; }

.hp-field {
	position: absolute !important;
	left: -9999px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.close {
	position: absolute;
	top: 12px;
	right: 12px;
	font-size: 1.2rem;
	cursor: pointer;
	color: var(--muted);
	background: none;
	border: none;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	transition: background-color 0.2s ease, color 0.2s ease;
	padding: 0;
}

.close:hover {
	background-color: rgba(31, 63, 104, 0.08);
	color: var(--text);
}

.close:focus-visible {
	outline: 2px solid #7fc6ff;
	outline-offset: 2px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
	#nav-menu {
		position: absolute;
		top: 100%;
		right: 1rem;
		flex-direction: column;
		background: #f8fafc;
		border: 1px solid var(--border);
		border-radius: 12px;
		padding: 0.6rem;
		box-shadow: var(--shadow);
		display: none;
		min-width: 230px;
		gap: 0.1rem;
	}

	#nav-menu.open { display: flex; }

	#nav-menu a {
		width: 100%;
		text-align: left;
		padding: 0.6rem 0.7rem;
		border-radius: 10px;
	}

	.nav-dropdown {
		width: 100%;
	}

	.nav-dropdown-toggle {
		width: 100%;
		text-align: left;
		padding: 0.6rem 0.7rem;
		border-radius: 10px;
	}

	.nav-submenu {
		position: static;
		transform: none;
		min-width: 0;
		border: 0;
		box-shadow: none;
		background: transparent;
		padding: 0.2rem 0 0.25rem 0.6rem;
	}

	.nav-dropdown.open .nav-submenu {
		display: block;
	}

	.nav-submenu a {
		padding: 0.5rem 0.7rem;
		font-size: 0.97rem;
		white-space: normal;
	}

	#nav-menu li:first-child a::after {
		display: none;
	}

	.hamburger { display: flex; }

	body { padding-top: 72px; }

	footer {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 1rem;
	}

	footer > strong,
	footer > p:first-of-type,
	footer > ul,
	footer > p:last-of-type {
		grid-column: 1;
		grid-row: auto;
		justify-self: center;
	}

	footer ul {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	section { padding: 3.5rem 0; }
	nav .container { padding: 0.9rem 0; }
	#accueil .overlay { padding: 4.2rem 1rem 4.2rem; }
	#accueil h1 {
		max-width: 100%;
		line-height: 1.14;
	}
	#accueil p {
		font-size: 1.02rem;
		max-width: 34ch;
	}
	#accueil .trust-short {
		font-size: 0.94rem;
		padding: 0.7rem 0.8rem;
		text-align: left;
		justify-content: flex-start;
	}
	.card { padding: 1.7rem 1.2rem; }
	.card .icon {
		width: 78px;
		height: 78px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}

	.floating-logos {
		display: none;
	}
}
