/*--------------------------------------------------------------
>>> TABLE DES MATIÈRES :
----------------------------------------------------------------
# Variables CSS
# Fonts
# Base & Reset
# Titres & Typographie
# Utilitaires couleurs (background, text, fill, ombres)
# Animations keyframes
# Animation chouette (logo SVG)
# Animation sonar (header SVG)
# Animation contrôle header
# Navigation / Sidebar
# Header & Breadcrumb
# Boutons & Liens
# Formulaires (contact)
# Modales / Sticky
# Pagination
# Sections de contenu (services, leviers, blog, actualités)
# Composants cartes (blog-card, solution-card, RSE)
# Sections IA (bm-, rvs-, sia-, umc-)
# Layouts sections (qui, benef, footer, etc.)
# Footer & Scroll to top
# Page 404
# Tarte au citron
# Skip Links
# Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# VARIABLES CSS
--------------------------------------------------------------*/
:root {
	/* Couleurs de base */
	--white: #e9e9e9;
	--grey: #8f8f8f;
	--black: #111111;
	--color-1: #b0a18b;
	--color-2: #43666d;
	--color-3: #354f54;
	--color-4: #c5bbaa;
	--color-5: #467078;
	--transparent: transparent;
	--color-1-muted: rgba(176, 161, 139, 0.8);

	/* Tokens sémantiques */
	--main-text-color: var(--color-4);
	--link: var(--color-1);
	--link-hover: var(--color-2);
	--btn-bg-color: black;
	--btn-bg-color-hover: transparent;
	--btn-color: var(--white);
	--btn-color-hover: var(--color-1);

	/* Typographie */
	--font-family-1: "Roboto", sans-serif;
	--font-family-2: "Raleway", sans-serif;
	--font-size-menu: 1rem;

	/* Menu */
	--menu-bg-color: var(--color-1);
	--menu-bg-color-hover: var(--color-2);
	--menu-color: var(--grey);
	--menu-color-hover: var(--white);
	--menu-bg-color-dropdown: var(--black);
	--menu-bg-color-dropdown-hover: var(--color-1);
	--menu-color-dropdown: var(--white);
	--menu-color-hover-dropdown: var(--white);
	--menu-bg-burger-active: var(--white);
	--menu-color-burger-active: var(--white);

	/* Fond sections IA */
	--ia-bg: #0f1113;
	--color-1: #b0a18b;
	--white: #f0ebe5;
	--color-2: #516366;

	/* Variantes alpha --color-1 (#b0a18b) */
	--color-1-10: rgba(176, 161, 139, 0.10);
	--color-1-08: rgba(176, 161, 139, 0.08);
	--color-1-07: rgba(176, 161, 139, 0.70);
	--color-1-06: rgba(176, 161, 139, 0.60);
	--color-1-05: rgba(176, 161, 139, 0.05);

	/* Alias ia-gold (identiques à color-1, conservés pour compatibilité) */
	--ia-gold-10: rgba(176, 161, 139, 0.10);
	--ia-gold-08: rgba(176, 161, 139, 0.08);
	--ia-gold-07: rgba(176, 161, 139, 0.70);
	--ia-gold-06: rgba(176, 161, 139, 0.60);
	--ia-gold-05: rgba(176, 161, 139, 0.05);

	/* Variantes alpha --color-2 (#43666d) */
	--color-2-30: rgba(67, 102, 109, 0.30);
	--color-2-20: rgba(67, 102, 109, 0.20);
	--color-2-15: rgba(67, 102, 109, 0.15);
	--color-2-10: rgba(67, 102, 109, 0.10);

	/* Alias ia-teal (conservés pour compatibilité) */
	--color-2-30: rgba(81, 99, 102, 0.30);
	--color-2-20: rgba(81, 99, 102, 0.20);
	--color-2-15: rgba(81, 99, 102, 0.15);
	--color-2-10: rgba(81, 99, 102, 0.10);
}

/*--------------------------------------------------------------
# FONTS
--------------------------------------------------------------*/
/* Décommenter pour charger les polices via Google Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */

/*--------------------------------------------------------------
# BASE & RESET
--------------------------------------------------------------*/
body {
	overflow-x: hidden;
	font-family: var(--font-family-1);
	color: var(--grey);
	font-weight: 400;
	background-color: #0e0e0e;
	padding-left: 350px;
}

button,
input,
select,
textarea,
.label {
	font-family: inherit;
}

mark {
	background-color: transparent;
	color: inherit;
}

::selection {
	background-color: var(--color-2);
	color: var(--white);
}

.content img {
	display: block;
}

/* Reset marges Bulma */
.columns {
	margin: 0;
}

.columns:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# TITRES & TYPOGRAPHIE
--------------------------------------------------------------*/
.is-size-0 {
	font-size: 5rem;
	font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.subtitle,
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6,
.content .title,
.content .subtitle {
	font-family: var(--font-family-2);
	font-weight: 400;
	color: var(--color-1);
	text-transform: uppercase;
	font-weight: bold;

}

h4 {
	text-align: center;
	color: var(--color-5);
	line-height: 1;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.title a,
.subtitle a,
.content h1 a,
.content h2 a,
.content h3 a,
.content h4 a,
.content h5 a,
.content h6 a,
.content .title a,
.content .subtitle a {
	color: inherit;
}

h2.title,
h2,
h3.subtitle {
	color: var(--color-1) !important;
	font-size: 1.4rem !important;
}

strong,
.subtitle strong,
.title strong {
	color: inherit;
}

.subtitle,
.title {
	word-break: unset;
}

.ia-title-light {
	color: var(--color-4) !important;
	letter-spacing: -0.025em;
}

.ia-divider {
	height: 1px;
	background: linear-gradient(90deg, var(--transparent), var(--color-2), var(--transparent));
	opacity: 0.4;
}

/* Utilitaires typo */
.is-size-8 {
	font-size: .9rem;
}

.font-family-1 {
	font-family: var(--font-family-1);
}

.font-family-2 {
	font-family: var(--font-family-2);
}

.textwidget {
	word-wrap: break-word;
}

/* Éléments génériques */
svg,
svg.icon {
	fill: currentColor;
	transition: all 0.5s ease-in-out;
}

.social-icons {
	position: absolute;
	bottom: 2rem;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.panel {
	border-radius: 0;
	box-shadow: none;
}

.box,
.card {
	color: var(--main-text-color);
	height: 100%;
}

.card,
.card-content,
.card-image:first-child img {
	border-radius: 0;
}

/*--------------------------------------------------------------
# UTILITAIRES COULEURS
--------------------------------------------------------------*/
/* Backgrounds */
.background-color-white {
	background-color: var(--white);
}

.background-color-grey {
	background-color: var(--grey);
}

.background-color-black {
	background-color: var(--black);
}

.background-color-1 {
	background-color: var(--color-1);
}

.background-color-2 {
	background-color: var(--color-2);
}

.background-color-3 {
	background-color: var(--color-3);
}

.background-color-4 {
	background-color: var(--color-4);
}

.background-color-5 {
	background-color: var(--color-5);
}

.bleu {
	background: var(--color-3);
}

/* Texte */
.color-white {
	color: var(--white);
}

.color-grey {
	color: var(--grey);
}

.color-black {
	color: var(--black);
}

.color-1 {
	color: var(--color-1);
}

.color-2 {
	color: var(--color-2);
}

.color-3 {
	color: var(--color-3);
}

.color-4 {
	color: var(--color-4);
}

.color-5 {
	color: var(--color-5);
}

/* Fill SVG */
.fill-color-white {
	fill: var(--white);
}

.fill-color-grey {
	fill: var(--grey);
}

.fill-color-black {
	fill: var(--black);
}

.fill-color-1 {
	fill: var(--color-1);
}

.fill-color-2 {
	fill: var(--color-2);
}

.fill-color-3 {
	fill: var(--color-3);
}

.fill-color-4 {
	fill: var(--color-4);
}

.fill-color-5 {
	fill: var(--color-5);
}

/* Ombres & bordures */
.shadow {
	box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease-in-out;
}

.shadow:hover {
	box-shadow: 1px 3px 3px 1px rgba(50, 50, 50, 0.5);
}

.radius {
	border-radius: 5px;
}

/*--------------------------------------------------------------
# ANIMATIONS KEYFRAMES
--------------------------------------------------------------*/
@keyframes rollOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}

@keyframes changecolor {
	from {
		fill: var(--color-1);
	}

	to {
		fill: var(--color-2);
	}
}

@keyframes shakeY {

	from,
	to {
		transform: translate3d(0, 0, 0);
	}

	15%,
	45%,
	75% {
		transform: translate3d(0, -2px, 0);
	}

	30%,
	60% {
		transform: translate3d(0, 2px, 0);
	}
}

@keyframes shakeX {

	from,
	to {
		transform: translate3d(0, 0, 0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-2px, 0, 0);
	}

	20%,
	40%,
	60%,
	80% {
		transform: translate3d(2px, 0, 0);
	}
}

@keyframes headShake {
	0% {
		transform: translateX(0);
	}

	3.3% {
		transform: translateX(-6px) rotateY(-9deg);
	}

	9.2% {
		transform: translateX(5px) rotateY(7deg);
	}

	15.7% {
		transform: translateX(-3px) rotateY(-5deg);
	}

	21.7% {
		transform: translateX(2px) rotateY(3deg);
	}

	25% {
		transform: translateX(0);
	}
}

@keyframes bounceIn {

	from,
	20%,
	40%,
	60%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}

	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}

	40% {
		transform: scale3d(0.9, 0.9, 0.9);
	}

	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}

	80% {
		transform: scale3d(0.97, 0.97, 0.97);
	}

	to {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}

@keyframes slideInDown {
	from {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}
}

@keyframes clin-doeil {

	0%,
	10% {
		transform: scaleY(1);
	}

	5% {
		transform: scaleY(0.05);
	}
}

@keyframes flash {

	from,
	to {
		opacity: 1;
	}

	0.7% {
		opacity: 0;
	}
}

@keyframes jello {

	from,
	11.1%,
	to {
		transform: translate3d(0, 0, 0);
	}

	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}

	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg);
	}

	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}

	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}

	66.6% {
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}

	77.7% {
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}

	88.8% {
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}

@keyframes tada {
	from {
		transform: scale3d(1, 1, 1);
	}

	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}

	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}

	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}

	to {
		transform: scale3d(1, 1, 1);
	}
}

@keyframes appear-left {
	to {
		left: 0;
		opacity: 1;
	}
}

/* Bouton animé bordures */
@keyframes animate-top {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}

@keyframes animate-right {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(100%);
	}
}

@keyframes animate-bottom {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}

@keyframes animate-left {
	0% {
		transform: translateY(100%);
	}

	100% {
		transform: translateY(-100%);
	}
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: #111;
	border-radius: 8px;
	color: #fff;
}

.faq-item h3 {
	margin-top: 0;
	color: var(--color-1);
	font-size: 1.25rem;
}

.faq-item p {
	margin-bottom: 0;
	line-height: 1.6;
}

ul {
	list-style: circle;
	margin-left: 30px;
}

/*--------------------------------------------------------------
# ANIMATION CHOUETTE (logo SVG)
--------------------------------------------------------------*/
.logo {
	height: 50px;
}

.custom-svg.specific-svg svg,
.custom-svg.specific-svg2 svg {
	width: 80px;
	height: auto;
}

a.navbar-item:has(.specific-svg):hover {
	background: transparent !important;
}

.cls-1 {
	fill: var(--color-1);
}

.cls-2 {
	fill: var(--color-2);
}

.custom-svg:hover #tete {
	animation: headShake 5s;
}

.custom-svg:hover #sourcils {
	animation: shakeY 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-svg:hover #oeil-droit {
	animation: clin-doeil 1.5s;
	transform-origin: 50% 17%;
}

/*--------------------------------------------------------------
# ANIMATION SONAR (header SVG)
--------------------------------------------------------------*/
.grid-circle {
	stroke: #43666d;
	stroke-width: 1;
	fill: none;
	opacity: 0.4;
}

.grid-circle-main {
	stroke-width: 1.5;
	opacity: 0.5;
}

.grid-circle-outer {
	opacity: 0.3;
}

.grid-line {
	stroke: #43666d;
	stroke-width: 1;
	opacity: 0.3;
}

.grid-line-diagonal {
	stroke-width: 0.5;
	opacity: 0.2;
}

.sweep-line {
	stroke: url(#sweepGradient);
	stroke-width: 3;
	filter: url(#sonarGlow);
	opacity: 0.9;
}

.sweep-sector {
	fill: url(#pulseGradient);
	opacity: 0.15;
}

.ping-circle {
	stroke: #b0a18b;
	stroke-width: 2;
	fill: none;
	opacity: 0;
}

.target-circle {
	fill: #b0a18b;
	filter: url(#sonarGlow);
}

.target-circle-alt {
	fill: #43666d;
	filter: url(#sonarGlow);
}

.target-label {
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 1px;
	font-family: 'Courier New', monospace;
}

.target-label-primary {
	fill: #b0a18b;
}

.target-label-secondary {
	fill: #43666d;
}

.distance-label {
	fill: #b0a18b;
	font-size: 10px;
	opacity: 0.5;
}

.angle-label {
	fill: #b0a18b;
	font-size: 12px;
	opacity: 0.6;
}

.center-emitter {
	fill: url(#angularCentralGradient);
	filter: url(#sonarGlow);
}

.center-pulse {
	fill: none;
	stroke: #b0a18b;
	stroke-width: 1.5;
	opacity: 0.6;
}

/*-------------------------------------------------------------
Accents
--------------------------------------------------------------*/
/* Gradient Stops */
.stop-accent-1 {
	stop-color: #43666d;
	stop-opacity: 1;
}

.stop-accent-09 {
	stop-color: #43666d;
	stop-opacity: 0.9;
}

.stop-accent-08 {
	stop-color: #43666d;
	stop-opacity: 0.8;
}

.stop-accent-02 {
	stop-color: #43666d;
	stop-opacity: 0.2;
}

.stop-secondary-0 {
	stop-color: #b0a18b;
	stop-opacity: 0;
}

.stop-secondary-06 {
	stop-color: #b0a18b;
	stop-opacity: 0.6;
}

/* Typography & Colors */
.title-gold {
	color: #b0a18b !important;
	letter-spacing: -0.025em;
}

.subtitle-gold {
	color: rgba(176, 161, 139, 0.6) !important;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

/* Helpers */
.display-block {
	display: block;
}

.display-none {
	display: none;
}

/* Image Styles */
.img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*--------------------------------------------------------------
# ANIMATION CONTRÔLE HEADER
--------------------------------------------------------------*/
.svg-container {
	position: relative;
}

#animation-toggle-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 20;
	opacity: 0.6;
	background-color: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(176, 161, 139, 0.3);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b0a18b;
	cursor: pointer;
	transition: all 0.3s ease;
}

#animation-toggle-btn:hover {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.4);
	border-color: #43666d;
	color: #43666d;
	transform: scale(1.1);
}

#animation-toggle-btn:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(176, 161, 139, 0.3);
}

#pause-icon {
	display: block;
}

#play-icon {
	display: none;
}

#header-svg {
	cursor: pointer;
}

/* Lucide SVG icons */
svg.lucide {
	stroke: currentColor;
	stroke-width: 1.5;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.icon-anthracite-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background-color: #111111;
	border-radius: 8px;
	margin-right: 15px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

/*--------------------------------------------------------------
# NAVIGATION / SIDEBAR
--------------------------------------------------------------*/
/* Sidebar fixe (desktop) */
.menu-top-fixed,
.menu-top-fixed.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: initial;
	width: 250px;
	height: 100%;
	z-index: 1000;
	overflow-y: auto;
	background-color: #111111;
	padding-top: 3rem;
	padding-right: 0.75rem;
	padding-left: 0.75rem;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.menu-top-fixed:hover,
.menu-top-fixed.sticky:hover {
	width: 350px;
}

/* Navbar */
.navbar {
	background-color: #111111;
	width: 100%;
	display: block;
}

.navbar::-webkit-scrollbar {
	width: 0;
	background: transparent;
}

.navbar-end,
.navbar-start {
	display: block;
	margin: 0;
	background: #111111;
	width: 100%;
}

.navbar-menu {
	font-size: var(--font-size-menu);
	background-color: var(--black);
}

.navbar-item,
.navbar-link {
	display: block;
	color: var(--menu-color);
	font-size: var(--font-size-menu);
}

.navbar-brand {
	justify-content: center;
}

.navbar-brand a.navbar-item {
	margin-bottom: 3rem;
	text-align: center;
}

.navbar-brand img,
.navbar-brand svg {
	max-height: unset;
	width: 150px;
}

.navbar-brand a.navbar-item:hover,
.navbar-brand a.navbar-item:focus,
.navbar-brand a.navbar-item:active {
	background-color: transparent;
}

.container>.navbar .navbar-menu {
	flex-direction: column;
	margin: 0;
}

/* Dropdown */
.navbar-dropdown {
	background: var(--menu-bg-color-dropdown);
}

.navbar-dropdown a.navbar-item:not(.is-active, .is-selected) {
	margin: 0 5px;
	font-size: calc(var(--font-size-menu) - 0.1rem);
	opacity: 1;
	color: var(--menu-color-dropdown);
}

.navbar-dropdown .navbar-item {
	white-space: pre-wrap;
}

.navbar-dropdown a.navbar-item:focus,
.navbar-dropdown a.navbar-item:hover {
	background-color: var(--menu-bg-color-dropdown-hover);
	color: var(--menu-color-hover-dropdown);
	margin: 0 5px;
}

.navbar-dropdown.is-boxed,
.navbar.is-spaced .navbar-dropdown {
	opacity: 1;
	position: static;
	border: none;
	box-shadow: none;
	min-width: unset;
	z-index: 0;
	transform: none;
	border-radius: 0;
}

/* Flèche dropdown */
.navbar-link:not(.is-arrowless) {
	font-size: inherit;
	padding-right: 1.4em;
}

.navbar-link:not(.is-arrowless)::after {
	border-color: var(--menu-color);
	width: 10px;
	height: 10px;
	border-radius: 2px;
	top: 50%;
	right: 0.4em;
}

.navbar-link:not(.is-arrowless):hover::after,
.navbar-link.is-active:not(.is-arrowless)::after,
.navbar-item.has-dropdown.is-active .navbar-link:not(.is-arrowless)::after,
.navbar-item.has-dropdown:focus .navbar-link:not(.is-arrowless)::after,
.navbar-item.has-dropdown:hover .navbar-link:not(.is-arrowless)::after {
	border-color: var(--menu-color-hover);
}

/* États actifs/hover */
a.navbar-item:hover,
a.navbar-item.is-active,
a.navbar-item.is-active:not(:focus):not(:hover),
.navbar-link:hover,
.navbar-link.is-active,
.navbar-link.is-active:not(:focus):not(:hover),
.navbar-brand a.navbar-item:focus,
.navbar-brand a.navbar-item:hover,
.navbar-link:focus,
.navbar-link:focus-within,
a.navbar-item:focus,
a.navbar-item:focus-within,
.navbar-item.has-dropdown.is-active .navbar-link,
.navbar-item.has-dropdown:focus .navbar-link,
.navbar-item.has-dropdown:hover .navbar-link {
	color: var(--color-1);
	background-color: var(--black);
}

a.navbar-item:hover {
	background: black;
	color: var(--color-1; )
}

.navbar-item a.level-item {
	color: var(--menu-color);
}

.navbar-item a.level-item:hover {
	color: var(--menu-bg-color-hover);
}

.navbar-end .navbar-item .level {
	justify-content: flex-start;
}

.navbar-end a.button {
	color: var(--color-1);
	background-color: transparent;
}

.navbar-end a.button:hover {
	color: var(--white);
	background-color: var(--color-1);
}

/* Bouton burger */
.navbar-burger {
	border-radius: 0;
	color: var(--menu-color);
	margin-right: 1rem;
	height: 4rem;
	width: 4rem;
	background-color: var(--color-5);
}

button.navbar-burger:hover {
	color: var(--menu-color-hover);
	background-color: var(--menu-bg-color-hover);
}

.navbar-burger span {
	left: calc(50% - 15px);
	width: 30px;
	height: 3px;
	transition: all 0.5s ease;
}

.navbar-burger span:first-child,
.navbar-burger span:nth-child(2) {
	top: calc(50% - 10px);
}

.navbar-burger span:nth-child(3) {
	top: 50%;
}

.navbar-burger span:nth-child(4) {
	top: calc(50% + 10px);
}

.navbar-burger.is-active span:first-child {
	transform: translateY(10px) rotate(45deg);
	opacity: 1;
}

.navbar-burger.is-active span:nth-child(2) {
	transform: translateY(10px) rotate(-45deg);
	opacity: 1;
}

/*--------------------------------------------------------------
Back
--------------------------------------------------------------*/
body.mce-content-body {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: flex-start !important;
}

/*--------------------------------------------------------------
# HEADER & BREADCRUMB
--------------------------------------------------------------*/
.header h2 {
	font-size: 50px;
}

.breadcrumb {
	padding: 1rem 0;
	color: var(--white);
	white-space: unset;
}

.breadcrumb a {
	color: var(--link);
}

.breadcrumb a:hover {
	color: var(--link-hover);
}

.breadcrumb span {
	padding: 0 0.75em;
}

.breadcrumb li+li:before {
	color: var(--white);
	content: '|';
}

/*--------------------------------------------------------------
# BOUTONS & LIENS
--------------------------------------------------------------*/
a,
.content a {
	color: var(--link);
	transition: all 0.5s ease-in-out;
}

a:hover,
.content a:hover {
	color: var(--link-hover);
}

/* Bouton principal */
.button,
a.button,
.content .button,
.content a.button,
input[type="submit"].button,
.content a.wp-element-button {
	border-radius: 0;
	border: 1px solid var(--btn-bg-color);
	background-color: var(--btn-bg-color);
	color: var(--btn-color);
	font-weight: inherit;
	padding: 0.5em 1em;
	line-height: 1.5;
	transition: all 0.5s ease-in-out;
}

.button:hover,
a.button:hover,
.content .button:hover,
.content a.button:hover,
input[type="submit"].button:hover,
.content a.wp-element-button:hover {
	background-color: var(--btn-bg-color-hover);
	border-color: var(--btn-color-hover);
	color: var(--btn-color-hover);
}

/* Bouton secondaire */
.button.secondary,
a.button.secondary,
.content .button.secondary,
.content a.button.secondary,
input[type="submit"].button.secondary,
.content a.wp-element-button.secondary {
	background-color: var(--color-2);
	border-color: var(--color-2);
}

.button.secondary:hover,
a.button.secondary:hover,
.content .button.secondary:hover,
.content a.button.secondary:hover,
input[type="submit"].button.secondary:hover,
.content a.wp-element-button.secondary:hover {
	background-color: transparent;
	border-color: var(--color-2);
	color: var(--color-2);
}

/* Bouton tertiaire */
.button.tertiary,
a.button.tertiary,
.content .button.tertiary,
.content a.button.tertiary,
input[type="submit"].button.tertiary,
.content a.wp-element-button.tertiary {
	color: var(--black);
	background-color: var(--color-3);
	border-color: var(--color-3);
}

.button.tertiary:hover,
a.button.tertiary:hover,
.content .button.tertiary:hover,
.content a.button.tertiary:hover,
input[type="submit"].button.tertiary:hover,
.content a.wp-element-button.tertiary:hover {
	background-color: transparent;
	border-color: var(--color-3);
	color: var(--color-3);
}

/* Bouton à bordure animée */
.btn-animated-border {
	position: relative;
	display: inline-block;
	padding: 0.5em 1em;
	background-color: #1a1a1a;
	color: #b0a18b;
	text-decoration: none;
	font-weight: 600;
	overflow: hidden;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.btn-animated-border:hover {
	color: var(--color-2);
	box-shadow: 0 0 5px 5px rgba(62, 107, 153, 0.3);
}

.btn-animated-border .border-top,
.btn-animated-border .border-bottom {
	position: absolute;
	width: 100%;
	height: 2px;
	right: 0;
}

.btn-animated-border .border-right,
.btn-animated-border .border-left {
	position: absolute;
	height: 100%;
	width: 2px;
	top: 0;
}

.btn-animated-border .border-top {
	top: 0;
	background: linear-gradient(to right, #111, #516366);
	border-radius: 5px 5px 0 0;
	animation: animate-top 2s linear infinite;
}

.btn-animated-border .border-right {
	right: 0;
	background: linear-gradient(to bottom, #111, #516366);
	animation: animate-right 2s linear infinite 1s;
}

.btn-animated-border .border-bottom {
	bottom: 0;
	background: linear-gradient(to left, #111, #516366);
	border-radius: 0 0 5px 5px;
	animation: animate-bottom 2s linear infinite;
}

.btn-animated-border .border-left {
	left: 0;
	background: linear-gradient(to top, #1a1a1a, #516366);
	animation: animate-left 2s linear infinite 1s;
}

/*--------------------------------------------------------------
# FORMULAIRES (contact)
--------------------------------------------------------------*/
.contact iframe {
	width: 100%;
}

.control.has-icons-left .icon,
.control.has-icons-right .icon {
	color: var(--white);
}

.control.has-icons-left .icon svg,
.control.has-icons-right .icon svg {
	height: 1rem;
}

.input,
.textarea,
.select select {
	background-color: var(--black);
	color: var(--white);
	border: 1px solid var(--color-1);
	border-radius: 10px;
	box-shadow: none;
	font-family: inherit;
	font-weight: inherit;
	font-size: 1rem;
}

textarea.textarea::placeholder,
input.input::placeholder,
input.input::-ms-input-placeholder,
textarea.textarea::-ms-input-placeholder {
	color: var(--main-text-color);
	opacity: 1;
}

.textarea:hover,
.textarea.is-hovered,
.input:hover,
.input.is-hovered,
.select select:hover,
.select select.is-hovered {
	border-color: var(--color-2);
}

.select:not(.is-multiple):not(.is-loading):after {
	border-color: var(--color-1);
}

.textarea {
	padding: calc(.5em - 1px) calc(.75em - 1px) calc(.5em - 1px) 2.5em;
}

.checkbox {
	margin-right: 0.75rem;
}

.field-body {
	flex-basis: auto;
}

label.label {
	color: var(--main-text-color);
	font-weight: 400;
}

#contact #captcha {
	margin: 0 auto;
}

.attrapecouillons {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: -10000;
}

.error-message {
	color: var(--color-1);
	font-size: 0.8rem;
	display: block;
	margin-top: 5px;
}

/*--------------------------------------------------------------
# MODALES / STICKY
--------------------------------------------------------------*/
.modal {
	z-index: 300;
}

.modal-card {
	max-height: unset;
	overflow: auto;
}

.modal-card-title {
	flex-shrink: 1;
}

.modal-card-body {
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

/*--------------------------------------------------------------
# PAGINATION
--------------------------------------------------------------*/
.pagination-link,
.pagination-next,
.pagination-previous {
	border-color: var(--btn-bg-color);
	background-color: var(--btn-bg-color);
	color: var(--btn-color);
}

.pagination-link svg.icon,
.pagination-next svg.icon,
.pagination-previous svg.icon {
	fill: var(--btn-color);
}

.pagination-link.is-current,
.pagination-link:hover,
.pagination-next:hover,
.pagination-previous:hover {
	background-color: var(--btn-bg-color-hover);
	border-color: var(--btn-color-hover);
	color: var(--btn-color-hover);
}

.pagination-link.is-current svg.icon,
.pagination-link:hover svg.icon,
.pagination-next:hover svg.icon,
.pagination-previous:hover svg.icon {
	fill: var(--btn-color-hover);
}

/*--------------------------------------------------------------
# SECTIONS DE CONTENU
--------------------------------------------------------------*/

/* Titre de section générique */
.section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #b0a18b, #43666d);
	border-radius: 2px;
}

/* Services */
.services .sous-titre {
	max-width: 500px;
	margin: 0 auto;
}

.services a.card {
	display: block;
	transition: transform 0.3s, box-shadow 0.3s;
}

.services a.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.services a.card p {
	color: var(--main-text-color);
}

/* Leviers / Canvas */
.anima {
	background: transparent;
	overflow: hidden;
	position: relative;
}

.anima canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#canvas {
	z-index: 2;
}

#canvasbg {
	z-index: 1;
	filter: blur(3px);
	opacity: 0.6;
}

.anima .column {
	z-index: 3;
}

/* Présentation */
.presentation .sous-titre {
	max-width: 500px;
	margin: 0 auto;
}

/* Blog / Actualités */
section.blog article,
section.blog .card {
	height: 100%;
	transition: transform 0.3s, box-shadow 0.3s;
}

section.blog .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

section.blog .card-image {
	height: 250px;
}

section.blog .card-content {
	height: calc(100% - 250px);
}

section.blog h1 {
	font-family: var(--font-family-1);
	color: var(--color-1);
}

main .section.blog img,
main.section.blog img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	object-position: center;
}

section.blog .plus {
	transition: all 0.5s ease-in-out;
}

section.blog a:hover .plus {
	color: var(--color-1);
}

.actualites figure {
	height: 100%;
}

.actualites img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

section.blog a .content p,
.actualites a .content p {
	color: var(--main-text-color);
}

/* Cards pour Pages */
/* Cards */
.content blockquote,
.card-dark {
	background: radial-gradient(circle at 100% 50%, var(--color-1-08) 0%, rgba(176, 161, 139, 0.04) 30%, var(--transparent) 70%), var(--ia-bg);
	border: 1px solid #b0a18b69;
	border-radius: 10px;
	padding: 1.5rem;
	position: relative;
	overflow: hidden;
	transition: background-color 0.2s ease;
}

.content blockquote,
.card-blue {
	background: var(--color-3);
	border: 1px solid var(--color-2);
	border-radius: 10px;
	padding: 1.5rem;
	position: relative;
	overflow: hidden;
	transition: background-color 0.2s ease;
}

.card-blue p {
	color: black;
}

.content blockquote {
	padding: 2rem 20%
}

.card-dark.border-gold {
	border-color: rgba(176, 161, 139, 0.2);
}

/* Accent left border */
.content blockquote::before,
.accent-border::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(to bottom, var(--color-1), rgba(176, 161, 139, 0.2));
	box-shadow: 0 0 12px rgba(176, 161, 139, 0.4);
	border-radius: 0 2px 2px 0;
}

/* Inner mini cards */
.mini-card {
	background-color: rgba(15, 17, 19, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 1.25rem;
	height: 100%
}

.mini-card h4 {
	font-size: 0.8rem;
	margin-bottom: 0.5rem;
	text-align: left;
	font-weight: bold;
}

.mini-card p {
	font-size: 1rem;
	color: var(--grey);
	line-height: 1.6;
	font-weight: 300;
}

/* Cards helper classes */
.card-fullheight {
	height: 100%;
}

.heading-small {
	font-size: 1.3rem;
}

.line {
	line-height: 1.7;
}

.no-list {
	list-style: none;
	padding: 0;
}

.flex-row-gap {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.mt-1px {
	margin-top: 2px;
}

/*--------------------------------------------------------------
# COMPOSANTS CARTES
--------------------------------------------------------------*/

/* --- Blog Card --- */
.blog-card {
	position: relative;
	height: 100%;
	background-color: #1c1c1c;
	border: 1px solid rgba(43, 76, 111, 0.3);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.5s ease;
}

.blog-card:hover {
	border-color: rgba(62, 107, 153, 0.6);
}

.blog-card-image {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	background-color: rgba(43, 76, 111, 0.05);
	border-bottom: 1px solid rgba(43, 76, 111, 0.2);
	overflow: hidden;
	transition: background-color 0.5s ease;
}

.blog-card:hover .blog-card-image {
	background-color: rgba(62, 107, 153, 0.05);
}

.blog-card-grid-pattern {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	color: rgba(43, 76, 111, 0.2);
	transition: color 0.5s ease;
}

.blog-card:hover .blog-card-grid-pattern {
	color: rgba(62, 107, 153, 0.2);
}

.blog-card-tag {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background-color: rgba(28, 28, 28, 0.9);
	border: 1px solid rgba(43, 76, 111, 0.3);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-1);
	font-weight: 500;
}

.blog-card-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.blog-card-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	color: rgba(176, 161, 139, 0.5);
	margin-bottom: 0.75rem;
}

.blog-card-title {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--color-1);
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
	color: var(--color-2);
}

.blog-card-excerpt {
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-card-footer {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid rgba(43, 76, 111, 0.2);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.blog-card-reading-time {
	font-size: 0.75rem;
	color: rgba(176, 161, 139, 0.5);
}

.blog-card-arrow {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(43, 76, 111, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-1);
	transition: all 0.3s ease;
}

.blog-card:hover .blog-card-arrow {
	border-color: var(--color-2);
	color: var(--color-2);
	transform: rotate(-45deg);
}

.blog-card-link {
	position: absolute;
	inset: 0;
	z-index: 10;
}

/* --- Solution Card --- */
.solution-card {
	background-color: #1c1c1c;
	border: 1px solid rgba(81, 99, 102, 0.3);
	border-radius: 0.75rem;
	padding: 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.solution-card:hover {
	border-color: #516366;
}

.solution-card-accent {
	position: absolute;
	top: -3rem;
	right: -3rem;
	width: 6rem;
	height: 6rem;
	background-color: rgba(81, 99, 102, 0.1);
	border-radius: 50%;
	filter: blur(40px);
	transition: background-color 0.3s ease;
}

.solution-card:hover .solution-card-accent {
	background-color: rgba(81, 99, 102, 0.2);
}

.solution-icon-box {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 1px solid rgba(81, 99, 102, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b0a18b;
	margin-bottom: 1.5rem;
	z-index: 10;
	position: relative;
	transition: all 0.3s ease;
}

.solution-card:hover .solution-icon-box {
	background-color: #516366;
	color: white;
}

/* Éléments partagés avec z-index relatif */
.solution-title,
.solution-desc,
.solution-list {
	z-index: 10;
	position: relative;
}

.solution-title {
	font-size: 1.25rem;
	font-weight: 500;
	color: #b0a18b;
	margin-bottom: 0.75rem;
}

.solution-desc {
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.625;
	margin-bottom: 2rem;
	min-height: 4rem;
}

.solution-list {
	width: 100%;
	margin-top: auto;
}

ul.solution-list {
	list-style: circle;
	margin-left: 0px;
}

.solution-list-item {
	display: flex;
	align-items: center;
	gap: 0;
	font-size: 0.875rem;
	margin-bottom: 0.75rem;
	opacity: 0.8;
}

.solution-check-icon {
	color: #516366;
	flex-shrink: 0;
}

/* --- RSE --- */
.rse-icon-box {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: rgba(43, 76, 111, 0.1);
	border: 1px solid rgba(43, 76, 111, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-2);
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.rse-engagement-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# SECTIONS IA
--------------------------------------------------------------*/

/* BM — Bénéfices Mesurables */
.bm-intro {
	color: var(--color-1-07);
	line-height: 1.75;
}

.bm-card {
	border: 1px solid var(--color-2-30);
	border-radius: 0.75rem;
	background-color: var(--black);
	padding: 1.5rem;
	height: 100%;
}

.bm-card-title {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-2);
	margin-bottom: 1rem;
}

.bm-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bm-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	font-weight: 400;
	line-height: 1.6;
	padding: 0.375rem 0;
	border-bottom: 1px solid var(--color-2-15);
}

.bm-list li:last-child {
	border-bottom: none;
}

.bm-bullet {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--color-2);
	margin-top: 0.5rem;
	flex-shrink: 0;
}

.bm-note {
	border-left: 2px solid rgba(67, 102, 109, 0.5);
	padding-left: 1rem;
	color: var(--color-1-06);
	font-size: 0.875rem;
	font-weight: 300;
	font-style: italic;
	line-height: 1.7;
}

/* RVS — Rendez-vous Stratégique */
.rvs-container {
	width: 100%;
	max-width: 42rem;
	padding: 1.25rem;
	margin: 0 auto;
}

.rvs-card {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid var(--color-2-30);
	background-color: var(--ia-bg);
}

.rvs-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, var(--color-1-08) 0%, var(--transparent) 70%);
	pointer-events: none;
}

.rvs-body {
	position: relative;
	z-index: 1;
	padding: 2rem;
}

.rvs-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-color: var(--color-2-10);
	border: 1px solid var(--color-2-30);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-1);
	margin: 0 auto 1.25rem;
}

.rvs-title {
	color: var(--color-4) !important;
	letter-spacing: -0.025em;
	margin-bottom: 0.75rem !important;
}

.rvs-subtitle {
	color: var(--color-1-07);
	line-height: 1.625;
	max-width: 32rem;
	margin-inline: auto;
	margin-bottom: 1.5rem !important;
}

.rvs-btn {
	background-color: var(--color-1);
	color: var(--ia-bg);
	border: none;
	border-radius: 0.5rem;
	padding: 0.875rem 2rem;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: -0.025em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.rvs-btn svg {
	transition: transform 0.3s;
}

.rvs-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 0 20px var(--color-1-10);
	background-color: var(--color-4);
}

.rvs-btn:hover svg {
	transform: translateX(4px);
}

/* SIA — Stratégie IA */
.sia-section {
	position: relative;
	width: 100%;
	padding: 3rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sia-grid {
	position: relative;
	z-index: 10;
	width: 100%;
}

.sia-deco-lines {
	display: none;
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.sia-deco-vline {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background-color: var(--color-2-30);
	transform: translateX(-50%);
}

.sia-deco-hline {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background-color: var(--color-2-30);
	transform: translateY(-50%);
}

.sia-deco-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 65%;
	height: 65%;
	border: 1px dashed var(--color-2-20);
	border-radius: 50%;
	opacity: 0.5;
}

.sia-card {
	height: 100%;
	border: 1px solid var(--color-2-30);
	border-radius: 0.75rem;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	z-index: 10;
	background-color: var(--ia-bg);
	transition: border-color 0.3s ease;
}

.sia-card:hover {
	border-color: rgba(67, 102, 109, 0.6);
}

.sia-card:hover .sia-card-icon {
	color: var(--color-1);
}

.sia-card-title {
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: -0.025em;
	color: var(--color-1);
	margin-bottom: 0.75rem;
}

.sia-card-text {
	font-size: 0.875rem;
	color: var(--color-1-07);
	line-height: 1.625;
	font-weight: 300;
}

.sia-card-icon {
	color: var(--color-2);
	margin-bottom: 1rem;
	transition: color 0.3s ease;
}

.sia-card-text-wrapper {
	display: grid;
	width: 100%;
	flex-grow: 1;
	place-items: center;
}

.sia-card-content-front,
.sia-card-content-back {
	grid-area: 1 / 1;
	width: 100%;
	transition: opacity 0.5s ease;
}

.sia-card-content-back {
	opacity: 0;
	pointer-events: none;
	color: var(--grey);
	line-height: 1.625;
}

.sia-card:hover .sia-card-content-front {
	opacity: 0;
	pointer-events: none;
}

.sia-card:hover .sia-card-content-back {
	opacity: 1;
	pointer-events: auto;
}

/* Variantes de glow */
.sia-glow-center {
	background: radial-gradient(circle at 50% 40%, var(--color-1-10) 0%, rgba(176, 161, 139, 0.05) 30%, var(--transparent) 65%), var(--ia-bg);
}

.sia-glow-top {
	background: radial-gradient(circle at 50% 0%, var(--color-1-08) 0%, rgba(176, 161, 139, 0.04) 30%, var(--transparent) 70%), var(--ia-bg);
}

.sia-glow-bottom {
	background: radial-gradient(circle at 50% 100%, var(--color-1-08) 0%, rgba(176, 161, 139, 0.04) 30%, var(--transparent) 70%), var(--ia-bg);
}

.sia-glow-left {
	background: radial-gradient(circle at 0% 50%, var(--color-1-08) 0%, rgba(176, 161, 139, 0.04) 30%, var(--transparent) 70%), var(--ia-bg);
}

.sia-glow-right {
	background: radial-gradient(circle at 100% 50%, var(--color-1-08) 0%, rgba(176, 161, 139, 0.04) 30%, var(--transparent) 70%), var(--ia-bg);
}

.sia-card--center {
	border-color: var(--color-1-10);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	padding: 2.5rem 2rem;
}

.sia-card--center:hover {
	border-color: rgba(176, 161, 139, 0.5);
}

.sia-card--center .sia-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.sia-card--center .sia-card-text {
	font-size: 1rem;
	color: rgba(176, 161, 139, 0.9);
}

.sia-card-icon--center {
	color: var(--color-1);
	background-color: var(--color-2-10);
	padding: 1rem;
	border-radius: 50%;
	border: 1px solid var(--color-2-30);
	box-shadow: 0 0 15px var(--color-2-15);
	margin-bottom: 1.25rem;
}

.sia-divider {
	width: 2.5rem;
	height: 1px;
	background-color: var(--color-1-06);
	margin: 0 auto 1.25rem;
}

/* UMC — Une Méthode Claire */
.umc-divider {
	width: 6rem;
	height: 1px;
	margin: 0 auto;
	opacity: 0.5;
	background: linear-gradient(90deg, var(--transparent), var(--color-2), var(--transparent));
}

.umc-timeline {
	position: relative;
}

.umc-connector {
	display: none;
	position: absolute;
	top: 4rem;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-2-20);
	z-index: 0;
}

.umc-step {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.umc-icon-box {
	width: 6rem;
	height: 6rem;
	border-radius: 1rem;
	background-color: var(--ia-bg);
	border: 1px solid var(--color-2-30);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: var(--color-2);
	transition: border-color .5s, box-shadow .5s, color .3s;
}

.umc-step:hover .umc-icon-box {
	border-color: rgba(176, 161, 139, 0.5);
	box-shadow: 0 0 20px -5px var(--color-1-10);
	color: var(--color-1);
}

.umc-cta {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	padding: .75rem 2rem;
	overflow: hidden;
	border-radius: 9999px;
	background-color: var(--color-2-10);
	border: 1px solid var(--color-1-10);
	color: var(--color-1);
	font-size: .875rem;
	font-weight: 500;
	letter-spacing: .025em;
	text-decoration: none;
	transition: border-color .3s, background-color .3s, box-shadow .3s;
}

.umc-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--transparent), var(--color-1-05), var(--transparent));
	opacity: 0;
	transition: opacity .5s;
}

.umc-cta:hover {
	border-color: var(--color-1-06);
	background-color: var(--color-1-10);
	box-shadow: 0 0 20px var(--color-1-10);
	color: var(--color-1);
}

.umc-cta:hover::before {
	opacity: 1;
}

.umc-cta svg {
	transition: transform .3s;
	flex-shrink: 0;
}

.umc-cta:hover svg {
	transform: translateX(4px);
}

/*--------------------------------------------------------------
# LAYOUTS SECTIONS
--------------------------------------------------------------*/
.qui,
.benef,
.engagement,
.info {
	margin: 2rem;
	padding: 2rem 1rem;
	border-radius: 12px;
	background: #111111;
}

.levier {
	margin: 2rem 2rem 12rem 2rem;
}

.tap {
	margin: 2rem;
}

.engagement,
.info {
	margin-top: 12rem;
}

/*--------------------------------------------------------------
# FOOTER & SCROLL TO TOP
--------------------------------------------------------------*/
.footer {
	margin: 2rem;
	padding: 2rem 1rem;
	border-radius: 12px;
	background: #111111;
}

.footer a {
	color: var(--grey);
}

.footer a:hover {
	color: var(--white);
}

.footer .icon.square {
	fill: var(--white);
	background-color: var(--grey);
	border-radius: 0;
	padding: 4px;
}

.footer a:hover .icon.square {
	fill: var(--grey);
	background-color: var(--white);
}

.logo-footer svg {
	width: 250px;
	margin: 0 auto;
	display: block;
}

.logo-footer .st0 {
	fill: none;
	stroke: var(--white);
	stroke-width: 3px;
}

footer hr {
	background-color: var(--color-2);
	width: 90%;
	margin: 20px auto;
	height: 1px;
}

#smoothup {
	position: fixed;
	bottom: 60px;
	right: 10px;
	display: flex;
	opacity: 0.5;
	background-color: var(--link);
	border: var(--white) solid 5px;
	outline: var(--link) solid 1px;
	border-radius: 50%;
	z-index: 101;
}

#smoothup svg {
	fill: var(--white);
}

#smoothup:hover {
	transform: rotate(360deg);
	background-color: var(--link-hover);
	outline-color: var(--link-hover);
}

/*--------------------------------------------------------------
# PAGE 404
--------------------------------------------------------------*/
#ghost {
	display: block;
	position: relative;
	left: -2000px;
	opacity: 0;
	animation: appear-left 2s 0.1s ease-out forwards;
}

#ghost path {
	opacity: .2;
	fill: var(--color-1);
}

#ghost circle,
#ghost ellipse {
	fill: var(--color-1);
}

/*--------------------------------------------------------------
# TARTE AU CITRON
--------------------------------------------------------------*/
#tarteaucitronRoot * {
	font-family: var(--font-family-2) !important;
}

#tarteaucitronAlertBig #tarteaucitronPersonalize2,
#tarteaucitron #tarteaucitronServices #tarteaucitronAllAllowed.tarteaucitronIsSelected,
#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed .tarteaucitronAllow {
	background-color: var(--color-7);
	/* Note : --color-7 n'est pas défini dans :root, à vérifier */
	color: var(--white);
}

#tarteaucitronAlertBig #tarteaucitronAllDenied2,
#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied.tarteaucitronIsSelected,
#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied .tarteaucitronDeny {
	background-color: var(--color-2);
	color: var(--white);
}

div#tarteaucitronAlertBig:before {
	display: none;
}

button#tarteaucitronPersonalize2,
button#tarteaucitronAllDenied2,
button#tarteaucitronCloseAlert,
button#tarteaucitronPrivacyUrl {
	text-align: center;
}

button#tarteaucitronPrivacyUrl {
	display: block;
	margin: 0 auto;
	width: 200px;
	padding: 5px 10px;
	height: 40px;
}

#tarteaucitronIcon #tarteaucitronManager img {
	width: 30px;
	height: 30px;
}

/*--------------------------------------------------------------
# SKIP LINKS
--------------------------------------------------------------*/
.skip-link {
	position: absolute;
	left: -9999px;
	padding: 0.5em 1em;
	background: #333;
	color: #fff;
	text-decoration: none;
}

.skip-link:focus {
	position: static;
}

/*--------------------------------------------------------------
# RESPONSIVE
--------------------------------------------------------------*/

/* ≥ 1024px : desktop sidebar + grilles IA */
@media screen and (min-width: 1024px) {
	.sia-section {
		padding: 6rem 0;
	}

	.sia-deco-lines {
		display: block;
	}

	.sia-columns-desktop {
		display: grid !important;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: auto auto auto;
		gap: 3rem;
		margin: 0 !important;
	}

	.sia-columns-desktop>.column {
		padding: 0 !important;
		width: auto !important;
		flex: none !important;
	}

	.sia-col-center {
		grid-column: 2;
		grid-row: 2;
	}

	.sia-col-top {
		grid-column: 2;
		grid-row: 1;
	}

	.sia-col-left {
		grid-column: 1;
		grid-row: 2;
	}

	.sia-col-right {
		grid-column: 3;
		grid-row: 2;
	}

	.sia-col-bottom {
		grid-column: 2;
		grid-row: 3;
	}

	.sia-card--center {
		transform: scale(1.1);
		padding: 3rem 2rem;
	}

	.sia-card--center .sia-card-title {
		font-size: 1.875rem;
	}

	.umc-connector {
		display: block;
	}

	.rvs-btn {
		width: auto;
		min-width: 320px;
	}
}

/* ≤ 1023px : mobile nav + colonnes IA empilées */
@media screen and (max-width: 1023px) {
	body {
		padding-left: 0;
	}

	.menu-top-fixed,
	.menu-top-fixed.sticky {
		padding: 0;
		top: unset;
		left: initial;
		height: auto;
		display: flex;
		position: relative;
		width: 100%;
		overflow-y: visible;
	}

	.navbar-brand a.navbar-item {
		margin-bottom: 0;
		text-align: left;
	}

	.menu-top-fixed:hover,
	.menu-top-fixed.sticky:hover {
		width: 100%;
	}

	.navbar-brand img,
	.navbar-brand svg {
		width: 100px;
	}

	.navbar-menu {
		text-align: center;
		flex-direction: column;
		align-items: center;
		position: absolute;
		width: 100%;
		display: flex;
		opacity: 0;
		transform: scaleY(0);
		transform-origin: 0 0;
		z-index: -1;
		transition: all 0.5s ease-in-out;
	}

	.navbar-menu.is-active {
		opacity: 1;
		transform: scaleY(1);
	}

	.navbar-end .navbar-item .level {
		justify-content: center;
	}

	.sia-columns-desktop {
		display: flex !important;
		flex-direction: column !important;
		gap: 1.5rem;
		margin: 0 !important;
	}

	.sia-columns-desktop>.column {
		padding: 0 !important;
		width: 100% !important;
	}
}

/* ≥ 768px : padding rvs-body */
@media (min-width: 768px) {
	.rvs-body {
		padding: 3rem;
	}
}

/* ≤ 768px : canvas caché + ajustements qui */
@media screen and (max-width: 768px) {

	#canvas,
	#canvasbg {
		display: none;
	}

	.qui-card {
		padding: 2rem 1.5rem;
		margin-bottom: 2rem;
	}

	.qui-icon {
		width: 70px;
		height: 70px;
		font-size: 2rem;
	}
}

/* ≤ 425px */
@media screen and (max-width: 425px) {
	.texte-logo {
		max-width: 150px;
	}
}

/* ≤ 424px : header + captcha */
@media screen and (max-width: 424px) {
	.header h1 {
		font-size: 40px;
	}

	.header h2 {
		font-size: 30px;
	}

	#contact #captcha {
		max-width: 225px;
		margin: 0 auto;
	}
}

/* ≤ 320px : logo réduit */
@media screen and (max-width: 320px) {

	.navbar-brand img,
	.navbar-brand svg {
		max-width: 75px;
	}
}

/* ≤ 900px : Tarte au citron */
@media screen and (max-width: 900px) {

	button#tarteaucitronCloseAlert,
	button#tarteaucitronPersonalize2,
	button#tarteaucitronAllDenied2,
	button#tarteaucitronPrivacyUrl {
		min-width: 150px;
		margin: 5px auto;
	}
}