/* =========================================================
   VICTOR CHARGE — feuille de style du thème
   Mobile-first · noir #0B0B0C · jaune #FFE100 · papier chaud
   ========================================================= */

/* ---- Police (hébergée dans le thème) ---- */
@font-face {
	font-family: 'Archivo';
	src: url('../fonts/archivo-var.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* ---- Jetons de design ---- */
:root {
	--yellow: #FFE100;
	--yellow-deep: #E3C900;
	--black: #0B0B0C;
	--ink: #131316;
	--ink-2: #1B1B1F;
	--line-dark: #26262B;
	--white: #FFFFFF;
	--paper: #F7F5EE;
	--line: #E6E3D6;
	--grey: #6E6E76;
	--grey-light: #A9A9B2;
	--txt: #131316;
	--txt-2: #45454C;
	--green: #2ED573;
	--r-s: 12px;
	--r-m: 18px;
	--r-l: 26px;
	--wrap: 1200px;
	--pad: 20px;
	--head-h: 72px;
	--ease: cubic-bezier(.16, 1, .3, 1);
	--shadow-card: 0 14px 40px -18px rgba(11, 11, 12, .25);
	--shadow-yellow: 0 10px 32px -10px rgba(255, 225, 0, .5);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: 'Archivo', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--txt);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

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

a { color: inherit; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.1; font-weight: 800; letter-spacing: -.02em; }

p { margin: 0 0 1em; }

ul, ol, dl, dd, figure { margin: 0; padding: 0; }

button { font: inherit; cursor: pointer; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: 780px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal !important;
}

.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--yellow); color: var(--black);
	padding: 10px 18px; font-weight: 700; z-index: 200; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* Révélation au scroll — « fail-safe » : le masquage ne s'applique que tant que
   la classe .vc-anim est présente. Le script d'en-tête la retire automatiquement
   si main.js ne confirme pas son exécution (cache, minification, conflit), pour
   que le contenu reste TOUJOURS visible en production même sans JS. */
html.vc-anim [data-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}
html.vc-anim [data-reveal].in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	html.vc-anim [data-reveal] { opacity: 1; transform: none; transition: none; }
	.marquee__track, .pulse, .france-links path, .france-shape { animation: none !important; }
}

/* =========================================================
   COMPOSANTS
   ========================================================= */

/* ---- Boutons ---- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	padding: 13px 24px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	font-weight: 750; font-size: .95rem;
	text-decoration: none;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
	will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--big { padding: 16px 30px; font-size: 1.02rem; }
.btn--yellow { background: var(--yellow); color: var(--black); }
.btn--yellow:hover { box-shadow: var(--shadow-yellow); background: #FFE94D; }
.btn--solid { background: var(--black); color: var(--white); }
.btn--solid:hover { box-shadow: 0 12px 30px -12px rgba(11, 11, 12, .55); }
.btn--ghost { border-color: rgba(255, 255, 255, .3); color: var(--white); background: transparent; }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn--ghost-dark { border-color: rgba(11, 11, 12, .25); color: var(--black); background: transparent; }
.btn--ghost-dark:hover { border-color: var(--black); }
.btn__bolt { width: 13px; height: 13px; flex: none; }

.link-more { font-weight: 750; font-size: .92rem; text-decoration: none; color: inherit; }
.link-more:hover { color: var(--yellow-deep); }

/* ---- Sur-titres ---- */
.kicker {
	display: inline-flex; align-items: center; gap: 8px;
	margin: 0 0 14px;
	font-size: .78rem; font-weight: 800;
	letter-spacing: .16em; text-transform: uppercase;
	color: var(--yellow-deep);
}
.page-hero--dark .kicker, .hero .kicker, .modeles .kicker, .carte-teaser .kicker, .launch .kicker { color: var(--yellow); }
.kicker__bolt { width: 12px; height: 12px; }
.kicker--live .kicker__dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 0 rgba(46, 213, 115, .6);
	animation: livePulse 2.2s infinite;
}
@keyframes livePulse {
	0% { box-shadow: 0 0 0 0 rgba(46, 213, 115, .55); }
	70% { box-shadow: 0 0 0 9px rgba(46, 213, 115, 0); }
	100% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0); }
}

/* ---- Têtes de section ---- */
.sec-head { max-width: 680px; margin-bottom: clamp(30px, 5vw, 52px); }
.sec-title {
	font-size: clamp(1.9rem, 4.4vw, 3.1rem);
	font-weight: 870; letter-spacing: -.03em; line-height: 1.02;
	margin-bottom: .35em;
}
.sec-title--small { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.sec-text { color: var(--txt-2); font-size: 1.04rem; max-width: 60ch; }
.sec-head--light .sec-title { color: var(--white); }
.sec-head--light .sec-text { color: var(--grey-light); }

/* ---- Puces & badges ---- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.chip {
	padding: 7px 14px; border-radius: 999px;
	background: rgba(11, 11, 12, .05);
	border: 1px solid rgba(11, 11, 12, .1);
	font-size: .88rem; font-weight: 650;
}
.badge {
	display: inline-flex; align-items: center;
	padding: 7px 14px; border-radius: 999px;
	font-size: .82rem; font-weight: 800; letter-spacing: .02em;
}
.badge--payant { background: var(--yellow); color: var(--black); }
.badge--offert { background: var(--black); color: var(--yellow); }
.badge--mixte { background: transparent; color: inherit; border: 1.5px dashed currentColor; }

/* =========================================================
   EN-TÊTE
   ========================================================= */
.site-head {
	position: sticky; top: 0; z-index: 100;
	border-bottom: 1px solid var(--line-dark);
}
/* Le fond flouté vit dans un pseudo-élément : un backdrop-filter posé sur
   .site-head créerait un containing block qui piégerait le menu mobile fixed. */
.site-head::before {
	content: ""; position: absolute; inset: 0;
	background: rgba(11, 11, 12, .86);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}
.site-head__in {
	position: relative;
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	min-height: var(--head-h);
}
.vc-logo {
	display: inline-flex; align-items: center; gap: 11px;
	text-decoration: none; color: var(--white);
	font-size: 1.14rem; font-weight: 500; letter-spacing: -.01em;
	z-index: 120; position: relative;
}
.vc-logo__mark { width: 40px; height: 40px; border-radius: 11px; transition: transform .3s var(--ease); }
.vc-logo:hover .vc-logo__mark { transform: rotate(-6deg) scale(1.05); }
.vc-logo__text strong { font-weight: 870; color: var(--yellow); }
.vc-logo__img { max-height: 46px; width: auto; display: block; }
.custom-logo { max-height: 46px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav__list { display: flex; gap: 4px; list-style: none; }
.site-nav__list a {
	display: block; padding: 9px 13px;
	color: rgba(255, 255, 255, .82);
	text-decoration: none; font-weight: 650; font-size: .94rem;
	border-radius: 8px;
	transition: color .2s, background .2s;
}
.site-nav__list a:hover { color: var(--yellow); }
.site-nav__list .current-menu-item > a, .site-nav__list .current_page_item > a { color: var(--yellow); }
.site-nav__cta { padding: 11px 20px; font-size: .9rem; background: var(--yellow); color: var(--black); border: none; }
.site-nav__cta:hover { box-shadow: var(--shadow-yellow); }

.nav-toggle { display: none; }

@media (max-width: 900px) {
	.nav-toggle {
		display: grid; gap: 5px; place-content: center;
		width: 46px; height: 46px;
		background: transparent; border: 1px solid var(--line-dark); border-radius: 12px;
		z-index: 120; position: relative;
	}
	.nav-toggle__bar { width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
	.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
	.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.site-nav {
		position: fixed; inset: 0;
		background: var(--black);
		flex-direction: column; justify-content: center;
		gap: 10px;
		opacity: 0; visibility: hidden;
		transition: opacity .3s var(--ease), visibility .3s;
		z-index: 110;
	}
	.nav-open .site-nav { opacity: 1; visibility: visible; }
	.site-nav__list { flex-direction: column; text-align: center; gap: 8px; }
	.site-nav__list a { font-size: 1.5rem; font-weight: 800; color: var(--white); }
	.site-nav__cta { margin-top: 18px; font-size: 1.05rem; padding: 15px 30px; }
	.nav-open { overflow: hidden; }
}

/* =========================================================
   HÉRO
   ========================================================= */
.hero {
	position: relative;
	background: var(--black);
	color: var(--white);
	overflow: clip;
}
.hero__grain {
	position: absolute; inset: 0; pointer-events: none; opacity: .18;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero__in {
	position: relative;
	display: grid; gap: 40px;
	padding-top: clamp(56px, 9vh, 110px);
	padding-bottom: clamp(70px, 10vh, 120px);
}
.hero__title {
	font-size: clamp(2.5rem, 7.2vw, 4.9rem);
	font-weight: 900; letter-spacing: -.035em; line-height: .98;
	margin: 0 0 22px;
}
.hero__text { color: var(--grey-light); font-size: clamp(1rem, 1.6vw, 1.14rem); max-width: 54ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 26px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 8px 20px; list-style: none; }
.hero__badges li {
	display: inline-flex; align-items: center; gap: 7px;
	font-size: .86rem; font-weight: 650; color: rgba(255, 255, 255, .72);
}
.badge__bolt { width: 11px; height: 11px; color: var(--yellow); }

.hero__visual { display: none; }

@media (min-width: 900px) {
	.hero__in { grid-template-columns: 1.05fr .95fr; align-items: center; }
	.hero__visual { display: block; }
}

/* Carte de France animée */
.france-svg { width: min(100%, 460px); margin-inline: auto; display: block; filter: drop-shadow(0 0 40px rgba(255, 225, 0, .12)); }
.france-shape {
	stroke-dasharray: 3000;
	stroke-dashoffset: 3000;
	animation: drawFrance 2.6s var(--ease) .3s forwards;
}
@keyframes drawFrance { to { stroke-dashoffset: 0; } }
.france-links path {
	stroke-dasharray: 5 9;
	animation: flow 1.6s linear infinite;
}
@keyframes flow { to { stroke-dashoffset: -14; } }
.france-dots .pulse {
	fill: none; stroke: var(--yellow); stroke-width: 2;
	transform-origin: center; transform-box: fill-box;
	animation: dotPulse 2.4s ease-out infinite;
}
.france-dots .pulse:nth-of-type(2) { animation-delay: .6s; }
.france-dots .pulse:nth-of-type(3) { animation-delay: 1.2s; }
@keyframes dotPulse {
	0% { transform: scale(1); opacity: .9; }
	100% { transform: scale(3.2); opacity: 0; }
}

/* Bandeau défilant */
.marquee {
	position: relative;
	background: var(--yellow);
	border-top: 3px solid var(--black);
	border-bottom: 3px solid var(--black);
	transform: rotate(-1.4deg) scale(1.02);
	margin-block: 8px -30px;
	overflow: clip;
}
.marquee__track {
	display: flex; width: max-content;
	animation: marquee 36s linear infinite;
}
.marquee__seq { display: flex; align-items: center; }
.marquee__word {
	padding: 12px 18px;
	font-weight: 900; font-size: 1.05rem;
	letter-spacing: .05em; text-transform: uppercase;
	color: var(--black); white-space: nowrap;
}
.marquee__bolt { width: 14px; height: 14px; color: var(--black); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   CHIFFRES
   ========================================================= */
/* ---- Bandeau lancement (chiffres issus des contenus publiés) ---- */
.launch { background: var(--black); color: var(--white); padding: clamp(56px, 8vw, 96px) 0; }
.launch__in { display: grid; gap: 34px; align-items: center; }
@media (min-width: 900px) { .launch__in { grid-template-columns: 1.25fr .75fr; gap: 56px; } }

.launch__title {
	font-size: clamp(1.7rem, 3.8vw, 2.9rem);
	font-weight: 880; letter-spacing: -.03em; line-height: 1.05;
	color: #fff; margin: 0 0 18px;
}
.launch__num {
	color: var(--yellow);
	font-size: 1.35em; font-weight: 900;
	font-variant-numeric: tabular-nums;
	margin-right: .12em;
}
.launch__villes { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 14px; }
.launch__ville {
	display: inline-flex; align-items: center;
	padding: 8px 16px; border-radius: 999px;
	border: 1.5px solid var(--line-dark);
	background: var(--ink);
	font-weight: 750; font-size: .93rem; color: #fff;
}
.launch__ville::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); margin-right: 9px; }
.launch__sub { color: var(--grey-light); font-size: .97rem; margin: 0; }

.launch__side { display: grid; gap: 16px; justify-items: start; }
.launch__pitch { color: var(--grey-light); font-size: 1.01rem; margin: 0; max-width: 40ch; }
@media (min-width: 900px) {
	.launch__side { border-left: 1.5px solid var(--line-dark); padding-left: 34px; }
}

/* =========================================================
   SÉLECTEUR DE BORNES
   ========================================================= */
.bornes { background: var(--paper); padding: clamp(70px, 10vw, 130px) 0; }

.selector__tabs {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
	margin-bottom: 26px;
}
.selector__tab {
	display: grid; gap: 2px; text-align: left;
	padding: 15px 16px 13px;
	background: var(--white);
	border: 2px solid var(--line);
	border-radius: var(--r-m);
	transition: border-color .25s, background .25s, transform .25s var(--ease), box-shadow .25s;
}
.selector__tab:hover { border-color: var(--black); transform: translateY(-2px); }
.selector__tab.is-active {
	background: var(--black); border-color: var(--black); color: var(--white);
	box-shadow: var(--shadow-card);
}
.selector__tab-size { font-size: 1.5rem; font-weight: 900; line-height: 1; color: var(--black); }
.selector__tab.is-active .selector__tab-size { color: var(--yellow); }
.selector__tab-name { font-weight: 800; font-size: .98rem; }
.selector__tab-slots { font-size: .8rem; color: var(--grey); font-weight: 600; }
.selector__tab.is-active .selector__tab-slots { color: var(--grey-light); }

.selector__panel { display: none; }
.selector__panel.is-active {
	display: grid; gap: clamp(26px, 4vw, 54px);
	animation: panelIn .5s var(--ease);
}
@keyframes panelIn {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: none; }
}
@media (min-width: 860px) {
	.selector__panel.is-active { grid-template-columns: .92fr 1.08fr; align-items: center; }
}

/* Scène : le lieu défile derrière la borne, qui reste fixe au premier plan */
/* Cadre volontairement proche du carré : les décors sont des photos carrées,
   un cadre panoramique en couperait la moitié. */
.stage {
	position: relative;
	aspect-ratio: 5 / 4;
	min-height: 300px;
	border-radius: var(--r-l);
	overflow: clip;
	background: #0B0B0C;
	isolation: isolate;
}
@media (min-width: 1024px) {
	.stage--selector { aspect-ratio: 1 / 1; }
}
.stage__scenes { position: absolute; inset: 0; z-index: 0; }
.stage__scene {
	position: absolute; inset: 0;
	display: grid; place-items: center;
	background-size: cover; background-position: center;
	opacity: 0; transform: translateX(7%) scale(1.05);
	transition: opacity .7s var(--ease), transform 1s var(--ease);
}
.stage__scene.is-active { opacity: 1; transform: none; }
.stage__scene-ico { width: 46%; height: 46%; color: rgba(255, 255, 255, .05); }
/* Vraie photo de lieu : à peine assombrie, pour rester lisible sous la borne */
.stage__scene.has-photo { filter: brightness(.88) saturate(1.06); }
/* Dégradés de repli — utilisés tant qu'aucune photo n'est déposée pour le lieu */
.scene--bar { background-image: linear-gradient(150deg, #3a2a12, #0b0b0c 70%); }
.scene--restaurant { background-image: linear-gradient(150deg, #3a1d18, #0b0b0c 70%); }
.scene--hotel { background-image: linear-gradient(150deg, #1a2340, #0b0b0c 70%); }
.scene--plage { background-image: linear-gradient(150deg, #0f3a3a, #0b0b0c 70%); }
.scene--casino { background-image: linear-gradient(150deg, #2c1233, #0b0b0c 70%); }
.scene--boite-de-nuit { background-image: linear-gradient(150deg, #221247, #0b0b0c 70%); }
.scene--festival { background-image: linear-gradient(150deg, #3a1230, #0b0b0c 70%); }
.scene--supermarche { background-image: linear-gradient(150deg, #123a1e, #0b0b0c 70%); }
.scene--centre-commercial { background-image: linear-gradient(150deg, #12283a, #0b0b0c 70%); }
.scene--gare { background-image: linear-gradient(150deg, #26262e, #0b0b0c 70%); }
.scene--parc-attraction { background-image: linear-gradient(150deg, #123a1e, #0b0b0c 70%); }
.scene--stade { background-image: linear-gradient(150deg, #10303a, #0b0b0c 70%); }
.stage__vignette { position: absolute; inset: 0; background: radial-gradient(ellipse 92% 84% at 50% 45%, transparent, rgba(11, 11, 12, .34)); }
.stage__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 38% at 50% 64%, rgba(255, 225, 0, .13), transparent 72%); }

.stage__front { position: absolute; inset: 0; z-index: 2; display: grid; grid-template-rows: 100%; place-items: center; padding: 26px; pointer-events: none; }
.borne-svg { display: block; width: auto; filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .55)); }
.stage__front .borne-svg { height: clamp(268px, 36vw, 398px); }
.stage--s .stage__front .borne-svg { height: clamp(238px, 32vw, 348px); }
.stage--l .stage__front .borne-svg { height: clamp(288px, 39vw, 428px); }
/* La borne occupe ~78 % de la hauteur : le décor reste visible tout autour. */
.stage__borne-img { height: 78%; width: auto; max-width: 88%; object-fit: contain; filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .6)); }
.stage--l .stage__borne-img { height: 88%; }
.stage--m .stage__borne-img { height: 84%; }

.stage__place {
	position: absolute; top: 14px; left: 14px; z-index: 3; margin: 0;
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 14px; border-radius: 999px;
	background: rgba(11, 11, 12, .6);
	backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, .16);
	color: #fff; font-weight: 750; font-size: .82rem; letter-spacing: .01em;
}
.stage__place::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 8px rgba(255, 225, 0, .8); }

.stage__nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
	width: 40px; height: 40px; display: grid; place-items: center;
	background: rgba(11, 11, 12, .5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%;
	color: #fff; opacity: 0; transition: opacity .25s, background .2s, color .2s, border-color .2s;
}
.stage:hover .stage__nav, .stage:focus-within .stage__nav { opacity: 1; }
.stage__nav svg { width: 20px; height: 20px; }
.stage__nav:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.stage__nav--prev { left: 12px; }
.stage__nav--next { right: 12px; }
@media (hover: none) { .stage__nav { opacity: 1; } }

.stage__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.stage__dot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 999px; background: rgba(255, 255, 255, .38); transition: width .3s var(--ease), background .3s; cursor: pointer; }
.stage__dot.is-active { width: 22px; background: var(--yellow); }

.selector__name { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 870; letter-spacing: -.02em; margin-bottom: 10px; }
.selector__sub { color: var(--grey); font-weight: 600; font-size: .72em; }
.selector__usage { color: var(--txt-2); font-size: 1.02rem; margin-bottom: 22px; max-width: 52ch; }

.selector__specs {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 22px;
	margin-bottom: 22px;
	padding: 18px 20px;
	background: var(--white); border: 1px solid var(--line); border-radius: var(--r-m);
}
.selector__specs dt { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--grey); margin-bottom: 2px; }
.selector__specs dd { font-weight: 750; font-size: .96rem; }

.selector__label { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--grey); margin-bottom: 9px; }
.selector .chips { margin-bottom: 24px; }

.selector__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

/* =========================================================
   DEUX MODÈLES
   ========================================================= */
.modeles { background: var(--black); color: var(--white); padding: clamp(70px, 10vw, 130px) 0; }
.modeles__grid { display: grid; gap: 18px; }
@media (min-width: 820px) { .modeles__grid { grid-template-columns: 1fr 1fr; } }

.modele {
	border-radius: var(--r-l);
	padding: clamp(26px, 4vw, 42px);
	display: flex; flex-direction: column;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.modele:hover { transform: translateY(-6px); }
.modele--payant { background: var(--yellow); color: var(--black); }
.modele--payant:hover { box-shadow: var(--shadow-yellow); }
.modele--offert { background: var(--ink); border: 1px solid var(--line-dark); }
.modele--offert:hover { box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .8); }

.modele__tag {
	align-self: flex-start;
	font-size: .74rem; font-weight: 850; text-transform: uppercase; letter-spacing: .14em;
	padding: 6px 13px; border-radius: 999px;
	border: 1.5px solid currentColor;
	margin-bottom: 20px;
}
.modele--offert .modele__tag { color: var(--yellow); }
.modele__title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 890; letter-spacing: -.025em; }
.modele__pitch { font-size: 1.04rem; font-weight: 600; margin-bottom: 20px; }
.modele--offert .modele__pitch { color: var(--grey-light); font-weight: 500; }
.modele__list { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.modele__list li { position: relative; padding-left: 24px; font-size: .97rem; font-weight: 600; }
.modele__list li::before {
	content: "⚡"; position: absolute; left: 0; top: 0;
	font-size: .85em;
}
.modele--offert .modele__list li { color: rgba(255, 255, 255, .85); }
.modele__for { margin-top: auto; padding-top: 14px; border-top: 1.5px solid rgba(11, 11, 12, .2); font-size: .92rem; }
.modele--offert .modele__for { border-top-color: var(--line-dark); color: var(--grey-light); }

.modeles__foot {
	display: flex; align-items: center; justify-content: center; gap: 10px;
	margin: 34px 0 0; text-align: center;
	color: rgba(255, 255, 255, .8); font-weight: 650;
}
.modeles__bolt { width: 14px; height: 14px; color: var(--yellow); flex: none; }

/* =========================================================
   SECTEURS
   ========================================================= */
.secteurs { background: var(--white); padding: clamp(70px, 10vw, 130px) 0; }
.secteurs__grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

.sec-card__link {
	display: flex; flex-direction: column; gap: 10px;
	height: 100%;
	padding: 24px 22px;
	background: var(--white);
	border: 1.5px solid var(--line);
	border-radius: var(--r-m);
	text-decoration: none;
	transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.sec-card__link:hover { transform: translateY(-5px); border-color: var(--black); box-shadow: var(--shadow-card); }
.sec-card__icon {
	width: 46px; height: 46px;
	display: grid; place-items: center;
	background: var(--black); color: var(--yellow);
	border-radius: 13px;
	transition: background .3s, color .3s, transform .3s var(--ease);
}
.sec-card__link:hover .sec-card__icon { background: var(--yellow); color: var(--black); transform: rotate(-6deg); }
.sec-card__icon .vc-ico { width: 22px; height: 22px; }
.sec-card__title { font-size: 1.12rem; font-weight: 820; margin: 0; }
.sec-card__hook { color: var(--grey); font-size: .9rem; margin: 0; flex-grow: 1; }
.sec-card__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: auto; }
.sec-card__borne { display: inline-flex; align-items: center; gap: 5px; font-size: .8rem; font-weight: 750; color: var(--txt-2); }
.sec-card__bolt { width: 11px; height: 11px; color: var(--yellow-deep); flex: none; }
.secteurs__more { text-align: center; margin: 34px 0 0; }

/* =========================================================
   CARTE (accueil + page complète)
   ========================================================= */
.carte-teaser { background: var(--black); color: var(--white); padding: clamp(70px, 10vw, 130px) 0; }
.carte-teaser__box {
	position: relative;
	isolation: isolate; /* enferme les z-index internes de Leaflet */
	border-radius: var(--r-l);
	overflow: clip;
	border: 1px solid var(--line-dark);
	height: clamp(380px, 58vh, 540px);
}
.carte-teaser__map { position: absolute; inset: 0; background: #17171B; }
.carte-teaser__overlay {
	position: absolute; inset: auto 0 0; z-index: 500;
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
	padding: clamp(16px, 3vw, 26px);
	background: linear-gradient(to top, rgba(11, 11, 12, .92), transparent);
	pointer-events: none;
}
.carte-teaser__overlay > * { pointer-events: auto; }
.carte-teaser__count { margin: 0; font-size: 1.02rem; color: var(--grey-light); }
.carte-teaser__count strong { color: var(--yellow); font-size: 1.4em; font-weight: 900; }
.carte-teaser__count-zone { display: inline-block; margin-left: 6px; padding: 3px 10px; border-radius: 999px; border: 1px solid rgba(255,225,0,.4); color: var(--yellow); font-size: .8rem; font-weight: 700; }

/* Épingles Leaflet */
.vc-pin {
	display: grid; place-items: center;
	width: 30px; height: 30px;
	background: var(--yellow);
	border: 2.5px solid var(--black);
	border-radius: 50% 50% 50% 4px;
	transform: rotate(0deg);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .5);
	transition: transform .2s var(--ease);
}
.vc-pin:hover { transform: scale(1.15); }
.vc-pin svg { width: 15px; height: 15px; color: var(--black); }
.vc-pin--bientot { background: var(--white); opacity: .85; }

/* Marqueur « ville en déploiement » : pastille chiffre + ondes */
.vc-zone { position: relative; width: 46px; height: 46px; display: grid; place-items: center; }
.vc-zone__ring { position: absolute; inset: 2px; border-radius: 50%; border: 2px solid var(--yellow); opacity: 0; animation: zonePulse 2.6s ease-out infinite; }
.vc-zone__ring--2 { animation-delay: 1.3s; }
.vc-zone__num { position: relative; z-index: 1; min-width: 24px; height: 24px; padding: 0 6px; display: grid; place-items: center; background: var(--yellow); color: var(--black); border: 2px solid var(--black); border-radius: 999px; font-weight: 900; font-size: .74rem; box-shadow: 0 3px 10px rgba(0, 0, 0, .5); }
.vc-zone__num--dot { min-width: 14px; width: 14px; height: 14px; padding: 0; }
@keyframes zonePulse { 0% { transform: scale(.45); opacity: .85; } 100% { transform: scale(1.25); opacity: 0; } }
.leaflet-popup-content-wrapper {
	background: var(--ink); color: var(--white);
	border-radius: 14px; border: 1px solid var(--line-dark);
	box-shadow: 0 18px 50px -12px rgba(0, 0, 0, .7);
}
.leaflet-popup-tip { background: var(--ink); }
.leaflet-popup-content { margin: 14px 16px; font-family: inherit; line-height: 1.45; }
.vc-pop__title { font-weight: 820; font-size: 1.02rem; margin: 0 0 2px; }
.vc-pop__meta { color: var(--grey-light); font-size: .84rem; margin: 0 0 8px; }
.vc-pop .badge { font-size: .68rem; padding: 4px 10px; }
.leaflet-container { font-family: inherit; }
.leaflet-control-attribution { background: rgba(11, 11, 12, .7) !important; color: #777 !important; }
.leaflet-control-attribution a { color: #999 !important; }
.leaflet-control-zoom a { background: var(--ink) !important; color: var(--white) !important; border-color: var(--line-dark) !important; }

/* Page carte complète */
.carte-full { background: var(--black); color: var(--white); padding: 0 0 clamp(60px, 8vw, 100px); }
.carte-full__filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 20px; }
.filter-chip {
	padding: 9px 17px;
	background: transparent; color: rgba(255, 255, 255, .8);
	border: 1.5px solid var(--line-dark); border-radius: 999px;
	font-weight: 700; font-size: .88rem;
	transition: all .25s;
}
.filter-chip:hover { border-color: var(--yellow); color: var(--yellow); }
.filter-chip.is-active { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

.carte-full__layout { display: grid; gap: 16px; }
@media (min-width: 960px) { .carte-full__layout { grid-template-columns: 1.65fr .95fr; } }
.carte-full__map {
	position: relative;
	isolation: isolate; /* enferme les z-index internes de Leaflet */
	height: clamp(400px, 62vh, 640px);
	border-radius: var(--r-l);
	border: 1px solid var(--line-dark);
	background: #17171B;
	overflow: clip;
}
.carte-full__list {
	display: flex; flex-direction: column; gap: 10px;
	max-height: clamp(400px, 62vh, 640px);
	overflow-y: auto;
	padding-right: 4px;
	scrollbar-width: thin; scrollbar-color: var(--line-dark) transparent;
}
.lieu-item {
	display: grid; gap: 4px; text-align: left;
	padding: 15px 17px;
	background: var(--ink);
	border: 1.5px solid var(--line-dark); border-radius: var(--r-m);
	color: var(--white);
	transition: border-color .25s, transform .25s var(--ease);
}
.lieu-item:hover { border-color: var(--yellow); transform: translateX(3px); }
.lieu-item__name { font-weight: 800; font-size: .99rem; }
.lieu-item__meta { color: var(--grey-light); font-size: .83rem; display: flex; flex-wrap: wrap; gap: 5px 12px; align-items: center; }
.lieu-item__dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.lieu-item__dot--bientot { background: #FFB020; }
.lieu-item .badge { font-size: .65rem; padding: 3px 9px; justify-self: start; }
.carte-full__empty { color: var(--grey-light); padding: 20px; text-align: center; }
.carte-full__cta {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px;
	margin: 36px 0 0; text-align: center;
	color: var(--grey-light); font-weight: 650;
}

/* =========================================================
   FONCTIONNEMENT
   ========================================================= */
.how { background: var(--paper); padding: clamp(70px, 10vw, 130px) 0; }
.how__steps {
	list-style: none;
	display: grid; gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	counter-reset: steps;
}
.how__step {
	position: relative;
	padding: 26px 24px;
	background: var(--white);
	border: 1.5px solid var(--line); border-radius: var(--r-m);
	transition: transform .3s var(--ease), box-shadow .3s;
}
.how__step:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.how__step--media { padding: 0 24px 26px; overflow: clip; }
.how__media { display: block; margin: 0 -24px 18px; aspect-ratio: 1 / 1; background: var(--paper); }
.how__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.how__step--media .how__num { margin-top: 2px; }
.how__num {
	display: inline-block;
	font-size: 2.2rem; font-weight: 900; line-height: 1;
	color: var(--yellow);
	-webkit-text-stroke: 1.5px var(--black);
	margin-bottom: 12px;
}
.how__title { font-size: 1.22rem; font-weight: 850; margin-bottom: 6px; }
.how__text { color: var(--txt-2); font-size: .94rem; margin: 0; }

/* =========================================================
   ACTUALITÉS
   ========================================================= */
.news { background: var(--white); padding: clamp(70px, 10vw, 130px) 0; }
.news__grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.news-card__link { display: flex; flex-direction: column; gap: 8px; text-decoration: none; height: 100%; }
.news-card__body { display: flex; flex-direction: column; gap: 7px; flex-grow: 1; }
.news-card__media {
	border-radius: var(--r-m); overflow: clip;
	aspect-ratio: 3 / 2; background: var(--paper);
	margin-bottom: 8px;
}
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.news-card__link:hover .news-card__media img { transform: scale(1.05); }
.news-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; margin: 0; font-size: .8rem; color: var(--grey); }
.news-card__cat {
	display: inline-flex; align-items: center;
	padding: 4px 11px; border-radius: 999px;
	background: var(--yellow); color: var(--black);
	font-size: .72rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase;
}
.news-card__title { font-size: 1.18rem; font-weight: 830; margin: 0; }
.news-card__link:hover .news-card__title { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.news-card__excerpt { color: var(--txt-2); font-size: .93rem; margin: 0; flex-grow: 1; }

/* ---- Page blog ---- */
.blog { background: var(--white); padding: clamp(40px, 5vw, 64px) 0 clamp(56px, 8vw, 100px); }
.blog__empty { color: var(--txt-2); text-align: center; padding: 40px 0; }

.blog-filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: clamp(28px, 4vw, 44px); }
.blog-filters .filter-chip {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--txt); border-color: var(--line);
	text-decoration: none;
}
.blog-filters .filter-chip:hover { border-color: var(--black); color: var(--txt); }
.blog-filters .filter-chip.is-active { background: var(--black); border-color: var(--black); color: var(--white); }
.filter-chip__count {
	display: inline-grid; place-items: center;
	min-width: 20px; height: 20px; padding: 0 6px;
	border-radius: 999px;
	background: rgba(11, 11, 12, .08);
	font-size: .74rem; font-weight: 800;
}
.blog-filters .filter-chip.is-active .filter-chip__count { background: var(--yellow); color: var(--black); }

/* Article à la une */
.news-card--featured { margin-bottom: clamp(24px, 3.5vw, 40px); }
.news-card--featured .news-card__link {
	gap: 0;
	background: var(--paper);
	border: 1.5px solid var(--line);
	border-radius: var(--r-l);
	overflow: clip;
	transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
.news-card--featured .news-card__link:hover { border-color: var(--black); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.news-card--featured .news-card__media { aspect-ratio: 16 / 9; margin: 0; border-radius: 0; }
.news-card--featured .news-card__body { padding: clamp(22px, 3vw, 34px); gap: 10px; }
.news-card--featured .news-card__title { font-size: clamp(1.5rem, 3.2vw, 2.2rem); font-weight: 870; letter-spacing: -.025em; }
.news-card--featured .news-card__excerpt { font-size: 1.02rem; max-width: 62ch; }
@media (min-width: 900px) {
	.news-card--featured .news-card__link { flex-direction: row; align-items: stretch; }
	.news-card--featured .news-card__media { flex: 0 0 52%; aspect-ratio: auto; margin: 0; }
	.news-card--featured .news-card__body { justify-content: center; }
}

/* En-tête d'article */
.page-hero__title--article { font-size: clamp(1.9rem, 4.4vw, 3.1rem); max-width: 22ch; }
.entry__byline { display: flex; flex-wrap: wrap; gap: 10px; color: var(--grey-light); font-size: .93rem; font-weight: 650; margin: 0; }

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final {
	position: relative;
	background: var(--yellow);
	color: var(--black);
	padding: clamp(70px, 11vw, 140px) 0;
	overflow: clip;
}
.cta-final__bolt {
	position: absolute; right: 2%; top: 50%;
	transform: translateY(-50%) rotate(8deg);
	color: var(--black); opacity: .09;
	pointer-events: none; line-height: 0;
}
.cta-final__bolt svg { width: clamp(150px, 24vw, 320px); height: auto; display: block; }
.cta-final__in { position: relative; z-index: 1; max-width: 720px; }
.cta-final__title { font-size: clamp(2.1rem, 5.6vw, 3.7rem); font-weight: 900; letter-spacing: -.035em; line-height: 1; }
.cta-final__text { font-size: 1.1rem; font-weight: 600; max-width: 46ch; margin-bottom: 30px; }
.cta-final__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.cta-final .btn--solid { color: var(--yellow); }
.cta-final__mail { font-weight: 800; color: var(--black); text-decoration: underline; text-decoration-thickness: 2.5px; text-underline-offset: 4px; }

/* =========================================================
   PIED DE PAGE
   ========================================================= */
.site-foot { background: var(--black); color: var(--white); padding: clamp(56px, 8vw, 90px) 0 26px; overflow: clip; }
.site-foot__top { display: grid; gap: 40px; margin-bottom: clamp(40px, 6vw, 70px); }
@media (min-width: 820px) { .site-foot__top { grid-template-columns: 1.4fr .8fr .9fr; gap: 60px; } }
.site-foot__mark { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px; }
.site-foot__note { color: var(--grey-light); max-width: 42ch; font-size: .97rem; }
.site-foot__zone { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-weight: 750; font-size: .9rem; margin: 6px 0 0; }
.foot__bolt { width: 12px; height: 12px; color: var(--yellow); }
.site-foot__h { font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .16em; color: var(--yellow); margin-bottom: 16px; }
.site-foot__list { list-style: none; display: grid; gap: 9px; }
.site-foot__list a { color: rgba(255, 255, 255, .8); text-decoration: none; font-weight: 600; font-size: .96rem; }
.site-foot__list a:hover { color: var(--yellow); }
.site-foot__cta { margin-top: 20px; }
.site-foot__word {
	font-size: clamp(2.6rem, 10.5vw, 8.6rem);
	font-weight: 900; letter-spacing: -.04em; line-height: 1;
	white-space: nowrap; text-align: center;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(255, 255, 255, .14);
	user-select: none;
	margin-bottom: 26px;
}
.site-foot__bottom {
	display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px;
	padding-top: 22px;
	border-top: 1px solid var(--line-dark);
	color: var(--grey); font-size: .85rem;
}
.site-foot__bottom p { margin: 0; }
.site-foot__legal { list-style: none; display: flex; flex-wrap: wrap; gap: 20px; }
.site-foot__legal a { color: var(--grey); text-decoration: none; }
.site-foot__legal a:hover { color: var(--white); }

/* =========================================================
   PAGES INTERNES
   ========================================================= */
.page-hero { padding: clamp(48px, 8vw, 90px) 0; background: var(--paper); }
.page-hero--dark { background: var(--black); color: var(--white); }
.page-hero--tall { padding: clamp(90px, 16vw, 160px) 0; }
.page-hero__title { font-size: clamp(2.1rem, 5.6vw, 3.8rem); font-weight: 900; letter-spacing: -.035em; line-height: 1; margin-bottom: .3em; }
.page-hero__text { color: var(--grey-light); font-size: 1.06rem; max-width: 58ch; margin: 0; }
.page-hero--dark .page-hero__text { color: var(--grey-light); }
.page-hero:not(.page-hero--dark) .page-hero__text { color: var(--txt-2); }
.page-hero__text--big { font-size: 1.25rem; font-weight: 650; }
.page-hero__icon {
	display: inline-grid; place-items: center; vertical-align: middle;
	width: 54px; height: 54px; margin-right: 14px;
	background: var(--yellow); color: var(--black); border-radius: 15px;
}
.page-hero__icon .vc-ico { width: 26px; height: 26px; }
.page-hero .hero__actions { margin-top: 26px; }

.listing { padding: clamp(50px, 7vw, 90px) 0; background: var(--white); }
.listing--tint { background: var(--paper); }
.pagination { margin-top: 40px; text-align: center; }
.pagination .nav-links { display: inline-flex; gap: 8px; }
.pagination .page-numbers {
	display: inline-grid; place-items: center;
	min-width: 42px; height: 42px; padding: 0 10px;
	border: 1.5px solid var(--line); border-radius: 12px;
	text-decoration: none; font-weight: 750; color: var(--txt);
}
.pagination .page-numbers.current { background: var(--black); color: var(--yellow); border-color: var(--black); }
.pagination .page-numbers:hover:not(.current) { border-color: var(--black); }

/* Contenu éditorial */
.entry { padding: clamp(40px, 6vw, 70px) var(--pad); }
.entry__media { border-radius: var(--r-l); overflow: clip; margin-bottom: 34px; }
.entry-content { font-size: 1.05rem; }
.entry-content h2 { font-size: 1.7rem; margin-top: 1.6em; }
.entry-content h3 { font-size: 1.3rem; margin-top: 1.4em; }
.entry-content img { border-radius: var(--r-m); }
.entry-content a { color: inherit; text-decoration-color: var(--yellow); text-decoration-thickness: 2.5px; text-underline-offset: 3px; }
.entry-content blockquote {
	margin: 1.6em 0; padding: 4px 0 4px 22px;
	border-left: 4px solid var(--yellow);
	font-weight: 650; font-size: 1.1em;
}
.entry-content ul, .entry-content ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.entry__foot { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; margin-top: 46px; padding-top: 26px; border-top: 1.5px solid var(--line); }

/* Cartes bornes (archive) */
.bornes-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
.bornes-grid--2 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.borne-card__link { display: flex; flex-direction: column; gap: 6px; text-decoration: none; height: 100%; }
.borne-card__stage {
	display: grid; place-items: center;
	padding: 30px 20px;
	min-height: 300px;
	background:
		radial-gradient(ellipse 60% 45% at 50% 62%, rgba(255, 225, 0, .13), transparent 70%),
		linear-gradient(160deg, #1B1B1F, #0B0B0C 65%);
	border-radius: var(--r-m);
	margin-bottom: 12px;
	transition: transform .35s var(--ease);
}
.borne-card__link:hover .borne-card__stage { transform: translateY(-5px); }
.borne-svg--card { height: 230px; }
.borne-card__photo { max-height: 250px; width: auto; object-fit: contain; }
.borne-card__title { font-size: 1.3rem; font-weight: 850; margin: 0; }
.borne-card__title span { color: var(--grey); font-weight: 600; font-size: .8em; }
.borne-card__slots { color: var(--yellow-deep); font-weight: 800; font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; margin: 0; }
.borne-card__excerpt { color: var(--txt-2); font-size: .93rem; flex-grow: 1; }

/* Fiche borne */
.borne-single__hero { background: var(--paper); padding: clamp(40px, 6vw, 80px) 0; }
.borne-single__in { display: grid; gap: clamp(26px, 4vw, 54px); }
@media (min-width: 860px) { .borne-single__in { grid-template-columns: .92fr 1.08fr; align-items: center; } }
.borne-single__stage { border-radius: var(--r-l); overflow: clip; }
.stage--single { aspect-ratio: 5 / 4; min-height: 320px; }
.borne-single__title { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 900; letter-spacing: -.03em; }
.borne-single__sub { color: var(--grey); font-weight: 600; font-size: .6em; }
.borne-single__usage { color: var(--txt-2); font-size: 1.05rem; max-width: 54ch; margin-bottom: 24px; }

/* Fiche secteur */
.secteur-single__layout { display: grid; gap: 40px; padding-top: clamp(40px, 6vw, 70px); padding-bottom: clamp(50px, 7vw, 90px); }
@media (min-width: 900px) { .secteur-single__layout { grid-template-columns: 1.5fr .8fr; align-items: start; } }
.benefits { list-style: none; display: grid; gap: 12px; margin: 18px 0 30px; }
.benefits li {
	display: flex; align-items: flex-start; gap: 12px;
	padding: 15px 18px;
	background: var(--paper); border-radius: var(--r-s);
	font-weight: 650;
}
.benefit__bolt { width: 15px; height: 15px; color: var(--yellow-deep); flex: none; margin-top: 4px; }
.side-card {
	position: sticky; top: calc(var(--head-h) + 20px);
	display: grid; gap: 16px; justify-items: start;
	padding: 26px;
	background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-m);
	box-shadow: var(--shadow-card);
}
.side-card__h { font-size: .8rem; font-weight: 850; text-transform: uppercase; letter-spacing: .14em; color: var(--grey); margin: 0; }
.side-card__borne { display: grid; gap: 10px; justify-items: center; text-decoration: none; width: 100%; }
.borne-svg--side { height: 170px; }
.side-card__cta { width: 100%; }

/* B2B / partenaire */
.b2b-args { background: var(--white); padding: clamp(56px, 8vw, 100px) 0; }
.b2b-args__grid { display: grid; gap: 30px 40px; }
@media (min-width: 760px) { .b2b-args__grid { grid-template-columns: 1fr 1fr; } }
.b2b-arg { border-left: 3px solid var(--yellow); padding-left: 22px; }
.b2b-arg__num { font-size: .82rem; font-weight: 900; color: var(--grey); letter-spacing: .1em; }
.b2b-arg h2 { font-size: 1.32rem; margin: 6px 0 8px; }
.b2b-arg p { color: var(--txt-2); font-size: .97rem; margin: 0; }
.b2b-args__content { margin-top: 40px; }

/* ---- Page contact : une action principale, deux accès directs ---- */
.page-hero--contact { padding-bottom: clamp(36px, 5vw, 56px); }
.reassure { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 24px 0 0; }
.reassure li { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .93rem; color: rgba(255, 255, 255, .85); }
.reassure__bolt { width: 13px; height: 13px; color: var(--yellow); flex: none; }

.contact-context {
	display: inline-flex; align-items: center; gap: 9px;
	margin: 22px 0 0; padding: 11px 18px;
	background: rgba(255, 225, 0, .1);
	border: 1.5px solid rgba(255, 225, 0, .35);
	border-radius: 999px;
	color: #fff; font-size: .93rem;
}
.contact-context__bolt { width: 13px; height: 13px; color: var(--yellow); flex: none; }
.contact-context strong { color: var(--yellow); }

.contact-zone { background: var(--black); color: var(--white); padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 8vw, 110px); }
.contact-grid { display: grid; gap: 26px; }
/* Calendly d'abord (action principale), coordonnées en appui à droite. */
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1.35fr .65fr; align-items: start; } }

.contact-cal { background: var(--ink); border: 1.5px solid var(--line-dark); border-radius: var(--r-l); padding: 10px; }
.contact-cal__head { padding: 20px 18px 12px; }
.contact-cal__badge { display: inline-flex; align-items: center; gap: 8px; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--yellow); margin-bottom: 10px; }
.contact-cal__badge .ui-ico { width: 15px; height: 15px; }
.contact-cal__title { font-size: clamp(1.3rem, 2.6vw, 1.75rem); font-weight: 860; letter-spacing: -.02em; color: #fff; margin: 0 0 6px; }
.contact-cal__head p { color: var(--grey-light); font-size: .96rem; margin: 0; }
.contact-cal .calendly-inline-widget { border-radius: var(--r-m); overflow: hidden; min-height: 660px; }

.contact-panel { position: sticky; top: calc(var(--head-h) + 20px); }
.contact-panel__h { font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .14em; color: var(--grey-light); margin: 0 0 14px; }
.contact-methods { list-style: none; display: grid; gap: 10px; margin: 0 0 18px; }
.contact-method { background: var(--ink); border: 1.5px solid var(--line-dark); border-radius: var(--r-m); transition: border-color .25s, transform .25s var(--ease); }
.contact-method:not(.contact-method--static):hover { border-color: rgba(255, 225, 0, .45); transform: translateY(-2px); }
.contact-method__link,
.contact-method--static { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; text-decoration: none; color: inherit; }
.contact-method__ico { flex: none; width: 42px; height: 42px; display: grid; place-items: center; background: var(--yellow); color: var(--black); border-radius: 11px; }
.contact-method__ico .ui-ico { width: 20px; height: 20px; }
.contact-method__body { display: flex; flex-direction: column; gap: 3px; }
.contact-method__label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--grey-light); }
.contact-method__label em { font-style: normal; color: var(--grey); text-transform: none; letter-spacing: 0; font-weight: 600; }
.contact-method__value { font-weight: 780; font-size: 1.04rem; color: #fff; word-break: break-word; }
.contact-method__link:hover .contact-method__value { color: var(--yellow); }
.contact-method__value--plain { font-weight: 650; font-size: .96rem; line-height: 1.5; }
.contact-panel__note { color: var(--grey); font-size: .9rem; margin: 0; }
.btn__ui-ico { width: 18px; height: 18px; flex: none; }

/* Formulaire partenaire */
.lead { background: var(--paper); padding: clamp(56px, 8vw, 110px) 0; }
.lead__in { display: grid; gap: 36px; }
@media (min-width: 920px) { .lead__in { grid-template-columns: .85fr 1.15fr; align-items: start; } }
.lead__title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 890; letter-spacing: -.03em; }
.lead__text { color: var(--txt-2); font-size: 1.03rem; }
.lead__points { list-style: none; display: grid; gap: 12px; margin-top: 26px; }
.lead__points li { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.lead__bolt { width: 15px; height: 15px; color: var(--yellow-deep); flex: none; }

.lead__form-box {
	background: var(--white);
	border: 1.5px solid var(--line); border-radius: var(--r-l);
	padding: clamp(22px, 4vw, 38px);
	box-shadow: var(--shadow-card);
}
.lead-form__row { display: grid; gap: 0 16px; }
@media (min-width: 560px) { .lead-form__row { grid-template-columns: 1fr 1fr; } }
.lead-form p { margin-bottom: 16px; }
.lead-form label { display: block; font-size: .84rem; font-weight: 800; margin-bottom: 6px; }
.lead-form input:not([type="checkbox"]), .lead-form select, .lead-form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1.5px solid var(--line); border-radius: 11px;
	font: inherit; font-size: .97rem;
	background: var(--white); color: var(--txt);
	transition: border-color .2s, box-shadow .2s;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
	outline: none; border-color: var(--black);
	box-shadow: 0 0 0 3.5px rgba(255, 225, 0, .45);
}
.lead-form__hp { position: absolute !important; left: -9999px !important; }
.lead-form__consent label { display: flex; gap: 10px; align-items: flex-start; font-weight: 550; font-size: .85rem; color: var(--txt-2); }
.lead-form__consent input { margin-top: 3px; accent-color: var(--black); }
.lead-form__submit { width: 100%; }

.form-notice { padding: 15px 19px; border-radius: var(--r-s); margin-bottom: 20px; font-size: .95rem; }
.form-notice strong { display: block; }
.form-notice--ok { background: #E9F9EF; border: 1.5px solid #9BE3B4; color: #17603A; }
.form-notice--err { background: #FDECEC; border: 1.5px solid #F3B4B4; color: #8E2323; }

/* Divers */
::selection { background: var(--yellow); color: var(--black); }

/* =========================================================
   ARTICLE DE BLOG — confort de lecture
   ========================================================= */
.entry { padding-bottom: clamp(50px, 7vw, 80px); }
.entry-content { font-size: 1.08rem; line-height: 1.75; color: var(--txt); }
.entry-content > * + * { margin-top: 1.15em; }
.entry-content > h2,
.entry-content > h3 { margin-top: 2em; }

.entry-content h2 {
	font-size: clamp(1.45rem, 3vw, 1.95rem);
	font-weight: 860; letter-spacing: -.025em; line-height: 1.15;
	padding-top: .5em;
}
.entry-content h3 { font-size: clamp(1.2rem, 2.2vw, 1.4rem); font-weight: 830; }
.entry-content h4 { font-size: 1.08rem; font-weight: 820; }

/* Chapeau : le premier paragraphe se détache */
.entry-content > p:first-child {
	font-size: 1.2rem; line-height: 1.6; font-weight: 550;
	color: var(--txt-2);
	padding-bottom: .3em;
}

.entry-content a { color: inherit; text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 2.5px; text-underline-offset: 3px; }
.entry-content a:hover { background: rgba(255, 225, 0, .22); }

.entry-content strong { font-weight: 800; }
.entry-content em { font-style: italic; }

.entry-content ul, .entry-content ol { padding-left: 1.35em; }
.entry-content li + li { margin-top: .5em; }
.entry-content ul > li::marker { color: var(--yellow-deep); }
.entry-content ol > li::marker { color: var(--yellow-deep); font-weight: 800; }

.entry-content blockquote {
	margin: 1.8em 0; padding: 4px 0 4px 26px;
	border-left: 4px solid var(--yellow);
	font-size: 1.22rem; font-weight: 650; line-height: 1.5;
	color: var(--txt);
}
.entry-content blockquote p:last-child { margin-bottom: 0; }
.entry-content blockquote cite { display: block; margin-top: .6em; font-size: .9rem; font-style: normal; font-weight: 650; color: var(--grey); }

.entry-content img,
.entry-content .wp-block-image img { border-radius: var(--r-m); }
.entry-content figure { margin: 1.8em 0; }
.entry-content figcaption { margin-top: .7em; font-size: .88rem; color: var(--grey); text-align: center; }

.entry-content hr {
	border: none; height: 1px; background: var(--line);
	margin: 2.4em 0;
}

.entry-content code {
	background: var(--paper); border: 1px solid var(--line);
	padding: .12em .4em; border-radius: 5px;
	font-size: .92em;
}
.entry-content pre { background: var(--ink); color: #fff; padding: 18px 20px; border-radius: var(--r-m); overflow-x: auto; }
.entry-content pre code { background: none; border: none; color: inherit; }

.entry-content table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.entry-content th, .entry-content td { padding: 11px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.entry-content th { font-weight: 820; background: var(--paper); }
/* Les tableaux larges défilent seuls plutôt que de casser la page */
.entry-content .wp-block-table { overflow-x: auto; }

/* Blocs WordPress natifs */
.entry-content .wp-block-pullquote { border-top: 3px solid var(--yellow); border-bottom: 3px solid var(--yellow); padding: 1.4em 0; text-align: center; }
.entry-content .wp-block-button__link { background: var(--black); color: #fff; border-radius: 999px; padding: 13px 24px; font-weight: 750; text-decoration: none; }
.entry-content .wp-block-quote { border-left: 4px solid var(--yellow); padding-left: 26px; }
.entry-content .alignleft { float: left; margin: .3em 1.6em 1.2em 0; max-width: 45%; }
.entry-content .alignright { float: right; margin: .3em 0 1.2em 1.6em; max-width: 45%; }
.entry-content .aligncenter { margin-inline: auto; }
.entry-content .alignwide,
.entry-content .alignfull { margin-inline: calc(50% - 50vw); max-width: 100vw; }
@media (min-width: 1100px) {
	.entry-content .alignwide { margin-inline: -80px; max-width: calc(100% + 160px); }
}
.entry-content .wp-caption { max-width: 100%; }
.entry-content .screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; }

/* Fin d'article : partage + retour */
.entry__share { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 40px; padding-top: 26px; border-top: 1.5px solid var(--line); }
.entry__share-label { font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; color: var(--grey); margin: 0; }
.entry__share-btn {
	display: inline-grid; place-items: center;
	width: 40px; height: 40px;
	border: 1.5px solid var(--line); border-radius: 50%;
	color: var(--txt); text-decoration: none;
	transition: border-color .2s, background .2s, color .2s, transform .2s var(--ease);
}
.entry__share-btn:hover { border-color: var(--black); background: var(--black); color: var(--yellow); transform: translateY(-2px); }
.entry__share-btn svg { width: 17px; height: 17px; }

/* Fil d'ariane */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .86rem; color: var(--grey-light); margin: 0 0 18px; }
.breadcrumb a { color: var(--grey-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb__sep { opacity: .5; }

/* Logo officiel (PNG livré avec le thème) */
.vc-logo__img { width: 40px; height: 40px; border-radius: 11px; display: block; transition: transform .3s var(--ease); }
.vc-logo:hover .vc-logo__img { transform: rotate(-6deg) scale(1.05); }
img.site-foot__mark { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px; }

/* Carte en phase de lancement (pas encore de lieu publié) */
.carte-full__layout--solo { grid-template-columns: 1fr !important; }
.carte-full__zones { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }

/* Page Secteurs complète */
.secteurs-groupe { margin-bottom: clamp(40px, 6vw, 66px); }
.secteurs-groupe__head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.secteurs-groupe__badge {
	flex: none; display: grid; place-items: center;
	width: 46px; height: 46px; border-radius: 13px;
	background: var(--black); color: var(--yellow);
	font-weight: 900; font-size: 1.2rem;
}
.secteurs-groupe__title { font-size: clamp(1.25rem, 2.6vw, 1.65rem); font-weight: 850; margin: 0 0 4px; }
.secteurs-groupe__text { color: var(--txt-2); font-size: .97rem; margin: 0; max-width: 62ch; }
.secteurs-note {
	display: flex; align-items: center; gap: 11px;
	margin: 0; padding: 20px 24px;
	background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-m);
	font-weight: 650;
}
.secteurs-note__bolt { width: 15px; height: 15px; color: var(--yellow-deep); flex: none; }

/* Pied de page : colonne légale */
.site-foot__made { color: var(--grey); font-size: .85rem; margin: 0; }

/* Extension possible (borne S) */
.selector__extension {
	display: flex; align-items: center; gap: 10px;
	margin: -8px 0 22px; padding: 12px 16px;
	background: rgba(255, 225, 0, .14);
	border: 1.5px solid rgba(255, 225, 0, .45);
	border-radius: var(--r-s);
	font-weight: 700; font-size: .93rem;
}
.selector__extension-bolt { width: 14px; height: 14px; color: var(--yellow-deep); flex: none; }

/* Note sous le sélecteur de bornes (versions QR code) */
.bornes__note {
	display: flex; align-items: center; gap: 11px;
	margin: clamp(26px, 4vw, 40px) 0 0;
	padding: 15px 20px;
	background: var(--white);
	border: 1.5px solid var(--line);
	border-radius: var(--r-m);
	font-weight: 620; font-size: .95rem; color: var(--txt-2);
}
.bornes__note-bolt { width: 14px; height: 14px; color: var(--yellow-deep); flex: none; }

/* Carte de secteur d'usine (pas de fiche derrière : pas de curseur main) */
.sec-card__link--static { cursor: default; }
.sec-card__link--static:hover { transform: none; border-color: var(--line); box-shadow: none; }
.borne-card__link--static { cursor: default; }
.borne-card__link--static:hover .borne-card__stage { transform: none; }
