/* =========================================================================
   SynapseAI — feuille de styles principale
   Design : moderne, technologique, minimaliste — bleu foncé + accent cyan/violet
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
	--bg:            #070a18;
	--bg-2:          #0a0f24;
	--bg-3:          #0d1430;
	--surface:       #121a3c;
	--surface-2:     #161f48;
	--line-dark:     rgba(255,255,255,.09);
	--line-dark-2:   rgba(255,255,255,.16);

	--light:         #f4f6fc;
	--white:         #ffffff;
	--light-alt:     #eef1f9;
	--line-light:    #e4e8f3;

	--ink:           #0b1026;
	--text-light:    #b9c2de;
	--text-mute-d:   #7e89ad;
	--text-dark:     #46506c;
	--text-mute-l:   #6d778f;

	--cyan:          #2fd6f2;
	--violet:        #8a6bf6;
	--grad:          linear-gradient(135deg, #2fd6f2 0%, #8a6bf6 100%);
	--grad-soft:     linear-gradient(135deg, rgba(47,214,242,.16), rgba(138,107,246,.16));

	--radius:        20px;
	--radius-sm:     13px;
	--container:     1180px;
	--ease:          cubic-bezier(.22,.61,.36,1);
	--font:          -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 2. Reset / base --------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--text-light);
	line-height: 1.65;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1,h2,h3 { line-height: 1.18; font-weight: 800; letter-spacing: -.02em; color: #fff; }
strong { font-weight: 700; color: #fff; }
::selection { background: rgba(47,214,242,.3); color: #fff; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

section[id] { scroll-margin-top: 96px; }

.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 999;
	background: #fff; color: var(--ink); padding: .7rem 1.2rem; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Layout helpers ------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.container--narrow { max-width: 760px; }

.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--problems { background: var(--bg-2); }
.section--services { background: var(--light); color: var(--text-dark); }
.section--examples { background: var(--white); color: var(--text-dark); }
.section--approach { background: var(--bg); overflow: hidden; }
.section--cta      { background: var(--bg-2); }

.section__head { max-width: 720px; margin: 0 auto clamp(2.5rem,5vw,3.8rem); text-align: center; }
.section__title { font-size: clamp(1.95rem, 3.6vw, 3rem); }
.section--services .section__title,
.section--examples .section__title { color: var(--ink); }
.section__title--light { color: #fff; }
.section__intro {
	margin-top: 1.1rem; font-size: 1.12rem; color: var(--text-mute-d);
}
.section--services .section__intro,
.section--examples .section__intro { color: var(--text-mute-l); }
.section__closing {
	margin-top: clamp(2rem,4vw,3rem); text-align: center;
	font-size: 1.18rem; color: var(--text-light);
}
.section__closing strong { color: var(--cyan); }

.grid { display: grid; gap: 1.3rem; }
.grid--2 { grid-template-columns: repeat(2,1fr); }
.grid--3 { grid-template-columns: repeat(3,1fr); }

.eyebrow {
	display: inline-flex; align-items: center; gap: .55rem;
	font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
	color: var(--cyan);
}
.section--services .eyebrow,
.section--examples .eyebrow { color: #5b6cff; }
.eyebrow--center { justify-content: center; }
.eyebrow__dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--grad); box-shadow: 0 0 12px rgba(47,214,242,.8);
}
.text-gradient {
	background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- 4. Buttons --------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	padding: .82rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: .98rem;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
	white-space: nowrap;
}
.btn--lg { padding: 1rem 1.9rem; font-size: 1.03rem; }
.btn--primary { background: var(--grad); color: #06112c; box-shadow: 0 10px 30px -10px rgba(47,214,242,.5); }
.btn--primary:hover { transform: translateY(-3px); filter: brightness(1.07); box-shadow: 0 16px 38px -10px rgba(138,107,246,.6); }
.btn--ghost { background: rgba(255,255,255,.04); color: #fff; box-shadow: inset 0 0 0 1px var(--line-dark-2); }
.btn--ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px var(--cyan); }

/* ---------- 5. Header / nav --------------------------------------------- */
.site-header {
	position: fixed; inset: 0 0 auto 0; z-index: 100;
	transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.site-header.is-scrolled {
	background: rgba(7,10,24,.82);
	backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 var(--line-dark);
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	height: 102px; transition: height .35s var(--ease);
}
.site-header.is-scrolled .site-header__inner { height: 72px; }
.brand, .nav-toggle { position: relative; z-index: 2; }

/* Verrou de marque : icône + wordmark (images) + slogan (vrai texte). */
.brand { display: flex; align-items: center; gap: .85rem; }
.brand__icon {
	height: 54px; width: auto; flex: none;
	filter: brightness(0) invert(1);
	transition: height .35s var(--ease);
}
.brand__lockup { display: flex; flex-direction: column; gap: 5px; }
.brand__wordmark {
	display: block; height: 23px; width: auto;
	filter: brightness(0) invert(1);
	transition: height .35s var(--ease);
}
.brand__slogan {
	font-size: 10.5px; font-weight: 600; line-height: 1.3;
	letter-spacing: .07em; text-transform: uppercase; color: var(--text-light);
}
.site-header.is-scrolled .brand__icon { height: 38px; }
.site-header.is-scrolled .brand__wordmark { height: 18px; }
.site-header.is-scrolled .brand__slogan { display: none; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav__link { font-weight: 600; font-size: .97rem; color: var(--text-light); transition: color .2s; }
.site-nav__link:hover { color: #fff; }
.site-nav__cta { color: #06112c; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }

/* ---------- 6. Hero ------------------------------------------------------ */
.hero { position: relative; padding: clamp(172px,21vh,240px) 0 clamp(4rem,8vw,7rem); overflow: hidden; }
.hero__bg,.approach__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__glow {
	position: absolute; width: 46vw; height: 46vw; max-width: 640px; max-height: 640px;
	border-radius: 50%; filter: blur(110px); opacity: .55;
}
.hero__glow--cyan   { background: #1aa7d8; top: -12%; left: -8%; }
.hero__glow--violet { background: #6e4fd6; bottom: -22%; right: -10%; opacity: .5; }
.hero__grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(var(--line-dark) 1px, transparent 1px),
		linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
	background-size: 58px 58px;
	-webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 0%, transparent 78%);
	        mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 0%, transparent 78%);
}
.hero__inner {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center;
}
.hero__title { font-size: clamp(2.5rem, 5.6vw, 4.35rem); margin-top: 1.3rem; }
.hero__lead { margin-top: 1.5rem; font-size: 1.2rem; color: var(--text-light); max-width: 33ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.2rem; }
.hero__trust li {
	display: flex; align-items: center; gap: .5rem;
	font-size: .92rem; color: var(--text-mute-d); font-weight: 600;
}
.hero__trust li::before {
	content: ""; width: 16px; height: 16px; border-radius: 50%;
	background: var(--grad-soft); box-shadow: inset 0 0 0 1px var(--cyan);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232fd6f2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: center; background-size: 11px;
}

/* ---------- 7. Hero — carte de flux ------------------------------------- */
.hero__visual { position: relative; }
.flow-card {
	position: relative; border-radius: var(--radius);
	background: linear-gradient(160deg, rgba(22,31,72,.95), rgba(13,20,48,.95));
	box-shadow: inset 0 0 0 1px var(--line-dark-2), 0 40px 80px -30px rgba(0,0,0,.8);
	backdrop-filter: blur(8px);
	animation: float 7s ease-in-out infinite;
}
.flow-card__head {
	display: flex; align-items: center; gap: .7rem;
	padding: .9rem 1.2rem; border-bottom: 1px solid var(--line-dark);
}
.flow-card__dots { display: flex; gap: 5px; }
.flow-card__dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-dark-2); }
.flow-card__dots i:first-child { background: #2fd6f2; }
.flow-card__label { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mute-d); }
.flow-card__body { padding: 1.4rem 1.3rem; }
.flow-step { display: flex; align-items: center; gap: .95rem; }
.flow-step__icon {
	flex: none; width: 46px; height: 46px; border-radius: 13px;
	display: grid; place-items: center; color: #fff;
	background: rgba(255,255,255,.05); box-shadow: inset 0 0 0 1px var(--line-dark-2);
}
.flow-step__icon--ia {
	background: var(--grad); color: #06112c;
	box-shadow: 0 0 26px -4px rgba(47,214,242,.7);
}
.flow-step__icon--ia svg { animation: spin 14s linear infinite; }
.flow-step__text { display: flex; flex-direction: column; }
.flow-step__text strong { font-size: 1rem; }
.flow-step__text em { font-style: normal; font-size: .85rem; color: var(--text-mute-d); }
.flow-step--core .flow-step__text strong { color: var(--cyan); }
.flow-link { height: 26px; margin-left: 22px; position: relative; }
.flow-link span {
	position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
	background: linear-gradient(var(--cyan), var(--violet)); opacity: .4;
}
.flow-link::after {
	content: ""; position: absolute; left: -3px; width: 8px; height: 8px; border-radius: 50%;
	background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
	animation: pulseDown 2.6s var(--ease) infinite;
}
.flow-badge {
	position: absolute; right: -14px; bottom: -22px;
	display: flex; flex-direction: column; align-items: flex-start;
	padding: .85rem 1.15rem; border-radius: 14px;
	background: var(--grad); color: #06112c;
	box-shadow: 0 20px 40px -14px rgba(138,107,246,.7);
	animation: float 7s ease-in-out infinite reverse;
}
.flow-badge__num { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.flow-badge__txt { font-size: .82rem; font-weight: 700; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes pulseDown { 0%{top:0;opacity:0} 15%{opacity:1} 85%{opacity:1} 100%{top:100%;opacity:0} }

/* ---------- 8. Cards génériques ----------------------------------------- */
.card {
	position: relative; border-radius: var(--radius); padding: 1.7rem;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card--problem {
	background: var(--surface);
	box-shadow: inset 0 0 0 1px var(--line-dark);
}
.card--problem:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px var(--line-dark-2), 0 24px 44px -24px rgba(0,0,0,.7); }
.card--service {
	background: var(--white);
	box-shadow: 0 1px 0 var(--line-light), 0 18px 40px -28px rgba(20,30,70,.4);
	border: 1px solid var(--line-light);
}
.card--service:hover { transform: translateY(-6px); box-shadow: 0 28px 54px -26px rgba(31,42,92,.4); }
.card__icon {
	display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px;
	margin-bottom: 1.1rem; color: var(--cyan);
	background: var(--grad-soft); box-shadow: inset 0 0 0 1px rgba(47,214,242,.25);
}
.card__icon--lg { width: 56px; height: 56px; border-radius: 15px; }
.card--service .card__icon { color: #6a4ff0; }
.card__title { font-size: 1.12rem; }
.card--service .card__title { color: var(--ink); }
.card__title--lg { font-size: 1.32rem; }
.card__text { margin-top: .55rem; font-size: .98rem; color: var(--text-mute-d); }
.card--service .card__text { color: var(--text-mute-l); }

.taglist { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.taglist li {
	font-size: .82rem; font-weight: 600; color: #54608a;
	padding: .35rem .75rem; border-radius: 999px;
	background: var(--light-alt); border: 1px solid var(--line-light);
}

/* ---------- 9. Exemples de gains ---------------------------------------- */
.examples { display: flex; flex-direction: column; gap: 1.1rem; }
.example {
	display: grid; grid-template-columns: auto 1fr auto; gap: 1.6rem; align-items: center;
	padding: 1.7rem 1.9rem; border-radius: var(--radius);
	background: var(--white); border: 1px solid var(--line-light);
	box-shadow: 0 16px 40px -30px rgba(20,30,70,.5);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.example:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -28px rgba(31,42,92,.42); }
.example__index {
	font-size: 2.4rem; font-weight: 800; letter-spacing: -.04em;
	background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.example__title { font-size: 1.22rem; color: var(--ink); margin-bottom: .9rem; }
.example__compare { display: flex; align-items: stretch; gap: 1rem; }
.example__state { flex: 1; }
.example__tag {
	display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
	padding: .2rem .55rem; border-radius: 6px; margin-bottom: .35rem;
	background: #fdecec; color: #c0413d;
}
.example__tag--ok { background: rgba(47,214,242,.14); color: #1186a8; }
.example__state p { font-size: .95rem; color: var(--text-mute-l); }
.example__arrow { display: grid; place-items: center; color: #b9c0d6; flex: none; }
.example__gain {
	display: flex; flex-direction: column; text-align: right;
	padding-left: 1.6rem; border-left: 1px solid var(--line-light); min-width: 190px;
}
.example__gain-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #8b93ab; }
.example__gain-value { font-size: 1.32rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin-top: .15rem; }
.example__gain-extra { font-size: .9rem; color: var(--text-mute-l); }

.examples__cta {
	margin-top: clamp(2.2rem,4vw,3rem); text-align: center;
	display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
}
.examples__cta p { font-size: 1.1rem; color: var(--text-mute-l); }

/* ---------- 10. Approche ------------------------------------------------- */
.approach__bg .hero__glow--violet { top: -10%; right: -6%; bottom: auto; opacity: .4; }
.approach__inner {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,5vw,4.5rem); align-items: start;
}
.approach__text { margin-top: 1.4rem; font-size: 1.1rem; color: var(--text-light); }
.approach__values { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.8rem; }
.approach__values li {
	font-size: .9rem; font-weight: 600; color: var(--text-light);
	padding: .5rem .95rem; border-radius: 999px;
	background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px var(--line-dark-2);
}
.approach__signature {
	margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark);
	font-size: 1rem; color: var(--text-mute-d);
}
.steps { display: flex; flex-direction: column; gap: 0; }
.step { position: relative; display: flex; gap: 1.2rem; padding-bottom: 1.9rem; }
.step:last-child { padding-bottom: 0; }
.step::before {
	content: ""; position: absolute; left: 23px; top: 46px; bottom: 0; width: 2px;
	background: linear-gradient(var(--line-dark-2), transparent);
}
.step:last-child::before { display: none; }
.step__num {
	flex: none; width: 48px; height: 48px; border-radius: 50%;
	display: grid; place-items: center; font-weight: 800; font-size: 1.15rem;
	color: #06112c; background: var(--grad);
	box-shadow: 0 0 24px -6px rgba(47,214,242,.6);
}
.step__title { font-size: 1.15rem; }
.step__text { margin-top: .35rem; font-size: .98rem; color: var(--text-mute-d); }

/* ---------- 11. Panneau CTA --------------------------------------------- */
.cta-panel {
	position: relative; overflow: hidden; text-align: center;
	padding: clamp(2.8rem,6vw,5rem) clamp(1.5rem,5vw,4rem);
	border-radius: clamp(20px,3vw,32px);
	background: linear-gradient(160deg, var(--surface), var(--bg-3));
	box-shadow: inset 0 0 0 1px var(--line-dark-2);
}
.cta-panel__glow {
	position: absolute; width: 70%; height: 200px; left: 15%; top: -90px;
	background: var(--grad); filter: blur(120px); opacity: .4;
}
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel__title { font-size: clamp(2rem,4vw,3.1rem); margin-top: 1rem; }
.cta-panel__lead { margin: 1.2rem auto 0; max-width: 56ch; font-size: 1.13rem; color: var(--text-light); }
.cta-panel__actions { margin-top: 2rem; }
.cta-panel__direct { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; margin-top: 1.9rem; }
.cta-panel__direct a {
	display: inline-flex; align-items: center; gap: .55rem;
	font-weight: 600; color: var(--text-light); transition: color .2s;
}
.cta-panel__direct a:hover { color: var(--cyan); }
.cta-panel__direct svg { color: var(--cyan); }

/* ---------- 12. Footer --------------------------------------------------- */
.site-footer { background: #05070f; padding-top: clamp(3rem,6vw,4.5rem); }
.site-footer__grid {
	display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 2.5rem;
	padding-bottom: 2.8rem;
}
.site-footer .brand { gap: 1rem; }
.site-footer .brand__icon { height: 62px; }
.site-footer .brand__wordmark { height: 30px; }
.site-footer__slogan { margin-top: 1rem; font-weight: 700; color: #fff; }
.site-footer__note { margin-top: .6rem; font-size: .92rem; color: var(--text-mute-d); max-width: 38ch; }
.site-footer__title {
	font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
	color: var(--text-mute-d); margin-bottom: 1rem;
}
.site-footer__col li { margin-bottom: .6rem; }
.site-footer__col a, .site-footer__col li { font-size: .96rem; color: var(--text-light); transition: color .2s; }
.site-footer__col a:hover { color: var(--cyan); }
.site-footer__bottom {
	display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
	padding-block: 1.5rem; border-top: 1px solid var(--line-dark);
	font-size: .88rem; color: var(--text-mute-d);
}
.site-footer__bottom a:hover { color: var(--cyan); }

/* ---------- 13. Page hero (Contact / pages internes) -------------------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(172px,18vh,215px) 0 clamp(2.5rem,5vw,4rem); }
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
.page-hero__title { font-size: clamp(2.2rem,4.6vw,3.5rem); margin-top: 1.1rem; }
.page-hero__lead { margin-top: 1.2rem; font-size: 1.15rem; color: var(--text-light); }

/* ---------- 14. Page Contact -------------------------------------------- */
.section--contact { background: var(--light); color: var(--text-dark); }
.contact__grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: clamp(1.8rem,4vw,3.2rem); align-items: start; }
.contact__heading { font-size: 1.6rem; color: var(--ink); }
.contact__sub { margin-top: .7rem; color: var(--text-mute-l); }
.contact-form { margin-top: 1.6rem; }
.contact-form__fallback {
	padding: 1.2rem; border-radius: var(--radius-sm);
	background: var(--white); border: 1px solid var(--line-light); color: var(--text-mute-l);
}
.contact-form__fallback a { color: #6a4ff0; font-weight: 600; }

.info-card {
	background: var(--white); border: 1px solid var(--line-light);
	border-radius: var(--radius); padding: 1.6rem;
	box-shadow: 0 18px 40px -30px rgba(20,30,70,.5);
}
.info-card + .info-card { margin-top: 1.1rem; }
.info-card--accent {
	background: linear-gradient(160deg, #0d1430, #121a3c); border: 0; color: var(--text-light);
}
.info-card--accent .info-card__title { color: #fff; }
.info-card__title { font-size: 1.12rem; color: var(--ink); margin-bottom: 1rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list li + li { margin-top: 1rem; }
.info-list__icon {
	flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
	color: #6a4ff0; background: var(--grad-soft); box-shadow: inset 0 0 0 1px rgba(106,79,240,.22);
}
.info-list__body { display: flex; flex-direction: column; }
.info-list__label { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #8b93ab; }
.info-list__body a, .info-list__body span:not(.info-list__label) { color: var(--ink); font-weight: 600; }
.info-list__body a:hover { color: #6a4ff0; }
.contact__assure { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .6rem; }
.contact__assure li {
	display: flex; align-items: center; gap: .6rem; font-size: .94rem; color: var(--text-mute-l); font-weight: 600;
}
.contact__assure li::before {
	content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%;
	background: var(--grad-soft); box-shadow: inset 0 0 0 1px rgba(106,79,240,.3);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236a4ff0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: center; background-size: 11px;
}

/* ---------- 15. Formulaire Contact Form 7 ------------------------------- */
.contact-form .cf7-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .cf7-field { display: flex; flex-direction: column; }
.contact-form .cf7-field--full { grid-column: 1 / -1; }
.contact-form label { font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: .4rem; display: block; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
	width: 100%; font: inherit; font-size: .98rem; color: var(--ink);
	padding: .8rem .95rem; border-radius: var(--radius-sm);
	background: var(--white); border: 1px solid var(--line-light);
	transition: border-color .2s, box-shadow .2s;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
	outline: none; border-color: var(--violet);
	box-shadow: 0 0 0 4px rgba(138,107,246,.14);
}
.contact-form ::placeholder { color: #9aa2b8; }
.contact-form .cf7-consent { display: flex; gap: .6rem; align-items: flex-start; margin-top: .3rem; }
.contact-form .cf7-consent label { font-weight: 500; font-size: .88rem; color: var(--text-mute-l); margin: 0; }
.contact-form .cf7-consent input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--violet); }
.contact-form .wpcf7-submit {
	margin-top: .4rem; padding: .95rem 2rem; border-radius: 999px; font-weight: 700; font-size: 1rem;
	color: #06112c; background: var(--grad); cursor: pointer;
	box-shadow: 0 12px 30px -12px rgba(47,214,242,.55);
	transition: transform .25s var(--ease), filter .25s;
}
.contact-form .wpcf7-submit:hover { transform: translateY(-2px); filter: brightness(1.07); }
.contact-form .wpcf7-spinner { margin: .6rem auto 0; }
.contact-form .wpcf7-not-valid-tip { color: #c0413d; font-size: .82rem; margin-top: .3rem; }
.contact-form .wpcf7-response-output {
	margin: 1.2rem 0 0 !important; padding: .9rem 1.1rem !important;
	border-radius: var(--radius-sm); font-size: .94rem; border-width: 1px !important;
}
.contact-form .wpcf7-mail-sent-ok { border-color: #1186a8 !important; background: rgba(47,214,242,.1); color: #0c6e8a; }
.contact-form .wpcf7-validation-errors,
.contact-form .wpcf7-mail-sent-ng { border-color: #c0413d !important; background: #fdecec; color: #a8322f; }
.contact-form form > p { margin: 0; }

/* ---------- 16. Prose / pages internes / 404 ---------------------------- */
.section--page { padding-top: clamp(156px,16vh,195px); position: relative; overflow: hidden; }
.page-head { margin-bottom: 2rem; }
.page-head__back { font-size: .9rem; font-weight: 600; color: var(--cyan); }
.page-head__title { font-size: clamp(1.9rem,3.6vw,2.8rem); margin-top: .8rem; }
.prose { color: var(--text-light); }
.prose h2 { font-size: 1.4rem; margin: 2rem 0 .8rem; }
.prose h3 { font-size: 1.12rem; margin: 1.5rem 0 .6rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .35rem; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--cyan); text-decoration: underline; }
.prose strong { color: #fff; }

.error-404 { text-align: center; }
.error-404__inner { position: relative; z-index: 1; }
.error-404__code {
	font-size: clamp(5rem,14vw,9rem); font-weight: 800; line-height: 1; letter-spacing: -.04em;
	background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.error-404__title { font-size: clamp(1.6rem,3vw,2.2rem); margin-top: .5rem; }
.error-404__text { margin: 1rem auto 2rem; max-width: 44ch; color: var(--text-mute-d); }
.error-404 .hero__actions { justify-content: center; }

/* ---------- 17. Animations d'apparition --------------------------------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .grid > .reveal:nth-child(2),
.js .examples > .reveal:nth-child(2) { transition-delay: .08s; }
.js .grid > .reveal:nth-child(3),
.js .examples > .reveal:nth-child(3) { transition-delay: .16s; }
.js .grid > .reveal:nth-child(4),
.js .examples > .reveal:nth-child(4) { transition-delay: .24s; }
.js .grid > .reveal:nth-child(5),
.js .examples > .reveal:nth-child(5) { transition-delay: .32s; }
.js .grid > .reveal:nth-child(6),
.js .examples > .reveal:nth-child(6) { transition-delay: .4s; }

/* ---------- 18. Menu mobile + responsive -------------------------------- */
@media (max-width: 1000px) {
	.hero__inner { grid-template-columns: 1fr; }
	.hero__visual { max-width: 460px; margin: 1rem auto 0; }
	.hero__lead { max-width: none; }
	.approach__inner { grid-template-columns: 1fr; }
	.contact__grid { grid-template-columns: 1fr; }
	.example__gain { min-width: 160px; }
}
@media (max-width: 860px) {
	.nav-toggle { display: flex; }
	.site-header__inner { height: 84px; }
	.site-header.is-scrolled .site-header__inner { height: 64px; }
	.brand { gap: .6rem; }
	.brand__icon { height: 44px; }
	.brand__wordmark { height: 19px; }
	.brand__slogan { font-size: 9px; letter-spacing: .045em; }
	.site-header.is-scrolled .brand__icon { height: 34px; }
	.site-header.is-scrolled .brand__wordmark { height: 16px; }
	.site-nav {
		position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 1.4rem;
		background: rgba(7,10,24,.97); backdrop-filter: blur(10px);
		transform: translateX(100%); transition: transform .35s var(--ease);
	}
	.site-nav__link { font-size: 1.25rem; }
	.site-nav__cta { margin-top: .5rem; }
	body.nav-open { overflow: hidden; }
	body.nav-open .site-nav { transform: translateX(0); }
	body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
	body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.grid--3, .grid--2 { grid-template-columns: 1fr; }
	.example { grid-template-columns: auto 1fr; align-items: start; }
	.example__gain {
		grid-column: 1 / -1; text-align: left; gap: .2rem;
		padding-left: 0; padding-top: 1.1rem; margin-top: .3rem;
		border-left: 0; border-top: 1px solid var(--line-light); min-width: 0;
	}
	.example__compare { flex-direction: column; gap: .8rem; }
	.example__arrow { transform: rotate(90deg); }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
	body { font-size: 16px; }
	.btn { width: 100%; }
	.hero__actions { flex-direction: column; }
	.contact-form .cf7-grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; }
	.flow-badge { right: 0; }
	.example { padding: 1.4rem; }
}

/* ---------- 19. Accessibilité — mouvement réduit ------------------------ */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important; animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
	.js .reveal { opacity: 1; transform: none; }
}
