:root {
	--accent: #084c6f;
	--dark: #011e3a;
	--muted: #6b6b6b;
	--bg: #f8faf9;
	--white: #fff;
}
* {
	box-sizing: border-box;
}
body {
	font-family: 'Inter', sans-serif;
	margin: 0;
	background: var(--bg);
	color: var(--dark);
}
header {
	background: var(--white);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
	position: sticky;
	top: 0;
	z-index: 30;
}
.skip-link {
	position: absolute;
	left: -9999px;
	background: #000;
	color: #fff;
	padding: 8px 12px;
	border-radius: 8px;
}
.skip-link:focus {
	left: 12px;
	top: 12px;
	z-index: 1000;
}
.nav {
	max-width: 1200px;
	margin: auto;
	padding: 14px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.main-nav {
	display: flex;
	align-items: center;
	gap: 10px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}
.logo-img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}
.logo {
	font-weight: 800;
	font-size: 20px;
	color: var(--accent);
}
.cta {
	background: var(--accent);
	color: #fff;
	padding: 10px 16px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s;
}
.cta:hover {
	opacity: 0.85;
}
.cta:focus-visible,
.carousel-btn:focus-visible,
a:focus-visible,
select:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 2px;
}
.card .cta {
	display: inline-block;
	margin-top: 8px;
}
main {
	max-width: 1200px;
	margin: auto;
	padding: 40px 24px;
}
h1,
h2,
h3 {
	margin-top: 0;
}
section {
	margin-bottom: 60px;
}
.hero {
	text-align: center;
	padding: 60px 0;
}
.hero h1 {
	font-size: 32px;
	margin-bottom: 12px;
}
.hero p {
	color: var(--muted);
	max-width: 700px;
	margin: auto;
	font-size: 18px;
}
.carousel {
	position: relative;
	max-width: 100%;
	margin: 24px auto 0;
	overflow: hidden;
	border-radius: 14px;
}
.carousel-track {
	display: flex;
	transition: transform 0.5s ease;
}
.carousel-slide {
	min-width: 100%;
	position: relative;
	height: 340px;
}
.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.carousel-caption {
	position: absolute;
	left: 12px;
	bottom: 12px;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	padding: 6px 10px;
	border-radius: 8px;
	font-weight: 700;
}
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.85);
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 18px;
	cursor: pointer;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.carousel-btn.prev {
	left: 10px;
}
.carousel-btn.next {
	right: 10px;
}
.carousel-btn.pause {
	right: 56px;
}
.carousel-dots {
	display: flex;
	gap: 6px;
	justify-content: center;
	margin-top: 10px;
}
.carousel-dots button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 0;
	background: #cfd8dc;
	cursor: pointer;
}
.carousel-dots button[aria-current='true'] {
	background: var(--accent);
}
.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
	margin-top: 40px;
}
.card {
	background: var(--white);
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s;
}
.card:hover {
	transform: translateY(-4px);
}
.card.clickable {
	cursor: pointer;
	position: relative;
}
.card.clickable::after {
	content: '→';
	position: absolute;
	top: 28px;
	right: 28px;
	font-size: 20px;
	color: var(--accent);
	opacity: 0;
	transition: opacity 0.3s;
}
.card.clickable:hover::after {
	opacity: 1;
}

/* Make the entire section show a pointer when it contains a clickable card */
section:has(.card.clickable) {
	cursor: pointer;
}

/* Styles pour les pages détaillées */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 24px;
}

.service-item {
	background: var(--white);
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	border-left: 4px solid var(--accent);
}

.service-item h3 {
	color: var(--accent);
	margin-bottom: 12px;
	font-size: 1.2em;
}

.service-item ul {
	margin-top: 12px;
	padding-left: 20px;
}

.service-item li {
	margin-bottom: 6px;
	color: var(--muted);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 24px;
}

.benefit-item {
	text-align: center;
	padding: 20px;
}

.benefit-item h3 {
	color: var(--accent);
	margin-bottom: 12px;
}

.zones-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-top: 20px;
}

.zone-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px;
	background: var(--bg);
	border-radius: 8px;
}

.zone-item strong {
	color: var(--accent);
}

.zone-item span {
	color: var(--muted);
	font-size: 0.9em;
}

.pricing-info {
	margin-top: 20px;
}

.pricing-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 16px;
	margin-top: 16px;
}

.pricing-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	background: var(--bg);
	border-radius: 8px;
}

.pricing-item strong {
	color: var(--accent);
}

.pricing-note {
	margin-top: 16px;
	font-style: italic;
	color: var(--muted);
	font-size: 0.9em;
}

.contact-info {
	margin-top: 20px;
}

.contact-info p {
	margin-bottom: 12px;
}

.contact-info strong {
	color: var(--accent);
}
.card h2 {
	color: var(--accent);
	margin-bottom: 8px;
}
.card p {
	color: var(--muted);
	line-height: 1.6;
}
.list {
	margin-top: 12px;
	padding-left: 18px;
	color: var(--muted);
}
.list li {
	margin-bottom: 6px;
}
.contact {
	text-align: center;
	background: var(--white);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
form {
	max-width: 600px;
	margin: 20px auto;
	text-align: left;
}
label {
	display: block;
	margin-top: 12px;
	font-weight: 600;
	font-size: 14px;
}
input,
textarea,
select {
	width: 100%;
	padding: 10px;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	font-size: 15px;
}
button {
	margin-top: 16px;
	background: var(--accent);
	color: #fff;
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 700;
	cursor: pointer;
}
footer {
	text-align: center;
	padding: 40px 0;
	color: var(--muted);
}
@media (max-width: 980px) {
	/* Responsive overrides if needed */
}
@media (max-width: 520px) {
	/* Mobile tweaks if needed */
}
