/* ============================================================
   Maîtrise Digitale — Landing Page V2
   ============================================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--navy:       #0D1B2A;
	--navy-2:     #132236;
	--navy-dark:  #080F18;
	--gold:       #F5A623;
	--gold-dark:  #D4891A;
	--white:      #FFFFFF;
	--grey-light: #F4F1EC;
	--grey-text:  #8A9BB0;
	--success:    #2ECC71;
	--error:      #E74C3C;

	--font: 'Inter', system-ui, sans-serif;
	--container: 1200px;
	--radius: 12px;
	--transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

html, body {
	overflow-x: hidden;
	max-width: 100%;
}
body {
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--navy);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea { font-family: var(--font); }

/* ── CONTAINER ── */
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 40px;
}

/* ── TYPOGRAPHY HELPERS ── */
.section-subtitle {
	font-size: 18px;
	color: var(--grey-text);
	margin-top: 12px;
}
.micro-text { font-size: 13px; color: var(--grey-text); }
.label-gold {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 8px;
}
.gold { color: var(--gold); }
.gold-underline {
	text-decoration: underline;
	text-decoration-color: var(--gold);
	text-decoration-thickness: 3px;
	text-underline-offset: 6px;
}

/* ── HERO STAT CARDS ── */
.hero-stats {
	display: flex;
	gap: 12px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}
.hero-stat-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(245,166,35,0.25);
	border-radius: 10px;
	padding: 14px 18px;
	flex: 1;
	min-width: 200px;
	transition: border-color var(--transition), background var(--transition);
}
.hero-stat-card:hover { border-color: rgba(245,166,35,0.6); background: rgba(255,255,255,0.1); }
.hsc-icon { font-size: 26px; flex-shrink: 0; }
.hsc-body { display: flex; flex-direction: column; gap: 2px; }
.hsc-body strong { font-size: 15px; color: var(--white); font-weight: 700; }
.hsc-body span { font-size: 12px; color: var(--grey-text); }

/* ── TICKER ── */
.ticker-wrap {
	margin-top: 32px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 10px;
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ticker-track {
	display: flex;
	gap: 10px;
	width: max-content;
	will-change: transform;
}
.ticker-left  { animation: ticker-scroll-left  28s linear infinite; }
.ticker-right { animation: ticker-scroll-right 32s linear infinite; }
@keyframes ticker-scroll-left {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@keyframes ticker-scroll-right {
	from { transform: translateX(-50%); }
	to   { transform: translateX(0); }
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

/* ── BUTTONS ── */
.btn-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--gold);
	color: var(--navy);
	font-weight: 700;
	font-size: 16px;
	padding: 14px 28px;
	border-radius: 8px;
	transition: background var(--transition), transform var(--transition);
	border: 2px solid transparent;
}
.btn-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-cta-large {
	font-size: 18px;
	padding: 18px 36px;
	height: 56px;
}

.btn-cta-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: var(--gold);
	font-weight: 700;
	font-size: 16px;
	padding: 14px 28px;
	border-radius: 8px;
	border: 2px solid var(--gold);
	transition: background var(--transition), color var(--transition);
}
.btn-cta-secondary:hover { background: var(--gold); color: var(--navy); }

.btn-cta-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: var(--grey-text);
	font-weight: 600;
	font-size: 15px;
	padding: 12px 24px;
	border-radius: 8px;
	border: 2px solid var(--grey-text);
	transition: border-color var(--transition), color var(--transition);
}
.btn-cta-outline:hover { border-color: var(--white); color: var(--white); }

.btn-full { width: 100%; }
.btn-nl { white-space: nowrap; }


/* ══════════════════════════════════════════════
   BLOC 0 — NAVBAR
══════════════════════════════════════════════ */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: 70px;
	background: rgba(13, 27, 42, 0.75);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: background var(--transition), box-shadow var(--transition);
}
.navbar.navbar-scrolled {
	background: var(--navy);
	box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.navbar-container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 40px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.navbar-logo {
	font-size: 20px;
	font-weight: 800;
	color: var(--white);
	letter-spacing: -0.5px;
}
.logo-bracket { color: var(--gold); }
.logo-accent { color: var(--gold); }
.btn-cta-navbar {
	font-size: 14px;
	padding: 10px 20px;
}


/* ══════════════════════════════════════════════
   BLOC 1 — HERO
══════════════════════════════════════════════ */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
	background: var(--navy);
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(13, 27, 42, 0.72);
}
.hero-content {
	position: relative;
	z-index: 1;
	max-width: 780px;
	width: 100%;
	box-sizing: border-box;
}

.hero-badge {
	display: inline-block;
	background: rgba(245, 166, 35, 0.12);
	border: 1px solid var(--gold);
	color: var(--gold);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 20px;
	border-radius: 50px;
	margin-bottom: 28px;
}

.hero-h1 {
	font-size: 52px;
	color: var(--white);
	margin-bottom: 24px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	-webkit-hyphens: auto;
}

.hero-subtitle {
	font-size: 20px;
	color: var(--grey-light);
	font-weight: 400;
	margin-bottom: 28px;
	opacity: 0.9;
}

.hero-bullets {
	margin-bottom: 36px;
}
.hero-bullets li {
	font-size: 17px;
	color: var(--grey-light);
	padding: 6px 0;
}

.micro-text {
	margin-top: 12px;
	color: var(--grey-text);
	font-size: 13px;
}

.disclaimer-box {
	margin-top: 24px;
	background: rgba(19, 34, 54, 0.8);
	border-left: 3px solid var(--gold);
	padding: 14px 18px;
	border-radius: 6px;
	font-size: 14px;
	color: var(--grey-light);
}
.disclaimer-box strong { color: var(--gold); }

.metiers-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 32px;
}
.tag {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.18);
	color: var(--white);
	font-size: 13px;
	padding: 6px 16px;
	border-radius: 50px;
}


/* ══════════════════════════════════════════════
   BLOC 2 — DOULEURS
══════════════════════════════════════════════ */
.douleurs {
	padding: 100px 0;
	background: var(--grey-light);
}
.douleurs h2 {
	font-size: 40px;
	color: var(--navy);
	text-align: center;
}
.douleurs .section-subtitle { text-align: center; margin-bottom: 48px; }

/* ── COMPARISON CARDS (premium) ── */
.comparison-cards {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.comp-col { padding: 0; }
.comp-col-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px 28px;
	font-size: 16px;
	font-weight: 800;
}
.comp-emoji { font-size: 22px; }
.comp-pain .comp-col-header { background: #fff3f3; color: #c0392b; border-bottom: 2px solid #ffd5d5; }
.comp-gain .comp-col-header { background: var(--navy); color: var(--gold); border-bottom: 2px solid rgba(245,166,35,0.3); }
.comp-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 28px;
	font-size: 15px;
	border-bottom: 1px solid rgba(0,0,0,0.06);
	transition: background var(--transition);
}
.comp-item:last-child { border-bottom: none; }
.comp-pain .comp-item { background: var(--white); color: #555; }
.comp-pain .comp-item:hover { background: #fff8f8; }
.comp-gain .comp-item { background: var(--navy-2); color: var(--grey-light); }
.comp-gain .comp-item:hover { background: rgba(19,34,54,0.85); }
.ci-dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: #e74c3c; flex-shrink: 0;
}
.ci-check {
	width: 20px; height: 20px; border-radius: 50%;
	background: var(--success); color: #fff;
	font-size: 11px; font-weight: 800;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.comp-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
	background: linear-gradient(to bottom, #fff3f3 50%, var(--navy-2) 50%);
}
.comp-arrow-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.comp-arrow-line {
	width: 2px; height: 60px;
	background: linear-gradient(to bottom, #e74c3c, var(--gold));
	position: relative;
}
.comp-arrow-line::after {
	content: '▼';
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--gold);
	font-size: 12px;
}
.comp-arrow-label {
	font-size: 11px;
	font-weight: 800;
	color: var(--gold);
	letter-spacing: 1px;
	margin-top: 20px;
	background: var(--navy);
	padding: 4px 10px;
	border-radius: 50px;
	white-space: nowrap;
}

.comparison-grid {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.comparison-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.comparison-header .col-neg {
	background: var(--white);
	color: var(--navy);
	font-weight: 700;
	font-size: 15px;
	padding: 16px 24px;
	border-bottom: 2px solid #e0dbd4;
}
.comparison-header .col-pos {
	background: var(--navy);
	color: var(--gold);
	font-weight: 700;
	font-size: 15px;
	padding: 16px 24px;
	border-bottom: 2px solid var(--navy-2);
}
.comparison-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.comparison-row:last-child .col-neg,
.comparison-row:last-child .col-pos { border-bottom: none; }
.col-neg {
	background: var(--white);
	color: var(--navy);
	padding: 18px 24px;
	font-size: 15px;
	border-bottom: 1px solid #e8e3db;
}
.col-pos {
	background: var(--navy);
	color: var(--white);
	padding: 18px 24px;
	font-size: 15px;
	border-bottom: 1px solid var(--navy-2);
}

.inaction-box {
	margin-top: 48px;
	background: var(--navy);
	color: var(--white);
	text-align: center;
	padding: 48px 40px;
	border-radius: var(--radius);
}
.inaction-box p {
	font-size: 18px;
	margin-bottom: 24px;
	line-height: 1.7;
}
.inaction-box strong { color: var(--gold); }


/* ══════════════════════════════════════════════
   BLOC 3 — MÉTHODE CAP
══════════════════════════════════════════════ */
.methode {
	padding: 100px 0;
	background: var(--navy);
}
.section-header { text-align: center; margin-bottom: 64px; }
.methode h2 {
	font-size: 40px;
	color: var(--white);
	margin-bottom: 4px;
}
.h2-gold { color: var(--gold); margin-bottom: 16px; }
.methode .section-subtitle { text-align: center; }

.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.step-card {
	background: var(--navy-2);
	border-radius: var(--radius);
	padding: 32px 24px;
	border: 1px solid rgba(245, 166, 35, 0.15);
	transition: border-color var(--transition), transform var(--transition);
}
.step-card:hover {
	border-color: rgba(245, 166, 35, 0.5);
	transform: translateY(-4px);
}
.step-number {
	font-size: 64px;
	font-weight: 800;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 16px;
	opacity: 0.9;
}
.step-card h3 {
	font-size: 18px;
	color: var(--white);
	margin-bottom: 12px;
	font-weight: 700;
	letter-spacing: 1px;
}
.step-card p {
	font-size: 14px;
	color: var(--grey-text);
	line-height: 1.7;
}


/* ══════════════════════════════════════════════
   BLOC 4 — TABLEAU COMPARATIF
══════════════════════════════════════════════ */
.comparatif {
	padding: 100px 0;
	background: var(--grey-light);
}
.comparatif h2 { font-size: 40px; color: var(--navy); text-align: center; }
.comparatif .section-subtitle { text-align: center; margin-bottom: 48px; }

.table-wrapper {
	overflow-x: auto;
	border-radius: var(--radius);
	box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.compare-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
	min-width: 600px;
}
.compare-table th, .compare-table td {
	padding: 16px 20px;
	text-align: center;
	border-bottom: 1px solid #eee;
	font-size: 15px;
}
.compare-table th {
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.th-criteria {
	text-align: left;
	background: #f0ece6;
	color: var(--navy);
}
.th-md {
	background: var(--navy);
	color: var(--white);
}
.compare-table thead tr th:not(.th-md):not(.th-criteria) {
	background: #e8e3db;
	color: var(--grey-text);
}
.compare-table td:first-child {
	text-align: left;
	font-weight: 500;
	color: var(--navy);
}
.td-md { background: rgba(13, 27, 42, 0.04); font-weight: 700; }
.td-check { color: var(--success); font-size: 20px; }
.td-cross { color: var(--error); font-size: 20px; }
.td-partial { color: #f39c12; font-size: 20px; }
.compare-note {
	margin-top: 16px;
	font-size: 12px;
	color: var(--grey-text);
	text-align: center;
	font-style: italic;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: rgba(13, 27, 42, 0.02); }
.compare-table tbody tr:hover .td-md { background: rgba(13,27,42,0.08); }

/* Highlight colonne MD */
.th-md { position: relative; }
.th-md::after {
	content: '⭐ Recommandé';
	position: absolute;
	top: -28px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gold);
	color: var(--navy);
	font-size: 11px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 50px 50px 0 0;
	white-space: nowrap;
}
.table-wrapper { padding-top: 32px; }


/* ══════════════════════════════════════════════
   BLOC 5 — PREUVES
══════════════════════════════════════════════ */
.preuves {
	padding: 100px 0;
	background: var(--navy);
}
.preuves h2 {
	font-size: 40px;
	color: var(--white);
	text-align: center;
	margin-bottom: 48px;
}

.preuves-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}
.preuve-card {
	background: rgba(19, 34, 54, 0.6);
	border: 1px solid rgba(245, 166, 35, 0.3);
	border-radius: var(--radius);
	padding: 36px 28px;
	text-align: center;
	transition: border-color var(--transition), transform var(--transition);
}
.preuve-card:hover {
	border-color: var(--gold);
	transform: translateY(-4px);
}
.preuve-icon { font-size: 48px; margin-bottom: 20px; }
.preuve-card h3 { font-size: 20px; color: var(--white); margin-bottom: 12px; }
.preuve-card p { font-size: 15px; color: var(--grey-text); line-height: 1.7; }

.testimonial-placeholder {
	border: 2px dashed rgba(245, 166, 35, 0.3);
	border-radius: var(--radius);
	padding: 36px 40px;
	text-align: center;
}
.coming-label {
	display: inline-block;
	background: rgba(245, 166, 35, 0.1);
	color: var(--gold);
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 50px;
	margin-bottom: 16px;
}
.testimonial-placeholder blockquote {
	font-size: 18px;
	font-style: italic;
	color: var(--grey-text);
	margin-bottom: 12px;
	line-height: 1.7;
}
.testimonial-source {
	font-size: 14px;
	color: var(--grey-text);
}


/* ══════════════════════════════════════════════
   BLOC 5.5 — COMMENT CA MARCHE
══════════════════════════════════════════════ */
.how-it-works {
	padding: 100px 0;
	background: var(--grey-light);
}
.how-it-works .label-gold,
.how-it-works h2 { text-align: center; color: var(--navy); }
.how-it-works h2 { font-size: 40px; margin: 8px 0 12px; }
.how-it-works .section-subtitle { text-align: center; margin-bottom: 64px; }

.hiw-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	align-items: start;
}
.hiw-step { display: flex; flex-direction: column; gap: 20px; }
.hiw-featured .hiw-mockup .mockup-win { box-shadow: 0 12px 48px rgba(13,27,42,0.18); border-color: rgba(245,166,35,0.4); }

.hiw-num {
	font-size: 13px;
	font-weight: 800;
	color: var(--grey-text);
	letter-spacing: 2px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.hiw-num::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(13,27,42,0.1);
}
.hiw-num.gold { color: var(--gold); }

.hiw-step h3 { font-size: 20px; color: var(--navy); font-weight: 700; margin: 0; }
.hiw-step p { font-size: 14px; color: var(--grey-text); line-height: 1.7; margin: 0; }

/* ── Mockup window ── */
.mockup-win {
	background: var(--white);
	border-radius: 12px;
	border: 1px solid rgba(13,27,42,0.12);
	overflow: hidden;
	box-shadow: 0 6px 28px rgba(13,27,42,0.1);
}
.mockup-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	background: #f0ece6;
	border-bottom: 1px solid rgba(13,27,42,0.08);
}
.mdot {
	width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.mdot.r { background: #ff5f57; }
.mdot.y { background: #ffbd2e; }
.mdot.g { background: #28c840; }
.mockup-bar-title {
	font-size: 11px; font-weight: 600; color: var(--grey-text);
	margin-left: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── Map mockup PREMIUM ── */
.mockup-map-body {
	position: relative;
	height: 280px;
	background: linear-gradient(135deg, #eff4f7 0%, #e3ecf2 100%);
	overflow: hidden;
}
.map-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(13,27,42,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(13,27,42,0.04) 1px, transparent 1px);
	background-size: 20px 20px;
}
.map-roads {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
}
.map-zone-circle {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 170px; height: 170px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, rgba(245,166,35,0.08) 60%, transparent 100%);
	border: 2px dashed rgba(245,166,35,0.55);
	animation: pulse-zone 3s ease-in-out infinite;
}
@keyframes pulse-zone {
	0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
	50%      { transform: translate(-50%, -50%) scale(1.05); opacity: 0.85; }
}
.map-pin {
	position: absolute;
	width: 26px; height: 26px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	box-shadow: 0 3px 8px rgba(13,27,42,0.25);
	z-index: 2;
}
.map-pin .pin-icon {
	transform: rotate(45deg);
	font-size: 11px;
}
.map-pin.p1 { top: 30%; left: 32%; background: var(--white); color: var(--navy); }
.map-pin.p2 { top: 42%; left: 64%; background: var(--white); color: var(--navy); }
.map-pin.p3 { top: 60%; left: 38%; background: var(--white); color: var(--navy); }
.map-pin.p4 { top: 55%; left: 70%; background: var(--white); color: var(--navy); }
.map-pin.pulse-pin {
	top: 45%; left: 47%;
	width: 32px; height: 32px;
	background: var(--gold);
	z-index: 3;
}
.map-pin.pulse-pin .pin-icon-md {
	transform: rotate(45deg);
	font-size: 14px;
}
.pin-pulse {
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	background: rgba(245,166,35,0.4);
	animation: pin-pulse 1.8s ease-out infinite;
	z-index: -1;
}
@keyframes pin-pulse {
	0%   { transform: scale(0.8); opacity: 0.8; }
	100% { transform: scale(2.2); opacity: 0; }
}

.map-stats {
	position: absolute;
	top: 10px; left: 10px; right: 10px;
	display: flex;
	gap: 6px;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(8px);
	border-radius: 8px;
	padding: 8px;
	box-shadow: 0 2px 8px rgba(13,27,42,0.08);
	border: 1px solid rgba(13,27,42,0.06);
}
.map-stat-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1px;
	padding: 2px;
}
.ms-num {
	font-size: 14px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1;
}
.ms-num.gold { color: var(--gold); }
.ms-lbl {
	font-size: 9px;
	color: var(--grey-text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.map-overlay-badge {
	position: absolute;
	bottom: 12px; left: 50%;
	transform: translateX(-50%);
	background: var(--navy);
	color: var(--gold);
	font-size: 11px; font-weight: 700;
	padding: 6px 14px;
	border-radius: 50px;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(13,27,42,0.3);
	border: 1px solid rgba(245,166,35,0.4);
}
.map-overlay-badge::before {
	content: '🔒 ';
}

/* ── Dashboard mockup ── */
.mockup-dash-body { padding: 14px; }
.dash-kpis {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 8px;
	margin-bottom: 12px;
}
.dash-kpi {
	background: var(--grey-light);
	border-radius: 8px;
	padding: 10px 8px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.dkv {
	font-size: 18px; font-weight: 800; color: var(--navy);
	line-height: 1;
}
.dkv.gold { color: var(--gold); }
.dkl { font-size: 10px; color: var(--grey-text); }

.lead-list { display: flex; flex-direction: column; gap: 6px; }
.lead-row {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 8px;
	background: var(--grey-light);
	transition: background var(--transition);
}
.lead-row:first-child { background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.3); }
.lead-av {
	width: 28px; height: 28px; border-radius: 50%;
	background: var(--navy); color: var(--white);
	font-size: 12px; font-weight: 700;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.lead-info { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.lead-name { font-size: 12px; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lead-loc { font-size: 10px; color: var(--grey-text); }
.lbadge {
	font-size: 10px; font-weight: 700;
	padding: 3px 8px; border-radius: 50px;
	white-space: nowrap; flex-shrink: 0;
}
.lbadge.new { background: var(--gold); color: var(--navy); }
.lbadge.contacted { background: #3498db; color: #fff; }
.lbadge.won { background: var(--success); color: #fff; }

/* ── Agenda mockup ── */
.mockup-agenda-body { padding: 10px 12px; }
.ag-row {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	border-bottom: 1px solid rgba(13,27,42,0.06);
}
.ag-row:last-of-type { border-bottom: none; }
.ag-day {
	font-size: 11px; font-weight: 700; color: var(--grey-text);
	width: 28px; flex-shrink: 0;
}
.ag-slot {
	font-size: 11px; font-weight: 500; color: var(--navy);
	background: rgba(46,204,113,0.1);
	border-left: 3px solid var(--success);
	padding: 4px 8px;
	border-radius: 0 4px 4px 0;
	flex: 1;
}
.ag-footer {
	margin-top: 8px;
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	color: var(--success);
	background: rgba(46,204,113,0.08);
	padding: 6px;
	border-radius: 6px;
}

/* ══════════════════════════════════════════════
   BLOC 6 — PRICING
══════════════════════════════════════════════ */
.pricing {
	padding: 100px 0;
	background: var(--grey-light);
}
.pricing h2 { font-size: 40px; color: var(--navy); text-align: center; }
.pricing .section-subtitle { text-align: center; margin-bottom: 56px; }

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: start;
}

.pricing-card {
	background: var(--white);
	border: 1px solid #ddd;
	border-radius: var(--radius);
	padding: 36px 28px;
	position: relative;
	transition: box-shadow var(--transition);
}
.pricing-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }

.pricing-featured {
	background: var(--navy);
	color: var(--white);
	border: 2px solid var(--gold);
	transform: scale(1.04);
	box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.pricing-featured:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3); }

.pricing-badge {
	position: absolute;
	top: -14px;
	right: 24px;
	background: var(--gold);
	color: var(--navy);
	font-size: 12px;
	font-weight: 800;
	padding: 6px 14px;
	border-radius: 50px;
	letter-spacing: 0.5px;
}

.pricing-label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--grey-text);
	margin-bottom: 8px;
}
.pricing-label.gold { color: var(--gold); }
.pricing-featured .pricing-label:not(.gold) { color: var(--grey-text); }

.pricing-promise {
	font-size: 16px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 4px;
}
.pricing-featured .pricing-promise { color: var(--white); }

.pricing-target {
	font-size: 13px;
	color: var(--grey-text);
	margin-bottom: 20px;
}

.pricing-price {
	font-size: 40px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 6px;
	line-height: 1;
}
.pricing-price.gold { color: var(--gold); }
.pricing-featured .pricing-price:not(.gold) { color: var(--white); }
.pricing-period { font-size: 18px; font-weight: 400; }

.pricing-setup {
	font-size: 13px;
	color: var(--grey-text);
	margin-bottom: 20px;
}

.pricing-features {
	margin-bottom: 24px;
}
.pricing-features li {
	font-size: 14px;
	color: var(--navy);
	padding: 6px 0;
	border-bottom: 1px solid #f0ece6;
}
.pricing-featured .pricing-features li { color: var(--grey-light); border-bottom-color: rgba(255,255,255,0.08); }
.pricing-features li:last-child { border-bottom: none; }

.pricing-note {
	font-size: 12px;
	color: var(--grey-text);
	margin-bottom: 20px;
	font-style: italic;
}

.pricing-avail {
	margin-top: 12px;
	font-size: 12px;
	color: var(--grey-text);
	text-align: center;
}
.pricing-featured .pricing-avail { color: var(--gold); }

.pricing-options-bar {
	margin-top: 48px;
	background: var(--navy);
	color: var(--grey-light);
	text-align: center;
	padding: 20px 32px;
	border-radius: var(--radius);
	font-size: 15px;
}
.pricing-options-bar strong { color: var(--gold); }


/* ══════════════════════════════════════════════
   BLOC 7 — FORMULAIRE
══════════════════════════════════════════════ */
.contact-section {
	padding: 100px 0;
	background: var(--navy);
}
.contact-section h2 {
	font-size: 40px;
	color: var(--white);
	text-align: center;
	margin-bottom: 48px;
}

.cta-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 64px;
}
.cta-point {
	text-align: center;
}
.cta-point-icon { font-size: 36px; margin-bottom: 12px; }
.cta-point p { font-size: 15px; color: var(--grey-light); line-height: 1.6; }

.form-wrapper {
	max-width: 640px;
	margin: 0 auto;
	background: var(--navy-2);
	border-radius: var(--radius);
	padding: 48px 48px;
	border: 1px solid rgba(245, 166, 35, 0.2);
}

/* Progress */
.progress-bar-wrap { margin-bottom: 36px; }
.progress-bar-bg {
	height: 4px;
	background: rgba(255,255,255,0.1);
	border-radius: 2px;
	overflow: hidden;
	margin-bottom: 8px;
}
.progress-bar-fill {
	height: 100%;
	background: var(--gold);
	border-radius: 2px;
	transition: width 0.35s ease;
}
.progress-label {
	font-size: 13px;
	color: var(--grey-text);
	text-align: right;
}

/* Form steps */
.form-step { display: none; }
.form-step-active { display: block; }

.form-step h3 {
	font-size: 22px;
	color: var(--white);
	margin-bottom: 24px;
}

/* Métier buttons */
.metier-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}
.metier-btn {
	background: transparent;
	border: 2px solid rgba(255,255,255,0.2);
	color: var(--white);
	font-size: 14px;
	font-weight: 500;
	padding: 10px 18px;
	border-radius: 8px;
	transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.metier-btn:hover {
	border-color: var(--gold);
	color: var(--gold);
}
.metier-btn.active {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy);
	font-weight: 700;
}

/* Form groups */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
	display: block;
	font-size: 14px;
	color: var(--grey-light);
	font-weight: 600;
	margin-bottom: 6px;
}
.optional { color: var(--grey-text); font-weight: 400; font-size: 12px; }
.form-group input {
	width: 100%;
	padding: 12px 16px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 8px;
	color: var(--white);
	font-size: 15px;
	transition: border-color var(--transition);
}
.form-group input::placeholder { color: var(--grey-text); }
.form-group input:focus {
	outline: none;
	border-color: var(--gold);
	background: rgba(255,255,255,0.07);
}
.form-group input.input-error { border-color: var(--error); }

.form-checkbox {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.form-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 2px;
	accent-color: var(--gold);
	cursor: pointer;
}
.form-checkbox label {
	font-size: 13px;
	color: var(--grey-text);
	font-weight: 400;
	margin-bottom: 0;
	cursor: pointer;
}

.field-error {
	font-size: 12px;
	color: var(--error);
	margin-top: 6px;
}

.form-actions {
	margin-top: 28px;
	display: flex;
	justify-content: flex-end;
}
.form-actions-two {
	justify-content: space-between;
	gap: 12px;
}
.btn-next, .btn-cta-submit {
	background: var(--gold);
	color: var(--navy);
	font-weight: 700;
	font-size: 16px;
	padding: 14px 28px;
	border-radius: 8px;
	transition: background var(--transition);
}
.btn-next:hover, .btn-cta-submit:hover { background: var(--gold-dark); }
.btn-cta-submit { width: 100%; }

/* Success */
.form-success {
	text-align: center;
	padding: 20px 0;
}
.success-icon { font-size: 56px; margin-bottom: 20px; }
.form-success h3 { font-size: 28px; color: var(--white); margin-bottom: 12px; }
.form-success p { font-size: 16px; color: var(--grey-light); line-height: 1.7; }
.form-success .micro-text { margin-top: 12px; font-size: 13px; color: var(--grey-text); }

.form-footer-text {
	text-align: center;
	margin-top: 20px;
	font-size: 13px;
	color: var(--grey-text);
}


/* ══════════════════════════════════════════════
   BLOC 8 — NEWSLETTER
══════════════════════════════════════════════ */
.newsletter {
	padding: 64px 0;
	background: var(--grey-light);
}
.newsletter-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.newsletter-text h3 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.newsletter-text p { font-size: 15px; color: var(--grey-text); }
.newsletter-form {
	display: flex;
	gap: 12px;
	flex-wrap: nowrap;
	min-width: 360px;
}
.newsletter-form input {
	flex: 1;
	padding: 14px 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 15px;
	background: var(--white);
	color: var(--navy);
	transition: border-color var(--transition);
}
.newsletter-form input:focus {
	outline: none;
	border-color: var(--gold);
}
.newsletter-form input::placeholder { color: var(--grey-text); }
.btn-nl {
	background: transparent;
	color: var(--gold);
	font-weight: 700;
	font-size: 15px;
	padding: 14px 24px;
	border-radius: 8px;
	border: 2px solid var(--gold);
	transition: background var(--transition), color var(--transition);
}
.btn-nl:hover { background: var(--gold); color: var(--navy); }


/* ══════════════════════════════════════════════
   BLOC 9 — FAQ
══════════════════════════════════════════════ */
.faq {
	padding: 100px 0;
	background: var(--navy);
}
.faq h2 {
	font-size: 40px;
	color: var(--white);
	text-align: center;
	margin-bottom: 48px;
}

.faq-list {
	max-width: 780px;
	margin: 0 auto;
}
.faq-item {
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.faq-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	text-align: left;
	padding: 22px 0;
	font-size: 17px;
	font-weight: 600;
	color: var(--white);
	background: none;
	cursor: pointer;
	transition: color var(--transition);
	gap: 16px;
}
.faq-trigger:hover { color: var(--gold); }
.faq-trigger[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
	font-size: 24px;
	font-weight: 300;
	flex-shrink: 0;
	color: var(--gold);
	transition: transform var(--transition);
	line-height: 1;
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-body {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-body.faq-open { max-height: 500px; padding-bottom: 20px; }
.faq-body p { font-size: 15px; color: var(--grey-text); line-height: 1.8; }


/* ══════════════════════════════════════════════
   BLOC 10 — FOOTER
══════════════════════════════════════════════ */
.footer { background: var(--navy-dark); }

.footer-main {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	max-width: var(--container);
	margin: 0 auto;
	padding: 60px 40px 40px;
	align-items: center;
}
.footer-logo {
	font-size: 22px;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: var(--grey-text); }
.footer-cta-col { text-align: center; }
.footer-links-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: right;
}
.footer-links-col a {
	font-size: 13px;
	color: var(--grey-text);
	transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--white); }

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.06);
	padding: 20px 40px;
	text-align: center;
	max-width: var(--container);
	margin: 0 auto;
}
.footer-bottom p { font-size: 13px; color: var(--grey-text); }


/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (768-1023px)
══════════════════════════════════════════════ */
@media (max-width: 1023px) {
	.steps-grid { grid-template-columns: repeat(2, 1fr); }
	.hiw-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
	.comparison-cards { grid-template-columns: 1fr; }
	.comp-divider { display: none; }
	.pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
	.pricing-featured { transform: scale(1); order: -1; }
	.cta-points { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 56px; }
	.footer-main { grid-template-columns: 1fr; text-align: center; }
	.footer-links-col { text-align: center; }
	.footer-cta-col { order: -1; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (<768px)
══════════════════════════════════════════════ */
@media (max-width: 767px) {
	.container { padding: 0 16px; }

	/* Navbar */
	.navbar { height: 60px; }
	.navbar-container { padding: 0 16px; }
	.navbar-logo { font-size: 15px; }
	.btn-cta-navbar { font-size: 12px; padding: 8px 12px; }

	/* Hero */
	.hero { padding: 90px 0 56px; min-height: auto; }
	.hero-content { padding: 0 4px; }
	.hero-badge { font-size: 11px; padding: 6px 14px; line-height: 1.4; white-space: normal; }
	.hero-h1 { font-size: 26px; line-height: 1.25; margin-bottom: 18px; word-break: normal; }
	.hero-h1 br { display: none; }
	.hero-subtitle { font-size: 15px; margin-bottom: 24px; }
	.hero-subtitle br { display: none; }

	/* Hero stats - empilées en mobile */
	.hero-stats { flex-direction: column; gap: 8px; margin-bottom: 28px; }
	.hero-stat-card { padding: 12px 14px; min-width: 100%; }
	.hsc-icon { font-size: 22px; }
	.hsc-body strong { font-size: 14px; }
	.hsc-body span { font-size: 11px; }

	.btn-cta-large { font-size: 15px; padding: 14px 20px; height: auto; width: 100%; }
	.disclaimer-box { font-size: 13px; padding: 12px 14px; }

	/* Ticker mobile */
	.ticker-wrap { margin-top: 24px; gap: 8px; }
	.ticker-track { gap: 8px; }
	.tag { font-size: 12px; padding: 5px 12px; }

	/* Sections */
	.douleurs, .methode, .comparatif, .preuves, .pricing, .contact-section, .faq, .how-it-works {
		padding: 56px 0;
	}
	h2, .douleurs h2, .comparatif h2, .preuves h2, .pricing h2, .contact-section h2, .faq h2,
	.methode h2, .how-it-works h2 { font-size: 26px; line-height: 1.25; }
	.section-subtitle { font-size: 15px; }

	/* Comparison cards */
	.comparison-cards { grid-template-columns: 1fr; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
	.comp-divider { display: none; }
	.comp-col-header { padding: 14px 18px; font-size: 14px; }
	.comp-item { padding: 11px 18px; font-size: 13px; gap: 10px; }
	.ci-check { width: 16px; height: 16px; font-size: 9px; }

	/* Compare table — version condensée mobile */
	.table-wrapper { padding-top: 28px; }
	.compare-table { min-width: unset; font-size: 12px; }
	.compare-table th, .compare-table td { padding: 10px 8px; font-size: 11px; }
	.compare-table td:first-child { font-size: 12px; padding-left: 12px; }
	.th-md::after { font-size: 9px; padding: 3px 8px; top: -22px; }
	.td-check, .td-cross, .td-partial { font-size: 16px; }
	.compare-note { font-size: 11px; padding: 0 12px; }

	/* HIW */
	.hiw-grid { grid-template-columns: 1fr; gap: 40px; }
	.hiw-step { gap: 16px; }
	.hiw-step h3 { font-size: 18px; }
	.hiw-step p { font-size: 13px; }
	.mockup-map-body { height: 240px; }
	.mockup-bar-title { font-size: 10px; }
	.map-stats { padding: 6px; gap: 4px; }
	.ms-num { font-size: 12px; }
	.ms-lbl { font-size: 8px; }
	.dash-kpi { padding: 8px 6px; }
	.dkv { font-size: 16px; }
	.dkl { font-size: 9px; }
	.lead-row { padding: 7px 8px; gap: 6px; }
	.lead-name { font-size: 11px; }
	.lead-loc { font-size: 9px; }
	.lbadge { font-size: 9px; padding: 2px 7px; }
	.ag-day { font-size: 10px; width: 24px; }
	.ag-slot { font-size: 10px; padding: 3px 7px; }
	.ag-footer { font-size: 10px; padding: 5px; }

	/* Inaction */
	.inaction-box { padding: 28px 18px; margin-top: 32px; }
	.inaction-box p { font-size: 15px; }

	/* Methode */
	.steps-grid { grid-template-columns: 1fr; gap: 16px; }
	.step-card { padding: 24px 20px; }
	.step-number { font-size: 44px; }
	.section-header { margin-bottom: 36px; }

	/* Preuves */
	.preuves-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
	.preuve-card { padding: 24px 20px; }
	.preuve-icon { font-size: 36px; margin-bottom: 14px; }
	.preuve-card h3 { font-size: 17px; }
	.preuve-card p { font-size: 13px; }
	.testimonial-placeholder { padding: 24px 20px; }
	.testimonial-placeholder blockquote { font-size: 15px; }

	/* Pricing */
	.pricing-grid { grid-template-columns: 1fr; gap: 20px; }
	.pricing-featured { transform: scale(1); }
	.pricing-card { padding: 28px 22px; }
	.pricing-price { font-size: 34px; }
	.pricing-period { font-size: 16px; }
	.pricing-options-bar { font-size: 13px; padding: 16px 20px; }

	/* CTA points */
	.cta-points { gap: 16px; margin-bottom: 40px; }
	.cta-point-icon { font-size: 28px; }
	.cta-point p { font-size: 14px; }

	/* Form */
	.form-wrapper { padding: 28px 18px; }
	.form-row { grid-template-columns: 1fr; gap: 0; }
	.form-step h3 { font-size: 19px; margin-bottom: 18px; }
	.metier-buttons { gap: 6px; }
	.metier-btn { font-size: 12px; padding: 8px 12px; }
	.form-group input { padding: 11px 14px; font-size: 14px; }
	.form-group label { font-size: 13px; }
	.form-checkbox label { font-size: 12px; }
	.btn-next, .btn-cta-submit { font-size: 14px; padding: 12px 20px; }

	/* Newsletter */
	.newsletter { padding: 48px 0; }
	.newsletter-inner { flex-direction: column; gap: 20px; text-align: center; }
	.newsletter-text h3 { font-size: 19px; }
	.newsletter-text p { font-size: 14px; }
	.newsletter-form { min-width: unset; width: 100%; flex-direction: column; gap: 10px; }
	.newsletter-form input { font-size: 14px; }
	.btn-nl { width: 100%; }

	/* FAQ */
	.faq-trigger { font-size: 15px; padding: 18px 0; gap: 12px; }
	.faq-icon { font-size: 22px; }
	.faq-body p { font-size: 14px; line-height: 1.7; }

	/* Footer */
	.footer-main { padding: 36px 18px; gap: 24px; }
	.footer-bottom { padding: 14px 18px; }
	.footer-logo { font-size: 18px; }
	.footer-tagline { font-size: 13px; }
	.footer-links-col a { font-size: 12px; }
}

/* Très petits écrans */
@media (max-width: 380px) {
	.hero-h1 { font-size: 24px; }
	.compare-table th, .compare-table td { padding: 8px 6px; font-size: 10px; }
	.metier-btn { font-size: 11px; padding: 7px 10px; }
}
