:root {
	--brand:       #0B3D5E;
	--brand-dark:  #082E47;
	--brand-light: #E8F4FB;
	--cta:         #F59E0B;
	--cta-dark:    #D97706;
	--cta-text:    #1A1A1A;
	--ink:         #1A1A1A;
	--muted:       #555555;
	--line:        #D1D5DB;
	--soft:        #F8FAFC;
	--white:       #FFFFFF;
	--font-body:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
	--radius:      6px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; margin: 0; }

body {
	font-family: var(--font-body);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--ink);
	background: var(--white);
}

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

a { color: var(--brand); }
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4 {
	font-family: var(--font-body);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 14px;
	color: var(--brand);
}
h1 { font-size: 2.5rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 7px; }
strong { font-weight: 700; }

.xsk9pa { position: absolute; left: -999px; top: 0; background: var(--brand); color: #fff; padding: 10px 16px; z-index: 200; text-decoration: none; }
.xsk9pa:focus { left: 8px; top: 8px; color: #fff; }
:focus-visible { outline: 3px solid var(--cta); outline-offset: 2px; }

/* ================================================================
   BUTTONS
================================================================ */
.zbtn {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	border: 0;
	border-radius: var(--radius);
	padding: 14px 28px;
	cursor: pointer;
	line-height: 1.3;
}
.zbtn-cta { background: var(--cta); color: var(--cta-text); }
.zbtn-cta:hover { background: var(--cta-dark); color: var(--cta-text); }
.zbtn-outline {
	background: transparent;
	color: var(--brand);
	border: 2px solid var(--brand);
	padding: 12px 26px;
}
.zbtn-outline:hover { background: var(--brand-light); }
.zbtn-full { display: block; width: 100%; text-align: center; }

/* ================================================================
   HEADER
================================================================ */
.zhdr {
	background: var(--brand);
	position: relative;
	z-index: 100;
}
.zhdr-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
	gap: 20px;
}
.zhdr-logo { display: inline-flex; flex-shrink: 0; }
.zhdr-logo img { height: 46px; width: auto; }

/* Nav */
.znav input#znav-tog { display: none; }
.znav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 24px;
}
.znav ul li { margin: 0; }
.znav ul a {
	text-decoration: none;
	color: rgba(255,255,255,0.88);
	font-size: 0.97rem;
	font-weight: 400;
	padding: 6px 0;
}
.znav ul a:hover { color: var(--cta); }
.znav ul .znav-cta a {
	background: var(--cta);
	color: var(--cta-text);
	padding: 9px 18px;
	border-radius: var(--radius);
	font-weight: 700;
}
.znav ul .znav-cta a:hover { background: var(--cta-dark); color: var(--cta-text); }

.zham {
	display: none;
	cursor: pointer;
	background: transparent;
	border: 0;
	padding: 6px;
	flex-direction: column;
	gap: 5px;
}
.zham span {
	display: block;
	width: 26px;
	height: 3px;
	background: #fff;
	border-radius: 2px;
}

@media (max-width: 820px) {
	.zham { display: flex; }
	.znav ul {
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		background: var(--brand-dark);
		flex-direction: column;
		align-items: flex-start;
		padding: 16px 24px 20px;
		gap: 4px;
	}
	.znav ul li { width: 100%; }
	.znav ul a { display: block; padding: 10px 0; font-size: 1rem; }
	.znav ul .znav-cta a { padding: 10px 0; background: transparent; color: var(--cta); }
	#znav-tog:checked ~ ul { display: flex; }
}

/* ================================================================
   HERO - image bg, form right, stats bar below
================================================================ */
.zhero {
	position: relative;
	background-color: var(--brand-dark);
	background-image: url("img/hero.webp");
	background-size: cover;
	background-position: center 30%;
	min-height: 600px;
}
.zhero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(8, 46, 71, 0.80);
}
.zhero-inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 72px 24px 64px;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 52px;
	align-items: start;
}
.zhero-copy { color: rgba(255,255,255,0.95); padding-top: 6px; }
.zhero-copy h1 {
	font-size: 2.7rem;
	color: #fff;
	margin-bottom: 16px;
}
.zhero-copy .zhero-lead {
	font-size: 1.12rem;
	color: rgba(255,255,255,0.82);
	margin-bottom: 28px;
}
.zhero-feats {
	list-style: none;
	margin: 0;
	padding: 0;
}
.zhero-feats li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 1.01rem;
	color: #fff;
}
.zhero-feats svg { color: var(--cta); flex-shrink: 0; margin-top: 3px; }

/* Form card */
.zform {
	background: var(--white);
	border-radius: var(--radius);
	padding: 28px 26px 26px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.zform-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--brand);
	margin-bottom: 4px;
}
.zform-sub { font-size: 0.92rem; color: var(--muted); margin-bottom: 16px; }

.zfrow2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.zfld { margin-bottom: 12px; }
.zfld label {
	display: block;
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}
.zfld input {
	width: 100%;
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 10px 12px;
	border: 1.5px solid var(--line);
	border-radius: var(--radius);
	background: #FAFAFA;
	color: var(--ink);
}
.zfld input:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(11,61,94,0.15);
}
.zhoney { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.zform-note { font-size: 0.79rem; color: #888; margin-top: 8px; margin-bottom: 0; }

.zmsg { font-size: 0.95rem; padding: 11px 14px; border-radius: var(--radius); margin-bottom: 14px; }
.zmsg-ok  { background: #E8F4FB; color: var(--brand-dark); border: 1px solid #9AD4F0; }
.zmsg-err { background: #FFF7ED; color: #92400E; border: 1px solid #FED7AA; }

/* Stats bar */
.zhero-stats {
	background: var(--brand-dark);
	border-top: 3px solid var(--cta);
}
.zhero-stats-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: space-around;
}
.zhero-stat {
	padding: 22px 16px;
	text-align: center;
	color: #fff;
}
.zhero-stat strong {
	display: block;
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--cta);
}
.zhero-stat span {
	font-size: 0.9rem;
	color: rgba(255,255,255,0.78);
}

/* ================================================================
   MAIN CONTENT
================================================================ */
.zmain { background: var(--white); }

.zsec { padding: 64px 0; }
.zsec-alt { background: var(--soft); }
.zsec-brand { background: var(--brand); }
.zsec-brand h2, .zsec-brand h3, .zsec-brand h4,
.zsec-brand p, .zsec-brand li, .zsec-brand span, .zsec-brand strong,
.zsec-brand dt, .zsec-brand dd { color: #fff; }
.zsec-brand .zsec-head p { color: rgba(255,255,255,0.82); }

.zwrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.zsec-head { max-width: 760px; margin-bottom: 36px; }
.zsec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.zsec-head p { color: var(--muted); font-size: 1.05rem; }

/* ================================================================
   SERVICE GRID
================================================================ */
.zsrv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 22px;
}
.zsrv-card {
	background: var(--white);
	border: 1.5px solid var(--line);
	border-top: 4px solid var(--brand);
	border-radius: var(--radius);
	padding: 24px 20px 22px;
	display: flex;
	flex-direction: column;
}
.zsrv-icon {
	color: var(--brand);
	margin-bottom: 12px;
	line-height: 1;
}
.zsrv-icon svg { width: 32px; height: 32px; }
.zsrv-card h3 { margin-bottom: 8px; }
.zsrv-card p { color: var(--muted); font-size: 0.97rem; }

/* ================================================================
   PHOTO MOSAIC
================================================================ */
.zphotos {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 8px;
}
.zphotos img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); }
.zphotos img:first-child { grid-row: 1 / 3; height: 100%; }

/* ================================================================
   STEPS / HOW IT WORKS
================================================================ */
.zsteps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 28px;
	counter-reset: step-counter;
}
.zstep {
	position: relative;
	padding-left: 56px;
}
.zstep::before {
	counter-increment: step-counter;
	content: counter(step-counter);
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	background: var(--cta);
	color: var(--cta-text);
	font-weight: 700;
	font-size: 1.1rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.zstep h3 { margin-bottom: 6px; font-size: 1.08rem; }
.zstep p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ================================================================
   TYPES CTA BAND
================================================================ */
.ztypes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
}
.ztype-item {
	background: rgba(255,255,255,0.12);
	border: 1.5px solid rgba(255,255,255,0.25);
	border-radius: var(--radius);
	padding: 20px 16px;
	text-align: center;
}
.ztype-item svg { color: var(--cta); margin-bottom: 8px; }
.ztype-item strong { display: block; color: #fff; font-weight: 700; font-size: 1rem; }
.ztype-item span { color: rgba(255,255,255,0.75); font-size: 0.88rem; }

/* ================================================================
   FAQ ACCORDION (CSS only)
================================================================ */
.zfaq { max-width: 780px; margin: 0 auto; }
.zfaq-item { border-bottom: 1px solid var(--line); }
.zfaq-item input { display: none; }
.zfaq-item label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	cursor: pointer;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--brand);
}
.zfaq-item label::after {
	content: "+";
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--brand);
	flex-shrink: 0;
	margin-left: 12px;
}
.zfaq-item input:checked ~ label::after { content: "-"; }
.zfaq-body {
	display: none;
	padding: 0 0 18px;
	color: var(--muted);
	font-size: 0.97rem;
}
.zfaq-item input:checked ~ .zfaq-body { display: block; }

/* ================================================================
   FOOTER
================================================================ */
.zftr {
	background: var(--brand-dark);
	padding: 40px 0 20px;
	color: rgba(255,255,255,0.75);
}
.zftr-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 32px;
}
.zftr-brand img { height: 42px; width: auto; margin-bottom: 12px; }
.zftr-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.zftr-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 12px; }
.zftr-col ul { list-style: none; padding: 0; margin: 0; }
.zftr-col ul li { margin-bottom: 6px; }
.zftr-col ul a { text-decoration: none; color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.zftr-col ul a:hover { color: var(--cta); }
.zftr-copy {
	max-width: 1200px;
	margin: 28px auto 0;
	padding: 16px 24px 0;
	border-top: 1px solid rgba(255,255,255,0.12);
	font-size: 0.82rem;
	color: rgba(255,255,255,0.45);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}

/* ================================================================
   MAILLAGE / GEO BLOCK
================================================================ */
.geovl-maillage-block { padding: 48px 0; background: var(--soft); }
.geovl-maillage-block .wrap9 { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 900px) {
	.zhero-inner {
		grid-template-columns: 1fr;
		padding: 48px 24px 0;
	}
	.zftr-inner { grid-template-columns: 1fr 1fr; }
	.zphotos {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}
	.zphotos img:first-child { grid-row: auto; height: 220px; }
}
@media (max-width: 620px) {
	h1 { font-size: 1.9rem; }
	h2 { font-size: 1.45rem; }
	.zhero-stat strong { font-size: 1.5rem; }
	.zftr-inner { grid-template-columns: 1fr; }
	.zfrow2 { grid-template-columns: 1fr; }
	.zphotos { grid-template-columns: 1fr; }
	.zhero-stats-inner { flex-wrap: wrap; justify-content: center; }
	.zhero-stat { padding: 16px; }
}

/* ===== LH contrast patch 2026-05-23 ===== */
.zftr-copy span { color: #8ea0ae; }
.zftr-col p.zftr-fhd{color:#fff;font-size:.95rem;margin-bottom:12px;font-weight:700}
