/* ==========================================================================
   GD Studio — design system « Circuit »
   Papier, graphite, signal. Unbounded / Instrument Sans / IBM Plex Mono.
   ========================================================================== */

@font-face { font-family: "Unbounded"; src: url("../fonts/unbounded-var.woff2") format("woff2"); font-weight: 200 900; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("../fonts/instrument-sans-var.woff2") format("woff2"); font-weight: 400 700; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("../fonts/plex-mono-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("../fonts/plex-mono-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }

:root {
	--paper: #F3F4F1;
	--paper-2: #E8EAE4;
	--white: #FBFBF9;
	--ink: #16181D;
	--ink-2: #4A4E58;
	--ink-3: #6E727C;
	--line: #D5D8D0;
	--signal: #FF6B1A;
	--signal-soft: #FFE3D2;
	--dark: #16181D;
	--dark-2: #20232A;
	--dark-line: #363A45;
	--on-dark: #F3F4F1;
	--on-dark-2: #B0B4BE;
	--ok: #1E7F52;
	--warn: #A8660B;
	--bad: #C0392B;

	--f-display: "Unbounded", "Arial Black", system-ui, sans-serif;
	--f-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--f-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

	--fs-xs: .78rem;
	--fs-sm: .9rem;
	--fs-base: 1.0625rem;
	--fs-lg: 1.2rem;
	--fs-h3: 1.2rem;
	--fs-h2: clamp(1.55rem, 1.1rem + 1.9vw, 2.45rem);
	--fs-h1: clamp(2rem, 1.2rem + 3.6vw, 3.75rem);

	--gutter: clamp(20px, 4vw, 40px);
	--section: clamp(64px, 5rem + 3vw, 128px);
	--radius: 6px;
	--radius-lg: 10px;
	--shadow: 0 1px 0 rgba(22, 24, 29, .04), 0 12px 32px -18px rgba(22, 24, 29, .28);
	--ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font: 400 var(--fs-base)/1.65 var(--f-body);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-color: var(--signal); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }
:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--signal); color: var(--ink); }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; text-wrap: balance; }
h1, h2 { font-family: var(--f-display); font-weight: 600; letter-spacing: -.035em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
.icon { width: 1.1em; height: 1.1em; flex: none; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: var(--radius); }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }
.section { padding-block: var(--section); }
.section--tight { padding-block: calc(var(--section) * .6); }
.section--alt { background: var(--white); border-block: 1px solid var(--line); }
.section--dark { background: var(--dark); color: var(--on-dark); }
.section__head { display: grid; gap: 14px; max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section__lead { color: var(--ink-2); font-size: var(--fs-lg); max-width: 62ch; }
.section--dark .section__lead { color: var(--on-dark-2); }

/* Kicker : étiquette technique avec le petit carré signal */
.kicker {
	display: inline-flex; align-items: center; gap: 10px;
	font: 500 var(--fs-xs)/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2);
}
.kicker::before { content: ""; width: 8px; height: 8px; background: var(--signal); }
.section--dark .kicker { color: var(--on-dark-2); }

/* Boutons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 48px; padding: 12px 20px; border-radius: var(--radius);
	font: 600 1rem/1.2 var(--f-body); text-decoration: none; cursor: pointer;
	border: 1.5px solid transparent; transition: transform .15s var(--ease), background .15s, color .15s, border-color .15s;
}
.btn .icon { transition: transform .2s var(--ease); }
.btn:hover .icon { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: #000; }
.btn--signal { background: var(--signal); color: var(--ink); }
.btn--signal:hover { background: #FF7F38; }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--ghost-light { border-color: var(--on-dark-2); color: var(--on-dark); }
.btn--ghost-light:hover { border-color: var(--on-dark); background: rgba(255, 255, 255, .06); }
.btn--block { width: 100%; }
.section--dark .btn--primary, .side-card .btn--primary { background: var(--on-dark); color: var(--ink); }
.section--dark .btn--primary:hover { background: #fff; }
.section--dark .btn--ghost { border-color: var(--on-dark-2); color: var(--on-dark); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* En-tête */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: color-mix(in srgb, var(--paper) 88%, transparent);
	backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px);
	border-bottom: 1px solid transparent; transition: border-color .2s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; }
.logo { display: inline-flex; align-items: baseline; font: 700 1.08rem/1 var(--f-display); letter-spacing: -.03em; text-decoration: none; white-space: nowrap; }
.logo__slash { color: var(--signal); margin-inline: 1px; }
.logo__agence { font-weight: 500; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav__list { display: flex; list-style: none; gap: 2px; }
.nav__link { display: block; padding: 10px 12px; border-radius: var(--radius); font-weight: 500; font-size: .96rem; text-decoration: none; color: var(--ink-2); }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ink); background: var(--paper-2); }
.nav__cta { margin-left: 10px; min-height: 42px; padding: 9px 16px; font-size: .95rem; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; margin-right: -10px; color: var(--ink); cursor: pointer; }
.nav-toggle .icon { width: 26px; height: 26px; }

@media (max-width: 1000px) {
	.nav-toggle { display: inline-flex; }
	.nav {
		position: fixed; inset: 72px 0 auto 0; z-index: 49;
		flex-direction: column; align-items: stretch; gap: 16px;
		padding: 20px var(--gutter) 28px; background: var(--paper); border-bottom: 1px solid var(--line);
		transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s var(--ease), visibility 0s .2s;
		max-height: calc(100dvh - 72px); overflow-y: auto;
	}
	.nav.is-open { opacity: 1; transform: none; visibility: visible; transition: opacity .2s, transform .2s var(--ease); }
	.nav__list { flex-direction: column; }
	.nav__link { padding: 14px 4px; font-size: 1.1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
	.nav__cta { margin: 0; }
}

/* Offre de lancement */
.launch {
	display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
	font: 500 var(--fs-xs)/1.4 var(--f-mono); letter-spacing: .02em; color: var(--ink-2);
	padding: 8px 12px; border: 1px dashed var(--ink-3); border-radius: var(--radius);
}
.launch strong { color: var(--ink); font-weight: 500; }
.launch__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 0 rgba(255, 107, 26, .6); animation: ping 2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(255, 107, 26, .55); } 80%, 100% { box-shadow: 0 0 0 8px rgba(255, 107, 26, 0); } }

/* Héros d'accueil */
.hero { padding-block: clamp(40px, 6vw, 88px) clamp(56px, 7vw, 104px); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__title { font-size: var(--fs-h1); }
.hero__title mark { background: var(--signal); color: var(--ink); padding: 0 .12em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero__lead { margin-top: 22px; font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); color: var(--ink-2); max-width: 54ch; }
.hero .actions { margin-top: 30px; }
.hero .launch { margin-top: 26px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 28px; list-style: none; font-size: var(--fs-sm); color: var(--ink-2); }
.hero__proof li { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof .icon { color: var(--ok); }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

/* Schéma de flux (signature visuelle) */
.flow {
	background: var(--dark); color: var(--on-dark); border-radius: var(--radius-lg); padding: 22px;
	font: 400 .82rem/1.5 var(--f-mono); box-shadow: 0 30px 60px -30px rgba(22, 24, 29, .55);
	display: grid; gap: 0;
}
.flow__title { display: flex; justify-content: space-between; color: var(--on-dark-2); font-size: var(--fs-xs); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.flow__live { display: inline-flex; align-items: center; gap: 6px; color: var(--signal); }
.flow__live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.flow__node { display: flex; justify-content: space-between; align-items: center; gap: 10px; border: 1px solid var(--dark-line); border-radius: var(--radius); padding: 10px 12px; background: var(--dark-2); }
.flow__node b { font-weight: 500; color: var(--signal); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.flow__wire { position: relative; height: 22px; margin-left: 18px; border-left: 1.5px dashed var(--dark-line); }
.flow__wire::after { content: ""; position: absolute; left: -4.5px; top: 0; width: 7.5px; height: 7.5px; border-radius: 50%; background: var(--signal); animation: travel 2.4s var(--ease) infinite; }
.flow__wire:nth-of-type(4)::after { animation-delay: .8s; }
.flow__wire:nth-of-type(6)::after { animation-delay: 1.6s; }
@keyframes travel { 0% { top: -2px; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { top: 16px; opacity: 0; } }
.flow__kpi { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--dark-line); color: var(--on-dark-2); }
.flow__kpi strong { font: 600 1.5rem/1 var(--f-display); color: var(--on-dark); letter-spacing: -.02em; }

/* Bandeau de réassurance */
.proofbar { border-block: 1px solid var(--line); background: var(--white); }
.proofbar__list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; }
.proofbar__item { padding: 22px 20px; display: grid; gap: 4px; border-left: 1px solid var(--line); }
.proofbar__item:first-child { border-left: 0; padding-left: 0; }
.proofbar__num { font: 600 1.35rem/1.1 var(--f-display); letter-spacing: -.02em; }
.proofbar__label { font-size: var(--fs-sm); color: var(--ink-2); }
@media (max-width: 820px) {
	.proofbar__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.proofbar__item { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
	.proofbar__item:nth-child(-n+2) { border-top: 0; }
}

/* Pôles */
.poles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.pole {
	position: relative; display: grid; gap: 14px; align-content: start;
	padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
	text-decoration: none; transition: border-color .2s, transform .2s var(--ease), box-shadow .2s;
}
.pole:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow); }
.pole__icon { width: 44px; height: 44px; display: grid; place-items: center; background: var(--paper-2); border-radius: var(--radius); }
.pole__icon .icon { width: 22px; height: 22px; }
.pole__label { font: 600 1.25rem/1.15 var(--f-display); letter-spacing: -.02em; }
.pole__text { color: var(--ink-2); font-size: .98rem; }
.pole__list { list-style: none; display: grid; gap: 8px; font-size: var(--fs-sm); }
.pole__list li { display: flex; justify-content: space-between; gap: 12px; padding-top: 8px; border-top: 1px dashed var(--line); }
.pole__list span:last-child { font-family: var(--f-mono); white-space: nowrap; }
.pole__more { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; margin-top: 4px; }
@media (max-width: 900px) { .poles { grid-template-columns: 1fr; } }

/* Problèmes → solution */
.pains { display: grid; gap: 10px; list-style: none; }
.pains li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.pains li::before { content: "×"; flex: none; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--paper-2); color: var(--bad); font: 600 .9rem/1 var(--f-mono); margin-top: 2px; }

/* Offres */
.offers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.offer {
	display: flex; flex-direction: column; gap: 16px; padding: 28px;
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
	scroll-margin-top: 96px;
}
.offer--featured { border: 2px solid var(--ink); box-shadow: var(--shadow); position: relative; }
.offer--featured::before {
	content: "Le plus choisi"; position: absolute; top: -12px; left: 24px;
	background: var(--signal); color: var(--ink); font: 500 var(--fs-xs)/1 var(--f-mono); letter-spacing: .06em; text-transform: uppercase; padding: 6px 10px; border-radius: 4px;
}
.offer__head { display: grid; gap: 6px; }
.offer__name { font: 600 1.3rem/1.15 var(--f-display); letter-spacing: -.02em; }
.offer__for { color: var(--ink-2); font-size: var(--fs-sm); }
.offer__alt { font-size: var(--fs-sm); color: var(--ink-2); margin-top: -8px; }
.offer__delay { display: inline-flex; align-items: center; gap: 8px; font: 500 var(--fs-sm) var(--f-mono); color: var(--ink-2); }
.offer .checks { flex: 1; }
.offer .btn { margin-top: 4px; }
.offer__pay { display: flex; gap: 8px; align-items: flex-start; font-size: var(--fs-xs); line-height: 1.5; color: var(--ink-2); margin-top: -4px; }
.offer__pay .icon { color: var(--ok); margin-top: 2px; }
@media (max-width: 960px) { .offers { grid-template-columns: 1fr; max-width: 560px; } }

.price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; }
.price__from { width: 100%; font: 500 var(--fs-xs) var(--f-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); }
.price__old { font: 500 1.05rem var(--f-mono); color: var(--ink-3); }
.price__now { font: 600 2.3rem/1 var(--f-display); letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.price__unit { font-size: var(--fs-sm); color: var(--ink-2); }

.checks { list-style: none; display: grid; gap: 10px; font-size: .98rem; }
.checks li { display: flex; gap: 10px; align-items: flex-start; }
.checks .icon { color: var(--ok); margin-top: .25em; }

/* Options */
.addons { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; margin-top: 16px; }
.addon { display: grid; gap: 4px; padding: 18px 20px; border: 1px dashed var(--ink-3); border-radius: var(--radius); }
.addon__top { display: flex; justify-content: space-between; gap: 10px; font-weight: 600; }
.addon__price { font: 500 var(--fs-sm) var(--f-mono); white-space: nowrap; }
.addon p { color: var(--ink-2); font-size: var(--fs-sm); }

/* Étapes (vraie séquence) */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; counter-reset: step; }
.step { counter-increment: step; display: grid; gap: 10px; align-content: start; padding-top: 18px; border-top: 2px solid var(--ink); }
.step::before { content: "0" counter(step); font: 500 var(--fs-sm) var(--f-mono); color: var(--signal); }
.section--dark .step { border-top-color: var(--on-dark-2); }
.step p { color: var(--ink-2); font-size: .98rem; }
.section--dark .step p { color: var(--on-dark-2); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* FAQ */
.faq { display: grid; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; cursor: pointer; list-style: none; font-weight: 600; font-size: 1.05rem; }
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { transition: transform .2s var(--ease); color: var(--ink-2); }
.faq__item[open] .faq__icon { transform: rotate(45deg); color: var(--signal); }
.faq__a { padding: 0 0 22px; color: var(--ink-2); max-width: 70ch; }

/* Bandeau CTA sombre */
.band { background: var(--dark); color: var(--on-dark); padding-block: clamp(48px, 7vw, 88px); }
.band__inner { display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 32px; align-items: center; }
.band__title { font-size: var(--fs-h2); }
.band__text { margin-top: 14px; color: var(--on-dark-2); max-width: 58ch; }
.band__actions { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 860px) { .band__inner { grid-template-columns: 1fr; } .band__actions { flex-direction: row; flex-wrap: wrap; } }

/* Engagements */
.guarantees { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; list-style: none; }
.guarantee { display: grid; gap: 8px; align-content: start; }
.guarantee .icon { width: 28px; height: 28px; color: var(--signal); }
.guarantee p { color: var(--ink-2); font-size: .96rem; }
.section--dark .guarantee p { color: var(--on-dark-2); }
@media (max-width: 900px) { .guarantees { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .guarantees { grid-template-columns: 1fr; } }

/* Split : texte + visuel */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.stack { display: grid; gap: 18px; align-content: start; }

/* Outils */
.tools { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.tool { display: grid; gap: 12px; align-content: start; padding: 26px; border: 1px solid var(--dark-line); border-radius: var(--radius-lg); background: var(--dark-2); text-decoration: none; color: var(--on-dark); transition: border-color .2s; }
.tool:hover { border-color: var(--signal); }
.tool .icon { width: 28px; height: 28px; color: var(--signal); }
.tool__name { font: 600 1.15rem/1.2 var(--f-display); letter-spacing: -.02em; }
.tool p { color: var(--on-dark-2); font-size: .96rem; }
.tool__go { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--on-dark); }
@media (max-width: 900px) { .tools { grid-template-columns: 1fr; } }

/* Scanner */
.scanner { display: grid; gap: 18px; }
.scanner__form { display: flex; gap: 10px; flex-wrap: wrap; }
.scanner__field { flex: 1 1 260px; position: relative; }
.scanner__field input { width: 100%; }
.scanner__result { display: grid; gap: 22px; padding: 24px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); color: var(--ink); }
.section--dark .scanner__result { background: var(--dark-2); border-color: var(--dark-line); color: var(--on-dark); }
.gauge { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.gauge__ring { --v: 0; width: 112px; height: 112px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--c, var(--signal)) calc(var(--v) * 1%), var(--paper-2) 0); flex: none; }
.section--dark .gauge__ring { background: conic-gradient(var(--c, var(--signal)) calc(var(--v) * 1%), var(--dark-line) 0); }
.gauge__ring span { width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center; background: var(--white); font: 600 1.8rem/1 var(--f-display); letter-spacing: -.03em; }
.section--dark .gauge__ring span { background: var(--dark-2); }
.gauge__verdict { font: 600 1.1rem/1.3 var(--f-body); }
.gauge__host { font: 400 var(--fs-sm) var(--f-mono); color: var(--ink-3); }
.section--dark .gauge__host { color: var(--on-dark-2); }
.bars { display: grid; gap: 10px; }
.bar { display: grid; grid-template-columns: 120px 1fr 40px; gap: 12px; align-items: center; font-size: var(--fs-sm); }
.bar__track { height: 8px; border-radius: 4px; background: var(--paper-2); overflow: hidden; }
.section--dark .bar__track { background: var(--dark-line); }
.bar__fill { height: 100%; width: 0; background: var(--signal); border-radius: 4px; transition: width .8s var(--ease); }
.bar__val { font-family: var(--f-mono); text-align: right; }
.todo { display: grid; gap: 10px; list-style: none; counter-reset: todo; }
.todo li { counter-increment: todo; display: grid; grid-template-columns: 28px 1fr; gap: 10px; font-size: .96rem; }
.todo li::before { content: counter(todo); width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--signal); color: var(--ink); font: 500 var(--fs-xs)/1 var(--f-mono); }
.todo b { display: block; }
.todo span { color: var(--ink-2); }
.section--dark .todo span { color: var(--on-dark-2); }
.gate { display: grid; gap: 12px; padding-top: 18px; border-top: 1px dashed var(--line); }
.section--dark .gate { border-top-color: var(--dark-line); }

/* Formulaires */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label, .field__label { font-weight: 600; font-size: .95rem; }
.field__hint { font-size: var(--fs-xs); color: var(--ink-3); }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], select, textarea {
	width: 100%; min-height: 48px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius);
	background: var(--white); color: var(--ink); font: 400 1rem/1.4 var(--f-body); transition: border-color .15s;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px var(--signal-soft); }
.section--dark input[type="url"], .section--dark input[type="email"], .section--dark input[type="text"] { background: var(--dark-2); border-color: var(--dark-line); color: var(--on-dark); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: var(--fs-sm); color: var(--ink-2); }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--ink); flex: none; }
.section--dark .check { color: var(--on-dark-2); }
.hp { position: absolute; left: -9999px; }
.notice { padding: 14px 16px; border-radius: var(--radius); font-size: .96rem; }
.notice--ok { background: #E1F2E8; color: var(--ok); }
.notice--err { background: #FBE4E1; color: var(--bad); }

/* Calculateur ROI et configurateur */
.calc { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 24px; align-items: start; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }
.calc__panel { display: grid; gap: 22px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.range { display: grid; gap: 8px; }
.range__top { display: flex; justify-content: space-between; gap: 12px; font-weight: 600; font-size: .98rem; }
.range__val { font: 500 .98rem var(--f-mono); white-space: nowrap; }
input[type="range"] { width: 100%; accent-color: var(--ink); height: 28px; }
.calc__out { position: sticky; top: 96px; display: grid; gap: 18px; padding: 28px; background: var(--dark); color: var(--on-dark); border-radius: var(--radius-lg); }
.calc__big { font: 600 clamp(2.2rem, 1.6rem + 2vw, 3rem)/1 var(--f-display); letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.calc__line { display: flex; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--dark-line); color: var(--on-dark-2); font-size: var(--fs-sm); }
.calc__line b { color: var(--on-dark); font: 500 1rem var(--f-mono); }
.calc__note { font-size: var(--fs-xs); color: var(--on-dark-2); }
.opts { display: grid; gap: 10px; }
.opt { display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: start; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius); cursor: pointer; transition: border-color .15s, background .15s; }
.opt:hover { border-color: var(--ink-3); }
.opt:has(input:checked) { border-color: var(--ink); background: var(--paper); }
.opt input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--ink); }
.opt b { display: block; font-weight: 600; }
.opt small { color: var(--ink-2); font-size: var(--fs-sm); }
.opt__price { font: 500 var(--fs-sm) var(--f-mono); white-space: nowrap; }
.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg label { cursor: pointer; }
.seg input { position: absolute; opacity: 0; }
.seg span { display: inline-block; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: var(--radius); font-weight: 500; }
.seg input:checked + span { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.seg input:focus-visible + span { outline: 3px solid var(--signal); outline-offset: 2px; }

/* Pages intérieures */
.phero { padding-block: clamp(32px, 5vw, 64px) clamp(40px, 6vw, 72px); border-bottom: 1px solid var(--line); }
.phero .wrap { display: grid; gap: 16px; }
.phero__title { max-width: 22ch; }
.answer {
	max-width: 72ch; margin-top: 6px; padding: 18px 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
	color: var(--ink-2); font-size: 1.02rem;
}
.answer::before { content: "En bref"; display: block; margin-bottom: 6px; font: 500 var(--fs-xs)/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; font: 400 var(--fs-xs) var(--f-mono); color: var(--ink-3); }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--line); }
.crumbs a { text-decoration: none; color: var(--ink-2); }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }

/* Tableau tarifs */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: .98rem; }
.table th, .table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table thead th { font: 500 var(--fs-xs) var(--f-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); background: var(--paper); }
.table tbody th { font-weight: 600; }
.table tbody th small { display: block; font-weight: 400; color: var(--ink-2); font-size: var(--fs-sm); }
.table td.num { font-family: var(--f-mono); white-space: nowrap; font-variant-numeric: tabular-nums; }
.table tr:last-child > * { border-bottom: 0; }
.table .group th { background: var(--paper-2); font: 600 var(--fs-sm) var(--f-body); }
.table a { font-weight: 600; }

/* Plugins */
.plugins { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.plugin { display: grid; gap: 10px; align-content: start; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.plugin__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.plugin__tag { font: 500 var(--fs-xs) var(--f-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); background: var(--paper-2); padding: 4px 8px; border-radius: 4px; }
.plugin__price { font: 600 1.05rem var(--f-mono); }
.plugin__name { font: 600 1.15rem/1.2 var(--f-display); letter-spacing: -.02em; }
.plugin p { color: var(--ink-2); font-size: .96rem; }
.plugin a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; margin-top: 6px; }
@media (max-width: 960px) { .plugins { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .plugins { grid-template-columns: 1fr; } }

/* Blog */
.posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.post-card { display: grid; gap: 12px; align-content: start; text-decoration: none; }
.post-card__img { aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; background: var(--paper-2); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.post-card__meta { font: 400 var(--fs-xs) var(--f-mono); color: var(--ink-3); }
.post-card__title { font-size: 1.15rem; line-height: 1.3; }
.post-card:hover .post-card__title { text-decoration: underline; text-decoration-color: var(--signal); text-underline-offset: 3px; }
.post-card p { color: var(--ink-2); font-size: .96rem; }
@media (max-width: 900px) { .posts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 580px) { .posts { grid-template-columns: 1fr; } }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; font-family: var(--f-mono); }
.pagination .page-numbers { padding: 8px 14px; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; }
.pagination .current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.empty { padding: 40px; text-align: center; color: var(--ink-2); border: 1px dashed var(--line); border-radius: var(--radius-lg); }

/* Contenu éditorial (articles, pages légales) */
.prose { font-size: 1.1rem; line-height: 1.75; max-width: 70ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: 1.55rem; margin-top: 2em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose blockquote { margin: 1.6em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--signal); color: var(--ink-2); }
.prose img, .prose figure { border-radius: var(--radius); }
.prose table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.prose th, .prose td { border-bottom: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.prose code { font: .9em var(--f-mono); background: var(--paper-2); padding: .1em .35em; border-radius: 4px; }
.prose pre { overflow-x: auto; background: var(--dark); color: var(--on-dark); padding: 18px; border-radius: var(--radius); }
.prose pre code { background: none; padding: 0; }
.prose .gd-cta { margin: 2.2em 0; padding: 22px 24px; background: var(--dark); color: var(--on-dark); border-radius: var(--radius-lg); }
.prose .gd-cta > * + * { margin-top: .5em; }
.prose .gd-cta p { color: var(--on-dark-2); font-size: 1rem; }
.prose .gd-cta p:first-child { color: var(--on-dark); font-size: 1.1rem; }
.prose .gd-cta a { color: var(--on-dark); font-weight: 600; text-decoration-color: var(--signal); }
.prose .wp-block-table { overflow-x: auto; margin: 1.6em 0; }
.prose thead th { font: 500 var(--fs-xs) var(--f-mono); text-transform: uppercase; letter-spacing: .06em; color: var(--ink-2); background: var(--paper-2); }
.prose h2 + p, .prose h3 + p { margin-top: .6em; }
.article-head { display: grid; gap: 16px; max-width: 820px; }
.article-meta { font: 400 var(--fs-sm) var(--f-mono); color: var(--ink-3); }
.article-cover { margin-top: 36px; border-radius: var(--radius-lg); overflow: hidden; }

/* À propos */
.founder { display: grid; grid-template-columns: 160px 1fr; gap: 28px; align-items: start; }
.founder__photo { width: 160px; aspect-ratio: 1; border-radius: var(--radius-lg); background: var(--paper-2); display: grid; place-items: center; font: 700 2.4rem var(--f-display); color: var(--ink-3); }
@media (max-width: 560px) { .founder { grid-template-columns: 1fr; } }
.stackgrid { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.stackgrid li { font: 500 var(--fs-sm) var(--f-mono); padding: 6px 10px; border: 1px solid var(--line); border-radius: 4px; background: var(--white); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.side-card { display: grid; gap: 14px; padding: 26px; border-radius: var(--radius-lg); background: var(--dark); color: var(--on-dark); }
.side-card p { color: var(--on-dark-2); }
.side-card .icon { color: var(--signal); }
.side-list { list-style: none; display: grid; gap: 12px; }
.side-list li { display: flex; gap: 10px; align-items: flex-start; }

/* Pied de page */
.site-footer { background: var(--dark); color: var(--on-dark-2); padding-block: 64px 32px; font-size: .96rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.site-footer .logo { color: var(--on-dark); font-size: 1.2rem; }
.footer-tag { margin-top: 14px; max-width: 34ch; }
.footer-title { font: 500 var(--fs-xs) var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 14px; }
.footer-list { list-style: none; display: grid; gap: 10px; }
.footer-list a { text-decoration: none; }
.footer-list a:hover { color: var(--on-dark); text-decoration: underline; text-decoration-color: var(--signal); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--dark-line); font: 400 var(--fs-xs) var(--f-mono); }
.footer-bottom a { text-decoration: none; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* Barre CTA mobile collante */
.mobile-cta { display: none; }
@media (max-width: 760px) {
	.mobile-cta {
		display: flex; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
		padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px)); background: var(--paper); border-top: 1px solid var(--line);
		transform: translateY(110%); transition: transform .25s var(--ease);
	}
	.mobile-cta.is-visible { transform: none; }
	.mobile-cta .btn { flex: 1; min-height: 46px; padding-inline: 10px; font-size: .95rem; }
	body { padding-bottom: 72px; }
}

/* Utilitaires */
.mt-s { margin-top: 12px; } .mt-m { margin-top: 24px; } .mt-l { margin-top: 48px; }
.muted { color: var(--ink-2); }
.mono { font-family: var(--f-mono); }
.center { text-align: center; }
.two-col { columns: 2 320px; column-gap: 48px; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ── Article (v2) : colonne de lecture centrée, sommaire, emplacements discrets ── */
.readbar { position: fixed; inset: 0 0 auto; height: 3px; z-index: 60; pointer-events: none; }
.readbar span { display: block; height: 100%; background: var(--signal); transform: scaleX(0); transform-origin: 0 50%; }
.article-hero { padding-block: clamp(32px, 5vw, 64px) clamp(28px, 4vw, 44px); }
.article-hero__inner { display: grid; gap: 18px; justify-items: center; text-align: center; max-width: 880px; }
.article-hero .crumbs li[aria-current] { display: none; }
.article-hero .crumbs ol { justify-content: center; }
.article-hero__cat { text-decoration: none; }
.article-hero__cat:hover { color: var(--ink); }
.article-hero__title { font-size: clamp(1.9rem, 1.1rem + 3vw, 3.2rem); line-height: 1.08; max-width: 24ch; }
.article-hero__lead { font-size: clamp(1.08rem, 1rem + .35vw, 1.25rem); color: var(--ink-2); max-width: 62ch; }
.byline { display: flex; align-items: center; gap: 12px; margin-top: 4px; text-align: left; }
.byline__avatar { display: inline-grid; place-items: center; width: 40px; height: 40px; flex: none; border-radius: 50%; background: var(--ink); color: var(--paper); font: 600 1rem/1 var(--f-display); }
.byline__avatar--lg { width: 56px; height: 56px; font-size: 1.3rem; }
.byline__text { display: grid; gap: 2px; font-size: var(--fs-sm); line-height: 1.4; }
.byline__text span { font: 400 var(--fs-xs)/1.5 var(--f-mono); color: var(--ink-3); }

.article-cover { max-width: 1080px; }
.article-cover img { display: block; width: 100%; aspect-ratio: 16 / 8; object-fit: cover; border-radius: var(--radius-lg); background: var(--paper-2); }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; max-width: 760px; padding-block: clamp(32px, 5vw, 56px) clamp(48px, 6vw, 80px); }
.article-main { min-width: 0; }
.article-side { display: grid; gap: 16px; align-content: start; }
@media (min-width: 1100px) {
	.article-layout { max-width: 1120px; grid-template-columns: 250px minmax(0, 720px); justify-content: center; gap: 64px; }
	.article-layout--notoc { grid-template-columns: minmax(0, 720px); }
	.article-side { position: sticky; top: 96px; max-height: calc(100vh - 120px); overflow-y: auto; scrollbar-width: thin; }
}

.toc details { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.toc__title { padding: 14px 18px; cursor: pointer; font: 500 var(--fs-xs)/1 var(--f-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-2); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.toc__title::-webkit-details-marker { display: none; }
.toc__title::after { content: "+"; font-size: 1rem; color: var(--ink-3); }
.toc details[open] .toc__title::after { content: "–"; }
.toc ol { list-style: none; margin: 0; padding: 0 10px 12px; display: grid; gap: 2px; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a { display: grid; grid-template-columns: 22px 1fr; gap: 6px; padding: 7px 8px; border-radius: 6px; font-size: .9rem; line-height: 1.35; color: var(--ink-2); text-decoration: none; }
.toc a::before { content: counter(toc, decimal-leading-zero); font: 400 .72rem/1.9 var(--f-mono); color: var(--ink-3); }
.toc a:hover { background: var(--paper-2); color: var(--ink); }
.toc a[aria-current] { color: var(--ink); background: var(--paper-2); box-shadow: inset 2px 0 0 var(--signal); }

.promo { display: grid; gap: 8px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.promo__label { font: 500 .7rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); }
.promo__title { font: 600 1.02rem/1.3 var(--f-body); color: var(--ink); }
.promo__text { font-size: .9rem; line-height: 1.5; color: var(--ink-2); }
.promo__cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .92rem; color: var(--ink); text-decoration: none; }
.promo__cta .icon { width: 16px; height: 16px; transition: transform .2s; }
.promo__cta:hover .icon { transform: translateX(3px); }
.prose .promo--inline { margin: 2.4em 0; grid-template-columns: minmax(0, 1fr) auto; column-gap: 24px; align-items: center; border-left: 3px solid var(--signal); }
.prose .promo--inline > * { margin: 0; }
.prose .promo--inline .promo__label, .prose .promo--inline .promo__title, .prose .promo--inline .promo__text { grid-column: 1; }
.prose .promo--inline .promo__cta { grid-column: 2; grid-row: 1 / span 3; padding: 10px 16px; border: 1px solid var(--ink); border-radius: var(--radius); white-space: nowrap; }
.prose .promo--inline .promo__cta:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 640px) {
	.prose .promo--inline { grid-template-columns: minmax(0, 1fr); }
	.prose .promo--inline .promo__cta { grid-column: 1; grid-row: auto; justify-self: start; margin-top: 6px; }
}

.article .prose { max-width: none; font-size: 1.125rem; line-height: 1.8; color: #262a33; }
.article .prose > p:first-child { font-size: 1.2rem; color: var(--ink); }
.article .prose h2 { font-size: clamp(1.35rem, 1.1rem + .9vw, 1.7rem); line-height: 1.25; margin-top: 2.2em; padding-top: 1.1em; border-top: 1px solid var(--line); scroll-margin-top: 96px; }
.article .prose h3 { font-size: 1.2rem; margin-top: 1.8em; scroll-margin-top: 96px; }
.article .prose a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--signal); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.article .prose a:hover { background: var(--signal-soft); }
.article .prose ul { list-style: none; padding-left: 0; }
.article .prose ul > li { position: relative; padding-left: 1.4em; }
.article .prose ul > li::before { content: ""; position: absolute; left: .2em; top: .72em; width: 7px; height: 7px; background: var(--signal); }
.article .prose ol { padding-left: 1.4em; }
.article .prose ol > li::marker { font: 500 .95rem var(--f-mono); color: var(--ink-3); }
.article .prose strong { color: var(--ink); }
.article .prose img { display: block; width: 100%; height: auto; border-radius: var(--radius-lg); }
.article .prose figure { margin: 2em 0; }
.article .prose figcaption { margin-top: 8px; font-size: var(--fs-sm); color: var(--ink-3); text-align: center; }
.article .prose blockquote { margin: 2em 0; padding: 18px 22px; border-left: 3px solid var(--signal); background: var(--white); border-radius: 0 var(--radius) var(--radius) 0; color: var(--ink); font-size: 1.1rem; }
.article .prose .wp-block-table, .article .prose table { display: block; overflow-x: auto; }
.article .prose table { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.article .prose .gd-cta { border-radius: var(--radius-lg); }

.article-end { display: grid; gap: 24px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.share { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.share__label { font: 500 var(--fs-xs)/1 var(--f-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin-right: 6px; }
.share__btn { display: inline-flex; align-items: center; min-height: 36px; padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink); font: 500 .88rem/1 var(--f-body); text-decoration: none; cursor: pointer; }
.share__btn:hover { border-color: var(--ink); }
.author { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 16px; padding: 22px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); }
.author__name { font: 600 1.05rem/1.3 var(--f-display); letter-spacing: -.01em; }
.author__bio { margin: 6px 0 8px; color: var(--ink-2); font-size: .96rem; }
.author a { font-weight: 600; font-size: .92rem; }
.article .prose .gd-cta a { color: var(--on-dark); background: none; }
.article .prose .gd-cta a:hover { color: #fff; }
.article .prose .gd-cta { border-left: 3px solid var(--signal); }
.promo__tag { display: inline-block; margin-left: 4px; padding: 3px 7px; border-radius: 999px; background: var(--paper-2); font: 500 .66rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .06em; color: var(--ink-2); vertical-align: middle; }
.promo__disclose { font-size: .75rem; line-height: 1.45; color: var(--ink-3); }
.partners { display: grid; gap: 14px; margin-top: 40px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.partners__title { font-size: 1.3rem; }
.partners__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.partners__item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 20px; align-items: center; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); }
.partners__name { font-weight: 600; }
.partners__pitch { grid-column: 1; font-size: .92rem; color: var(--ink-2); }
.partners__cta { grid-column: 2; grid-row: 1 / span 2; display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border: 1px solid var(--ink); border-radius: var(--radius); font-weight: 600; font-size: .9rem; color: var(--ink); text-decoration: none; white-space: nowrap; }
.partners__cta:hover { background: var(--ink); color: var(--paper); }
.partners__cta .icon { width: 16px; height: 16px; }
@media (max-width: 640px) { .partners__item { grid-template-columns: minmax(0, 1fr); } .partners__cta { grid-column: 1; grid-row: auto; justify-self: start; margin-top: 6px; } }

/* Fenêtre de prise de rendez-vous (Calendly intégré) */
.booking { width: min(1000px, calc(100vw - 32px)); height: min(820px, calc(100dvh - 32px)); max-width: none; max-height: none; padding: 0; margin: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); color: var(--ink); box-shadow: 0 30px 80px rgba(22, 24, 29, .35); overflow: hidden; }
.booking[open] { display: flex; flex-direction: column; }
.booking::backdrop { background: rgba(22, 24, 29, .6); }
.booking__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.booking__title { font: 600 1.15rem/1.3 var(--f-display); letter-spacing: -.02em; }
.booking__sub { font-size: var(--fs-sm); color: var(--ink-2); margin-top: 2px; }
.booking__close { flex: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--ink); }
.booking__close:hover { border-color: var(--ink); }
.booking__body { position: relative; flex: 1; min-height: 0; }
.booking__body iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; opacity: 0; transition: opacity .2s; }
.booking__body.is-ready iframe { opacity: 1; }
.booking__loading { position: absolute; inset: 0; display: grid; place-items: center; color: var(--ink-3); font-size: var(--fs-sm); }
.booking__foot { padding: 10px 22px; border-top: 1px solid var(--line); font-size: var(--fs-xs); color: var(--ink-3); }
@media (max-width: 640px) {
	.booking { width: 100vw; height: 100dvh; border-radius: 0; border: 0; }
}

/* Audit 2026-09-27 : preuves sous le hero, contraste des aides sur fond sombre, bouton Fermer explicite */
.hero__refs { margin-top: 18px; font-size: var(--fs-sm); color: var(--ink-2); }
.hero__refs a { color: var(--ink); font-weight: 600; }
.section--dark .field__hint, .side-card .field__hint, .scanner .field__hint { color: var(--on-dark-2); }
.booking__close { width: auto; padding: 0 14px; border-radius: 999px; font-size: .95rem; display: inline-flex; align-items: center; gap: 6px; }
.booking__close-text { font: 500 .88rem/1 var(--f-body); }

/* Bandeau de consentement */
.consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 70; max-width: 560px; margin-inline: auto; display: grid; gap: 14px; padding: 18px 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 18px 50px rgba(22, 24, 29, .22); font-size: var(--fs-sm); }
.consent[hidden] { display: none; }
.consent__title { font-weight: 600; font-size: .98rem; margin-bottom: 4px; }
.consent__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.consent__actions .btn { min-height: 42px; padding: 8px 14px; }
@media (max-width: 1000px) { .consent { bottom: 84px; } }
