@font-face {
	font-family: 'Nexa';
	src: url('../fonts/Nexa-Bold.otf') format('truetype');
	font-display: auto;
}
@font-face {
	font-family: 'Nexa Light';
	src: url('../fonts/Nexa-Light.otf') format('truetype'),
		 url('../fonts/Nexa-Bold.otf') format('truetype');
	font-display: auto;
}

:root {
	--ink: #4e5065;
	--ink-2: #313747;
	--muted: #697080;
	--line: #e2e5ea;
	--surface: #ffffff;
	--surface-soft: #f5f6f8;
	--surface-green: #edf8ef;
	--surface-red: #fde8ed;
	--surface-yellow: #fff8e7;
	--red: #f01f4b;
	--red-dark: #d90e3a;
	--green: #58bb69;
	--yellow: #ffbf15;
	--yellow-light: #ffd149;
	--purple: #8d4ca6;
	--blue: #4d77bf;
	--radius-sm: 14px;
	--radius: 24px;
	--radius-lg: 36px;
	--shadow-sm: 0 12px 30px rgba(36, 41, 56, .08);
	--shadow: 0 28px 70px rgba(36, 41, 56, .13);
	--container: 1240px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--surface);
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button, input {
	font: inherit;
}

button, a {
	-webkit-tap-highlight-color: transparent;
}

svg {
	width: 1.2em;
	height: 1.2em;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.svg-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 10px 16px;
	border-radius: 8px;
	background: var(--ink);
	color: white;
	transform: translateY(-180%);
	transition: transform .2s;
}

.skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 3px solid rgba(240, 31, 75, .32);
	outline-offset: 3px;
}

.topbar {
	background: var(--ink);
	color: rgba(255,255,255,.82);
	font-size: 13px;
}

.topbar__inner {
	min-height: 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.topbar p {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 9px;
}

.status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 4px rgba(88,187,105,.15);
}

.topbar__links {
	display: flex;
	align-items: center;
	gap: 24px;
}

.topbar__links a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	transition: color .2s;
}

.topbar__links a:hover {
	color: white;
}

.topbar__links svg {
	font-size: 14px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255,255,255,.94);
	border-bottom: 1px solid rgba(226,229,234,.7);
	backdrop-filter: blur(16px);
	transition: box-shadow .25s;
}

.site-header.scrolled {
	box-shadow: 0 10px 35px rgba(36,41,56,.08);
}

.header__inner {
	height: 82px;
	display: flex;
	align-items: center;
	gap: 28px;
}

.brand {
	width: 225px;
	flex: 0 0 auto;
}

.brand img {
	width: 100%;
	max-height: 58px;
	object-fit: contain;
	object-position: left center;
}

.desktop-nav {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: clamp(18px,2vw,31px);
}

.desktop-nav a {
	position: relative;
	padding: 27px 0;
	font-size: 14px;
	font-weight: 700;
	color: #454c5d;
}

.desktop-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 17px;
	width: 100%;
	height: 2px;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .25s;
}

.desktop-nav a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header__cta {
	white-space: nowrap;
}

.menu-toggle {
	display: none;
	width: 45px;
	height: 45px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: white;
	align-items: center;
	justify-content: center;
	color: var(--ink);
}

.menu-toggle svg {
	font-size: 22px;
}

.close-icon {
	display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
	display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
	display: block;
}

.mobile-menu {
	position: fixed;
	top: 82px;
	left: 0;
	right: 0;
	height: calc(100vh - 82px);
	padding: 24px 20px;
	background: white;
	border-top: 1px solid var(--line);
}

.mobile-menu nav {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mobile-menu nav > a:not(.button) {
	padding: 15px 4px;
	border-bottom: 1px solid var(--line);
	font-family: 'Nexa', sans-serif;
	font-size: 19px;
	font-weight: 700;
}

.mobile-menu .button {
	margin-top: 20px;
}

.button {
	min-height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 13px;
	font-family: 'Nexa', sans-serif;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}

.button:hover {
	transform: translateY(-2px);
}

.button svg {
	transition: transform .2s;
}

.button:hover svg {
	transform: translateX(3px);
}

.button--small {
	min-height: 45px;
	padding-inline: 17px;
}

.button--primary {
	background: var(--red);
	color: white;
	box-shadow: 0 12px 26px rgba(240,31,75,.2);
}

.button--primary:hover {
	background: var(--red-dark);
	box-shadow: 0 16px 32px rgba(240,31,75,.28);
}

.button--dark {
	background: var(--ink);
	color: white;
}

.button--dark:hover {
	background: #10141e;
	box-shadow: 0 14px 28px rgba(36,41,56,.2);
}

.button--ghost {
	border-color: var(--line);
	background: white;
	color: var(--ink);
}

.button--ghost:hover {
	border-color: #bfc5cf;
	box-shadow: var(--shadow-sm);
}

.button--green {
	background: var(--green);
	color: var(--surface);
}

.button--green:hover {
	background: #4d9e5a;
}

.button--yellow {
	background: var(--yellow);
	color: var(--ink);
}

.button--yellow:hover {
	background: var(--yellow-light);
}

.eyebrow {
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--red);
	font-family: 'Nexa', sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 25px;
	height: 2px;
	background: currentColor;
}

.eyebrow--small {
	margin-bottom: 2px;
	font-size: 10px;
}

.eyebrow--light {
	color: rgba(255,255,255,.76);
}

h1,h2,h3 {
	margin: 0;
	font-family: 'Nexa', sans-serif;
/*	line-height: 1.13;*/
	line-height: 1;
	letter-spacing: -.035em;
}

h2 {
	font-size: clamp(34px,4vw,54px);
}

.hero {
	position: relative;
	min-height: 720px;
	overflow: hidden;
	background: linear-gradient(115deg,#f7f8fa 0%,#fff 55%,#f4f7f4 100%);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .45;
	background-image: linear-gradient(rgba(36,41,56,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(36,41,56,.035) 1px,transparent 1px);
	background-size: 54px 54px;
	mask-image: linear-gradient(to right,#000,transparent 72%);
}

.hero__orb {
	position: absolute;
	border-radius: 50% 50% 20px 50%;
/*	filter: blur(2px);*/
}

.hero__orb--one {
	width: 360px;
	height: 360px;
	top: -170px;
	right: 14%;
	background: rgba(88,187,105,.11);
}

.hero__orb--two {
	width: 230px;
	height: 230px;
	bottom: -120px;
	left: 5%;
	border-radius: 50% 20px 50% 50%;
	background: rgba(240,31,75,.08);
}

.hero__grid {
	position: relative;
	z-index: 1;
	min-height: 720px;
	display: grid;
	grid-template-columns: 1.03fr .97fr;
	align-items: center;
	gap: 75px;
	padding-block: 72px 100px;
}

.hero__content {
	max-width: 650px;
}

.hero h1 {
	max-width: 650px;
/*	font-size: clamp(46px,5.3vw,74px);*/
	font-size: 52px;
}

.hero h1 em {
	color: var(--red);
	font-style: normal;
}

.hero h2 {
	font-size: 24px;
	margin-top: 20px;
	display: flex;
	align-items: center;
	transition: .2s;
}

.hero a:hover h2 span {
	color: var(--green);
	text-decoration: underline;
}

.hero h2 svg {
	margin-left: 10px;
	transition: transform .2s;
}

.hero a:hover h2 svg {
	transform: translateX(5px);
	stroke: var(--green);
}

.hero__lead {
	max-width: 610px;
	margin: 25px 0 31px;
	color: var(--muted);
	font-size: 19px;
	line-height: 1.7;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero__proofs {
	margin: 40px 0 0;
	padding: 28px 0 0;
	border-top: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	gap: 25px 34px;
	list-style: none;
}

.hero__proofs li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hero__proofs svg {
	width: 30px;
	height: 30px;
	color: var(--green);
}

.hero__proofs span {
	display: flex;
	flex-direction: column;
	color: #838a98;
	font-size: 12px;
	line-height: 1.25;
}

.hero__proofs strong {
	color: var(--ink);
	font-size: 14px;
}

.hero__visual {
	position: relative;
	min-height: 530px;
	display: grid;
	place-items: center;
}

.visual-grid {
	position: absolute;
	inset: 25px -50px 25px 25px;
	border-radius: 50px;
	background: radial-gradient(circle at center,rgba(88,187,105,.15),transparent 65%);
}

.hero-card {
	position: relative;
	z-index: 2;
	width: min(100%,510px);
	padding: 20px;
	border: 1px solid rgba(255,255,255,.9);
	border-radius: 30px;
	background: rgba(255,255,255,.88);
	box-shadow: var(--shadow);
	backdrop-filter: blur(14px);
	transform: rotate(1.5deg);
}

.hero-card__topline,.hero-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--surface-green);
	color: #388648;
	font-size: 11px;
	font-weight: 700;
}

.pill span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
}

.hero-card__ref {
	color: #a0a6b2;
	font-family: 'Nexa', sans-serif;
	font-size: 11px;
	font-weight: 700;
}

.hero-illustration {
	margin: 14px 0;
	overflow: hidden;
	border-radius: 20px;
	background: linear-gradient(135deg,#eef1f3,#f9fafb);
}

.hero-illustration iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;}

.hero-card__footer {
	padding: 3px 5px 2px;
}

.hero-card__footer > div:first-child {
	display: flex;
	flex-direction: column;
}

.hero-card__footer span {
	color: #969ca8;
	font-size: 11px;
}

.hero-card__footer strong {
	font-family: 'Nexa', sans-serif;
	font-size: 14px;
}

.score-ring {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: conic-gradient(var(--green) 0 93%,#e9ebef 93%);
	position: relative;
}

.score-ring::after {
	content: "";
	position: absolute;
	inset: 5px;
	border-radius: 50%;
	background: white;
}

.score-ring span {
	position: relative;
	z-index: 1;
	color: var(--ink);
	font-size: 12px;
	font-weight: 800;
}

.score-ring small {
	font-size: 8px;
}

.floating-card {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 12px 15px;
	border: 1px solid rgba(255,255,255,.9);
	border-radius: 16px;
	background: rgba(255,255,255,.94);
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(10px);
	animation: float 5s ease-in-out infinite;
}

.floating-card img {
	width: 45px;
	height: 45px;
	object-fit: contain;
}

.floating-card div:not(.avatar-stack) {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.floating-card small {
	color: #8c92a0;
	font-size: 10px;
}

.floating-card strong {
	font-family: 'Nexa', sans-serif;
	font-size: 12px;
}

.floating-card--energy {
	top: 32px;
	right: -10px;
}

.floating-card--expert {
	bottom: 40px;
	left: -24px;
	animation-delay: -2.2s;
}

.avatar-stack {
	display: flex;
	align-items: center;
}

.avatar-stack img,.avatar-stack span {
	width: 35px;
	height: 35px;
	border: 2px solid white;
	border-radius: 50%;
	object-fit: cover;
	background: #e6e9ee;
}

.avatar-stack img + img,.avatar-stack span {
	margin-left: -9px;
}

.avatar-stack span {
	display: grid;
	place-items: center;
	background: var(--ink);
	color: white;
	font-size: 9px;
	font-weight: 800;
}

@keyframes float {
	0%,100% {
		transform:translateY(0)
	}
	50% {
		transform:translateY(-9px)
	}
}

.finder {
	position: relative;
	z-index: 5;
	margin-top: -48px;
}

.finder__panel {
	padding: 24px 28px;
	border: 1px solid rgba(226,229,234,.9);
	border-radius: 24px;
	display: grid;
	grid-template-columns: 1fr minmax(500px,.95fr);
	align-items: center;
	gap: 35px;
	background: white;
	box-shadow: 0 22px 55px rgba(36,41,56,.12);
}

.finder__intro {
	display: flex;
	align-items: center;
	gap: 16px;
}

.finder__icon {
	width: 52px;
	height: 52px;
	flex: 0 0 auto;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: rgba(240,31,75,.1);
	color: var(--red);
}

.finder__icon svg {
	font-size: 25px;
}

.finder h2 {
	font-size: 24px;
}

.finder__form {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 12px;
}

.field > span {
	display: block;
	margin-bottom: 7px;
	color: #737b89;
	font-size: 11px;
	font-weight: 700;
}

.field__control {
	height: 54px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 15px;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: #fafbfc;
	transition: border-color .2s,box-shadow .2s;
}

.field__control:focus-within {
	border-color: rgba(240,31,75,.55);
	box-shadow: 0 0 0 4px rgba(240,31,75,.08);
}

.field__control svg {
	color: #9aa0ab;
}

.field__control input {
	width: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ink);
}

.field__control input::placeholder {
	color: #a5abb5;
}

.finder-result {
	grid-column: 1 / -1;
	padding: 14px 16px;
	border-radius: 12px;
	background: #f4f8f4;
	color: #397546;
	font-size: 14px;
}

.finder-result.is-empty {
	background: #fff5f7;
	color: #a92843;
}

.finder-result a {
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.section {
	padding: 115px 0;
}

.section-heading {
	margin-bottom: 48px;
}

.section-heading--split {
	display: grid;
	grid-template-columns: 1.15fr .65fr;
	align-items: end;
	gap: 70px;
}

.section-heading--split > p {
	margin: 0 0 6px;
	color: var(--muted);
	font-size: 17px;
}

.section-heading--center {
	max-width: 810px;
	margin-inline: auto;
	text-align: center;
}

.section-heading--center .eyebrow {
	justify-content: center;
}

.section-heading h2 {
	max-width: 760px;
}

.section-heading .text-link {justify-content: flex-end;}

.section--diagnostics {
	padding-top: 145px;
	background: white;
}

.diagnostics-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 15px;
}

.diagnostic-card {
	position: relative;
	min-height: 250px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 19px;
	display: flex;
	flex-direction: column;
	background: white;
	overflow: hidden;
	transition: transform .25s, border-color .25s,box-shadow .25s;
}

.diagnostic-card::before {
	content: "";
	position: absolute;
	inset: auto -25px -45px auto;
	width: 125px;
	height: 125px;
	border-radius: 50%;
	background: #f6f7f9;
	transition: transform .3s,background .3s;
	z-index: -1;
}

.diagnostic-card:hover {
	transform: translateY(-6px);
	border-color: transparent;
	box-shadow: var(--shadow-sm);
}

.diagnostic-card:hover::before {
	transform: scale(1.35);
	background: #f0f2f5;
}

.diagnostic-card img,.custom-icon {
	width: 70px;
	height: 70px;
	margin-bottom: 28px;
	object-fit: contain;
	border-radius: 10px;
}

.diagnostic-card h3 {
	margin-bottom: 8px;
	font-size: 21px;
}

.diagnostic-card p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
}

.card-arrow {
	position: absolute;
	right: 23px;
	bottom: 24px;
	z-index: 1;
	width: 23px;
	height: 23px;
	color: #a3a9b3;
	transition: transform .25s,color .25s;
}

.diagnostic-card:hover .card-arrow {
	color: var(--red);
	transform: translateX(4px);
}

.custom-icon {
	display: grid;
	place-items: center;
	color: white;
	font-family: 'Nexa', sans-serif;
	font-size: 28px;
	font-weight: 700;
}

.custom-icon sup {
	font-size: 13px;
}

.custom-icon svg {
	width: 35px;
	height: 35px;
}

.custom-icon--grey {
	background: #aeb4c0;
}

.custom-icon--purple {
	background: var(--purple);
}

.centered-action {
	margin-top: 38px;
	text-align: center;
}

.section--commitments {
	background: var(--surface-soft);
}

.commitments-grid {
	display: grid;
	grid-template-columns: .9fr 1fr;
	align-items: center;
	gap: 95px;
}

.commitments-visual {
	position: relative;
	min-height: 560px;
}

.commitments-photo {
	position: absolute;
	inset: 0 50px 45px 0;
	overflow: hidden;
	border-radius: 30px;
	box-shadow: var(--shadow-sm);
}

.commitments-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.commitments-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,rgba(36,41,56,.18),transparent 55%);
}

.certification-card {
	position: absolute;
	top: 55px;
	right: 0;
	width: 260px;
	padding: 18px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	gap: 13px;
	background: white;
	box-shadow: var(--shadow-sm);
}

.certification-card > span {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: var(--surface-green);
	color: var(--green);
}

.certification-card div {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
}

.certification-card strong {
	font-family: 'Nexa', sans-serif;
	font-size: 13px;
}

.certification-card small {
	color: var(--muted);
	font-size: 10px;
}

.mini-stats {
	position: absolute;
	left: 28px;
	bottom: 0;
	width: 235px;
	padding: 17px 20px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--ink);
	color: white;
	box-shadow: var(--shadow-sm);
}

.mini-stats strong {
	font-family: 'Nexa', sans-serif;
	font-size: 32px;
}

.mini-stats span {
	color: rgba(255,255,255,.7);
	font-size: 11px;
	line-height: 1.35;
}

.section-lead {
	margin: 25px 0 34px;
	color: var(--muted);
	font-size: 18px;
}

.commitment-list {
	display: grid;
	gap: 23px;
}

.commitment-list > div {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 15px;
}

.commitment-list > div > span {
	width: 37px;
	height: 37px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--surface-green);
	color: var(--green);
}

.commitment-list h3 {
	margin-bottom: 4px;
	font-size: 17px;
}

.commitment-list p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 35px;
	color: var(--ink);
	font-family: 'Nexa',sans-serif;
	font-size: 14px;
	font-weight: 800;
}

.text-link svg {
	color: var(--red);
	transition: transform .2s;
}

.text-link:hover svg {
	transform: translateX(4px);
}

.section--audiences {
	background: white;
}

.audience-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.audience-card {
	position: relative;
	min-height: 510px;
	overflow: hidden;
	border-radius: 28px;
	color: white;
}

.audience-card > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s;
}

.audience-card:hover > img {
	transform: scale(1.04);
}

.audience-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,rgba(36,41,56,.9),rgba(36,41,56,.42) 70%,rgba(36,41,56,.08));
}

.audience-card__overlay--dark {
	background: linear-gradient(90deg,rgba(22,26,35,.92),rgba(22,26,35,.45) 75%,rgba(22,26,35,.12));
}

.audience-card__content {
	position: relative;
	z-index: 1;
	width: min(88%,470px);
	padding: 55px;
}

.audience-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 26px;
	border-radius: 18px;
	display: grid;
	place-items: center;
	background: var(--green);
}

.audience-icon--yellow {
	background: var(--yellow);
	color: var(--ink);
}

.audience-icon svg {
	font-size: 28px;
}

.audience-card h3 {
	max-width: 390px;
	font-size: 35px;
}

.audience-card ul {
	margin: 26px 0 30px;
	padding: 0;
	display: grid;
	gap: 10px;
	list-style: none;
}

.audience-card li {
	display: flex;
	align-items: center;
	gap: 9px;
	color: rgba(255,255,255,.82);
	font-size: 14px;
}

.audience-card li svg {
	color: var(--green);
}

.audience-card:nth-child(2) li svg {
	color: var(--yellow);
}

.audience-card a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: 'Nexa',sans-serif;
	font-size: 14px;
	font-weight: 800;
}

.audience-card a svg {
	transition: transform .2s;
}

.audience-card a:hover svg {
	transform: translateX(4px);
}

.section--network {
	background: #f8f9fa;
}

.section--network .section-heading, .news-index-section .section-heading, .section--catalog .section-heading {
	padding-bottom: 40px;
	border-bottom: 1px dotted var(--line);
}

.network-layout {
	display: grid;
	grid-template-columns: .78fr 1.22fr;
	gap: 28px;
}

.map-card {
	min-height: 670px;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: 26px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: white;
}

.map-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.map-card__header > span {
	width: 43px;
	height: 43px;
	border-radius: 13px;
	display: grid;
	place-items: center;
	background: rgba(240,31,75,.09);
	color: var(--red);
}

.map-card__header div {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
}

.map-card__header strong {
	font-family: 'Nexa',sans-serif;
	font-size: 14px;
}

.map-card__header small {
	color: var(--muted);
	font-size: 10px;
}

.france-map {
	width: 100%;
	max-height: 500px;
	flex: 1;
	margin: 15px 0;
	stroke-linecap: round;
}

.map-pins circle:first-child {
	fill: rgba(240,31,75,.15);
	stroke: rgba(240,31,75,.2);
}

.map-pins circle:last-child {
	fill: var(--red);
	stroke: white;
	stroke-width: 3;
}

.map-card__legend {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
	font-size: 11px;
}

.map-card__legend span,.map-card__legend a {
	display: flex;
	align-items: center;
	gap: 8px;
}

.map-card__legend i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--red);
}

.map-card__legend i:not(:first-child) {
	background: var(--yellow);
	margin-left: -10px;
}

.map-card__legend i:nth-child(3) {
	background: var(--green);
}

.map-card__legend a {
	font-weight: 800;
}

.experts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 17px;
}

.expert-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: white;
	transition: transform .25s,box-shadow .25s;
}

.expert-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-sm);
}

.expert-card__photo {
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: linear-gradient(145deg,#edf0f2,#dfe4e8);
}

.expert-card__photo::before {
	content: "";
	position: absolute;
	width: 80%;
	height: 80%;
	border-radius: 10px 50% 50% 50%;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	background: var(--green);
}

.expert-card:nth-child(2n) .expert-card__photo::before {
	background: var(--red);
}

.expert-card:nth-child(3n) .expert-card__photo::before {
	background: var(--yellow);
}

.expert-card__photo img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}

.expert-card__photo span {
	position: absolute;
	z-index: 2;
	top: 14px;
	right: 14px;
	padding: 6px 9px;
	border-radius: 999px;
	background: rgba(36,41,56,.86);
	color: white;
	font-size: 9px;
	font-weight: 800;
}

.expert-card__body {
	padding: 20px 21px 22px;
}

.expert-card__body small {
	color: var(--red);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	display: block;
	line-height: 12px;
	margin-bottom: 4px;
}

.expert-card__body h3 {
	margin: 5px 0 8px;
	font-size: 19px;
}

.expert-card__body p {
	min-height: 44px;
	margin: 0 0 17px;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.45;
}

.expert-card__body a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: 'Nexa',sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.expert-card__body a svg {
	color: var(--red);
}

.join-section {
	padding: 70px 0 115px;
	background: #f8f9fa;
}

.join-panel {
	position: relative;
	min-height: 470px;
	overflow: hidden;
	border-radius: 34px;
	display: grid;
	grid-template-columns: 1.15fr .65fr;
	align-items: center;
	background: var(--ink);
	color: white;
}

.join-panel::before {
	content: "";
	position: absolute;
	width: 510px;
	height: 510px;
	background: var(--yellow);
	border-radius: 50% 50% 50% 30px;
	right: -20%;
	bottom: 60%;
	opacity: .22;
}

.join-panel::after {
	content: "";
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 20px 50% 50% 50%;
	right: 18%;
	bottom: -80px;
	background: rgba(240,31,75,.22);
}

.join-panel__pattern {
	position: absolute;
	inset: 0;
	opacity: .5;
	background-image: radial-gradient(rgba(255,255,255,.25) 1px,transparent 1px);
	background-size: 20px 20px;
	mask-image: linear-gradient(to right,#000,transparent 70%);
}

.join-panel__content {
	position: relative;
	z-index: 2;
	padding: 70px;
}

.join-panel h2 {
	max-width: 660px;
	font-size: clamp(40px,5vw,62px);
}

.join-panel__content > p:not(.eyebrow) {
	max-width: 680px;
	margin: 23px 0 31px;
	color: rgba(255,255,255,.7);
	font-size: 17px;
}

.join-panel__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 25px;
}

.join-phone {
	display: inline-flex;
	align-items: center;
	gap: 11px;
}

.join-phone > svg {
	width: 33px;
	height: 33px;
	color: var(--yellow);
}

.join-phone span {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.join-phone small {
	color: rgba(255,255,255,.5);
	font-size: 10px;
}

.join-phone strong {
	font-family: 'Nexa',sans-serif;
	font-size: 15px;
}

.join-benefits {
	position: relative;
	z-index: 2;
	margin-right: 70px;
	padding: 32px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 24px;
	display: grid;
	gap: 20px;
	background: rgba(255,255,255,.055);
	backdrop-filter: blur(10px);
}

.join-benefits span {
	display: flex;
	align-items: center;
	gap: 11px;
	font-family: 'Nexa',sans-serif;
	font-size: 13px;
	font-weight: 700;
}

.join-benefits svg {
	width: 25px;
	height: 25px;
	padding: 5px;
	border-radius: 50%;
	background: var(--green);
	color: white;
}

.section--news {
	background: white;
}

.section--news .section-heading--split {
	grid-template-columns: 1fr auto;
}

.section--news .text-link {
	margin: 0 0 8px;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
}

.news-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: white;
	transition: transform .25s,box-shadow .25s;
}

.news-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-sm);
}

.news-card__visual {
	position: relative;
	height: 225px;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.news-card__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .65;
	background-image: radial-gradient(rgba(255,255,255,.7) 1px,transparent 1px);
	background-size: 18px 18px;
}

.news-card__visual--green {
	background: #e5f5e8;
}

.news-card__visual--red {
	background: #fde8ed;
}

.news-card__visual--yellow {
	background: #fff4cf;
}

.news-card__visual img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	filter: drop-shadow(0 16px 20px rgba(36,41,56,.13));
}

.news-card__visual > span:last-child {
	position: absolute;
	z-index: 2;
	top: 16px;
	left: 16px;
	padding: 6px 9px;
	border-radius: 999px;
	background: white;
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.document-illustration {
	position: relative !important;
	inset: auto !important;
	width: 105px;
	height: 125px;
	border-radius: 15px;
	display: grid;
	place-items: center;
	background: white !important;
	color: var(--red);
	transform: rotate(-5deg);
	box-shadow: 0 16px 30px rgba(36,41,56,.12);
}

.document-illustration svg {
	width: 58px;
	height: 58px;
}

.news-card__body {
	padding: 24px;
}

.news-card__body > p {
	margin: 0 0 12px;
	display: flex;
	align-items: center;
	gap: 7px;
	color: #9298a5;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.news-card__body h3 {
/*	min-height: 74px;*/
	display: block;
	font-size: 20px;
	line-height: 1.25;
}

.news-card__body a {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 22px;
	font-family: 'Nexa',sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.news-card__body a svg {
	color: var(--red);
}

.contact-banner {
	padding: 0 0 105px;
}

.contact-banner__inner {
	padding: 42px 48px;
	border: 1px solid var(--line);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
	background: linear-gradient(110deg,#f8f9fa,#fff);
}

.contact-banner h2 {
	font-size: clamp(28px,3vw,42px);
}

.contact-banner__actions {
	display: flex;
	align-items: center;
	gap: 22px;
}

.contact-banner__actions > a:last-child {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	font-family: 'Nexa',sans-serif;
	font-size: 14px;
	font-weight: 800;
}

.contact-banner__actions > a:last-child svg {
	color: var(--red);
}

.site-footer {
	padding: 75px 0 25px;
	background: #171b26;
	color: rgba(255,255,255,.67);
	position: relative;
	overflow: hidden;
	border-top-left-radius: 50px;
}

.site-footer::before {
	content: "";
	position: absolute;
	width: 510px;
	height: 510px;
	background: var(--green);
	border-radius: 50% 50% 50% 30px;
	right: -20%;
	bottom: 60%;
	opacity: .22;
	z-index: 0;
}

.site-footer::after {
	content: "";
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 20px 50% 50% 50%;
	right: 18%;
	bottom: -80px;
	background: var(--yellow);
	opacity: .22;
	z-index: 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.25fr .65fr .75fr 1fr;
	gap: 60px;
	z-index: 1;
}

.footer-brand img {
	width: 255px;
}

.footer-brand p {
	max-width: 390px;
	margin: 24px 0;
	font-size: 14px;
}

.site-footer h3 {
	margin: 7px 0 22px;
	color: white;
	font-size: 14px;
	letter-spacing: 0;
}

.footer-grid > div:not(.footer-brand) {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-grid > div:not(.footer-brand) > a {
	margin: 6px 0;
	font-size: 13px;
	transition: color .2s;
}

.footer-grid > div:not(.footer-brand) > a:hover {
	color: white;
}

.social-links {
	display: flex;
	gap: 9px;
}

.social-links a {
	width: 39px;
	height: 39px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 10px;
	display: grid;
	place-items: center;
	transition: background .2s,color .2s;
}

.social-links a:hover {
	background: white;
	color: var(--ink);
}

.footer-contact p {
	margin: 0 0 15px;
	font-size: 13px;
}

.footer-contact a {
	display: flex !important;
	align-items: center;
	gap: 8px;
}

.footer-contact svg {
	color: var(--yellow);
}

.footer-bottom {
	margin-top: 55px;
	z-index: 1;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.1);
	display: flex;
	justify-content: space-between;
	gap: 20px;
	font-size: 11px;
}

.mobile-bottom-cta {
	display: none;
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .65s ease,transform .65s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1120px) {
	.desktop-nav {
		gap: 17px;
	}
	.desktop-nav a {
		font-size: 13px;
	}
	.header__cta {
		display: none;
	}
	.hero__grid {
		gap: 35px;
	}
	.floating-card--energy {
		right: -5px;
	}
	.finder__panel {
		grid-template-columns: 1fr 1fr;
	}
	.diagnostics-grid {
		grid-template-columns: repeat(3,1fr);
	}
	.commitments-grid {
		gap: 55px;
	}
	.join-panel__content {
		padding: 55px;
	}
	.join-benefits {
		margin-right: 45px;
	}
}

@media (max-width: 900px) {
	.topbar__inner {
		justify-content: center;
	}
	.topbar__inner > p {
		display: none;
	}
	.desktop-nav,.header__cta {
		display: none;
	}
	.menu-toggle {
		display: flex;
		margin-left: auto;
	}
	.hero {
		min-height: auto;
	}
	.hero__grid {
		min-height: auto;
		grid-template-columns: 1fr;
		padding-block: 75px 115px;
	}
	.hero__content {
		max-width: 760px;
	}
	.hero__visual {
		min-height: 520px;
	}
	.finder__panel {
		grid-template-columns: 1fr;
	}
	.finder__form {
		grid-template-columns: 1fr auto;
	}
	.section-heading--split {
		grid-template-columns: 1fr;
		gap: 18px;
		align-items: start;
	}
	.diagnostics-grid {
		grid-template-columns: repeat(2,1fr);
	}
	.commitments-grid {
		grid-template-columns: 1fr;
	}
	.commitments-visual {
		max-width: 650px;
		width: 100%;
		margin-inline: auto;
	}
	.audience-grid {
		grid-template-columns: 1fr;
	}
	.network-layout {
		grid-template-columns: 1fr;
	}
	.map-card {
		min-height: 570px;
	}
	.join-panel {
		grid-template-columns: 1fr;
	}
	.join-benefits {
		margin: 0 55px 55px;
		grid-template-columns: 1fr 1fr;
	}
	.news-grid {
		grid-template-columns: 1fr 1fr;
	}
	.news-card:last-child {
		display: none;
	}
	.contact-banner__inner {
		align-items: flex-start;
		flex-direction: column;
	}
	.footer-grid {
		grid-template-columns: 1.3fr 1fr 1fr;
	}
	.footer-contact {
		grid-column: 2 / 4;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(calc(100% - 28px),var(--container));
	}
	.topbar__links a:first-child {
		display: none;
	}
	.header__inner {
		height: 70px;
	}
	.brand {
		width: 190px;
	}
	.mobile-menu {
		top: 70px;
		height: calc(100vh - 70px);
	}
	.hero__grid {
		padding-block: 58px 98px;
	}
	.hero h1 {
		font-size: 43px;
	}
	.hero__lead {
		font-size: 17px;
	}
	.hero__actions {
		display: grid;
	}
	.hero__proofs {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}
	.hero__proofs li:last-child {
		grid-column: 1 / -1;
	}
	.hero__visual {
		min-height: 420px;
		margin-top: 15px;
	}
	.hero-card {
		padding: 13px;
		border-radius: 23px;
	}
	.hero-card__footer {
		display: none;
	}
	.floating-card--energy {
		top: 1px;
		right: -4px;
	}
	.floating-card--expert {
		bottom: 0;
		left: -5px;
	}
	.floating-card {
		padding: 9px 11px;
	}
	.floating-card img {
		width: 37px;
		height: 37px;
	}
	.finder {
		margin-top: -52px;
	}
	.finder__panel {
		padding: 22px 18px;
		border-radius: 20px;
		gap: 22px;
	}
	.finder__intro {
		align-items: flex-start;
	}
	.finder h2 {
		font-size: 21px;
	}
	.finder__form {
		grid-template-columns: 1fr;
	}
	.section {
		padding: 82px 0;
	}
	.section--diagnostics {
		padding-top: 105px;
	}
	h2 {
		font-size: 35px;
	}
	.section-heading {
		margin-bottom: 35px;
	}
	.diagnostics-grid {
		grid-template-columns: 1fr;
		gap: 11px;
	}
	.diagnostic-card {
		min-height: 150px;
		padding: 20px;
		display: grid;
		grid-template-columns: 59px 1fr;
		align-items: center;
		column-gap: 17px;
	}
	.diagnostic-card img,.custom-icon {
		width: 59px;
		height: 59px;
		margin: 0;
	}
	.diagnostic-card h3 {
		font-size: 18px;
	}
	.diagnostic-card p {
		font-size: 12px;
	}
	.card-arrow {
		right: 16px;
		top: 17px;
		bottom: auto;
	}
	.commitments-visual {
		min-height: 470px;
	}
	.commitments-photo {
		inset: 0 15px 45px 0;
	}
	.certification-card {
		top: 20px;
		right: 0;
		width: 225px;
	}
	.mini-stats {
		left: 14px;
		width: 220px;
	}
	.audience-card {
		min-height: 520px;
	}
	.audience-card__content {
		width: 100%;
		padding: 38px 28px;
	}
	.audience-card h3 {
		font-size: 31px;
	}
	.map-card {
		min-height: 500px;
		padding: 19px;
	}
	.experts-grid {
		grid-template-columns: 1fr;
	}
	.expert-card {
		display: grid;
		grid-template-columns: 130px 1fr;
	}
	.expert-card__photo {
		height: 100%;
		min-height: 180px;
	}
	.expert-card__photo span {
		top: 9px;
		right: 9px;
		font-size: 8px;
	}
	.expert-card__body {
		padding: 18px;
	}
	.expert-card__body p {
		min-height: 0;
	}
	.join-section {
		padding: 35px 0 82px;
	}
	.join-panel {
		border-radius: 26px;
	}
	.join-panel__content {
		padding: 42px 25px 30px;
	}
	.join-panel h2 {
		font-size: 39px;
	}
	.join-panel__actions {
		align-items: flex-start;
		flex-direction: column;
	}
	.join-benefits {
		margin: 0 25px 30px;
		padding: 24px;
		grid-template-columns: 1fr;
	}
	.news-grid {
		grid-template-columns: 1fr;
	}
	.news-card:last-child {
		display: block;
	}
	.news-card__body h3 {
		min-height: 0;
	}
	.contact-banner {
		padding-bottom: 82px;
	}
	.contact-banner__inner {
		padding: 30px 23px;
	}
	.contact-banner__actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}
	.contact-banner__actions > a:last-child {
		justify-content: center;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 38px 25px;
	}
	.footer-brand {
		grid-column: 1 / -1;
	}
	.footer-contact {
		grid-column: 1 / -1;
	}
	.footer-bottom {
		padding-bottom: 70px;
		align-items: flex-start;
		flex-direction: column;
	}
	.mobile-bottom-cta {
		position: fixed;
		z-index: 950;
		left: 14px;
		right: 14px;
		bottom: 12px;
		height: 55px;
		border-radius: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 9px;
		background: var(--red);
		color: white;
		box-shadow: 0 14px 35px rgba(240,31,75,.35);
		font-family: 'Nexa',sans-serif;
		font-size: 14px;
		font-weight: 800;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,*::before,*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
}

/* ============================================================
	 Pages internes
	 ============================================================ */

a:is(.is-active, [aria-current="page"]) {
	color: var(--red);
}

.desktop-nav a:is(.is-active, [aria-current="page"])::after {
	transform: scaleX(1);
}

select,
textarea {
	font: inherit;
}

h1 em,
h2 em {
	color: var(--red);
	font-style: normal;
}

.lead {
	color: var(--muted);
	font-size: 19px;
	line-height: 1.75;
}

.narrow-container {
	width: min(calc(100% - 40px), 900px);
	margin-inline: auto;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 38px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
}

.breadcrumbs a {
	transition: color .2s;
}

.breadcrumbs a:hover {
	color: var(--red);
}

.breadcrumbs svg {
	width: 14px;
	height: 14px;
}

.breadcrumbs--light {
	color: rgba(255, 255, 255, .65);
}

.breadcrumbs--light a:hover {
	color: white;
}

.section--related,
.section--related-experts,
.article-related-section,
.location-section {
	background: var(--surface-soft);
}

.inner-contact-banner {
	padding-top: 95px;
}

/* Héros des pages internes */

.inner-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(120deg, #f7f8fa 0%, #fff 58%, #edf8ef 100%);
}

.inner-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .45;
	background-image:
		linear-gradient(rgba(36, 41, 56, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(36, 41, 56, .035) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: linear-gradient(to right, #000, transparent 82%);
}

.inner-hero__grid {
	position: relative;
	z-index: 1;
	min-height: 580px;
	display: grid;
	grid-template-columns: 1.08fr .92fr;
	align-items: center;
	gap: 75px;
	padding-block: 80px;
}

.inner-hero h1,
.detail-hero h1,
.contact-hero h1,
.news-index-hero h1,
.article-hero h1,
.join-hero h1,
.error-copy h1,
.expert-profile-hero h1 {
	margin: 0;
	font-size: clamp(45px, 5vw, 68px);
	line-height: 1.08;
}

.inner-hero__grid > div:first-child > p:not(.eyebrow) {
	max-width: 650px;
	margin: 24px 0 31px;
	color: var(--muted);
	font-size: 18px;
}

.inner-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.inner-hero__visual {
	position: relative;
	min-height: 420px;
	display: grid;
	place-items: center;
}

.diagnostic-orbit {
	position: relative;
	width: 380px;
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	border: 1px solid rgba(36, 41, 56, .09);
	border-radius: 50%;
	background: radial-gradient(circle, white 0 35%, rgba(255, 255, 255, .65) 36% 58%, transparent 59%);
	box-shadow: 0 35px 80px rgba(36, 41, 56, .1);
}

.diagnostic-orbit::before,
.diagnostic-orbit::after {
	content: "";
	position: absolute;
	border: 1px dashed rgba(36, 41, 56, .14);
	border-radius: 50%;
}

.diagnostic-orbit::before {
	inset: 35px;
}

.diagnostic-orbit::after {
	inset: 86px;
}

.diagnostic-orbit img {
	position: relative;
	z-index: 2;
	width: 150px;
	border-radius: 10px;
/*	filter: drop-shadow(0 20px 24px rgba(36, 41, 56, .17));*/
}

.orbit-label {
	position: absolute;
	z-index: 3;
	padding: 10px 15px;
	border: 1px solid rgba(255, 255, 255, .9);
	border-radius: 999px;
	background: rgba(255, 255, 255, .95);
	box-shadow: var(--shadow-sm);
	font-family: 'Nexa', sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.orbit-label--one {
	top: 46px;
	right: 3px;
	color: var(--red);
}

.orbit-label--two {
	bottom: 58px;
	right: -10px;
	color: var(--green);
}

.orbit-label--three {
	left: -20px;
	top: 48%;
	color: var(--blue);
}

/* Catalogue de diagnostics */

.section--catalog {
	background: white;
}

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 34px;
}

.filter-chip {
	min-height: 42px;
	padding: 0 17px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: white;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: color .2s, border-color .2s, background .2s, transform .2s;
}

.filter-chip:hover {
	color: var(--ink);
	border-color: #bcc2cc;
	transform: translateY(-1px);
}

.filter-chip.is-active {
	border-color: var(--ink);
	background: var(--ink);
	color: white;
}

.catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.catalog-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 23px;
	background: white;
	transition: transform .25s, box-shadow .25s, border-color .25s;
}

.catalog-card:hover {
	border-color: transparent;
	transform: translateY(-5px);
	box-shadow: var(--shadow-sm);
}

.catalog-card[hidden] {
	display: none;
}

.catalog-card__visual {
	position: relative;
	height: 190px;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: linear-gradient(140deg, #f5f6f8, #eceff2);
}

.catalog-card__visual::before {
	content: "";
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .75);
}

.catalog-card__visual > img,
.catalog-card__visual > .custom-icon {
	position: relative;
	z-index: 1;
	width: 100px;
	height: 100px;
	margin: 0;
	object-fit: contain;
	border-radius: 10px;
	filter: drop-shadow(0 14px 17px rgba(36, 41, 56, .12));
	transition: transform .25s;
}

.catalog-card:hover .catalog-card__visual > img,
.catalog-card:hover .catalog-card__visual > .custom-icon {
	transform: scale(1.1);
}

.catalog-card__visual > span:last-child {
	position: absolute;
	z-index: 2;
	top: 14px;
	left: 15px;
	padding: 6px 10px;
	border-radius: 999px;
	background: white;
	color: var(--muted);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.catalog-card__body {
	padding: 24px;
}

.catalog-card__body h2 {
	font-size: 22px;
}

.catalog-card__body p {
	min-height: 68px;
	margin: 10px 0 20px;
	color: var(--muted);
	font-size: 14px;
}

.catalog-card__body a,
.news-read-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Nexa', sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.catalog-card__body a svg,
.news-read-link svg {
	color: var(--red);
	transition: transform .2s;
}

.catalog-card__body a:hover svg,
.news-read-link:hover svg {
	transform: translateX(4px);
}

.catalog-empty,
.directory-empty,
.news-filter-empty {
	margin: 28px 0 0;
	padding: 22px;
	border: 1px dashed var(--line);
	border-radius: 16px;
	color: var(--muted);
	text-align: center;
}

.section--process {
	background: var(--surface-soft);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.process-card {
	position: relative;
	min-height: 270px;
	padding: 32px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: white;
}

.process-card > span {
	position: absolute;
	top: 23px;
	right: 24px;
	color: #d8dce3;
	font-family: 'Nexa', sans-serif;
	font-size: 32px;
	font-weight: 800;
}

.process-card > svg {
	width: 53px;
	height: 53px;
	margin-bottom: 28px;
	padding: 13px;
	border-radius: 16px;
	background: rgba(240, 31, 75, .08);
	color: var(--red);
}

.process-card h3 {
	font-size: 20px;
}

.process-card p {
	margin: 11px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.section--faq {
	background: white;
}

.accordion-list {
	display: grid;
	gap: 12px;
}

.faq-item {
	border: 1px solid var(--line);
	border-radius: 17px;
	background: white;
	transition: box-shadow .2s, border-color .2s;
}

.faq-item[open] {
	border-color: transparent;
	box-shadow: var(--shadow-sm);
}

.faq-item summary {
	padding: 22px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	list-style: none;
	cursor: pointer;
	font-family: 'Nexa', sans-serif;
	font-size: 16px;
	font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary > span {
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--surface-soft);
	color: var(--red);
	transition: transform .2s;
}

.faq-item[open] summary > span {
	transform: rotate(90deg);
}

.faq-item > div {
	padding: 0 24px 23px;
}

.faq-item > div p {
	margin: 0;
	color: var(--muted);
}

/* Fiche diagnostic */

.detail-hero {
	padding: 54px 0 78px;
	overflow: hidden;
	background: linear-gradient(125deg, #f7f8fa, #fff 58%, #edf8ef);
}

.detail-hero__grid {
	display: grid;
	grid-template-columns: 1.08fr .72fr;
	align-items: center;
	gap: 70px;
}

.detail-hero__grid > div:first-child > p:not(.eyebrow) {
	max-width: 700px;
	margin: 23px 0 28px;
	color: var(--muted);
	font-size: 18px;
}

.detail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 30px;
}

.detail-meta > span {
	min-width: 180px;
	padding: 13px 15px;
	border: 1px solid var(--line);
	border-radius: 14px;
	display: grid;
	grid-template-columns: 27px 1fr;
	column-gap: 9px;
	background: rgba(255, 255, 255, .78);
	color: var(--muted);
	font-size: 11px;
}

.detail-meta svg {
	grid-row: 1 / 3;
	width: 25px;
	height: 25px;
	color: var(--green);
}

.detail-meta strong {
	color: var(--ink);
	font-size: 12px;
}

.detail-hero__visual {
	display: grid;
	place-items: center;
}

.diagnostic-feature {
	width: min(100%, 400px);
	min-height: 430px;
/*	padding: 28px;*/
/*	border: 1px solid rgba(255, 255, 255, .9);*/
/*	border-radius: 30px;*/
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
/*	background: rgba(255, 255, 255, .88);*/
/*	box-shadow: var(--shadow);*/
}

.diagnostic-feature > img {
	width: 100%;
/*	margin-bottom: 25px;*/
	aspect-ratio: 1 / 1;
	filter: drop-shadow(0 20px 22px rgba(36, 41, 56, .15));
	border-radius: 20px;
}

.energy-scale {
	width: 100%;
	display: grid;
	gap: 6px;
}

.energy-scale span {
	min-height: 26px;
	padding: 4px 10px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	color: white;
	font-size: 10px;
	font-weight: 800;
}

.energy-scale span:nth-child(1) {
	width: 42%;
	background: #209a56;
}

.energy-scale span:nth-child(2) {
	width: 50%;
	background: #58b957;
}

.energy-scale span:nth-child(3) {
	width: 58%;
	background: #a8c93c;
}

.energy-scale span:nth-child(4) {
	width: 66%;
	background: #efd52b;
	color: var(--ink);
}

.energy-scale span:nth-child(5) {
	width: 74%;
	background: #f4a52b;
}

.energy-scale span:nth-child(6) {
	width: 82%;
	background: #e56a2e;
}

.energy-scale span:nth-child(7) {
	width: 90%;
	background: #c83b3b;
}

.detail-content {
	background: white;
}

.detail-layout {
	display: grid;
	grid-template-columns: 255px minmax(0, 1fr);
	align-items: start;
	gap: 75px;
}

.detail-sidebar,
.article-sidebar {
	position: sticky;
	top: 120px;
}

.detail-sidebar > nav,
.article-toc {
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: 18px;
	display: grid;
	gap: 4px;
	background: white;
}

.detail-sidebar > nav a,
.article-toc a {
	padding: 10px 11px;
	border-radius: 9px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	transition: color .2s, background .2s;
}

.detail-sidebar > nav a:hover,
.article-toc a:hover,
.detail-sidebar > nav a.is-current {
	background: var(--surface-soft);
	color: var(--ink);
}

.sidebar-contact {
	margin-top: 15px;
	padding: 22px;
	border-radius: 18px;
	background: var(--ink);
	color: white;
}

.sidebar-contact h2 {
	margin: 16px 0 8px;
	font-size: 20px;
}

.sidebar-contact > span {
	width: 42px;
	height: 42px;
	border-radius: 13px;
	display: grid;
	place-items: center;
	background: rgba(255, 191, 21, .13);
	color: var(--yellow);
}

.sidebar-contact > span svg {
	width: 1.2em;
	height: 1.2em;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sidebar-contact p {
	color: rgba(255, 255, 255, .6);
	font-size: 11px;
}

.sidebar-contact .button {
	display: flex;
	width: 100%;
}

.diag-table {
	width: 100%;
	padding: 22px;
	border-radius: 22px;
	border: 1px solid var(--line);
}

.diag-table td {
	padding: 5px;
/*	border: 1px solid var(--line);*/
}

.diag-table tr:nth-child(even) td {
	background: var(--surface-soft);
}

.diag-table td:first-child:last-child, .diag-table td:not(:first-child) {
	text-align: center;
}

.diag-table td:first-child:not(:last-child), .diag-table th:first-child:not(:last-child) {
	text-align: right;
}

.diag-table .yellow {
	background: var(--surface-yellow);
	color: var(--yellow) !important;
	font-weight: 600;
}

.diag-table .red {
	background: var(--surface-red);
	color: var(--red) !important;
	font-weight: 600;
}

.rich-content {
	min-width: 0;
}

.rich-content blockquote {
	background: var(--surface-green);
	color: var(--green);
	font-weight: 600;
	padding: 22px;
	margin-bottom: 32px;
	border-radius: 18px;
	margin-left: 0;
}

.rich-content > section + section {
	margin-top: 70px;
	padding-top: 65px;
	border-top: 1px solid var(--line);
}

.rich-content h2,
.article-content h2 {
	margin-bottom: 20px;
	font-size: clamp(29px, 3vw, 42px);
}

.rich-content p:not(.eyebrow),
.article-content p {
	color: var(--muted);
}

.info-callout,
.article-callout,
.article-note {
	margin-top: 30px;
	padding: 22px;
	border: 1px solid #f4d4db;
	border-radius: 18px;
	display: flex;
	gap: 16px;
	background: #fff4f6;
}

.info-callout p,
.article-callout p,
.article-note p {
	margin: 4px 0 0;
	font-size: 13px;
}

.info-callout > svg {
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	color: var(--red);
}

.use-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.use-grid > div {
	padding: 25px;
	border: 1px solid var(--line);
	border-radius: 20px;
}

.use-grid h3 {
	margin: 22px 0 8px;
	font-size: 20px;
}

.use-grid p {
	margin: 0;
	font-size: 13px;
}

.use-grid span {
	width: 44px;
	height: 44px;
	border-radius: 13px;
	display: grid;
	place-items: center;
	background: #eaf6ec;
	color: var(--green);
}

.checked-list,
.article-check-list {
	padding: 0;
	display: grid;
	gap: 12px;
	list-style: none;
}

.checked-list li,
.article-check-list li {
	padding: 14px 16px;
	border: 1px solid var(--line);
	border-radius: 13px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--muted);
}

.checked-list li::before,
.article-check-list li::before {
/*	content: "✓";*/
	position: absolute;
	top: 1px;
	left: 0;
	width: 23px;
	height: 23px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--surface-green);
	color: var(--green);
	font-size: 12px;
	font-weight: 900;
}

.checked-list svg {
	color: var(--green);
	flex: 0 0 auto;
}

.obligation-table {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 18px;
}

.obligation-table > div {
	display: grid;
	grid-template-columns: 1.15fr repeat(3, 1fr);
}

.obligation-table > div:first-child {
	background: var(--ink);
	color: white;
}

.obligation-table > div:last-child {
	border-bottom: 0;
}

.obligation-table span, .obligation-table strong {
	padding: 16px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	font-size: 13px;
}

.obligation-table .yes {
	color: var(--green);
	font-weight: 800;
}

.related-grid,
.related-experts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.related-card,
.mini-expert {
	min-width: 0;
	min-height: 110px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 18px;
	display: flex;
	align-items: center;
	gap: 15px;
	background: white;
	transition: transform .2s, box-shadow .2s;
}

.related-card:hover,
.mini-expert:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-sm);
}

.related-card > img,
.mini-expert > img,
.mini-expert > .expert-initials {
	width: 66px;
	height: 66px;
	flex: 0 0 auto;
	object-fit: contain;
	border-radius: 10px;
/*	background: var(--surface-soft);*/
}

.related-card > div,
.mini-expert > span:not(.expert-initials) {
	min-width: 0;
	display: flex;
	flex: 1;
	flex-direction: column;
}

.related-card small,
.mini-expert small {
	color: var(--red);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.related-card strong,
.mini-expert strong {
	font-family: 'Nexa', sans-serif;
	font-size: 15px;
}

.related-card > svg,
.mini-expert > svg {
	color: var(--red);
}

/* Qui sommes-nous */

.founder-stack {
	position: relative;
	min-height: 460px;
}

.founder-photo {
	position: absolute;
	width: 270px;
	overflow: hidden;
	border: 10px solid white;
	border-radius: 26px;
	background: #e8ebef;
	box-shadow: var(--shadow);
}

.founder-photo img {
	width: 100%;
/*	height: 330px;*/
	aspect-ratio: 1 / 1;
	object-fit: contain;
	object-position: center bottom;
	background: var(--yellow);
}

.founder-photo:not(:first-child) img {
	background: var(--green);
}

.founder-photo span {
	display: block;
	padding: 13px 16px;
	background: white;
	font-family: 'Nexa', sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.founder-photo--one {
	top: 0;
	left: 15px;
	transform: rotate(-4deg);
}

.founder-photo--two {
	right: 0;
	bottom: 0;
	transform: rotate(5deg);
}

.founder-stamp {
	position: absolute;
	z-index: 3;
	right: 41%;
	bottom: 65px;
	width: 125px;
	height: 125px;
	border: 7px solid white;
	border-radius: 50%;
	display: grid;
	place-items: center;
	align-content: center;
	background: var(--red);
	color: white;
	box-shadow: var(--shadow-sm);
	transform: rotate(-7deg);
}

.founder-stamp strong {
	font-family: 'Nexa', sans-serif;
	font-size: 28px;
	line-height: 1;
}

.founder-stamp span {
	max-width: 80px;
	font-size: 9px;
	line-height: 1.2;
	text-align: center;
}

.story-section {
	background: white;
}

.story-grid {
	display: grid;
	grid-template-columns: 1fr .8fr;
	align-items: center;
	gap: 90px;
}

.story-content > p:not(.eyebrow) {
	color: var(--muted);
}

.story-timeline {
	position: relative;
	display: grid;
	gap: 28px;
}

.story-timeline::before {
	content: "";
	position: absolute;
	top: -20px;
	bottom: 50px;
	left: 25px;
	width: 1px;
	background: var(--line);
}

.story-timeline > div {
	position: relative;
	padding-left: 70px;
}

.story-timeline > div::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 5px;
	left: 13px;
	width: 15px;
	height: 15px;
	border: 5px solid white;
	border-radius: 50%;
	background: var(--red);
	box-shadow: 0 0 0 1px var(--line);
}

.story-timeline span {
	color: var(--red);
	font-family: 'Nexa', sans-serif;
	font-size: 11px;
	font-weight: 800;
}

.story-timeline h3 {
	margin: 3px 0 7px;
	font-size: 20px;
}

.story-timeline p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.section--values {
	background: var(--surface-soft);
}

.values-grid,
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.value-card,
.benefit-card,
.difference-card {
	padding: 29px;
	border: 1px solid var(--line);
	border-radius: 21px;
	background: white;
}

.value-card__icon,
.benefit-card > span,
.difference-card > span {
	width: 100px;
	height: 100px;
	margin-bottom: 24px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	color: white;
}

.value-card__icon svg,
.benefit-card > span svg,
.difference-card > span svg {
	width: 60px;
	height: 60px;
}

.value-card__icon--red {
	background: var(--red);
}

.value-card__icon--green {
	background: var(--green);
}

.value-card__icon--yellow {
	background: var(--yellow);
/*	color: var(--ink);*/
}

.value-card__icon--blue {
	background: var(--blue);
}

.value-card__icon--purple {
	background: var(--purple);
}

.value-card__icon--grey {
	background: var(--ink-2);
}

.value-card h3,
.benefit-card h3,
.difference-card h3 {
	font-size: 20px;
}

.value-card p,
.benefit-card p,
.difference-card p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.mission-section {
	background: white;
}

.mission-panel {
	padding: 62px;
	border-radius: 30px;
	display: grid;
	grid-template-columns: 1.1fr .75fr;
	align-items: center;
	gap: 65px;
	background: var(--ink);
	color: white;
}

.mission-panel h2 {
	font-size: clamp(35px, 4vw, 54px);
}

.mission-panel > div:first-child > p:not(.eyebrow) {
	margin: 20px 0 28px;
	color: rgba(255, 255, 255, .68);
}

.mission-list {
	display: grid;
	gap: 13px;
}

.mission-list > span {
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 15px;
	display: grid;
	grid-template-columns: 35px 1fr;
	column-gap: 13px;
	align-items: center;
	background: rgba(255, 255, 255, .05);
}

.mission-list svg {
	grid-row: 1 / 3;
	width: 35px;
	height: 35px;
	color: var(--yellow);
}

.mission-list strong,
.mission-list small {
	display: block;
}

.mission-list strong {
	font-size: 13px;
}

.mission-list small {
	color: rgba(255, 255, 255, .55);
	font-size: 10px;
}

.inner-hero--page .inner-hero__grid {
	min-height: auto !important;
}

.page-content {
	padding: 100px;
}

@media (max-width: 900px) {
	.page-content {padding: 100px 0;}
}

/* Annuaire */

.inner-hero--network {
	background: linear-gradient(120deg, #f7f8fa, #fff 58%, #fef4d6);
}

.network-stat-panel {
	position: relative;
	min-height: 390px;
	padding: 35px;
	border-radius: 29px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-content: end;
	gap: 12px;
	overflow: hidden;
	background: var(--ink);
	color: white;
	box-shadow: var(--shadow);
}

.network-stat-panel__overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0;
	background: linear-gradient(0deg, rgba(36, 41, 56, .9), rgba(36, 41, 56, .42) 70%, rgba(36, 41, 56, .08));
}

.network-stat-panel > div:not(.network-stat-panel__overlay) {
	position: relative;
	z-index: 2;
	padding: 17px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 15px;
	background: rgba(36, 41, 56, .36);
}

.network-stat-panel strong,
.network-stat-panel span {
	display: block;
}

.network-stat-panel strong {
	font-family: 'Nexa', sans-serif;
	font-size: 29px;
}

.network-stat-panel span {
	color: rgba(255, 255, 255, .58);
	font-size: 10px;
}

.network-stat-panel img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.network-stat-map {
	position: absolute;
	top: -5%;
	right: -5%;
	width: 85%;
	height: 85%;
	opacity: .13;
	stroke: white;
}

.directory-section {
	background: white;
}

.directory-toolbar {
	margin-bottom: 25px;
	padding: 15px;
	border: 1px solid var(--line);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: var(--surface-soft);
}

.search-field {
	width: min(100%, 650px);
	min-height: 48px;
	padding: 0 12px 0 16px;
	border: 1px solid var(--line);
	border-radius: 13px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: white;
}

.search-field svg {
	color: var(--muted);
}

.search-field input {
	min-width: 0;
	flex: 1;
	border: 0;
	outline: 0;
	background: transparent;
}

.search-field button {
	border: 0;
	background: transparent;
	color: var(--muted);
	cursor: pointer;
}

.directory-toolbar > span {
	white-space: nowrap;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
}

.directory-layout {
	display: grid;
	grid-template-columns: 360px minmax(0, 1fr);
	align-items: start;
	gap: 24px;
}

.directory-map-card {
	position: sticky;
	top: 120px;
	min-height: 610px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 23px;
	background: var(--surface);
}

.directory-map-card .france-map {
	height: 430px;
}

.directory-map-card > p {
	margin: 0;
	color: var(--muted);
	font-size: 11px;
}

.directory-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.directory-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 21px;
	background: white;
	transition: transform .25s, box-shadow .25s;
}

.directory-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-sm);
}

.directory-card[hidden] {
	display: none;
}

.directory-card__photo {
	position: relative;
	width: 100%;
	display: grid;
	place-items: end center;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: linear-gradient(145deg, #edf0f2, #dfe4e8);
}

.directory-card__photo::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 80%;
	aspect-ratio: 1 / 1;
	border-radius: 10px 50% 50% 50%;
	background: var(--green);
}

.directory-card:nth-child(2n) .directory-card__photo::before {
	background: var(--red);
}

.directory-card:nth-child(3n) .directory-card__photo::before {
	background: var(--yellow);
}

.directory-card__photo img,
.directory-card__photo .expert-initials {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}

.directory-card__photo > span:last-child:not(.expert-initials) {
	position: absolute;
	z-index: 2;
	top: 13px;
	right: 13px;
	padding: 6px 9px;
	border-radius: 999px;
	background: rgba(36, 41, 56, .88);
	color: white;
	font-size: 9px;
	font-weight: 800;
}

.expert-initials {
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: white;
	font-family: 'Nexa', sans-serif;
	font-size: 20px;
	font-weight: 800;
}

.expert-photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	z-index: 1;
}

.directory-card__photo .expert-initials {
	width: 100%;
	height: 100%;
	font-size: 29px;
}

.directory-card__body {
	padding: 21px;
}

.directory-card__body > small {
	color: var(--red);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	display: block;
	line-height: 12px;
	margin-bottom: 4px;
}

.directory-card__body h2 {
	margin: 4px 0 8px;
	font-size: 20px;
}

.directory-card__body > p {
	min-height: 42px;
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: 7px;
	color: var(--muted);
	font-size: 12px;
}

.directory-card__body > p svg {
	flex: 0 0 auto;
	margin-top: 3px;
	color: var(--red);
}

.directory-card__tags {
	margin: 17px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.directory-card__tags span {
	padding: 5px 8px;
	border-radius: 999px;
	background: var(--surface-soft);
	color: var(--muted);
	font-size: 9px;
	font-weight: 700;
	display: block;
}

.directory-card__body > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: 'Nexa', sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.directory-card__body > a svg {
	color: var(--red);
}

.join-section--compact {
	padding-top: 80px;
}

.join-section--compact .join-panel {
	min-height: 390px;
}

/* Profil expert */

.expert-profile-hero {
	padding: 50px 0 80px;
	overflow: hidden;
	background: var(--ink);
	color: white;
}

.expert-profile-grid {
	display: grid;
	grid-template-columns: 370px minmax(0, 1fr);
	align-items: center;
	gap: 65px;
}

.profile-portrait {
	position: relative;
	min-height: 350px;
	border-radius: 30px;
	aspect-ratio: 1 / 1;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: linear-gradient(145deg, #e9edf0, #cfd6dc);
}

.profile-portrait::before {
	content: "";
	position: absolute;
	width: 80%;
	aspect-ratio: 1 / 1;
	border-radius: 20px 50% 50% 50%;
	background: var(--green);
}

.expert-initials--large {
	position: relative;
	z-index: 1;
/*	width: 175px;*/
/*	height: 175px;*/
/*	border: 12px solid rgba(255, 255, 255, .65);*/
	font-size: 45px;
}

.profile-badge {
	position: absolute;
	z-index: 2;
	left: 22px;
	bottom: 22px;
	padding: 10px 13px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: white;
	color: var(--ink);
	font-size: 10px;
	font-weight: 800;
}

.profile-badge svg {
	color: var(--green);
}

.profile-intro > p:not(.eyebrow, .profile-zone) {
	max-width: 700px;
	color: rgba(255, 255, 255, .65);
	font-size: 17px;
}

.profile-zone {
	margin: 16px 0;
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--yellow);
	font-size: 13px;
	font-weight: 700;
}

.profile-actions {
	margin-top: 28px;
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
}

.button--profile-ghost {
	border-color: rgba(255, 255, 255, .2);
	background: rgba(255, 255, 255, .06);
	color: white;
}

.button--profile-ghost:hover {
	border-color: rgba(255, 255, 255, .45);
	background: rgba(255, 255, 255, .1);
}

.profile-content {
	background: white;
}

.profile-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	align-items: start;
	gap: 75px;
}

.profile-main > section + section {
	margin-top: 65px;
	padding-top: 60px;
	border-top: 1px solid var(--line);
}

.profile-main h2 {
	margin-bottom: 20px;
	font-size: clamp(29px, 3vw, 42px);
}

.profile-main p:not(.eyebrow) {
	color: var(--muted);
}

.profile-diagnostics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.profile-diagnostics a {
	min-height: 122px;
	padding: 15px;
	border: 1px solid var(--line);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--surface-soft);
	font-family: 'Nexa', sans-serif;
	font-size: 11px;
	font-weight: 800;
	transition: transform .2s, background .2s;
}

.profile-diagnostics a:hover {
	background: white;
	transform: translateY(-3px);
}

.profile-diagnostics img,
.profile-diagnostics .custom-icon {
	width: 58px;
	height: 58px;
	margin: 0;
	object-fit: contain;
	border-radius: 6px;
}

.specialty-card {
	padding: 25px;
	border-radius: 19px;
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 19px;
	background: var(--surface-green);
}

.specialty-card > span {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: white;
	color: var(--green);
}

.specialty-card h3 {
	font-size: 18px;
}

.specialty-card p {
	margin: 7px 0 0;
	font-size: 13px;
}

.profile-sidebar {
	position: sticky;
	top: 120px;
}

.profile-contact-card {
	padding: 29px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: white;
	box-shadow: var(--shadow-sm);
}

.profile-contact-card h2 {
	margin-bottom: 20px;
	font-size: 25px;
}

.profile-contact-card > p:not(.eyebrow),
.profile-contact-card > a:not(.button) {
	margin: 0 0 13px;
	display: flex;
	align-items: flex-start;
	gap: 9px;
	color: var(--muted);
	font-size: 12px;
}

.profile-contact-card svg {
	flex: 0 0 auto;
	margin-top: 3px;
	color: var(--red);
}

.profile-contact-card .button {
	width: 100%;
	margin-top: 10px;
}

.profile-trust {
	margin-top: 15px;
	padding: 23px;
	border-radius: 20px;
	display: grid;
	gap: 18px;
	background: var(--surface-soft);
}

.profile-trust > div {
	display: grid;
	grid-template-columns: 35px 1fr;
	gap: 11px;
}

.profile-trust svg {
	width: 31px;
	height: 31px;
	color: var(--green);
}

.profile-trust span {
	display: flex;
	flex-direction: column;
	color: var(--muted);
	font-size: 10px;
}

.profile-trust strong {
	color: var(--ink);
	font-size: 12px;
}

.related-experts .mini-expert > img {
	object-fit: contain;
	object-position: center bottom;
	background: var(--surface-red);
}

/* Rejoindre le réseau */

.join-hero {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	color: white;
}

.join-hero__pattern {
	position: absolute;
	inset: 0;
	opacity: .5;
	background-image: radial-gradient(rgba(255, 255, 255, .28) 1px, transparent 1px);
	background-size: 22px 22px;
	mask-image: linear-gradient(to right, #000, transparent 75%);
}

.join-hero__grid {
	position: relative;
	z-index: 1;
	min-height: 650px;
	display: grid;
	grid-template-columns: 1.05fr .75fr;
	align-items: center;
	gap: 75px;
	padding-block: 80px;
}

.join-hero__grid > div:first-child > p:not(.eyebrow) {
	max-width: 700px;
	margin: 24px 0 31px;
	color: rgba(255, 255, 255, .65);
	font-size: 18px;
}

.join-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 25px;
}

.join-hero__visual {
	min-height: 480px;
	display: grid;
	place-items: center;
}

.join-dashboard {
	width: min(100%, 500px);
	padding: 21px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 27px;
	background: rgba(255, 255, 255, .07);
	box-shadow: 0 35px 80px rgba(0, 0, 0, .22);
	backdrop-filter: blur(12px);
}

.join-dashboard__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: rgba(255, 255, 255, .65);
	font-size: 10px;
}

.join-dashboard__top span {
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(88, 187, 105, .18);
	color: #8ee39d;
	font-weight: 800;
}

.join-dashboard__video {
	width: 100%;
	aspect-ratio: 16 / 9;
	margin: 20px 0;
	border-radius: 18px;
	overflow: hidden;
	background: rgba(0, 0, 0, .12);
}

.join-dashboard__video iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
}

.join-dashboard__cards {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 10px;
}

.join-dashboard__cards span {
	font-size: 9px;
	padding: 15px 8px;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 13px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 7px;
	background:rgba(255,255,255,.05);
}

.join-dashboard__cards strong {
	display: block;
	font-size: 17px;
}

.join-dashboard__cards svg {
	width: 30px;
	height: 30px;
	stroke: var(--yellow) !important;
}

.join-proof-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 13px;
	margin-top: 26px;
}

.join-proof-row > span {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, .72);
	font-size: 11px;
}

.join-proof-row svg {
	color: var(--green);
}

.section--benefits {
	background: white;
}

.benefit-card:last-child:nth-child(8) {
	width: calc(200% + 18px);
}

.benefit-card > span,
.difference-card > span {
	background: var(--surface-green);
	color: var(--green);
	width: 100px;
	height: 100px;
}

.benefit-card > span svg,
.difference-card > span svg {
	height: 60px;
	width: 60px;
}

.benefit-card__image {
	padding: 0;
	position: relative;
	overflow: hidden;
}

.benefit-card__image img {
	position: absolute;
	width: 100%;
	height: auto;
	object-fit: cover;
	top: 50%;
	transform: translateY(-50%);
}

.section--join-difference {
	background: var(--surface-soft);
}

.difference-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.difference-card {
	padding: 24px;
	text-align: center;
}

.difference-card span {
	font-weight: 800;
	margin: 0 auto;
	font-size: 24px;
	margin-bottom: 24px;
}

.candidate-section {
	background: white;
}

.candidate-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.candidate-card {
	position: relative;
	min-height: 440px;
	padding: 37px;
	border: 1px solid var(--line);
	border-radius: 25px;
	overflow: hidden;
	background: white;
}

.candidate-card--dark {
	border-color: var(--ink);
	background: var(--ink);
	color: white;
}

.candidate-card__visual {
		margin-bottom: 55px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.candidate-card__visual > svg {
	width: 60px;
	height: 60px;
	padding: 15px;
	border-radius: 18px;
	background: #fde8ed;
	color: var(--red);
}

.candidate-card--dark .candidate-card__visual > svg {
	background: var(--yellow);
	color: var(--ink);
}

.candidate-card__visual span {
	color: #e2e5e9;
	font-family: "Manrope", sans-serif;
	font-size: 68px;
	font-weight: 800;
}

.candidate-card h3 {
	font-size: 28px;
}

.candidate-card > p:not(.eyebrow) {
	color: var(--muted);
}

.candidate-card--dark > p:not(.eyebrow) {
	color: rgba(255, 255, 255, .63);
}

.candidate-card ul {
	margin: 23px 0 0;
	padding: 0;
	display: grid;
	gap: 9px;
	list-style: none;
}

.candidate-card li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
}

.candidate-card li svg {
	color: var(--green);
}

.candidate-card--dark li {
	color: rgba(255, 255, 255, .68);
}

.candidate-card li::before {
/*	content: "✓";*/
	position: absolute;
	left: 0;
	color: var(--green);
	font-weight: 900;
}

.application-section {
	background: var(--surface-soft);
}

.application-panel {
	overflow: hidden;
	border-radius: 30px;
	display: grid;
	grid-template-columns: .8fr 1fr;
	background: var(--ink);
}

.application-copy {
	padding: 60px;
	color: white;
}

.application-copy > p:not(.eyebrow) {
	color: rgba(255, 255, 255, .62);
}

.application-copy h2 {
	font-size: clamp(37px, 4vw, 55px);
}

.application-contact {
	margin-top: 40px;
	display: grid;
	gap: 14px;
}

.application-contact a {
	display: flex;
	align-items: center;
	gap: 13px;
}

.application-contact svg {
	width: 42px;
	height: 42px;
	padding: 10px;
	border-radius: 13px;
	background: rgba(255, 255, 255, .1);
	color: var(--yellow);
}

.application-contact span {
	display: flex;
	flex-direction: column;
}

.application-contact small {
	color: rgba(255, 255, 255, .48);
}

/* Formulaires */

.contact-form {
	padding: 52px;
	display: grid;
	gap: 17px;
	background: white;
}

.contact-form:not(#join-form) {
	padding: 0;
}

.contact-form label {
	display: flex;
	gap: 7px;
	color: var(--ink);
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 5px;
}

.contact-form .ff-el-is-required label::after {
	content: '*';
	font-weight: 800;
	color: var(--red);
	margin-left: -4px;
}

.contact-form .error.text-danger {
	font-weight: 800;
	color: var(--red);
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 10px;
	border-left: 1px dashed var(--red);
	padding-left: 10px;
	padding-top: 10px;
}

.contact-form input, .contact-form select, .contact-form textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid var(--line);
	border-radius: 11px;
	background: #fafbfc;
	color: var(--ink);
	outline: none;
}

.contact-form textarea {
	min-height: 125px;
	resize: vertical;
	vertical-align: middle;
}

.contact-form select option {
	color: var(--ink);
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
	border-color: var(--yellow);
	box-shadow: 0 0 0 3px rgba(255, 91, 21, .1);
}

.contact-form input[aria-invalid=true], .contact-form select[aria-invalid=true], .contact-form textarea[aria-invalid=true] {
	border-color: var(--red);
	border-bottom-left-radius: 0;
}

.contact-form .ff-t-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.contact-form .ff-el-group:not(:first-child) {
	margin-top: 17px;
}

.contact-form .button {
	width: 100%;
}

.contact-form .button.button--primary {background: var(--red) !important;}
.contact-form .button.button--primary:hover {background: var(--red-dark) !important;}

.contact-form .button.button--yellow {color: var(--ink) !important; background: var(--yellow) !important; box-shadow: 0 12px 26px rgba(255,191,21,.2);}
.contact-form .button.button--yellow:hover {background: var(--yellow-light) !important;}

.ff-message-success {
	display: flex;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	background: var(--surface-green);
	border-radius: 20px;
	color: var(--green);
}

.form-feedback {
	margin: 0;
	padding: 12px 14px;
	border-radius: 10px;
	background: rgba(88, 187, 105, .14);
	color: #8ee39d;
	font-size: 11px;
}

.demo-form--light label {
	color: var(--ink);
}

.demo-form--light input,
.demo-form--light select,
.demo-form--light textarea {
	border-color: var(--line);
	background: white;
	color: var(--ink);
}

.demo-form--light input:focus,
.demo-form--light select:focus,
.demo-form--light textarea:focus {
	border-color: rgba(240, 31, 75, .5);
	box-shadow: 0 0 0 3px rgba(240, 31, 75, .08);
	background: white;
}

.checkbox-field {
	grid-template-columns: 18px 1fr !important;
	align-items: start;
	gap: 10px !important;
}

.checkbox-field input {
	width: 17px;
	min-height: 17px;
	margin-top: 2px;
	accent-color: var(--red);
}

/* Actualités */

.news-index-hero {
	padding: 85px 0 95px;
	background: linear-gradient(120deg, #f7f8fa, #fff 55%, #fef4d6);
}

.news-index-hero__grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	align-items: center;
	gap: 70px;
}

.news-index-hero__copy > p:not(.eyebrow) {
	max-width: 620px;
	margin-top: 24px;
	color: var(--muted);
	font-size: 18px;
}

.featured-news {
	overflow: hidden;
	border-radius: 27px;
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	background: var(--ink);
	color: white;
	box-shadow: var(--shadow);
}

.featured-news__visual {
	position: relative;
	min-height: 410px;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: #e5f5e8;
}

.featured-news__pattern {
	position: absolute;
	inset: 0;
	opacity: .6;
	background-image: radial-gradient(rgba(255, 255, 255, .85) 1px, transparent 1px);
	background-size: 18px 18px;
}

.featured-news__visual img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
/*	filter: drop-shadow(0 20px 25px rgba(36, 41, 56, .18));*/
}

.featured-news__badge {
	position: absolute;
	z-index: 2;
	top: 17px;
	left: 17px;
	padding: 7px 10px;
	border-radius: 999px;
	background: white;
	color: var(--red);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.featured-news__body {
	padding: 38px;
	align-self: center;
}

.featured-news__body h2 {
	margin: 12px 0 17px;
	font-size: 29px;
}

.featured-news__body > p:not(.news-meta) {
	color: rgba(255, 255, 255, .62);
	font-size: 14px;
}

.featured-news__body .news-read-link {
	margin-top: 18px;
	color: white;
}

.news-meta {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.featured-news .news-meta {
	color: rgba(255, 255, 255, .52);
}

.news-index-section {
	background: white;
}

.news-filter-bar {
	margin-bottom: 33px;
}

.news-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.news-archive-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 21px;
	background: white;
	transition: transform .25s, box-shadow .25s;
}

.news-archive-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-sm);
}

.news-archive-card[hidden] {
	display: none;
}

.news-archive-card__visual {
	position: relative;
	height: 215px;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.news-archive-card__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .6;
	background-image: radial-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px);
	background-size: 18px 18px;
}

.news-archive-card__visual img,
.news-archive-card__visual .document-illustration {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	filter: drop-shadow(0 16px 20px rgba(36, 41, 56, .14));
}

.news-archive-card__visual > span:last-child {
	position: absolute;
	z-index: 2;
	top: 14px;
	left: 14px;
	padding: 6px 9px;
	border-radius: 999px;
	background: white;
	color: var(--ink);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.news-archive-card__body {
	padding: 23px;
}

.news-archive-card__body h2,
.news-archive-card__body h3 {
/*	min-height: 70px;*/
	margin: 10px 0 13px;
	font-size: 20px;
	line-height: 1.3;
}

.news-archive-card__body > p:not(.news-meta) {
	min-height: 66px;
	color: var(--muted);
	font-size: 13px;
}

.news-archive-card__body .news-read-link {
	margin-top: 12px;
}

.pagination {
	margin-top: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.pagination a,
.pagination span {
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 11px;
	display: grid;
	place-items: center;
	background: white;
	font-size: 12px;
	font-weight: 800;
}

.pagination .is-current {
	border-color: var(--ink);
	background: var(--ink);
	color: white;
}

.pagination .is-disabled {
	opacity: .4;
}

.news-cta-section {
	padding: 0 0 105px;
	background: white;
}

.news-cta {
	padding: 48px;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
	background: var(--ink);
	color: white;
}

.news-cta h2 {
	font-size: clamp(28px, 3vw, 42px);
}

.news-cta p:not(.eyebrow) {
	margin-bottom: 0;
	color: rgba(255, 255, 255, .62);
}

/* Article */

.article-hero {
	padding: 48px 0 85px;
	background: linear-gradient(120deg, #f7f8fa, #fff 62%, #edf8ef);
}

.breadcrumbs--article span {
	color: #a4a9b3;
}

.article-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr .75fr;
	align-items: center;
	gap: 70px;
}

.article-hero__lead {
	max-width: 760px;
	margin: 23px 0;
	color: var(--muted);
	font-size: 18px;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
}

.article-meta span {
	display: flex;
	align-items: center;
	gap: 7px;
}

.article-meta svg {
	color: var(--red);
}

.article-hero__visual {
	position: relative;
	min-height: 430px;
	border-radius: 28px;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: #e5f5e8;
	box-shadow: var(--shadow);
}

.article-visual__pattern {
	position: absolute;
	inset: 0;
	opacity: .65;
	background-image: radial-gradient(rgba(255, 255, 255, .85) 1px, transparent 1px);
	background-size: 18px 18px;
}

.article-hero__visual > img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
/*	filter: drop-shadow(0 20px 25px rgba(36, 41, 56, .18));*/
}

.article-score-card {
	position: absolute;
	z-index: 2;
	right: 18px;
	bottom: 18px;
	padding: 14px 17px;
	border-radius: 14px;
	background: white;
	box-shadow: var(--shadow-sm);
}

.article-score-card strong,
.article-score-card span {
	display: block;
}

.article-score-card strong {
	font-size: 15px;
}

.article-score-card span {
	color: var(--muted);
	font-size: 9px;
}

.article-section {
	padding: 105px 0;
	background: white;
}

.article-layout {
	display: grid;
	grid-template-columns: 255px minmax(0, 760px);
	justify-content: center;
	align-items: start;
	gap: 75px;
}

.article-toc > strong {
	margin-bottom: 7px;
	padding: 0 10px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.article-sidebar-cta {
	margin-top: 15px;
	padding: 23px;
	border-radius: 18px;
	background: var(--ink);
	color: white;
}

.article-sidebar-cta > span {
	width: 42px;
	height: 42px;
	border-radius: 13px;
	display: grid;
	place-items: center;
	background: rgba(255, 191, 21, .13);
	color: var(--yellow);
}

.article-sidebar-cta h2 {
	margin: 16px 0 8px;
	font-size: 20px;
}

.article-sidebar-cta p {
	color: rgba(255, 255, 255, .6);
	font-size: 11px;
}

.article-sidebar-cta .button {
	width: 100%;
	margin-top: 9px;
}

.article-content {
	min-width: 0;
}

.article-content > *:first-child {
	margin-top: 0;
}

.article-content blockquote.wp-block-quote {
	background: var(--surface-green);
}

.article-intro {
	margin-top: 0;
	color: var(--ink) !important;
	font-size: 20px;
	line-height: 1.75;
}

.article-content h2 {
	margin-top: 60px;
	scroll-margin-top: 120px;
}

.article-content p {
	font-size: 16px;
	line-height: 1.8;
}

.article-callout {
	display: grid;
	grid-template-columns: 45px 1fr;
	gap: 16px;
}

.article-callout > span {
	width: 45px;
	height: 45px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: white;
	color: var(--green);
}

.article-inline-visual {
	margin: 35px 0;
	padding: 29px;
	border-radius: 20px;
	background: var(--surface-soft);
}

.renovation-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.renovation-steps > div {
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: white;
	text-align: center;
}

.renovation-steps strong,
.renovation-steps span {
	display: block;
}

.renovation-steps strong {
	font-family: 'Nexa', sans-serif;
	font-size: 13px;
}

.renovation-steps span {
	margin-top: 4px;
	color: var(--muted);
	font-size: 10px;
}

.article-inline-visual figcaption {
	margin-top: 14px;
	color: var(--muted);
	font-size: 10px;
	text-align: center;
}

.article-content blockquote {
	margin: 35px 0;
	padding: 30px;
	border-radius: 18px;
	background: var(--ink);
	color: white;
	font-family: 'Nexa', sans-serif;
	font-size: 21px;
	line-height: 1.55;
}

.article-note {
	border-left-color: var(--yellow);
	background: #fff8df;
}

.article-note strong {
	display: block;
	margin-bottom: 5px;
}

.article-author {
	margin-top: 65px;
	padding-top: 35px;
	border-top: 1px solid var(--line);
	display: grid;
	grid-template-columns: 65px 1fr auto;
	align-items: center;
	gap: 16px;
}

.article-author__avatar {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--ink);
	color: white;
}

.article-author strong,
.article-author small {
	display: block;
}

.article-author small {
	color: var(--muted);
	font-size: 10px;
}

.article-author a {
	color: var(--red);
	font-size: 12px;
	font-weight: 800;
}

.news-archive-grid--related .news-archive-card__body > p:not(.news-meta) {
	display: none;
}

/* Contact */

.contact-hero {
	padding: 85px 0;
	background: linear-gradient(120deg, #f7f8fa, #fff 58%, #edf8ef);
}

.contact-hero__grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	align-items: center;
	gap: 80px;
}

.contact-hero__grid > div:first-child > p:not(.eyebrow) {
	max-width: 620px;
	margin: 23px 0 30px;
	color: var(--muted);
	font-size: 18px;
}

.contact-methods {
	display: grid;
	gap: 11px;
}

.contact-methods > a,
.contact-methods > div {
	padding: 13px;
	border: 1px solid var(--line);
	border-radius: 14px;
	display: grid;
	grid-template-columns: 43px 1fr;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, .75);
}

.contact-methods > a > span,
.contact-methods > div > span {
	width: 43px;
	height: 43px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: var(--surface-green);
	color: var(--green);
}

.contact-methods small,
.contact-methods strong {
	display: block;
}

.contact-methods small {
	color: var(--muted);
	font-size: 9px;
}

.contact-methods strong {
	font-size: 12px;
}

.contact-form-card {
	padding: 38px;
	border: 1px solid var(--line);
	border-radius: 27px;
	background: white;
	box-shadow: var(--shadow);
}

.contact-form-card .demo-form {
	padding: 0;
}

.contact-form-card h2 {
	margin-bottom: 25px;
	font-size: 31px;
}

.contact-routing {
	background: white;
}

.routing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.routing-card {
	position: relative;
/*	min-height: 240px;*/
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: white;
	transition: transform .2s, box-shadow .2s;
}

.routing-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-sm);
}

.routing-card > span {
	width: 52px;
	height: 52px;
	margin-bottom: 28px;
	border-radius: 15px;
	display: grid;
	place-items: center;
	background: rgba(240, 31, 75, .08);
	color: var(--red);
}

.routing-card h3 {
	font-size: 19px;
}

.routing-card p {
	color: var(--muted);
	font-size: 13px;
}

.routing-card > svg:last-child {
	position: absolute;
	right: 24px;
	top: 24px;
	color: var(--red);
}

.location-panel {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 27px;
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	align-items: center;
	background: white;
}

.location-image {
	min-height: 390px;
	background: #eef1f3;
	position: relative;
}

.location-image img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.location-panel > div:last-child {
	padding: 50px;
}

.location-panel h2 {
	font-size: 34px;
}

.location-panel > div:last-child > p:not(.eyebrow) {
	color: var(--muted);
}

/* Erreur 404 */

.error-page {
	position: relative;
	min-height: 720px;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: linear-gradient(120deg, #f7f8fa, #fff 58%, #fef4d6);
}

.error-page__pattern {
	position: absolute;
	inset: 0;
	opacity: .5;
	background-image:
		linear-gradient(rgba(36, 41, 56, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(36, 41, 56, .035) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: linear-gradient(to right, #000, transparent 80%);
}

.error-page__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	align-items: center;
	gap: 80px;
	padding-block: 85px;
}

.error-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.error-number {
	color: var(--ink);
	font-family: 'Nexa', sans-serif;
	font-size: clamp(110px, 13vw, 190px);
	font-weight: 900;
	line-height: 1;
}

.error-house {
	position: relative;
	width: 145px;
	height: 175px;
}

.error-house__roof {
	position: absolute;
	top: 15px;
	left: 50%;
	width: 105px;
	height: 105px;
	background: var(--red);
	transform: translateX(-50%) rotate(45deg);
}

.error-house__body {
	position: absolute;
	right: 10px;
	bottom: 0;
	left: 10px;
	height: 115px;
	border-radius: 8px 8px 16px 16px;
	background: white;
	box-shadow: var(--shadow);
}

.error-house__body span,
.error-house__body i {
	position: absolute;
	bottom: 18px;
	border-radius: 5px;
	background: var(--ink);
}

.error-house__body span {
	left: 28px;
	width: 32px;
	height: 50px;
}

.error-house__body i {
	right: 25px;
	width: 30px;
	height: 30px;
}

.error-search {
	position: absolute;
	right: -12px;
	bottom: 5px;
	width: 58px;
	height: 58px;
	border: 7px solid white;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--yellow);
	color: var(--ink);
	box-shadow: var(--shadow-sm);
}

.error-copy > p:not(.eyebrow) {
	max-width: 650px;
	margin: 23px 0 29px;
	color: var(--muted);
	font-size: 17px;
}

.error-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
}

.error-shortcuts {
	margin-top: 36px;
	display: grid;
	gap: 9px;
}

.error-shortcuts > a {
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 14px;
	display: grid;
	grid-template-columns: 42px 1fr auto;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, .78);
	transition: transform .2s, background .2s;
}

.error-shortcuts > a:hover {
	background: white;
	transform: translateX(4px);
}

.error-shortcuts > a > span {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: var(--surface-soft);
	color: var(--red);
}

.error-shortcuts strong,
.error-shortcuts small {
	display: block;
}

.error-shortcuts strong {
	font-size: 13px;
}

.error-shortcuts small {
	color: var(--muted);
	font-size: 10px;
}

.error-shortcuts > a > svg {
	color: var(--red);
}

/* Responsive des pages internes */

@media (max-width: 1120px) {
	.inner-hero__grid,
	.join-hero__grid,
	.news-index-hero__grid,
	.contact-hero__grid,
	.article-hero__grid {
		gap: 45px;
	}

	.catalog-grid,
	.news-archive-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.directory-layout {
		grid-template-columns: 300px minmax(0, 1fr);
	}

	.directory-grid {
		grid-template-columns: 1fr;
	}

	.difference-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.application-panel {
		gap: 45px;
	}
}

@media (max-width: 900px) {
	.inner-hero__grid,
	.detail-hero__grid,
	.story-grid,
	.mission-panel,
	.expert-profile-grid,
	.profile-layout,
	.join-hero__grid,
	.application-panel,
	.news-index-hero__grid,
	.article-hero__grid,
	.contact-hero__grid,
	.location-panel,
	.error-page__grid {
		grid-template-columns: 1fr;
	}

	.inner-hero__grid,
	.join-hero__grid {
		padding-block: 70px;
	}

	.inner-hero__visual,
	.join-hero__visual {
		min-height: 390px;
	}

	.detail-layout,
	.article-layout {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.detail-sidebar,
	.article-sidebar,
	.profile-sidebar,
	.directory-map-card {
		position: static;
	}

	.detail-sidebar > nav,
	.article-toc {
		display: flex;
		flex-wrap: wrap;
	}

	.detail-sidebar > nav a,
	.article-toc a {
		border: 1px solid var(--line);
	}

	.values-grid,
	.benefits-grid,
	.routing-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.founder-stack {
		width: min(100%, 570px);
		margin-inline: auto;
	}

	.directory-layout {
		grid-template-columns: 1fr;
	}

	.directory-map-card {
		min-height: auto;
	}

	.directory-map-card .france-map {
		height: 390px;
	}

	.directory-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.expert-profile-grid {
		max-width: 720px;
	}

	.profile-portrait {
		width: min(100%, 430px);
	}

	.profile-layout {
		max-width: 760px;
	}

	.profile-sidebar {
		width: min(100%, 520px);
	}

	.candidate-grid {
		grid-template-columns: 1fr;
	}

	.featured-news {
		grid-template-columns: 1fr;
	}

	.featured-news__visual {
		min-height: 320px;
	}

	.article-layout {
		max-width: 800px;
	}

	.article-sidebar {
		display: grid;
		grid-template-columns: 1fr .7fr;
		gap: 15px;
	}

	.article-sidebar-cta {
		margin-top: 0;
	}

	.error-visual {
		order: 2;
	}

	.error-page__grid {
		max-width: 760px;
	}
}

@media (max-width: 640px) {
	.narrow-container {
		width: min(calc(100% - 28px), 900px);
	}

	.inner-hero h1,
	.detail-hero h1,
	.contact-hero h1,
	.news-index-hero h1,
	.article-hero h1,
	.join-hero h1,
	.error-copy h1,
	.expert-profile-hero h1 {
		font-size: 41px;
	}

	.inner-hero__grid,
	.join-hero__grid,
	.news-index-hero,
	.contact-hero {
		padding-block: 58px;
	}

	.inner-hero__visual,
	.join-hero__visual {
		min-height: 315px;
	}

	.diagnostic-orbit {
		width: 290px;
	}

	.diagnostic-orbit img {
		width: 115px;
	}

	.orbit-label {
		font-size: 10px;
	}

	.catalog-grid,
	.process-grid,
	.use-grid,
	.related-grid,
	.related-experts,
	.values-grid,
	.benefits-grid,
	.difference-grid,
	.directory-grid,
	.profile-diagnostics,
	.join-proof-row,
	.news-archive-grid,
	.routing-grid,
	.renovation-steps {
		grid-template-columns: 1fr;
	}

	.catalog-card {
		display: grid;
		grid-template-columns: 125px 1fr;
	}

	.catalog-card__visual {
		height: auto;
		min-height: 180px;
	}

	.catalog-card__visual > img,
	.catalog-card__visual > .custom-icon {
		width: 75px;
		height: 75px;
	}

	.catalog-card__visual > span:last-child {
		top: 9px;
		left: 9px;
	}

	.catalog-card__body {
		padding: 19px;
	}

	.catalog-card__body h2 {
		font-size: 18px;
	}

	.catalog-card__body p {
		min-height: 0;
		font-size: 12px;
	}

	.process-card {
		min-height: auto;
	}

	.faq-item summary {
		padding: 18px;
		font-size: 14px;
	}

	.detail-hero,
	.expert-profile-hero,
	.article-hero {
		padding: 35px 0 62px;
	}

	.diagnostic-feature {
		min-height: 360px;
	}

	.detail-meta {
		display: grid;
	}

	.detail-meta > span {
		min-width: 0;
	}

	.obligation-table > div {
		grid-template-columns: 1fr;
		gap: 7px;
	}

	.obligation-table .yes {
		justify-self: start;
	}

	.founder-stack {
		min-height: 390px;
	}

	.founder-photo {
		width: 210px;
	}

	.founder-photo img {
		height: 260px;
	}

	.founder-stamp {
		right: 32%;
		width: 105px;
		height: 105px;
	}

	.mission-panel,
	.application-panel {
		padding: 34px 24px;
	}

	.network-stat-panel {
		min-height: 360px;
		padding: 24px;
		grid-template-columns: 1fr;
	}

	.network-stat-panel > div {
		padding: 11px 14px;
	}

	.network-stat-panel strong {
		font-size: 21px;
	}

	.directory-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.directory-card {
		display: grid;
		grid-template-columns: 125px 1fr;
	}

	.directory-card__photo {
		height: 100%;
		min-height: 230px;
	}

	.directory-card__photo .expert-initials {
		width: 82px;
		height: 82px;
		margin-bottom: 65px;
		font-size: 21px;
	}

	.directory-card__body {
		padding: 17px;
	}

	.expert-profile-grid {
		gap: 35px;
	}

	.profile-portrait {
		min-height: 330px;
	}

	.profile-actions,
	.join-hero__actions,
	.error-actions {
		display: grid;
	}

	.profile-actions .button,
	.join-hero__actions .button,
	.error-actions .button {
		width: 100%;
	}

	.specialty-card {
		grid-template-columns: 1fr;
	}

	.candidate-card {
		min-height: auto;
		padding: 28px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.news-index-hero__grid,
	.contact-hero__grid,
	.article-hero__grid {
		gap: 40px;
	}

	.featured-news__body,
	.contact-form-card {
		padding: 27px 22px;
	}

	.news-archive-card__body h2,
	.news-archive-card__body h3,
	.news-archive-card__body > p:not(.news-meta) {
		min-height: 0;
	}

	.news-cta {
		padding: 32px 24px;
		align-items: stretch;
		flex-direction: column;
	}

	.article-sidebar {
		grid-template-columns: 1fr;
	}

	.article-content blockquote {
		padding: 23px;
		font-size: 18px;
	}

	.article-author {
		grid-template-columns: 55px 1fr;
	}

	.article-author a {
		grid-column: 1 / -1;
	}

	.location-panel > div:last-child {
		padding: 32px 24px;
	}

	.location-map,
	.location-map svg {
		min-height: 260px;
	}

	.error-page__grid {
		gap: 45px;
		padding-block: 60px 95px;
	}

	.error-number {
		font-size: 95px;
	}

	.error-house {
		width: 105px;
		height: 135px;
	}

	.error-house__roof {
		width: 76px;
		height: 76px;
	}

	.error-house__body {
		height: 88px;
	}

	.error-house__body span {
		left: 20px;
		width: 24px;
		height: 39px;
	}

	.error-house__body i {
		right: 18px;
		width: 22px;
		height: 22px;
	}

	.error-search {
		width: 48px;
		height: 48px;
	}
}

/*** CLASSES UTILITAIRES ***/

.ink-text {color: var(--ink) !important;}
.green-text {color: var(--green) !important;}
.red-text {color: var(--red) !important;}
.yellow-text {color: var(--yellow) !important;}

.surface-yellow {background: var(--surface-yellow) !important;}
.surface-green {background: var(--surface-green) !important;}
.surface-red {background: var(--surface-red) !important;}