/*
Theme Name: Primiweb 2026
Author: Meziere Jonas
Version: 1.0
*/
* {
	box-sizing: border-box;
}

:root {

	--color-primary: #7A4FB3;
	/* violet principal */
	--color-secondary: #6B7280;
	/* gris texte secondaire */
	--color-text: #111827;
	/* texte principal */
	--color-accent: #A78BFA;
	/* violet clair accent */

	--bg-main: #ffffff;
	--bg-soft: #f5f6f8;

	/*********************/
	--violet: #5a3f8c;
	--rose: #c03a6b;
	--violet-light: #6B58C4;

	--violet-pale: #EEEDFE;
	--rose-light: #D4537E;
	--rose-pale: #FBEAF0;
	--grad: linear-gradient(135deg, var(--violet) 0%, var(--rose) 100%);
	--grad-soft: linear-gradient(135deg, rgba(74, 57, 144, 0.08) 0%, rgba(192, 64, 115, 0.08) 100%);
	--white: #ffffff;
	--off-white: #f9f8fc;
	--text-dark: #1a1625;
	--text-mid: #4a4560;
	--text-light: #8c87a8;
	--border: rgba(74, 57, 144, 0.12);
	--radius: 20px;
	--radius-sm: 12px;

	--text: #141414;
	--muted: #666;
	--line: rgba(0, 0, 0, 0.08);
	--soft: #f5f5f7;

	--ico-blue: #4b5ff5;
	--ico-pink: #c03a6b;
	--ico-purple: #6b44b4;
	--ico-green: #66cb26;

}

html {
	scroll-behavior: smooth;
}


body {

	/*font-family: "GeneralSans-Variable", "GeneralSans-Medium", "GeneralSans-Semibold", "GeneralSans-Bold";*/
	font-family: Inter, "Segoe UI", sans-serif;

	color: #111827;
	background: #ffffff;
}

.container {
	padding: 0 40px;
	max-width: 1200px;
}

.custom-logo {
	max-height: 80px;
	width: auto;
}

h1 {
	color: var(--color-text);
	font-family: "Segoe UI", sans-serif;

	/*font-weight: 600;
	letter-spacing: -5px;
	font-size: 90px;*/
	font-size: clamp(48px, 5.5vw, 120px);
	line-height: .95;
	letter-spacing: -0.065em;
	font-weight: bold;
	padding-bottom: 50px;
}

h2 {
	/*font-size: 44px;
	font-weight: 600;*/

	/*font-size: 50px;*/
	font-size: clamp(32px, 4vw, 70px);
	font-weight: 700;

	letter-spacing: -0.03em;
	line-height: 1.04;
	/*font-family: "Space Grotesk", sans-serif;*/
	margin-bottom: 0;
	padding-bottom: 7px;
}

h2.text-center {
	margin: 0 auto !important;
}

h3 {
	font-size: 40px;
	margin-bottom: 10px;
	color: #0000008c;
}

h2+p {
	margin-top: 5px;
}

p {

	color: var(--color-secondary);
	font-size: 17px;
	line-height: 1.7;

}

b {
	font-weight: 600;
	color: var(--rose);

}

ul li {
	color: var(--color-secondary);
}


.lead {
	font-size: 22px;
	line-height: 1.7;
	font-weight: 400;
	color: var(--color-secondary);

}

.title-gradient {


	/*background: radial-gradient(ellipse at 80% 140%, #c3416e 0%, #bf3b87 31%, #8647b2 68%, #4e3576 100%);*/
	background-image: linear-gradient(90deg, var(--violet), var(--rose));
	/*font-weight: bold;*/
	background-position-x: 0%;

	width: fit-content;

	background-clip: text;
	/*background-size: 300% 100%;*/
	transition: background-position-x 1300ms cubic-bezier(0.37, 0, 0.63, 1);
	color: transparent;


}

.gradient-wrapper-old {


	/*background: radial-gradient(ellipse at 80% 140%, #c3416e 0%, #bf3b87 10%, #8647b2 23%, #4e3576 33%);*/
	background: radial-gradient(ellipse at 80% 140%, #c3416e 0%, #bf3b87 31%, #8647b2 68%, #4e3576 100%);
	background-position-x: 0%;

	background-clip: text;
	/*background-size: 300% 100%;*/
	transition: background-position-x 1300ms cubic-bezier(0.37, 0, 0.63, 1);
	color: transparent;
}



.gradient-wrapper {
	/* texte */
	color: transparent;
	background-clip: text;


	/* radial gradient + zone noire */
	/*background-image: radial-gradient(
		ellipse at 60% 100%,
		#c3416e 0%,
		#bf3b87 31%,
		#8647b2 68%,
		#4e3576 100%
	),*/

	/*background-image:linear-gradient(90deg, 0% var(--violet),var(--rose) 33%, #111);*/
	background-image: linear-gradient(90deg, var(--violet), var(--rose) 23%, #1d1d1f 50.01%, #1d1d1f);
	/*background-image: linear-gradient(90deg, var(--violet), var(--rose));*/

	/* on agrandit le radial pour pouvoir le déplacer */
	background-size: 300% 100%;

	/*background-position: 150%,0%;*/
	background-position: 100%;
	background-repeat: no-repeat;

	transition: background-position 1300ms cubic-bezier(0.37, 0, 0.63, 1);
}

/* état visible */
.gradient-wrapper.gradient-show {
	background-position: 0%;
}



/* BTN */

.btn:hover {
	transform: translateY(-1px);
	color: #fff;
}

.btn {
	transition: background-color 0.2s ease-in-out;
	background: linear-gradient(135deg, var(--violet), var(--rose));
	color: #fff;
	box-shadow: 0 18px 40px rgba(90, 63, 140, .16);
	border-radius: 30px;
	padding: 14px 22px;
	border: 0;
}

.navbar .btn {
	padding: 8px 14px;
	border: 0;
}


.btn:first-child:active {
	color: #fff;
}


.btn-primary {

	background: #111827;
	border: 0;
	color: white;
	padding: 12px 22px;


}

.btn-secondary {
	border-color: rgba(0, 0, 0, 0.08);
	color: rgba(0, 0, 0, .72);
	background: transparent;
}

.btn-secondary:hover {
	background: #fff;
	color: rgba(0, 0, 0, .72);
	border-color: rgba(0, 0, 0, 0.08);
}



.btn.black {
	color: #fff !important;
	background: #000 !important;

}

.btn.black:hover {
	background: #494949 !important;
}


/* navbar */
.navbar {
	position: sticky;
	top: 0;
	z-index: 9999;

	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);

	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	min-height: 52px;
	padding: 0;
}

.navbar .container {
	max-width: 1200px;
	min-height: 52px;
	display: flex;
	align-items: center;
}

.navbar-nav {

	gap: 20px;

}

.navbar-nav .nav-link {
	font-family: "GeneralSans-Medium";
	padding: 6px 14px;
	border-radius: 6px;
	font-size: 14px;
	color: #1d1d1f;
	transition: all .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	background: rgba(0, 0, 0, 0.05);
	color: var(--color-primary);
}


.navbar-brand {
	display: flex;
	align-items: center;
	margin-right: 30px;
}

.navbar-brand img,
.custom-logo {
	max-height: 60px;
	width: auto;
}

.navbar-toggler {
	border: none;
	background: transparent;
	padding: 6px;
	box-shadow: none !important;
}

.navbar-toggler:focus {
	box-shadow: none;
}

/* navbar custom */
.navbar-custom {
	transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-custom .navbar-brand {
	display: flex;
	align-items: center;
}

.navbar-custom .navbar-logo {
	height: 60px;
	width: auto;
	display: block;
	transition: height 0.3s ease, opacity 0.2s ease;
}

.navbar-custom.navbar-scrolled {
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.navbar-custom.navbar-scrolled .navbar-logo {
	height: 42px;
}

.navbar-custom {
	min-height: 88px;
}

.navbar-custom.navbar-scrolled {
	min-height: 72px;
}



/* SECTIONS */
.section {

	padding: 100px 0;
}

.section-small {
	margin: 50px 0;
	padding: 25px 0;

}

.section-grey-gradiant {
	background: linear-gradient(#fff, #f5f5f7 144px);
}


/* ─── SCROLL REVEAL ─── */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-left {
	opacity: 0;
	transform: translateX(-70px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-right {
	opacity: 0;
	transform: translateX(70px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}


/* section hero */
.section-hero {
	/*min-height: 70vh;*/
	/*margin-top: -102px;*/
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 70px 24px 70px;

	position: relative;
	overflow: hidden;
	/*	background: var(--off-white);*/
}

.section-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top, rgba(90, 63, 140, .09), transparent 50%);
	pointer-events: none;
}


.contact-icon {
	font-size: 1.3rem;
	margin-right: 12px;
	background: linear-gradient(135deg, #6f42c1, #e83e8c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/*
.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.22;
}

.hero-orb-1 {
	width: 600px;
	height: 600px;
	top: -120px;
	left: -100px;
	background: var(--violet);
	animation: float1 12s ease-in-out infinite;
}

.hero-orb-2 {
	width: 500px;
	height: 500px;
	top: -80px;
	right: -100px;
	background: var(--rose);
	animation: float2 14s ease-in-out infinite;
}

.hero-orb-3 {
	width: 400px;
	height: 400px;
	bottom: -100px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--violet-light);
	animation: float3 10s ease-in-out infinite;
}

@keyframes float1 {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(40px, 30px);
	}
}

@keyframes float2 {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-30px, 40px);
	}
}

@keyframes float3 {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(-30px);
	}
}*/


/*  CARDS  */

.card {
	border-radius: 24px;
	border-color: #efeeed;
	background-color: #fafaf9;
	margin-bottom: 20px;
	overflow: hidden;
}

.card .card-body {
	padding: 25px;
}

.card img {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

.card img.ofcover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.of-hidden {
	overflow: hidden;
}

/*
.card p {
	font-size: 15px;
	line-height: 20px;
	color: #000;
}*/

.card .label {
	color: var(--color-primary);
	margin-bottom: 5px;
	font-weight: 600;
	font-family: "consolas";
	font-size: 18px;
}




.card.card-img-left img {
	border-top-left-radius: 16px;
	border-bottom-left-radius: 16px;
	border-top-right-radius: 0px;
	width: 100%;
}

.card.card-img-right img {
	border-top-right-radius: 16px;
	border-bottom-right-radius: 16px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	width: 100%;
}


.card:hover {
	box-shadow: 0 10px 20px rgba(74, 57, 144, 0.12);
}

.card-halo {
	position: relative;
	overflow: hidden;
}

.card-halo::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 35%,
			rgba(0, 0, 0, 0.65) 0%,
			rgba(40, 0, 70, 0.5) 45%,
			rgba(30, 0, 60, 0.35) 65%,
			transparent 85%);
	pointer-events: none;
	z-index: 0;
}

.card-halo img {
	position: relative;
	z-index: 1;
}

.card-halo .card-body {
	position: relative;
	z-index: 2;
}

/* card-tech bloc premium securité */

.card-tech {
	--accent: #7c5cff;
	--accent-rgb: 124, 92, 255;

	position: relative;
	overflow: hidden;
	border-radius: 28px;

	background:
		radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.15), transparent 40%),
		linear-gradient(180deg, #070010 0%, #020005 100%);

	border: 1px solid rgba(255, 255, 255, 0.06);

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 0 0 1px rgba(var(--accent-rgb), 0.08),
		0 20px 60px rgba(0, 0, 0, 0.6);

	transition: all .35s ease;
}

/* Bordure gradient */
.card-tech .card-body {
	padding: 35px;
}

.card-tech::before {
	content: "";
	position: absolute;
	inset: 10px;
	border-radius: 22px;

	background:
		radial-gradient(circle at 50% 10%,
			rgba(var(--accent-rgb), 0.15),
			transparent 45%);
	/* remettre pour zone coloré en haut*/

	box-shadow:
		inset 0 0 0 1px rgba(var(--accent-rgb), 0.45),
		0 0 35px rgba(var(--accent-rgb), 0.15);

	pointer-events: none;
}

/*
.card-tech::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(circle at 20% 30%, rgba(var(--accent-rgb),0.7) 1px, transparent 2px),
        radial-gradient(circle at 70% 15%, rgba(var(--accent-rgb),0.5) 1px, transparent 2px),
        radial-gradient(circle at 80% 60%, rgba(var(--accent-rgb),0.3) 1px, transparent 2px),
        radial-gradient(circle at 40% 70%, rgba(var(--accent-rgb),0.25) 1px, transparent 2px);

    opacity: .6;
}*/
.card-tech::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .55;

	background:

		/* Points lumineux */
		radial-gradient(circle at 12% 18%, rgba(var(--accent-rgb), 0.7) 1px, transparent 2px),
		radial-gradient(circle at 22% 42%, rgba(var(--accent-rgb), 0.4) 1px, transparent 2px),
		radial-gradient(circle at 35% 28%, rgba(var(--accent-rgb), 0.3) 1px, transparent 2px),
		radial-gradient(circle at 48% 15%, rgba(var(--accent-rgb), 0.5) 1px, transparent 2px),
		radial-gradient(circle at 62% 32%, rgba(var(--accent-rgb), 0.25) 1px, transparent 2px),
		radial-gradient(circle at 74% 18%, rgba(var(--accent-rgb), 0.45) 1px, transparent 2px),
		radial-gradient(circle at 84% 38%, rgba(var(--accent-rgb), 0.35) 1px, transparent 2px),
		radial-gradient(circle at 18% 62%, rgba(var(--accent-rgb), 0.25) 1px, transparent 2px),
		radial-gradient(circle at 42% 72%, rgba(var(--accent-rgb), 0.35) 1px, transparent 2px),
		radial-gradient(circle at 72% 78%, rgba(var(--accent-rgb), 0.25) 1px, transparent 2px),

		/* léger grain spatial */
		linear-gradient(rgba(255, 255, 255, 0.015),
			rgba(255, 255, 255, 0.01));
}



.card-tech-grid {
	position: absolute;
	bottom: 0;
	left: 10%;
	right: 10%;
	height: 120px;

	background:
		linear-gradient(to right, rgba(var(--accent-rgb), 0.2) 1px, transparent 1px),
		linear-gradient(to top, rgba(var(--accent-rgb), 0.2) 1px, transparent 1px);

	background-size: 40px 40px;

	transform: perspective(300px) rotateX(70deg);
	transform-origin: bottom;

	opacity: .7;
}

.card-tech img {
	position: relative;
	max-width: 100%;
	z-index: 2;
	margin: 20px auto 10px;

	filter:
		drop-shadow(0 0 20px rgba(var(--accent-rgb), 0.4)) drop-shadow(0 0 40px rgba(var(--accent-rgb), 0.2));
}

.card-green {
	--accent: #6cff7194;
	--accent-rgb: 108, 255, 112;
}

.card-blue {
	--accent: #4da6ff93;
	--accent-rgb: 77, 166, 255;
}

.card-purple {
	--accent: #a96cff86;
	--accent-rgb: 169, 108, 255;
}

.card-tech .label {
	color: rgba(var(--accent-rgb), 0.65);
}


/* service card*/

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--grad);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-card:hover::before {
	transform: scaleX(1);
}

/* DARK  */


.section-dark {
	background-color: #090909;
	color: white;
}

.section-dark .card {
	background-color: #090909;
	border-color: #1d1e20;
	color: #cececf;
}

.section-dark .card p {

	color: #8d8e97;
}

.section-dark .card .btn.black {
	border-color: #aaaaad;
}

/* logo slide marque */
.clients-marque {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 10px 0;
	background: radial-gradient(circle, var(--violet) 60%, var(--rose) 100%);
}


.clients-track {
	display: flex;
	align-items: center;
	gap: 60px;
	width: max-content;
	animation: marquee-scroll 100s linear infinite;
}

.clients-track-inverse {
	display: flex;
	align-items: center;
	gap: 60px;
	width: max-content;
	animation: marquee-scroll-inverse 50s linear infinite;
}

.client-logo {
	flex: 0 0 auto;
	opacity: 0.9;
}

.client-logo img {
	height: 60px;
	width: auto;
	display: block;
	object-fit: contain;
}

/*
.clients-marquee::before,
.clients-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0));
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, rgba(255,255,255,0));
}*/

@keyframes marquee-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes marquee-scroll-inverse {
	from {
		transform: translateX(-50%);
	}

	to {
		transform: translateX(0);
	}
}

@media (max-width: 768px) {
	.clients-track {
		gap: 36px;
		animation-duration: 22s;
	}

	.clients-track-inverse {
		gap: 36px;
		animation-duration: 22s;
	}

	.client-logo img {
		height: 30px;
	}
}


/* HERO CARD  */

.hero-card {
	background: linear-gradient(180deg, #fafafa, #efeff2);
	border: 1px solid var(--line);
	border-radius: 40px;
	/*box-shadow: 0 30px 80px rgba(0, 0, 0, .08);*/
	padding: 18px;
}

.hero-grid {
	/*display: grid;
	grid-template-columns: 1fr 1fr;*/
	overflow: visible;
	border-radius: 30px;
	background: #fff;
	border: 1px solid var(--line);
}

.panel {
	/*padding: 44px;*/

}

.f-panel {
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	overflow: hidden;
}

.s-panel {
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
}

.panel+.panel {
	border-left: 1px solid var(--line);
	background: #fcfcfc;

}

.mini {
	color: rgba(0, 0, 0, .46);
	font-size: 18px;
}


.subtext {
	margin-top: 3px;
	color: rgba(0, 0, 0, .62);
	line-height: 1.75;
	font-size: 17px;
	margin-bottom: 0;
}

.pill-list {
	display: grid;
	gap: 14px;
}

.pill {
	background: var(--soft);
	border-radius: 24px;
	padding: 18px 20px;
}

.pill strong {
	display: block;
	font-size: 24px;
	letter-spacing: -0.03em;
	margin-top: 4px;
}


/* page actu */
.news-page .news-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.news-page .news-filter {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background: #fff;
	border-radius: 999px;
	border: 2px solid grey;
	text-decoration: none;
	color: #1d1d1d;
	font-weight: 500;
	transition: all 0.2s ease;
}

.news-page .news-filter:hover,
.news-page .news-filter.active {
	color: #d63d82;
	transform: translateY(-1px);
}

.news-page .filter-dot {
	width: 14px;
	height: 14px;
	border: 4px solid #d63d82;
	border-radius: 50%;
	display: inline-block;
}

img.wp-smiley,
img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 0.07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}



.news-page .card img {
	border-radius: 0;
}
.news-page .card .newsImg {
	border-radius: 24px;
	margin-bottom: 30px;
	width: 100%;
	max-height: 500px;
	object-fit: cover;
}
.alignleft {
    float: left;
    margin-right: 1rem;
}
.alignright {
    float: right;
    margin-left: 1rem;
}

/*  FEATURES CARDS */
.feature-stack,
.feature-stack * {
	box-sizing: border-box;
}

.feature-stack {
	max-width: 620px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.feature-stack__card {
	position: relative;
	padding: 30px 34px;
	border-radius: 14px;
	border: 1px solid rgba(13, 41, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-stack__card:hover {
	transform: translateY(-2px) scale(1.20);
}

.feature-stack__title {
	margin: 0 0 14px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700;
	color: #202330;
}

.feature-stack__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: #5b6472;
	max-width: 480px;
}

/* Rotations */
.feature-stack__card--rotate-left {
	transform: rotate(-4deg);
}

.feature-stack__card--rotate-right {
	transform: rotate(4deg);
}

.feature-stack__card--rotate-left-soft {
	transform: rotate(-2deg);
}

.feature-stack__card--rotate-right-soft {
	transform: rotate(2deg);
}


/* Variantes de cartes */
.feature-stack__card--green {
	background: rgb(246, 253, 230);
	box-shadow:
		0 4px 8px -4px rgba(100, 162, 13, 0.3),
		0 12px 18px -2px rgba(100, 162, 13, 0.1);
}

.feature-stack__card--orange {
	background: rgb(255, 247, 239);
	box-shadow:
		0 4px 8px -4px rgba(227, 80, 19, 0.3),
		0 12px 18px -2px rgba(227, 80, 19, 0.1);
}

.feature-stack__card--purple {
	background: rgb(244, 242, 254);
	box-shadow:
		0 4px 8px -4px rgba(134, 36, 255, 0.3),
		0 12px 18px -2px rgba(134, 36, 255, 0.1);
}

.feature-stack__card--blue {
	background: rgb(238, 245, 254);
	box-shadow:
		0 4px 8px -4px rgba(37, 99, 234, 0.3),
		0 12px 18px -2px rgba(37, 99, 234, 0.1);
}

.feature-stack__card--light-blue {
	background: rgb(235, 253, 254);
	box-shadow:
		0 4px 8px -4px rgba(8, 144, 176, 0.3),
		0 12px 18px -2px rgba(8, 144, 176, 0.1);
}

.feature-stack__card--red {
	background: rgb(255, 243, 244);
	box-shadow:
		0 4px 8px -4px rgba(226, 47, 59, 0.3),
		0 12px 18px -2px rgba(226, 47, 59, 0.1);
}

.feature-stack__card--teal {
	background: #f7e2ff;
	box-shadow:
		0 4px 8px -4px rgba(13, 148, 136, 0.3),
		0 12px 18px -2px rgba(13, 148, 136, 0.1);
}

.feature-stack__card--amber {
	background: rgb(255, 251, 235);
	box-shadow:
		0 4px 8px -4px rgba(217, 119, 6, 0.3),
		0 12px 18px -2px rgba(217, 119, 6, 0.1);
}

/* Pins */
.feature-stack__pin {
	position: absolute;
	top: 14px;
	width: 14px;
	height: 14px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-stack__pin--left {
	left: 14px;
}

.feature-stack__pin--right {
	right: 14px;
}

.feature-stack__pin-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
}

/* Couleurs des pins par variante */
.feature-stack__card--green .feature-stack__pin {
	background: rgb(162, 228, 53);
}

.feature-stack__card--green .feature-stack__pin-dot {
	background: rgb(100, 162, 13);
}

.feature-stack__card--orange .feature-stack__pin {
	background: rgb(252, 188, 121);
}

.feature-stack__card--orange .feature-stack__pin-dot {
	background: rgb(227, 80, 19);
}

.feature-stack__card--purple .feature-stack__pin {
	background: rgb(195, 180, 252);
}

.feature-stack__card--purple .feature-stack__pin-dot {
	background: rgb(134, 36, 255);
}

.feature-stack__card--blue .feature-stack__pin {
	background: rgb(147, 196, 252);
}

.feature-stack__card--blue .feature-stack__pin-dot {
	background: rgb(37, 99, 234);
}

.feature-stack__card--light-blue .feature-stack__pin {
	background: rgb(102, 230, 247);
}

.feature-stack__card--light-blue .feature-stack__pin-dot {
	background: rgb(8, 144, 176);
}

.feature-stack__card--red .feature-stack__pin {
	background: rgb(255, 167, 173);
}

.feature-stack__card--red .feature-stack__pin-dot {
	background: rgb(226, 47, 59);
}

.feature-stack__card--teal .feature-stack__pin {
	background: #e9b8ff;
}

.feature-stack__card--teal .feature-stack__pin-dot {
	background: #a21caf;
}

.feature-stack__card--amber .feature-stack__pin {
	background: rgb(253, 230, 138);
}

.feature-stack__card--amber .feature-stack__pin-dot {
	background: rgb(217, 119, 6);
}




/* Responsive */
@media (max-width: 768px) {
	.feature-stack__card {
		padding: 24px 22px;
	}

	.feature-stack__title {
		font-size: 18px;
	}

	.feature-stack__text {
		font-size: 15px;
		line-height: 1.6;
	}

	.feature-stack__card--rotate-left,
	.feature-stack__card--rotate-right,
	.feature-stack__card--rotate-left-soft,
	.feature-stack__card--rotate-right-soft {
		transform: rotate(0deg);
	}
}

/* ecosystem bridge */


.ecosystem-bridge {
	position: relative;
	padding: 90px 0;
	overflow: hidden;
}

.ecosystem-bridge__inner {
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 280px 1fr;
	align-items: center;
	gap: 32px;
}

.ecosystem-card {
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(25, 25, 25, 0.08);
	border-radius: 28px;
	padding: 32px 30px;
	backdrop-filter: blur(8px);
	min-height: 320px;
	box-shadow: 0 10px 30px rgba(20, 20, 20, 0.04);
}

.ecosystem-card__eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8a8a8f;
}

.ecosystem-card__title {
	margin: 0 0 10px;
	font-size: 30px;
	line-height: 1.05;
	font-weight: 600;
	color: #101114;
}

.ecosystem-card__text {
	margin: 0 0 24px;
	font-size: 15px;
	line-height: 1.6;
	color: #5d616d;
	max-width: 420px;
}

.ecosystem-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ecosystem-list li {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(20, 20, 20, 0.08);
	background: #fff;
	font-size: 14px;
	font-weight: 500;
	color: #222;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ecosystem-list li:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(30, 30, 30, 0.08);
}

.ecosystem-list--accent li {
	border-color: rgba(236, 72, 153, 0.15);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 248, 0.9));
}

.ecosystem-flow {
	position: relative;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.ecosystem-flow__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 38px;
	padding: 0 18px;
	border-radius: 999px;
	background: #111;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
}


@media (max-width: 1080px) {
	.ecosystem-bridge__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.ecosystem-flow {
		order: 2;
	}

	.ecosystem-card--left {
		order: 1;
	}

	.ecosystem-card--right {
		order: 3;
	}

	.ecosystem-card {
		min-height: auto;
	}


}


.side-timeline {
	position: fixed;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	z-index: 1000;
	display: flex;
	flex-direction: column;

}

.side-timeline__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 28px;
	text-decoration: none;
	opacity: 0.9;
	transition: opacity 0.25s ease;
}

.side-timeline__link:hover {
	opacity: 1;
}

.side-timeline__marker {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.side-timeline__marker::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 3px;
	height: 14px;
	border-radius: 999px;
	background: #a8a8a8;
	transition:
		height 0.5s ease,
		width 0.5s ease,
		background 0.5s ease,
		box-shadow 0.5s ease;
}

.side-timeline__link.active .side-timeline__marker::before {
	height: 28px;
	width: 4px;
	background: linear-gradient(180deg, #7c3aed, #ec4899);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
}

@media (max-width: 991.98px) {
	.side-timeline {
		display: none;
	}
}

/* ─── STATS ─── */
.stats {
	padding: 80px 48px;
	display: flex;
	justify-content: center;
	gap: 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: white;
}

.stat-item {
	flex: 1;
	max-width: 225px;
	text-align: center;
	padding: 0 32px;
	position: relative;
}

.stat-item+.stat-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 20%;
	bottom: 20%;
	width: 1px;
	background: var(--border);
}

.stat-number {
	/*font-family: 'DM Serif Display', serif;*/
	font-size: 52px;
	line-height: 1;
	background: var(--grad);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	font-size: 14px;
	color: var(--text-light);
	margin-top: 8px;
	font-weight: 500;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
	.stats {
		flex-wrap: wrap;
		padding: 40px 20px;
	}

	.stat-item {
		flex: 0 0 50%;
		max-width: 50%;
		padding: 20px 16px;
	}

	.stat-item:last-child::before {
		display: none;
	}




}

@media (max-width: 767.98px) {
	.stats {
		flex-wrap: wrap;
		padding: 40px 20px;
	}

	.stat-item {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 20px 16px;
	}

	.stat-item+.stat-item::before {
		display: none;
	}


}



.hero-separator {
	position: relative;
	height: 90px;
	margin-top: -75px;
	display: block;
}

.hero-separator::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center,
			rgba(153, 102, 255, 0.18) 0%,
			rgba(255, 77, 166, 0.12) 30%,
			rgba(255, 255, 255, 0) 70%);
	filter: blur(18px);
}