.badge {
	display: inline-block;
	background: #e6f4ea;
	color: #1e7f3f;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 14px;
	margin: 10px;
}

.breadcrumb {
	margin: 16px auto 8px;
	max-width: 1100px;
	padding: 0 16px;
	font-size: 14px;
	color: #667085;
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.last-update {
	font-size: 13px;
	color: #667085;
	margin: 4px auto 12px;
	max-width: 1100px;
	padding: 0 16px;
    text-align: right;
}

.breadcrumb li {
	display: flex;
	align-items: center;
}

.breadcrumb li+li::before {
	content: ">";
	margin-right: 8px;
	color: #98a2b3;
}

.breadcrumb a {
	color: #667085;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
	color: #101828;
	font-weight: 600;
}

ul {
	padding-left: 20px;
}

.box {
	background: #fff;
	border: 1px solid #e6ebf1;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.pros-cons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.pros-cons div {
	flex: 1;
	background: white;
	padding: 16px;
	border-radius: 4px;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto;
	background: #f7f9fc;
	color: #222;
}

.container {
	max-width: 1100px;
	margin: auto;
}

/* HEADER */
header {
	background: white;
	border-bottom: 1px solid #eee;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 20px;
}

.logo {
	font-weight: 700;
	color: #0b4f6c;
}

nav a {
	margin-left: 20px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
}

.profile-toggle {
	display: block;
	width: 100%;
	text-align: left;
	background: #fff;
	border: 1px solid #dfe7ef;
	border-radius: 10px;
	padding: 18px 20px;
	font-size: 1.4rem;
	font-weight: 700;
	cursor: pointer;
	color: #0b4f6c;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.profile-toggle:hover {
	background: #f8fbfd;
}

.profile-toggle[aria-expanded="true"] {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.profile-panel {
	border: 1px solid #dfe7ef;
	border-top: none;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	padding-top: 8px;
	background: #fff;
}

.profile-panel[hidden] {
	display: none !important;
}

/* HERO */
.hero {
	text-align: center;
	padding: 70px 20px;
	background: linear-gradient(135deg, #0b4f6c, #1a759f);
	color: white;
}

.hero h1 {
	font-size: 36px;
	margin-bottom: 20px;
}

.hero p {
	font-size: 18px;
	max-width: 700px;
	margin: auto;
	opacity: 0.95;
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 20px;
}

.feature {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature h3 {
	margin-top: 0;
}

/* SECTION */
section {
	padding-bottom: 30px !important;
	padding: 0 10px;
}

h2 {
	text-align: center;
}

.usage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
}

/* SELECT */
.compare {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.form-group {
	max-width: 300px;
}

/* conteneur */
.select-wrapper {
	position: relative;
	width: 100%;
	margin: 16px 0;
}

/* select */
.select-wrapper select {
	width: 100%;
	padding: 12px 40px 12px 14px;
	font-size: 16px;
	border-radius: 8px;
	border: 1px solid #ccc;
	background: white;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
}

/* flèche personnalisée */
.select-wrapper::after {
	content: "▼";
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 12px;
	color: #555;
}

/* focus */
.select-wrapper select:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}

/* CARDS */
.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 25px;
}

.card {
	background: white;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
	transition: 0.2s;
}

.card:hover {
	transform: translateY(-4px);
}

.card h3 {
	margin-top: 0;
	color: #0b4f6c;
}

.tag {
	display: inline-block;
	background: #eef3f7;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 12px;
	margin: 3px;
}

.price {
	font-weight: bold;
	margin-top: 10px;
}

.cta {
	display: inline-block;
	background: #0073e6;
	color: #fff;
	padding: 12px 15px;
	text-decoration: none;
	border-radius: 4px;
	margin: 16px 0;
}

.btn a {
	display: inline-block;
	background: #ffd166;
	color: #333;
	padding: 15px 30px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: bold;
}

.cta:hover {
	background: #005bb5;
}

.btn {
	display: inline-block;
	margin-top: 15px;
	background: #1a759f;
	color: white;
	padding: 10px 16px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
}

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 24px 0 30px;
}

.pricing-card {
	background: #fff;
	border: 1px solid #e6ebf1;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.pricing-card h3 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #0b4f6c;
	font-size: 20px;
}

.pricing-card .price {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 14px;
	color: #1a759f;
}

.pricing-card .pricing-label {
	font-weight: 700;
	margin-bottom: 8px;
}

/* INFO SECTION */
.info {
	max-width: 750px;
	margin: auto;
	line-height: 1.6;
	font-size: 16px;
}

/* FOOTER */
footer {
	background: #0b4f6c;
	color: white;
	text-align: center;
	padding: 30px;
	margin-top: 50px;
	font-size: 14px;
}

/* MOBILE */
@media ( max-width :700px) {
	.hero h1 {
		font-size: 26px;
	}
	nav {
		display: none;
	}
	.logo {
		display: none;
	}
	.pricing-cards {
		grid-template-columns: 1fr;
	}
	.btn {
		max-width: 110px;
	}
}

/* FAQ */
.faq {
	max-width: 1100px;
	margin: 0px auto;
	padding: 40px 20px;
}

.faq h2 {
	color: #0b4f6c;
	margin-bottom: 30px;
}

.faq-item {
	background: white;
	padding: 20px 25px;
	margin-bottom: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3, .faq-item h4 {
	margin-top: 0;
	color: #1a759f;
	font-size: 18px;
}

.faq-item p {
	margin-bottom: 0;
	line-height: 1.6;
}

/* Images */
.hero-visual {
	max-width: 1100px;
	margin: 30px auto 10px;
	padding: 0 20px;
}

.hero-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}