/* =========================================================================
   Show Time - styles du site
   Toutes les valeurs viennent de la maquette v5. Ce fichier est charge sur
   le front ET dans l'editeur : c'est ce qui rend le canvas fidele.
   ====================================================================== */

:root {
	/* Violets */
	--st-violet-900: #26124a;
	--st-violet-850: #2a1350;
	--st-violet-800: #2e1552;
	--st-violet-750: #3a1470;
	--st-violet-700: #452468;
	--st-violet-650: #4b1a91;
	--st-violet-600: #5a2c8f;
	--st-violet-500: #6425bd;
	--st-violet-400: #7a35cf;
	--st-violet-accent: #7b3fd4;
	--st-violet-050: #f4f1fb;
	--st-violet-surface: #3d2266;

	/* Oranges */
	--st-orange: #f2b47a;
	--st-orange-light: #f8cb9c;
	--st-orange-strong: #d98a3f;
	--st-orange-grad: #e8a84c;

	/* Textes */
	--st-on-dark: #ffffff;
	--st-on-dark-soft: #d3c4ee;
	--st-on-light: #2b1a4d;
	--st-on-light-soft: #6f6690;
	--st-nav: #d6cbe9;
	--st-footer-text: #a794c9;
	--st-footer-muted: #8a77ac;
	--st-body-light: #4a4256;

	/* Degrades */
	--st-grad-band: linear-gradient(120deg, #452468 0%, #7a35cf 52%, #e8a84c 100%);
	--st-grad-title: linear-gradient(120deg, #5a2c8f, #7a35cf 42%, #e8a84c);
	--st-grad-card: linear-gradient(150deg, #5a2c8f 0%, #7a35cf 55%, #c98a6d 100%);
	--st-grad-cta: linear-gradient(115deg, rgba(46, 21, 82, 0.94), rgba(90, 44, 143, 0.88) 38%, rgba(122, 53, 207, 0.7) 66%, rgba(232, 168, 76, 0.55));
	--st-grad-rail: linear-gradient(160deg, #4b1a91, #6425bd);

	/* Structure */
	--st-container: 1240px;
	--st-gutter: 40px;
	--st-header-h: 96px;
	--st-section-y: 82px;

	/* Rayons */
	--st-r-sm: 9px;
	--st-r: 12px;
	--st-r-md: 14px;
	--st-r-lg: 16px;
	--st-r-xl: 18px;
	--st-r-pill: 999px;

	/* Typographie */
	--st-font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---- Base ------------------------------------------------------------ */

body {
	font-family: var(--st-font);
	background: var(--st-violet-800);
	color: var(--st-on-dark);
	-webkit-font-smoothing: antialiased;
}

#wrapper,
#inner-wrap {
	max-width: none;
	padding: 0;
	margin: 0;
}

.st-container {
	max-width: var(--st-container);
	margin: 0 auto;
	padding: 0 var(--st-gutter);
}

.st-section {
	padding: var(--st-section-y) 0;
	position: relative;
}

.st-section--light {
	background: var(--st-violet-050);
	color: var(--st-on-light);
}

.st-section--white {
	background: #ffffff;
	color: var(--st-on-light);
}

.st-section--dark {
	background: var(--st-violet-850);
	color: var(--st-on-dark);
}

.st-accent {
	background: var(--st-grad-title);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ---- Titres ---------------------------------------------------------- */

.st-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--st-violet-accent);
	margin-bottom: 14px;
}

.st-title {
	font-size: 46px;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 18px;
	text-wrap: balance;
}

.st-title--lg {
	font-size: 56px;
}

.st-title--sm {
	font-size: 34px;
}

.st-lead {
	font-size: 17px;
	line-height: 1.7;
	margin: 0 0 22px;
	max-width: 680px;
}

.st-section--light .st-lead,
.st-section--white .st-lead {
	color: var(--st-on-light-soft);
}

.st-section--dark .st-lead {
	color: var(--st-on-dark-soft);
}

/* ---- Boutons --------------------------------------------------------- */

.st-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	border-radius: var(--st-r-pill);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	border: 1px solid transparent;
	transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.st-btn--primary {
	background: var(--st-orange);
	color: var(--st-violet-800);
}

.st-btn--primary:hover,
.st-btn--primary:focus-visible {
	background: var(--st-orange-light);
	color: var(--st-violet-800);
}

.st-btn--ghost {
	background: transparent;
	color: var(--st-on-dark);
	border-color: rgba(255, 255, 255, 0.35);
}

.st-btn--ghost:hover,
.st-btn--ghost:focus-visible {
	border-color: var(--st-orange);
	color: var(--st-orange);
}

.st-btn--light {
	background: var(--st-violet-800);
	color: #ffffff;
}

.st-btn--light:hover,
.st-btn--light:focus-visible {
	background: var(--st-violet-600);
	color: #ffffff;
}

.st-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 600;
	color: var(--st-orange-strong);
	text-decoration: none;
}

.st-section--dark .st-link,
.st-section--hero .st-link {
	color: var(--st-orange);
}

.st-link:hover .st-arrow {
	transform: translateX(3px);
}

.st-arrow {
	transition: transform 0.18s ease;
}

/* ---- Accessibilite : etats de focus ---------------------------------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--st-orange);
	outline-offset: 3px;
	border-radius: 4px;
}

.st-section--light a:focus-visible,
.st-section--white a:focus-visible {
	outline-color: var(--st-violet-400);
}

/* ---- Etats des liens ---------------------------------------------------
   Kadence colore tous les liens : a { color: highlight } et
   a:hover, a:focus, a:active { color: highlight-alt }. Plutot qu'une garde
   generale sur a, qui casserait le contenu editorial, chaque composant
   declare ses propres etats. Une classe simple suffit a battre a {} ; il
   faut une classe plus une pseudo-classe pour battre a:hover.
   ------------------------------------------------------------------- */

.st-header__tel:hover,
.st-header__tel:focus-visible,
.st-header__tel:active {
	color: var(--st-orange);
	text-decoration: none;
}

.st-mobile-nav__list a:hover,
.st-mobile-nav__list a:focus-visible,
.st-mobile-nav__list a:active {
	color: var(--st-orange);
}

.st-link:hover,
.st-link:focus-visible,
.st-link:active {
	color: var(--st-orange-strong);
	text-decoration: none;
}

.st-section--dark .st-link:hover,
.st-section--dark .st-link:focus-visible,
.st-hero .st-link:hover,
.st-hero .st-link:focus-visible {
	color: var(--st-orange-light);
}

.st-btn:hover,
.st-btn:focus-visible,
.st-btn:active {
	text-decoration: none;
}

.st-need:hover,
.st-need:focus-visible,
.st-need:active,
.st-card:hover,
.st-card:focus-visible,
.st-card:active {
	color: inherit;
	text-decoration: none;
}

.st-social:hover,
.st-social:focus-visible,
.st-social:active {
	color: var(--st-orange);
}

.st-rail__social:hover,
.st-rail__social:focus-visible,
.st-rail__social:active {
	color: var(--st-violet-800);
}

.st-qualif:hover,
.st-qualif:focus-visible,
.st-qualif:active {
	color: #ffffff;
	text-decoration: none;
}

.st-bubble__text:hover,
.st-bubble__text:focus-visible,
.st-bubble__text:active {
	color: var(--st-violet-800);
	text-decoration: none;
}

.st-bubble__btn:hover,
.st-bubble__btn:focus-visible,
.st-bubble__btn:active {
	color: var(--st-orange-light);
}

.st-footer__list a:focus-visible,
.st-footer__list a:active,
.st-footer__contact a:focus-visible,
.st-footer__contact a:active,
.st-footer__legal a:focus-visible,
.st-footer__legal a:active {
	color: var(--st-orange);
}

.st-logo:hover,
.st-logo:focus-visible,
.st-logo:active {
	color: inherit;
}

/* =========================================================================
   En-tete
   ====================================================================== */

.st-header {
	position: relative;
	z-index: 20;
	background: transparent;
}

.st-header__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px var(--st-gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px 20px;
}

.st-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.st-logo img {
	width: auto;
	border-radius: var(--st-r-sm);
	display: block;
}

.st-nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
}

.st-nav__list {
	display: flex;
	align-items: center;
	gap: 20px;
	row-gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.st-nav__list li {
	position: relative;
	margin: 0;
}

.st-nav__list a {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: var(--st-nav);
	text-decoration: none;
	padding: 6px 0;
	transition: color 0.18s ease;
}

.st-nav__list a:hover,
.st-nav__list .current-menu-item > a,
.st-nav__list .current-menu-parent > a,
.st-nav__list .current-menu-ancestor > a {
	color: var(--st-orange);
}

/* Sous-menus */
.st-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(6px);
	min-width: 232px;
	background: #ffffff;
	border-radius: var(--st-r-md);
	box-shadow: 0 18px 40px rgba(20, 8, 40, 0.28);
	padding: 10px;
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
	z-index: 30;
}

.st-nav__list li:hover > .sub-menu,
.st-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.st-nav__list .sub-menu a {
	color: var(--st-on-light);
	font-size: 13.5px;
	padding: 9px 12px;
	border-radius: var(--st-r-sm);
	white-space: nowrap;
}

.st-nav__list .sub-menu a:hover {
	background: var(--st-violet-050);
	color: var(--st-violet-500);
}

.st-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 0 0 auto;
}

.st-header__tel {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #ffffff;
	font-weight: 600;
	font-size: 13.5px;
	white-space: nowrap;
	text-decoration: none;
}

.st-header__tel svg {
	color: var(--st-orange);
	flex: 0 0 auto;
}

.st-header__cta {
	padding: 11px 20px;
	font-size: 13.5px;
}

/* Burger */
.st-burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--st-r);
	background: transparent;
	color: #ffffff;
	cursor: pointer;
}

.st-burger__close {
	display: none;
}

/* Kadence stylise l'element button : au repos nos declarations gagnent, mais
   button:hover, button:focus et button:active imposent un fond et une ombre.
   L'etat est donc declare ici. */
.st-burger:hover,
.st-burger:focus-visible,
.st-burger:active {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	border-color: var(--st-orange);
	box-shadow: none;
}

.st-burger[aria-expanded='true'] .st-burger__open {
	display: none;
}

.st-burger[aria-expanded='true'] .st-burger__close {
	display: inline-flex;
}

/* Menu mobile */
.st-mobile-nav {
	display: none;
	padding: 8px var(--st-gutter) 26px;
	background: var(--st-violet-850);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.st-mobile-nav[hidden] {
	display: none;
}

.st-mobile-nav__list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}

.st-mobile-nav__list li {
	margin: 0;
}

.st-mobile-nav__list a {
	display: block;
	padding: 13px 0;
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.st-mobile-nav__list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 8px 16px;
}

.st-mobile-nav__list .sub-menu a {
	font-size: 14px;
	font-weight: 500;
	color: var(--st-on-dark-soft);
	padding: 10px 0;
	border-bottom: 0;
}

.st-mobile-nav__cta {
	width: 100%;
}

/* =========================================================================
   Pied de page
   ====================================================================== */

.st-footer {
	background: var(--st-violet-900);
	padding: 60px 0 28px;
}

.st-footer__inner {
	max-width: var(--st-container);
	margin: 0 auto;
	padding: 0 var(--st-gutter);
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
	gap: 40px;
}

.st-footer__baseline {
	margin: 20px 0 22px;
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--st-footer-text);
	max-width: 290px;
}

.st-footer__social {
	display: flex;
	gap: 11px;
}

.st-social {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--st-violet-surface);
	color: var(--st-orange);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.18s ease;
}

.st-social:hover {
	background: var(--st-violet-500);
}

.st-footer__title {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 18px;
}

.st-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.st-footer__list li {
	margin: 0;
}

.st-footer__list a,
.st-footer__contact a {
	font-size: 13.5px;
	color: var(--st-footer-text);
	text-decoration: none;
	transition: color 0.18s ease;
}

.st-footer__list a:hover,
.st-footer__contact a:hover {
	color: var(--st-orange);
}

.st-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--st-footer-text);
}

.st-footer__bottom {
	max-width: var(--st-container);
	margin: 40px auto 0;
	padding: 22px var(--st-gutter) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 12.5px;
	color: var(--st-footer-muted);
}

.st-footer__legal {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
}

.st-footer__legal li {
	margin: 0;
}

.st-footer__legal a {
	color: var(--st-footer-muted);
	text-decoration: none;
}

.st-footer__legal a:hover {
	color: var(--st-orange);
}

/* =========================================================================
   Elements flottants
   ====================================================================== */

.st-rail {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 70;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	max-height: calc(100vh - 200px);
}

.st-rail__social {
	width: 46px;
	height: 46px;
	background: var(--st-orange);
	color: var(--st-violet-800);
	border-radius: var(--st-r) 0 0 var(--st-r);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
	transition: background-color 0.18s ease;
}

.st-rail__social:hover {
	background: var(--st-orange-light);
}

.st-qualif {
	width: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	background: var(--st-grad-rail);
	color: #ffffff;
	border-radius: var(--st-r-md) 0 0 var(--st-r-md);
	padding: 14px 12px;
	box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.28);
	text-align: center;
	margin-top: 6px;
	text-decoration: none;
}

.st-qualif svg {
	color: var(--st-orange);
}

.st-qualif__label {
	font-size: 12.5px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
}

.st-qualif__sub {
	font-size: 10.5px;
	color: var(--st-on-dark-soft);
	line-height: 1.25;
}

.st-bubble {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 70;
	display: flex;
	align-items: center;
	gap: 12px;
}

.st-bubble__text {
	background: #ffffff;
	color: var(--st-violet-800);
	padding: 10px 15px;
	border-radius: var(--st-r-md);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
}

.st-bubble__btn {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--st-violet-800);
	color: var(--st-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

/* =========================================================================
   Responsive
   La maquette est concue en 1240 px. Les ruptures ci-dessous descendent la
   mise en page jusqu'au mobile : grilles 4 -> 2 -> 1, menu en burger sous
   900 px, elements flottants ramenes en bas d'ecran.
   ====================================================================== */

@media (max-width: 1080px) {
	:root {
		--st-gutter: 28px;
		--st-section-y: 64px;
	}

	.st-title {
		font-size: 38px;
	}

	.st-title--lg {
		font-size: 44px;
	}

	.st-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 34px;
	}
}

@media (max-width: 900px) {
	:root {
		--st-header-h: 84px;
	}

	.st-nav {
		display: none;
	}

	.st-burger {
		display: inline-flex;
	}

	.st-header__cta {
		display: none;
	}

	.st-mobile-nav:not([hidden]) {
		display: block;
	}

	.st-header__inner {
		padding: 16px var(--st-gutter);
	}

	.st-logo img {
		height: 46px !important;
	}

	.st-title {
		font-size: 32px;
	}

	.st-title--lg {
		font-size: 36px;
	}

	.st-title--sm {
		font-size: 26px;
	}

	.st-lead {
		font-size: 16px;
	}

	/* Les pastilles latérales gênent la lecture en mobile : seul l'onglet
	   de qualification reste, ramene en bas d'ecran. */
	.st-rail {
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		transform: none;
		flex-direction: row;
		align-items: stretch;
		gap: 0;
		max-height: none;
	}

	.st-rail__social {
		display: none;
	}

	.st-qualif {
		width: 100%;
		flex-direction: row;
		justify-content: center;
		gap: 10px;
		border-radius: 0;
		margin-top: 0;
		padding: 13px 16px;
	}

	.st-qualif__sub {
		display: none;
	}

	.st-bubble {
		bottom: 74px;
		right: 16px;
	}

	.st-bubble__text {
		display: none;
	}

	.st-footer {
		padding-bottom: 84px;
	}
}

@media (max-width: 600px) {
	:root {
		--st-gutter: 20px;
		--st-section-y: 52px;
	}

	.st-title {
		font-size: 28px;
	}

	.st-title--lg {
		font-size: 31px;
	}

	.st-btn {
		width: 100%;
	}

	.st-header__tel span {
		display: none;
	}

	.st-footer__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.st-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.st-footer__legal {
		gap: 14px;
	}
}

/* =========================================================================
   Blocs
   Le CSS de chaque bloc s'ajoute ici, au-dessus du reglage de mouvement
   reduit qui doit rester en dernier.
   ====================================================================== */

/* ---- Hero d’accueil -------------------------------------------------- */

.st-hero {
	position: relative;
	min-height: 700px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-top: calc( var(--st-header-h) * -1 );
	padding-top: var(--st-header-h);
	overflow: hidden;
}

.st-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.st-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.st-hero__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: radial-gradient(120% 90% at 50% 35%, rgba(46, 21, 82, 0.55), rgba(46, 21, 82, 0.88));
}

.st-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin: 0 auto;
	padding: 90px var(--st-gutter);
}

.st-hero__eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--st-orange);
	margin-bottom: 18px;
}

.st-hero__title {
	color: #ffffff;
}

.st-hero__lead {
	color: var(--st-on-dark-soft);
	margin: 0 auto 30px;
	max-width: 640px;
}

.st-hero__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

@media (max-width: 900px) {
	.st-hero {
		min-height: 540px;
	}

	.st-hero__inner {
		padding: 64px var(--st-gutter);
	}
}

@media (max-width: 600px) {
	.st-hero {
		min-height: 460px;
	}

	.st-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}
}

/* ---- Bandeau de chiffres clés ---------------------------------------- */

.st-stats {
	background: var(--st-grad-band);
	padding: 38px 0;
}

.st-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.st-stat__value {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	letter-spacing: -0.02em;
}

.st-stat__label {
	margin-top: 6px;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.86);
}

.st-stat__note {
	margin-top: 4px;
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
	.st-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 20px;
	}

	.st-stat__value {
		font-size: 30px;
	}
}

/* ---- Vos besoins ------------------------------------------------------ */

.st-needs__head {
	max-width: 680px;
	margin-bottom: 44px;
}

.st-needs__head .st-title {
	color: var(--st-violet-800);
}

.st-needs__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.st-need {
	position: relative;
	display: block;
	background: #ffffff;
	border-radius: var(--st-r-lg);
	padding: 30px 26px 28px;
	box-shadow: 0 14px 34px rgba(46, 21, 82, 0.07);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.st-need:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 44px rgba(46, 21, 82, 0.14);
}

.st-need__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--st-violet-500);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 18px;
}

.st-need__quote {
	margin: 0 0 12px;
	font-size: 17px;
	line-height: 1.45;
	font-weight: 700;
	color: var(--st-on-light);
}

.st-need__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--st-on-light-soft);
}

/* La 4e carte porte le pivot du repositionnement : elle est mise en avant. */
.st-need--accent {
	background: var(--st-grad-card);
	box-shadow: 0 18px 40px rgba(90, 44, 143, 0.28);
}

.st-need--accent .st-need__num {
	background: var(--st-orange-strong);
	color: #ffffff;
}

.st-need--accent .st-need__quote {
	color: #ffffff;
}

.st-need--accent .st-need__desc {
	color: rgba(255, 255, 255, 0.86);
}

.st-needs__transition {
	margin: 40px 0 0;
	max-width: 680px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--st-on-light);
}

.st-needs__actions {
	margin-top: 18px;
}

@media (max-width: 1080px) {
	.st-needs__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.st-needs__grid {
		grid-template-columns: 1fr;
	}
}

/* ---- Grille de solutions --------------------------------------------- */

.st-solutions {
	background: var(--st-grad-band);
	overflow: hidden;
}

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

.st-solutions__head {
	max-width: 680px;
	margin-bottom: 42px;
	color: #ffffff;
}

.st-solutions__head .st-title {
	color: #ffffff;
}

.st-solutions__head .st-lead {
	color: rgba(255, 255, 255, 0.88);
}

.st-solutions__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.st-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: var(--st-r-lg);
	overflow: hidden;
	text-decoration: none;
	color: var(--st-on-light);
	box-shadow: 0 14px 34px rgba(20, 8, 40, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.st-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 48px rgba(20, 8, 40, 0.3);
}

.st-card__media {
	position: relative;
	height: 180px;
	overflow: hidden;
	flex: 0 0 auto;
}

.st-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

a.st-card:hover .st-card__media img {
	transform: scale(1.04);
}

.st-card__body {
	padding: 24px 24px 26px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1 1 auto;
}

.st-card__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--st-on-light);
}

.st-card__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--st-on-light-soft);
	flex: 1 1 auto;
}

.st-card__more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--st-violet-500);
}

a.st-card:hover .st-card__more .st-arrow {
	transform: translateX(3px);
}

.st-solutions__actions {
	margin-top: 34px;
	display: flex;
	justify-content: center;
}

/* Encart secondaire : porte d'entree accessible, meme poids visuel qu'une carte. */
.st-aside {
	margin-top: 34px;
	display: grid;
	grid-template-columns: 280px 1fr;
	align-items: center;
	gap: 0;
	background: rgba(46, 21, 82, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--st-r-lg);
	overflow: hidden;
}

.st-aside__media {
	position: relative;
	height: 100%;
	min-height: 170px;
}

.st-aside__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.st-aside__body {
	padding: 26px 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	color: #ffffff;
}

.st-aside__title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
}

.st-aside__desc {
	margin: 0 0 6px;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.86);
	max-width: 560px;
}

@media (max-width: 1080px) {
	.st-solutions__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 700px) {
	.st-solutions__grid {
		grid-template-columns: 1fr;
	}

	.st-aside {
		grid-template-columns: 1fr;
	}

	.st-aside__media {
		min-height: 150px;
	}
}

/* ---- Notre methode ---------------------------------------------------- */

.st-method__inner {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 56px;
	align-items: center;
}

.st-method__content .st-title {
	color: var(--st-violet-800);
}

.st-method__steps {
	list-style: none;
	margin: 34px 0 26px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.st-step {
	position: relative;
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.st-step__num {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--st-grad-band);
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
}

.st-step__title {
	margin: 0 0 5px;
	font-size: 17px;
	font-weight: 700;
	color: var(--st-on-light);
}

.st-step__desc {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--st-on-light-soft);
}

.st-method__media {
	position: relative;
	border-radius: var(--st-r-xl);
	overflow: hidden;
	min-height: 420px;
	box-shadow: 0 22px 50px rgba(46, 21, 82, 0.16);
}

.st-method__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 900px) {
	.st-method__inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.st-method__media {
		min-height: 260px;
		order: -1;
	}
}

/* ---- Pourquoi nous choisir -------------------------------------------- */

.st-why {
	background:
		radial-gradient(90% 120% at 85% 100%, rgba(232, 168, 76, 0.28), rgba(232, 168, 76, 0) 55%),
		linear-gradient(160deg, #2e1552, #3a1470);
	overflow: hidden;
}

.st-why__inner {
	display: grid;
	grid-template-columns: 1fr 1.35fr;
	gap: 52px;
	align-items: center;
}

.st-why__media {
	position: relative;
	border-radius: var(--st-r-xl);
	overflow: hidden;
	min-height: 460px;
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.st-why__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.st-why__content .st-title {
	color: #ffffff;
}

.st-why__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

/* Aucun argument ne doit etre tronque : la carte s'etire avec son texte. */
.st-arg {
	position: relative;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--st-r-lg);
	padding: 24px 24px 26px;
}

.st-arg__title {
	margin: 0 0 9px;
	font-size: 16.5px;
	font-weight: 700;
	color: var(--st-orange);
	line-height: 1.35;
}

.st-arg__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: var(--st-on-dark-soft);
}

@media (max-width: 1080px) {
	.st-why__inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.st-why__media {
		min-height: 280px;
	}
}

@media (max-width: 700px) {
	.st-why__grid {
		grid-template-columns: 1fr;
	}
}

/* ---- Resultats et preuves --------------------------------------------- */

.st-proof__head {
	max-width: 680px;
	margin-bottom: 40px;
}

.st-proof__head .st-title {
	color: var(--st-violet-800);
}

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

.st-ref {
	position: relative;
	background: #ffffff;
	border-radius: var(--st-r-md);
	padding: 22px 22px 24px;
	box-shadow: 0 10px 26px rgba(46, 21, 82, 0.07);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* L'effectif est affiche en tete de carte : c'est lui qui rend visible
   l'amplitude, du petit groupe au grand format. */
.st-ref__size {
	align-self: flex-start;
	display: inline-block;
	padding: 4px 11px;
	border-radius: var(--st-r-pill);
	background: var(--st-violet-050);
	color: var(--st-violet-500);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.st-ref__title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--st-on-light);
}

.st-ref__desc {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--st-on-light-soft);
}

.st-proof__actions {
	margin-top: 32px;
	display: flex;
	justify-content: center;
}

.st-proof__reviews {
	margin-top: 56px;
	padding-top: 44px;
	border-top: 1px solid rgba(46, 21, 82, 0.1);
}

.st-proof__reviews .st-title {
	color: var(--st-violet-800);
	margin-bottom: 26px;
}

@media (max-width: 1080px) {
	.st-proof__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.st-proof__grid {
		grid-template-columns: 1fr;
	}
}

/* ---- Derriere la marque ------------------------------------------------ */

.st-brand__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 56px;
	align-items: center;
}

.st-brand__content .st-title {
	color: #ffffff;
	margin-bottom: 22px;
}

.st-brand__p {
	margin: 0 0 16px;
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--st-on-dark-soft);
	max-width: 620px;
}

.st-brand__content .st-btn {
	margin-top: 12px;
}

.st-brand__media {
	position: relative;
	border-radius: var(--st-r-xl);
	overflow: hidden;
	min-height: 400px;
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

.st-brand__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 900px) {
	.st-brand__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.st-brand__media {
		min-height: 260px;
	}
}

/* ---- Ressources -------------------------------------------------------- */

.st-resources__head {
	max-width: 640px;
	margin-bottom: 34px;
}

.st-resources__head .st-title {
	color: var(--st-violet-800);
}

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

.st-res {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 26px 24px 24px;
	border: 1px solid rgba(46, 21, 82, 0.12);
	border-radius: var(--st-r-lg);
	background: var(--st-violet-050);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

a.st-res:hover {
	border-color: var(--st-violet-400);
	transform: translateY(-3px);
}

.st-res__kind {
	align-self: flex-start;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--st-violet-accent);
}

.st-res__title {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.55;
	font-weight: 600;
	color: var(--st-on-light);
	flex: 1 1 auto;
}

.st-res__more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--st-orange-strong);
}

a.st-res:hover .st-res__more .st-arrow {
	transform: translateX(3px);
}

.st-resources__actions {
	margin-top: 26px;
}

@media (max-width: 900px) {
	.st-resources__grid {
		grid-template-columns: 1fr;
	}
}

/* ---- Appel a l'action -------------------------------------------------- */

.st-cta {
	position: relative;
	padding: 72px 0;
	overflow: hidden;
	text-align: center;
}

.st-cta__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.st-cta__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.st-cta__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: var(--st-grad-cta);
}

.st-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 720px;
}

.st-cta__inner .st-title {
	color: #ffffff;
}

.st-cta__inner .st-lead {
	color: rgba(255, 255, 255, 0.9);
	margin: 0 auto 26px;
}

.st-cta__phone {
	margin: 22px 0 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.88);
}

.st-cta__phone a {
	color: var(--st-orange);
	font-weight: 700;
	text-decoration: none;
}

.st-cta__phone a:hover,
.st-cta__phone a:focus-visible,
.st-cta__phone a:active {
	color: var(--st-orange-light);
}

/* ---- Bandeau de titre des pages interieures ---------------------------- */

.st-phero {
	position: relative;
	margin-top: calc( var(--st-header-h) * -1 );
	padding: calc( var(--st-header-h) + 64px ) 0 64px;
	overflow: hidden;
	background: var(--st-violet-800);
}

.st-phero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.st-phero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.st-phero__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(120deg, rgba(46, 21, 82, 0.94), rgba(90, 44, 143, 0.82) 55%, rgba(122, 53, 207, 0.6));
}

.st-phero__inner {
	position: relative;
	z-index: 2;
	max-width: 820px;
}

.st-phero__inner .st-title {
	color: #ffffff;
}

.st-phero__inner .st-lead {
	color: var(--st-on-dark-soft);
}

/* ---- Section de texte -------------------------------------------------- */

.st-prose__inner {
	max-width: 820px;
}

.st-prose--split .st-prose__inner {
	max-width: none;
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 52px;
	align-items: center;
}

.st-prose--split.st-prose--reverse .st-prose__content {
	order: 2;
}

.st-prose__content .st-title {
	color: var(--st-violet-800);
}

.st-section--dark .st-prose__content .st-title {
	color: #ffffff;
}

.st-prose__p {
	margin: 0 0 16px;
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--st-on-light-soft);
}

.st-section--dark .st-prose__p {
	color: var(--st-on-dark-soft);
}

.st-prose__list {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.st-prose__list li {
	position: relative;
	padding-left: 26px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--st-on-light-soft);
}

.st-section--dark .st-prose__list li {
	color: var(--st-on-dark-soft);
}

.st-prose__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--st-orange);
}

.st-prose__media {
	position: relative;
	border-radius: var(--st-r-xl);
	overflow: hidden;
	min-height: 380px;
	box-shadow: 0 20px 46px rgba(46, 21, 82, 0.16);
}

.st-prose__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ---- Grille de cartes generique ---------------------------------------- */

.st-cards__head {
	max-width: 700px;
	margin-bottom: 36px;
}

.st-cards__head .st-title {
	color: var(--st-violet-800);
}

.st-section--dark .st-cards__head .st-title {
	color: #ffffff;
}

.st-cards__grid {
	display: grid;
	gap: 20px;
}

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

.st-cards__grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.st-cards__grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.st-card--flat {
	box-shadow: 0 10px 26px rgba(46, 21, 82, 0.07);
}

.st-cards__actions {
	margin-top: 32px;
	display: flex;
	justify-content: center;
}

@media (max-width: 1080px) {
	.st-cards__grid--3,
	.st-cards__grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.st-prose--split .st-prose__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.st-prose--split.st-prose--reverse .st-prose__content {
		order: 0;
	}

	.st-prose__media {
		min-height: 240px;
	}
}

@media (max-width: 700px) {
	.st-cards__grid--2,
	.st-cards__grid--3,
	.st-cards__grid--4 {
		grid-template-columns: 1fr;
	}

	.st-phero {
		padding-bottom: 46px;
	}
}

/* ---- Questions frequentes ---------------------------------------------- */

.st-faq__inner {
	max-width: 860px;
}

.st-faq__head {
	margin-bottom: 30px;
}

.st-faq__head .st-title {
	color: var(--st-violet-800);
}

.st-section--dark .st-faq__head .st-title {
	color: #ffffff;
}

.st-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.st-qa {
	position: relative;
	border: 1px solid rgba(46, 21, 82, 0.12);
	border-radius: var(--st-r-md);
	background: #ffffff;
	overflow: hidden;
}

.st-section--dark .st-qa {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
}

.st-qa__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.45;
	color: var(--st-on-light);
	cursor: pointer;
	list-style: none;
}

.st-section--dark .st-qa__q {
	color: #ffffff;
}

.st-qa__q::-webkit-details-marker {
	display: none;
}

.st-qa__q::after {
	content: '';
	flex: 0 0 auto;
	width: 11px;
	height: 11px;
	border-right: 2px solid var(--st-orange-strong);
	border-bottom: 2px solid var(--st-orange-strong);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.st-qa[open] .st-qa__q::after {
	transform: rotate(225deg);
}

.st-qa__a {
	padding: 0 22px 20px;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--st-on-light-soft);
}

.st-section--dark .st-qa__a {
	color: var(--st-on-dark-soft);
}

.st-faq__link {
	margin-top: 22px;
}

/* ---- Formulaire et coordonnees ------------------------------------------ */

.st-form__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 44px;
	align-items: start;
}

.st-form__main .st-title {
	color: var(--st-violet-800);
}

.st-form__box {
	margin-top: 26px;
	background: #ffffff;
	border-radius: var(--st-r-lg);
	padding: 30px;
	box-shadow: 0 14px 34px rgba(46, 21, 82, 0.08);
}

.st-form__todo {
	margin: 0;
	padding: 16px 18px;
	border: 1px dashed var(--st-violet-400);
	border-radius: var(--st-r);
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--st-violet-600);
}

.st-form__note {
	margin: 16px 0 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--st-on-light-soft);
}

.st-form__aside {
	background: var(--st-violet-800);
	border-radius: var(--st-r-lg);
	padding: 30px 28px;
	color: #ffffff;
}

.st-form__aside-title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
}

.st-form__aside-desc {
	margin: 0 0 22px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--st-on-dark-soft);
}

.st-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.st-contact__item {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.st-contact__label {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--st-orange);
}

.st-contact__value {
	font-size: 15px;
	line-height: 1.55;
	color: #ffffff;
	text-decoration: none;
}

a.st-contact__value:hover,
a.st-contact__value:focus-visible,
a.st-contact__value:active {
	color: var(--st-orange);
}

/* Le bouton d'envoi est un input : Kadence le stylise, on impose le notre. */
.st-form__box input[type='submit'],
.st-form__box button[type='submit'] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	border: 0;
	border-radius: var(--st-r-pill);
	background: var(--st-orange);
	color: var(--st-violet-800);
	font-family: var(--st-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: none;
}

.st-form__box input[type='submit']:hover,
.st-form__box input[type='submit']:focus-visible,
.st-form__box input[type='submit']:active,
.st-form__box button[type='submit']:hover,
.st-form__box button[type='submit']:focus-visible,
.st-form__box button[type='submit']:active {
	background: var(--st-orange-light);
	color: var(--st-violet-800);
	box-shadow: none;
}

.st-form__box input[type='text'],
.st-form__box input[type='email'],
.st-form__box input[type='tel'],
.st-form__box select,
.st-form__box textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid rgba(46, 21, 82, 0.2);
	border-radius: var(--st-r);
	font-family: var(--st-font);
	font-size: 14.5px;
	color: var(--st-on-light);
	background: #ffffff;
}

.st-form__box label {
	display: block;
	margin-bottom: 14px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--st-on-light);
}

@media (max-width: 900px) {
	.st-form__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

/* ---- Bandeau de logos --------------------------------------------------- */

.st-logos {
	background: #ffffff;
	padding: 30px 0;
	overflow: hidden;
}

.st-logos__title {
	margin: 0 0 20px;
	text-align: center;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--st-on-light-soft);
}

.st-logos__grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 20px;
	align-items: center;
}

.st-logo-slot {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 58px;
}

.st-logo-slot img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--st-r-sm);
	filter: grayscale(1);
	opacity: 0.65;
	transition: filter 0.2s ease, opacity 0.2s ease;
}

.st-logo-slot:hover img {
	filter: grayscale(0);
	opacity: 1;
}

@media (max-width: 1080px) {
	.st-logos__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 600px) {
	.st-logos__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 14px;
	}

	.st-logo-slot {
		height: 44px;
	}
}

/* ---- Tableau de correspondance ------------------------------------------ */

.st-tablesec__inner {
	max-width: 900px;
}

.st-tablesec__head {
	margin-bottom: 26px;
}

.st-tablesec__head .st-title {
	color: var(--st-violet-800);
}

.st-section--dark .st-tablesec__head .st-title {
	color: #ffffff;
}

.st-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid rgba(46, 21, 82, 0.12);
	border-radius: var(--st-r-md);
	overflow: hidden;
	background: #ffffff;
}

.st-table th,
.st-table td {
	padding: 15px 20px;
	text-align: left;
	font-size: 14.5px;
	line-height: 1.6;
	vertical-align: top;
	border-bottom: 1px solid rgba(46, 21, 82, 0.08);
}

.st-table thead th {
	background: var(--st-violet-050);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--st-violet-500);
}

.st-table tbody th {
	font-weight: 700;
	color: var(--st-on-light);
	width: 34%;
}

.st-table tbody td {
	color: var(--st-on-light-soft);
}

.st-table tbody tr:last-child th,
.st-table tbody tr:last-child td {
	border-bottom: 0;
}

.st-tablesec__note {
	margin: 18px 0 0;
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--st-on-light-soft);
}

.st-section--dark .st-tablesec__note {
	color: var(--st-on-dark-soft);
}

/* En mobile, le tableau passe en cartes : chaque cellule rappelle son
   intitule de colonne, sinon la valeur seule ne veut plus rien dire. */
@media (max-width: 700px) {
	.st-table,
	.st-table tbody,
	.st-table tr,
	.st-table th,
	.st-table td {
		display: block;
		width: 100%;
	}

	.st-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
	}

	.st-table tbody tr {
		border-bottom: 1px solid rgba(46, 21, 82, 0.1);
	}

	.st-table tbody tr:last-child {
		border-bottom: 0;
	}

	.st-table th,
	.st-table td {
		border-bottom: 0;
		padding: 12px 18px;
	}

	.st-table td::before {
		content: attr(data-label);
		display: block;
		margin-bottom: 4px;
		font-size: 11.5px;
		font-weight: 700;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		color: var(--st-violet-500);
	}
}

/* ---- Cas client --------------------------------------------------------- */

.st-case__inner {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 48px;
	align-items: start;
}

.st-case__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.st-case__format {
	font-size: 13px;
	color: var(--st-on-light-soft);
}

.st-case__content .st-title {
	color: var(--st-violet-800);
}

.st-case__client {
	margin: 0 0 24px;
	font-size: 14px;
	font-weight: 600;
	color: var(--st-violet-500);
}

.st-case__part {
	margin-bottom: 22px;
}

.st-case__part-title {
	margin: 0 0 8px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--st-orange-strong);
}

.st-case__p {
	margin: 0 0 10px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--st-on-light-soft);
}

.st-case__links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 6px;
}

.st-case__media {
	position: relative;
	border-radius: var(--st-r-xl);
	overflow: hidden;
	min-height: 380px;
	box-shadow: 0 20px 46px rgba(46, 21, 82, 0.16);
}

.st-case__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 900px) {
	.st-case__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.st-case__media {
		min-height: 240px;
		order: -1;
	}
}

/* SHOWTIME-BLOCS */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
