:root {
	--brand:      #2c3e52;
	--brand-dark: #1a2738;
	--brand-mid:  #3d546e;
	--brand-soft: #eaecf0;
	--cta:        #c0512b;
	--cta-dark:   #a03e1e;
	--cta-text:   #ffffff;
	--ink:        #1e1e20;
	--muted:      #596172;
	--line:       #d6d9df;
	--soft:       #f6f7f9;
	--radius-sm:  6px;
	--radius-md:  14px;
	--radius-lg:  22px;
	--font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
}

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

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

img, svg, video { max-width: 100%; height: auto; }
img { display: block; }
a { color: var(--brand); }
a:hover { color: var(--brand-mid); }
strong { font-weight: 700; }

h1, h2, h3, h4 {
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 14px;
	color: var(--brand);
}
h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; }
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; }

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

.btn {
	display: inline-block;
	font-family: var(--font);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	border: 0;
	border-radius: var(--radius-sm);
	padding: 14px 28px;
	cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-cta  { background: var(--cta);  color: var(--cta-text); }
.btn-cta:hover  { background: var(--cta-dark); color: var(--cta-text); }
.btn-full { display: block; width: 100%; text-align: center; }

/* =================== HEADER =================== */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--brand-dark);
	border-bottom: 3px solid var(--cta);
}
.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.site-logo { display: inline-flex; flex-shrink: 0; }
.site-logo img { width: 260px; height: auto; }

.nav-toggle-wrap { position: relative; }
.nav-check { display: none; }
.nav-burger {
	display: none;
	cursor: pointer;
	background: transparent;
	border: 0;
	padding: 6px;
}
.nav-burger span {
	display: block; width: 26px; height: 3px;
	background: #fff; border-radius: 2px;
}
.nav-burger span + span { margin-top: 5px; }

.site-nav .nav-list {
	list-style: none; margin: 0; padding: 0;
	display: flex; align-items: center; gap: 24px;
}
.site-nav .nav-list li { margin: 0; }
.site-nav a {
	text-decoration: none;
	color: rgba(255,255,255,0.88);
	font-size: 0.96rem;
	font-weight: 400;
	padding: 6px 0;
}
.site-nav a:hover { color: #fff; }
.site-nav .nav-cta a {
	background: var(--cta);
	color: #fff;
	padding: 11px 22px;
	border-radius: var(--radius-sm);
	font-weight: 700;
}
.site-nav .nav-cta a:hover { background: var(--cta-dark); color: #fff; }

/* =================== HERO =================== */
.hero {
	position: relative;
	background-color: var(--brand-dark);
	background-image: url("img/hero.jpg");
	background-size: cover;
	background-position: center top;
	min-height: 580px;
}
.hero::before {
	content: "";
	position: absolute; inset: 0;
	background: rgba(15,22,36,0.82);
}
.hero-inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 70px 28px 80px;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: start;
}
.hero-copy { color: #f0f4ff; padding-top: 12px; }
.hero-copy h1 {
	color: #fff;
	font-size: 2.8rem;
	margin-bottom: 18px;
	letter-spacing: -0.025em;
}
.hero-copy .hero-tagline {
	font-size: 1.1rem;
	color: #bfcfe6;
	margin-bottom: 28px;
	line-height: 1.7;
}
.hero-atouts { list-style: none; margin: 0; padding: 0; }
.hero-atouts li {
	display: flex; align-items: flex-start;
	gap: 12px; margin-bottom: 13px;
	color: #fff; font-size: 1rem;
}
.hero-atouts svg { color: var(--cta); flex-shrink: 0; margin-top: 3px; }

.hero-form-wrap { order: 2; }
.form-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 30px 28px 26px;
	box-shadow: 0 24px 64px rgba(0,0,0,0.34);
}
.form-card-title {
	font-size: 1.3rem;
	margin-bottom: 4px;
	color: var(--brand);
}
.form-card-intro {
	font-size: 0.93rem;
	color: var(--muted);
	margin-bottom: 18px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.form-field { margin-bottom: 14px; }
.form-field label {
	display: block;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--brand);
	margin-bottom: 5px;
}
.form-field input {
	width: 100%;
	font-family: var(--font);
	font-size: 0.97rem;
	font-weight: 400;
	color: var(--ink);
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 11px 14px;
	outline: none;
}
.form-field input:focus { border-color: var(--cta); }
.form-hp {
	position: absolute; left: -9999px; top: 0;
	opacity: 0; pointer-events: none; tab-size: 0;
}
.form-legal {
	font-size: 0.82rem;
	color: var(--muted);
	margin-top: 10px;
	text-align: center;
}
.form-msg { border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.93rem; margin-bottom: 14px; }
.form-msg-ok { background: #edfbef; color: #1a5e2a; border: 1px solid #b2e8b9; }
.form-msg-err { background: #fdf2f2; color: #8b1a1a; border: 1px solid #f5b8b8; }

/* =================== CONTENT =================== */
.content-zone {
	max-width: 1200px;
	margin: 0 auto;
}

.section { padding: 72px 28px; }
.section-alt { background: var(--soft); }
.section-dark {
	background: var(--brand-dark);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: #fff; }
.section-dark p,
.section-dark li,
.section-dark dt,
.section-dark dd { color: #c8d4e8; }

.content-wrap { max-width: 1200px; margin: 0 auto; }

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.split-media img {
	border-radius: var(--radius-md);
	box-shadow: 0 12px 36px rgba(0,0,0,0.14);
	width: 100%;
}
.split-text h2 { margin-bottom: 18px; }
.split-text p { color: var(--muted); }

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.card {
	background: #fff;
	border-radius: var(--radius-md);
	padding: 28px 24px;
	border: 1px solid var(--line);
	box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.card-icon {
	width: 52px; height: 52px;
	background: var(--brand-soft);
	border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 16px;
}
.card-icon svg { color: var(--brand); }
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p  { font-size: 0.95rem; color: var(--muted); margin: 0; }

.check-list { list-style: none; padding: 0; margin: 0 0 20px; }
.check-list li {
	display: flex; align-items: flex-start;
	gap: 10px; margin-bottom: 11px; color: var(--ink);
}
.check-list svg { color: var(--brand); flex-shrink: 0; margin-top: 3px; }

.steps {
	counter-reset: step;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.step { position: relative; text-align: center; padding-top: 12px; }
.step-num {
	width: 52px; height: 52px;
	background: var(--cta);
	color: #fff;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p  { font-size: 0.93rem; color: var(--muted); }

.price-section { }
.price-table-wrap {
	overflow-x: auto;
	border-radius: var(--radius-sm);
}
.price-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	min-width: 480px;
}
.price-table caption {
	caption-side: bottom;
	font-size: 0.85rem;
	color: var(--muted);
	padding-top: 10px;
	text-align: left;
}
.price-table th,
.price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--brand); color: #fff; font-size: 0.93rem; }
.price-table tbody th { font-weight: 700; color: var(--ink); }
.price-table tbody tr:nth-child(even) { background: #f9fafb; }
.price-table .price-cell { font-weight: 700; color: var(--brand); white-space: nowrap; }

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 52px;
}
.faq-item {
	border-bottom: 1px solid var(--line);
	padding: 22px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 7px; }
.faq-item p  { color: var(--muted); font-size: 0.95rem; margin: 0; }

.cta-band {
	background: var(--brand-dark);
	border-radius: var(--radius-lg);
	padding: 52px 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.cta-band-text h2 { color: #fff; margin-bottom: 10px; }
.cta-band-text p  { color: #bfcfe6; margin: 0; font-size: 1.05rem; }

.media-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.media-grid img {
	border-radius: var(--radius-md);
	width: 100%;
	height: 220px;
	object-fit: cover;
}

/* =================== FOOTER =================== */
.site-footer { background: var(--brand-dark); padding: 60px 28px 0; }
.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 52px;
}
.footer-brand img { width: 220px; height: auto; margin-bottom: 16px; }
.footer-brand p { color: #9badc5; font-size: 0.93rem; line-height: 1.6; }
.footer-col .footer-heading {
	font-size: 0.82rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 8px; color: #9badc5; font-size: 0.93rem; }
.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.footer-bottom span { font-size: 0.82rem; color: #6b7f99; }

/* =================== GEO MAILLAGE =================== */
.geobe-maillage-block,
[class*="geobe"],
[class*="maillage"] {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 28px;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 980px) {
	.hero-inner { grid-template-columns: 1fr; gap: 36px; }
	.hero-form-wrap { order: -1; }
	.split { grid-template-columns: 1fr; gap: 28px; }
	.split-media { order: -1; }
	.card-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
	.steps { grid-template-columns: 1fr 1fr; }
	.footer-inner { grid-template-columns: 1fr 1fr; }
	.media-grid { grid-template-columns: 1fr 1fr; }
	.cta-band { padding: 36px 32px; }
}

@media (max-width: 900px) {
	.nav-burger { display: block; }
	.site-nav {
		display: none;
		position: absolute; left: 0; right: 0; top: 100%;
		background: var(--brand-dark);
		border-bottom: 2px solid var(--cta);
		z-index: 90;
	}
	.nav-check:checked ~ .site-nav { display: block; }
	.site-nav .nav-list {
		flex-direction: column; align-items: stretch;
		gap: 0; padding: 8px 24px 18px;
	}
	.site-nav .nav-list li { border-bottom: 1px solid rgba(255,255,255,0.1); }
	.site-nav .nav-list li:last-child { border-bottom: 0; }
	.site-nav a { display: block; padding: 14px 0; }
	.site-nav .nav-cta a { text-align: center; margin: 12px 0; padding: 12px 20px; }
	.nav-check:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
	.nav-check:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
	.nav-check:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 680px) {
	body { font-size: 16px; }
	h1 { font-size: 1.9rem; }
	.hero-copy h1 { font-size: 2.1rem; }
	h2 { font-size: 1.55rem; }
	.hero-inner { padding: 48px 20px 52px; }
	.header-inner { padding: 12px 20px; }
	.form-row { grid-template-columns: 1fr; gap: 0; }
	.form-card { padding: 24px 18px; }
	.site-logo img { width: 200px; }
	.card-grid { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr 1fr; }
	.faq-grid { grid-template-columns: 1fr; }
	.footer-inner { grid-template-columns: 1fr; }
	.media-grid { grid-template-columns: 1fr; }
	.cta-band { padding: 28px 22px; flex-direction: column; align-items: flex-start; }
	.section { padding: 52px 20px; }
}
