/* BASEX — charte officielle : blanc, noir, vert
   Inspiration visuelle : thèmes WordPress à blocs (séparateurs, groupes, cartes, Instrument Sans) */

:root {
	--bx-black: #000000;
	--bx-black-soft: #0a0a0a;
	--bx-green: #00a651;
	--bx-green-dark: #008f47;
	--bx-green-dim: rgba(0, 166, 81, 0.14);
	--bx-white: #ffffff;
	--bx-bg: #ffffff;
	--bx-bg-alt: #f6f6f6;
	--bx-border: #e3e3e3;
	--bx-text: #0a0a0a;
	--bx-muted: #4a4a4a;
	--bx-radius: 0.75rem;
	--bx-navbar-h: 4.25rem;

	/* Motion type Figma : décélération nette + cycles « repos » doux */
	--bx-ease-figma-out: cubic-bezier(0.16, 1, 0.3, 1);
	--bx-ease-figma-in-out: cubic-bezier(0.65, 0, 0.35, 1);
	--bx-ease-repose: cubic-bezier(0.45, 0, 0.55, 1);
	--bx-dur-motion: 0.42s;

	/* alias conservés (titres, utilitaires, JS) */
	--bx-navy: var(--bx-black-soft);
	--bx-navy-2: #1a1a1a;
	--bx-accent: var(--bx-green-dark);
	--bx-surface: var(--bx-white);
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body.bx-site {
	font-family: 'Instrument Sans', system-ui, sans-serif;
	color: var(--bx-text);
	background: var(--bx-bg);
	padding-top: 0;
	-webkit-font-smoothing: antialiased;
}

body.bx-site.bx-nav-pinned {
	padding-top: var(--bx-navbar-h);
}

/* Jet de style type thème WordPress (blocs / Twenty Twenty-Four) */
.bx-wp-theme {
	--bx-wp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
	--bx-wp-shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
	--bx-wp-radius-lg: 1rem;
}

/* Logo mot : BASE noir, X vert (tous fonds clairs) */
.bx-base {
	color: var(--bx-black);
}

.bx-x {
	color: var(--bx-green);
	font-weight: 700;
}

.text-bx-navy {
	color: var(--bx-navy) !important;
}

h1,
h2,
h3,
h4,
.bx-serif {
	font-family: 'Source Serif 4', Georgia, serif;
}

section[id] {
	scroll-margin-top: 0.85rem;
}

body.bx-nav-pinned section[id] {
	scroll-margin-top: calc(var(--bx-navbar-h) + 0.85rem);
}

/* ——— Loader ——— */
#loader {
	position: fixed;
	inset: 0;
	z-index: 1080;
	background: var(--bx-white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.45s ease, visibility 0.45s ease;
}

#loader.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.loader-inner {
	text-align: center;
}

.bx-loader-logo {
	display: block;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 auto 1.25rem;
	object-fit: contain;
}

.loader-spin {
	width: 3rem;
	height: 3rem;
	margin: 0 auto;
	border: 3px solid var(--bx-border);
	border-top-color: var(--bx-green);
	border-radius: 50%;
	animation: bx-spin 0.7s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
	.loader-spin {
		animation: none;
		border-top-color: var(--bx-border);
	}
}

@keyframes bx-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ——— Header : flux puis fixé au scroll ——— */
.bx-header--sticky {
	position: relative;
	z-index: 1035;
	display: flex;
	flex-direction: column;
	background: var(--bx-white);
	transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.bx-header--sticky.bx-nav-pinned {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 12px 40px -16px rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: reduce) {
	.bx-header--sticky {
		transition: none;
	}
}

/* ——— Navbar ——— */
.basex-navbar {
	background: rgba(255, 255, 255, 0.92) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--bx-border);
	min-height: var(--bx-navbar-h);
	flex-shrink: 0;
	padding-top: 0;
	padding-bottom: 0;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.basex-navbar {
		background: var(--bx-white) !important;
	}
}

.bx-header--sticky.bx-nav-pinned .basex-navbar {
	border-bottom-color: #dedede;
	background: var(--bx-white) !important;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.bx-navbar-inner {
	min-height: var(--bx-navbar-h);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.bx-navbar-brand.navbar-brand {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	margin-right: 0;
}

.bx-logo-img {
	width: 2.25rem;
	height: 2.25rem;
	object-fit: contain;
	flex-shrink: 0;
	display: block;
}

.bx-logo-type {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.1rem;
	line-height: 1.15;
}

.bx-wordmark {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.1875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.bx-logo-tag {
	font-family: 'Instrument Sans', system-ui, sans-serif;
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bx-muted);
}

.bx-nav-collapse {
	flex-grow: 1;
	justify-content: flex-end;
}

@media (min-width: 992px) {
	.bx-nav-collapse {
		display: flex !important;
		flex-wrap: nowrap;
		align-items: center;
		gap: 0.5rem;
	}
}

.bx-nav-menu {
	gap: 0.125rem;
	margin-bottom: 0 !important;
	padding-top: 0.5rem;
	padding-bottom: 0.75rem;
}

@media (min-width: 992px) {
	.bx-nav-menu {
		padding-top: 0;
		padding-bottom: 0;
		margin-right: 0.25rem;
	}
}

@media (max-width: 991.98px) {
	.bx-nav-collapse {
		flex-basis: 100%;
	}

	.bx-nav-collapse.show,
	.bx-nav-collapse.collapsing {
		border-top: 1px solid var(--bx-border);
		margin-top: 0.35rem;
		padding-top: 0.35rem;
	}
}

.basex-navbar .nav-link {
	position: relative;
	font-weight: 500;
	color: #5a5a5a !important;
	padding: 0.5rem 0.65rem !important;
	font-size: 0.875rem;
	letter-spacing: 0.01em;
	border-radius: 0;
	border-bottom: 2px solid transparent;
	transition:
		color var(--bx-dur-motion) var(--bx-ease-figma-out),
		border-color var(--bx-dur-motion) var(--bx-ease-figma-out),
		transform var(--bx-dur-motion) var(--bx-ease-figma-out);
}

.basex-navbar .nav-link:hover,
.basex-navbar .nav-link:focus {
	color: var(--bx-black) !important;
	border-bottom-color: rgba(0, 166, 81, 0.35);
}

.basex-navbar .nav-link.active {
	color: var(--bx-black) !important;
	font-weight: 600;
	border-bottom-color: var(--bx-green);
}

@media (prefers-reduced-motion: no-preference) {
	.basex-navbar .nav-link:hover {
		transform: translateY(-1px);
	}
}

.bx-nav-cta {
	--bs-btn-padding-y: 0.45rem;
	--bs-btn-padding-x: 1rem;
	--bs-btn-font-size: 0.8125rem;
	--bs-btn-font-weight: 600;
	flex-shrink: 0;
	align-self: flex-start;
	margin-top: 0.25rem;
	margin-bottom: 0.5rem;
	border: 1px solid var(--bx-green);
	color: var(--bx-green-dark);
	background: transparent;
	border-radius: 0.375rem;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition:
		background var(--bx-dur-motion) var(--bx-ease-figma-out),
		color var(--bx-dur-motion) var(--bx-ease-figma-out),
		border-color var(--bx-dur-motion) var(--bx-ease-figma-out),
		transform var(--bx-dur-motion) var(--bx-ease-figma-out),
		box-shadow var(--bx-dur-motion) var(--bx-ease-figma-out);
}

.bx-nav-cta:hover {
	background: var(--bx-green);
	border-color: var(--bx-green);
	color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
	.bx-nav-cta:hover {
		transform: translateY(-1px);
		box-shadow: 0 6px 20px rgba(0, 166, 81, 0.22);
	}
}

.bx-nav-cta:focus-visible {
	box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.25);
}

@media (min-width: 992px) {
	.bx-nav-cta {
		align-self: center;
		margin-top: 0;
		margin-bottom: 0;
	}
}

.bx-navbar-toggler.navbar-toggler {
	border: 1px solid var(--bx-border);
	border-radius: 0.375rem;
	padding: 0.4rem 0.55rem;
}

.bx-navbar-toggler:focus {
	box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.2);
}

/* ——— Sections page ——— */
.bx-page-section {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

@media (min-width: 992px) {
	.bx-page-section {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}

.bx-page-section--white {
	background: var(--bx-white);
	border-top: 1px solid var(--bx-border);
	border-bottom: 1px solid var(--bx-border);
}

.bx-page-section--muted {
	background: var(--bx-bg-alt);
	border-top: 1px solid var(--bx-border);
	border-bottom: 1px solid var(--bx-border);
}

.bx-section-head {
	max-width: 46rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3rem;
}

.bx-section-eyebrow {
	font-family: 'Instrument Sans', system-ui, sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--bx-green);
	margin-bottom: 0.75rem;
}

.bx-section-divider {
	width: 72px;
	height: 3px;
	background: var(--bx-black);
	margin-bottom: 1.25rem;
}

.bx-section-head .bx-section-sub {
	margin-top: 0;
}

/* ——— Hero (style « Cover » + motif type thème bloc WP) ——— */
.bx-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(165deg, #fff 0%, #fafafa 50%, #f2f7f3 100%);
}

.bx-hero.bx-wp-cover {
	min-height: clamp(28rem, 82vh, 48rem);
	display: flex;
	align-items: center;
	background-color: #f4f4f4;
	background-image:
		radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.045) 1px, transparent 0),
		linear-gradient(165deg, #ffffff 0%, #f5f6f4 55%, #eef3ef 100%);
	background-size: 22px 22px, 100% 100%;
}

/* Sliders d’arrière-plan (esprit bloc Cover WordPress) */
.bx-has-cover-bg {
	position: relative;
	overflow: visible;
	isolation: isolate;
}

.bx-cover-slider {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.bx-cover-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-color: #dfe8e2;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
	will-change: opacity;
}

.bx-cover-slide.is-active {
	opacity: 1;
	z-index: 2;
}

/* Photos (Unsplash, etc.) : fond de secours + cadrage */
.bx-cover-slide--photo {
	background-color: #1a2520;
}

.bx-cover-slider--soft .bx-cover-slide {
	filter: saturate(1.05) contrast(1.02);
}

.bx-cover-slider--soft .bx-cover-slide--photo {
	filter: saturate(0.95) contrast(1.04) brightness(0.97);
}

@media (prefers-reduced-motion: reduce) {
	.bx-cover-slide {
		transition: none;
		background-attachment: scroll;
	}
}

.bx-cover-scrim {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
}

/* Voile léger : laisser voir les slides (éviter blanc > 85 % qui les « efface ») */
.bx-cover-scrim--hero {
	background: linear-gradient(105deg,
			rgba(255, 255, 255, 0.78) 0%,
			rgba(255, 255, 255, 0.52) 42%,
			rgba(255, 255, 255, 0.35) 100%);
}

.bx-cover-scrim--light {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.88) 100%);
}

.bx-cover-scrim--muted {
	background: linear-gradient(165deg,
			rgba(248, 248, 248, 0.75) 0%,
			rgba(244, 244, 244, 0.68) 50%,
			rgba(236, 244, 238, 0.72) 100%);
}

.bx-fx-hero-deco--over {
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
	opacity: 0.22;
}

.bx-hero.bx-has-cover-bg.bx-wp-cover {
	background-image: none;
	background-color: #cdd8d2;
}

.bx-hero.bx-has-cover-bg::before,
.bx-hero.bx-has-cover-bg::after {
	opacity: 0.06;
}

.bx-hero.bx-has-cover-bg .bx-hero-inner {
	position: relative;
	z-index: 10;
}

/* Contenu au-dessus du scrim (sinon texte illisible sous le voile) */
.bx-has-cover-bg>.container {
	position: relative;
	z-index: 8;
}

/* Arrière-plan de section sans masquer le slider */
.bx-page-section--white.bx-has-cover-bg,
.bx-page-section--muted.bx-has-cover-bg {
	background-color: transparent;
	background-image: none;
	animation: none;
}

.bx-page-section--white.bx-has-cover-bg {
	border-top-color: rgba(0, 0, 0, 0.06);
	border-bottom-color: rgba(0, 0, 0, 0.06);
}

.bx-page-section--muted.bx-has-cover-bg {
	border-top-color: rgba(0, 0, 0, 0.06);
	border-bottom-color: rgba(0, 0, 0, 0.06);
}

.bx-hero.bx-wp-cover::before,
.bx-hero.bx-wp-cover::after {
	opacity: 0.28;
}

.bx-hero-inner {
	position: relative;
	z-index: 2;
	padding-bottom: 0.5rem;
}

.bx-hero-official {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--bx-text);
	opacity: 1;
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--bx-border);
}

.bx-hero-official--brand {
	font-size: clamp(2.75rem, 8vw, 5rem);
	font-weight: 700;
	letter-spacing: 0.18em;
	color: var(--bx-black);
	margin-bottom: 2rem;
}

.bx-hero-official--brand strong {
	font-weight: 700;
	letter-spacing: inherit;
}

.bx-hero::before,
.bx-hero::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
	pointer-events: none;
	animation: bx-float 18s ease-in-out infinite;
}

.bx-hero::before {
	width: min(50vw, 420px);
	height: min(50vw, 420px);
	background: radial-gradient(circle, rgba(0, 166, 81, 0.2), transparent 70%);
	top: -10%;
	right: -5%;
}

.bx-hero::after {
	width: min(40vw, 320px);
	height: min(40vw, 320px);
	background: radial-gradient(circle, rgba(0, 0, 0, 0.06), transparent 70%);
	bottom: 10%;
	left: -8%;
	animation-delay: -6s;
}

@keyframes bx-float {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	50% {
		transform: translate(12px, -20px) scale(1.05);
	}
}

@media (prefers-reduced-motion: reduce) {

	.bx-hero::before,
	.bx-hero::after {
		animation: none;
	}
}

.bx-hero-kicker {
	position: relative;
	padding-left: 0.85rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--bx-green);
	margin-bottom: 0.75rem;
}

.bx-hero-kicker::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.15em;
	bottom: 0.15em;
	width: 3px;
	border-radius: 2px;
	background: linear-gradient(180deg, var(--bx-green) 0%, var(--bx-green-dark) 100%);
}

.bx-hero-divider {
	width: 48px;
	height: 2px;
	background: var(--bx-green);
	margin-bottom: 1.5rem;
}

@keyframes bx-repose-hero-divider {

	0%,
	100% {
		opacity: 1;
		transform: scaleX(1);
	}

	50% {
		opacity: 0.72;
		transform: scaleX(0.9);
	}
}

@keyframes bx-repose-panel-float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.bx-hero--pro .bx-hero-divider {
		transform-origin: left center;
		animation: bx-repose-hero-divider 7s var(--bx-ease-repose) infinite;
	}

	.bx-hero-panel {
		animation: bx-repose-panel-float 10s var(--bx-ease-repose) infinite;
	}
}

.bx-wp-group {
	background: var(--bx-white);
	border: 1px solid var(--bx-border);
	border-radius: var(--bx-wp-radius-lg);
	box-shadow: var(--bx-wp-shadow-card);
	overflow: hidden;
	max-width: 52rem;
	margin-left: auto;
	margin-right: auto;
}

.bx-trust-group .bx-trust-strip {
	border-top: none;
}

.bx-trust-strip {
	border-top: 1px solid var(--bx-border);
	max-width: 52rem;
	margin-left: auto;
	margin-right: auto;
}

.bx-trust-item {
	text-align: center;
	padding: 1rem 0.75rem;
	border-right: 1px solid var(--bx-border);
}

.bx-trust-item:last-child {
	border-right: none;
}

@media (max-width: 767.98px) {
	.bx-trust-item {
		border-right: none;
		border-bottom: 1px solid var(--bx-border);
		padding: 1rem 0;
	}

	.bx-trust-item:last-child {
		border-bottom: none;
	}
}

.bx-trust-label {
	display: block;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--bx-muted);
	margin-bottom: 0.35rem;
}

.bx-trust-value {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--bx-black);
	line-height: 1.35;
}

.bx-hero-title {
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 600;
	color: var(--bx-black);
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.bx-hero-lead {
	font-size: 1.125rem;
	line-height: 1.65;
	color: var(--bx-text);
	max-width: 38rem;
}

.bx-hero--pro .bx-hero-lead {
	color: var(--bx-black-soft);
	font-weight: 500;
}

.bx-hero--pro .bx-hero-inner .bx-hero-lead,
.bx-hero-prose .bx-hero-lead {
	max-width: none;
}

.bx-hero--pro .bx-hero-divider {
	margin-left: 0;
	margin-right: 0;
}

.bx-hero-panel {
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: var(--bx-wp-radius-lg);
	box-shadow:
		0 4px 28px rgba(0, 0, 0, 0.07),
		0 1px 2px rgba(0, 0, 0, 0.04);
	padding: 1.5rem 1.35rem;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.bx-hero-panel {
		background: var(--bx-white);
	}
}

.bx-hero-panel-title {
	font-family: 'Instrument Sans', system-ui, sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--bx-green);
	margin: 0 0 1rem;
}

.bx-hero-panel-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--bx-text);
}

.bx-hero-panel-list li {
	position: relative;
	padding-left: 0;
	margin-bottom: 0.85rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--bx-border);
}

.bx-hero-panel-list li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.bx-hero-panel-key {
	display: block;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--bx-black);
	margin-bottom: 0.25rem;
}

.bx-trust-inline {
	font-size: 0.8125rem;
	color: var(--bx-text);
	line-height: 1.5;
}

.bx-trust-inline-line {
	margin: 0 0 0.5rem;
}

.bx-trust-inline-line:last-child {
	margin-bottom: 0;
}

.bx-trust-inline-label {
	display: inline-block;
	min-width: 4.5rem;
	font-weight: 700;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--bx-green);
	margin-right: 0.35rem;
}

.bx-btn-outline--dark {
	border-color: var(--bx-black-soft);
	color: var(--bx-black-soft);
}

.bx-btn-outline--dark:hover {
	background: var(--bx-black-soft);
	border-color: var(--bx-black-soft);
	color: #fff;
}

.bx-wp-separator-line {
	height: 1px;
	background: var(--bx-border);
	margin: 0;
	border: 0;
}

.bx-wp-hr {
	border: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--bx-border) 15%, var(--bx-border) 85%, transparent);
	margin: 0;
	opacity: 1;
}

.bx-wp-separator-accent {
	display: flex;
	justify-content: center;
	padding: 2rem 1rem;
	background: var(--bx-white);
}

.bx-wp-separator-accent__bar {
	width: min(120px, 25vw);
	height: 4px;
	background: var(--bx-green);
	border-radius: 2px;
}

.bx-btn-primary {
	--bs-btn-bg: var(--bx-green);
	--bs-btn-border-color: var(--bx-green);
	--bs-btn-hover-bg: var(--bx-green-dark);
	--bs-btn-hover-border-color: var(--bx-green-dark);
	--bs-btn-active-bg: var(--bx-green-dark);
	--bs-btn-active-border-color: var(--bx-green-dark);
	--bs-btn-focus-shadow-rgb: 0, 166, 81;
	font-weight: 600;
	padding: 0.7rem 1.65rem;
	border-radius: 9999px;
	color: #fff;
}

.bx-btn-outline {
	font-weight: 600;
	border-radius: 9999px;
	color: var(--bx-black);
	border-color: var(--bx-border);
}

.bx-btn-outline:hover {
	background: var(--bx-bg-alt);
	border-color: var(--bx-black);
	color: var(--bx-black);
}

/* ——— Sections communes ——— */
.bx-section-title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 600;
	color: var(--bx-black);
	letter-spacing: -0.02em;
}

.bx-section-sub {
	color: var(--bx-muted);
	font-size: 1.0625rem;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

.bx-section-head--wide {
	max-width: 48rem;
}

.bx-section-head--wide .bx-section-sub {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

/* ——— SaaS détaillé ——— */
.bx-saas-section .bx-saas-card {
	margin-bottom: 2rem;
}

.bx-saas-section .bx-saas-card:last-child {
	margin-bottom: 0;
}

.bx-saas-card {
	background: var(--bx-white);
	border: 1px solid var(--bx-border);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: var(--bx-wp-shadow-sm);
	border-left: 4px solid var(--bx-green);
	transition:
		transform var(--bx-dur-motion) var(--bx-ease-figma-out),
		box-shadow var(--bx-dur-motion) var(--bx-ease-figma-out),
		border-color 0.35s var(--bx-ease-figma-in-out);
}

@media (prefers-reduced-motion: no-preference) {
	.bx-saas-card:hover {
		transform: translateY(-4px);
		box-shadow:
			0 16px 48px -12px rgba(0, 0, 0, 0.12),
			0 6px 20px rgba(0, 166, 81, 0.07);
	}
}

.bx-saas-card--energix {
	border-left-color: #00b87a;
}

.bx-saas-card--qualix {
	border-left-color: #009e5c;
}

.bx-saas-card-head {
	padding: 1.75rem 1.75rem 1.25rem;
	border-bottom: 1px solid var(--bx-border);
	background: linear-gradient(180deg, #fafcfb 0%, var(--bx-white) 100%);
}

.bx-saas-badge {
	display: inline-block;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--bx-green);
	margin-bottom: 0.5rem;
}

.bx-saas-name {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--bx-black);
	margin: 0 0 0.75rem;
	letter-spacing: -0.02em;
}

.bx-saas-lead {
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--bx-muted);
	margin: 0;
	max-width: 52rem;
}

.bx-saas-body {
	padding: 1.5rem 1.75rem 1.75rem;
}

.bx-saas-h {
	font-family: 'Instrument Sans', system-ui, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--bx-black);
	margin: 0 0 1rem;
}

.bx-saas-list {
	margin: 0;
	padding-left: 1.15rem;
	color: var(--bx-muted);
	font-size: 0.9375rem;
	line-height: 1.65;
}

.bx-saas-list li {
	margin-bottom: 0.5rem;
}

.bx-saas-list li:last-child {
	margin-bottom: 0;
}

/* ——— Sur mesure ——— */
.bx-custom-prose p {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--bx-muted);
	margin-bottom: 1rem;
}

.bx-custom-prose p:last-child {
	margin-bottom: 0;
}

.bx-custom-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 576px) {
	.bx-custom-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.bx-custom-tile {
	background: var(--bx-white);
	border: 1px solid var(--bx-border);
	border-radius: var(--bx-radius);
	padding: 1.25rem 1.35rem;
	height: 100%;
	transition:
		border-color var(--bx-dur-motion) var(--bx-ease-figma-in-out),
		box-shadow var(--bx-dur-motion) var(--bx-ease-figma-out),
		transform var(--bx-dur-motion) var(--bx-ease-figma-out);
}

.bx-custom-tile:hover {
	border-color: rgba(0, 166, 81, 0.35);
	box-shadow: var(--bx-wp-shadow-sm);
}

@media (prefers-reduced-motion: no-preference) {
	.bx-custom-tile:hover {
		transform: translateY(-2px);
	}
}

.bx-custom-tile-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--bx-black);
	margin: 0 0 0.5rem;
	font-family: 'Instrument Sans', system-ui, sans-serif;
}

.bx-custom-tile-text {
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--bx-muted);
	margin: 0;
}

/* ——— Méthode (timeline) ——— */
.bx-timeline {
	counter-reset: none;
}

.bx-timeline-step {
	height: 100%;
	padding: 1.35rem 1.25rem;
	background: var(--bx-bg-alt);
	border: 1px solid var(--bx-border);
	border-radius: var(--bx-radius);
	transition:
		transform var(--bx-dur-motion) var(--bx-ease-figma-out),
		box-shadow var(--bx-dur-motion) var(--bx-ease-figma-out),
		border-color var(--bx-dur-motion) var(--bx-ease-figma-in-out);
}

.bx-timeline-step:hover {
	border-color: rgba(0, 166, 81, 0.3);
	box-shadow: var(--bx-wp-shadow-sm);
}

@media (prefers-reduced-motion: no-preference) {
	.bx-timeline-step:hover {
		transform: translateY(-3px);
	}
}

.bx-timeline-num {
	display: block;
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--bx-green);
	line-height: 1;
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}

.bx-timeline-h {
	font-size: 1rem;
	font-weight: 700;
	color: var(--bx-black);
	margin: 0 0 0.5rem;
	font-family: 'Instrument Sans', system-ui, sans-serif;
}

.bx-timeline-p {
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--bx-muted);
	margin: 0;
}

/* ——— Offre (cartes) ——— */
.bx-offer-grid .bx-offer-card,
.bx-wp-post-card {
	border: 1px solid var(--bx-border) !important;
	box-shadow: var(--bx-wp-shadow-sm) !important;
}

.bx-offer-card {
	border-radius: var(--bx-wp-radius-lg);
	transition:
		transform var(--bx-dur-motion) var(--bx-ease-figma-out),
		box-shadow var(--bx-dur-motion) var(--bx-ease-figma-out);
	overflow: hidden;
}

.bx-offer-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--bx-wp-shadow-card) !important;
}

.bx-offer-top {
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.75rem;
	border-bottom: 1px solid var(--bx-border);
}

.bx-offer-top--maintx {
	background: linear-gradient(145deg, #f0f5f1, #e2ebe4);
}

.bx-offer-top--energix {
	background: linear-gradient(145deg, #ecf5ef, #ddeee3);
}

.bx-offer-top--qualix {
	background: linear-gradient(145deg, #eef6f1, #e0efe6);
}

.bx-offer-top--deploy {
	background: linear-gradient(145deg, #f4f4f4, #e8e8e8);
}

.bx-offer-top--support {
	background: linear-gradient(145deg, #f1f6f2, #e5ede7);
}

.bx-offer-ref {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--bx-green);
}

.bx-badge-soft {
	font-size: 0.7rem;
	font-weight: 600;
	padding: 0.28rem 0.55rem;
	border-radius: 999px;
	background: var(--bx-bg-alt);
	color: var(--bx-navy-2);
	border: 1px solid var(--bx-border);
}

/* ——— Engagements ——— */
.bx-pillar-card {
	background: var(--bx-white);
	border: 1px solid var(--bx-border);
	border-radius: var(--bx-wp-radius-lg);
	padding: 2rem 1.5rem;
	height: 100%;
	transition:
		border-color var(--bx-dur-motion) var(--bx-ease-figma-in-out),
		box-shadow var(--bx-dur-motion) var(--bx-ease-figma-out),
		transform var(--bx-dur-motion) var(--bx-ease-figma-out);
	box-shadow: var(--bx-wp-shadow-sm);
}

.bx-pillar-card:hover {
	border-color: rgba(0, 166, 81, 0.35);
	box-shadow: var(--bx-wp-shadow-card);
}

@media (prefers-reduced-motion: no-preference) {
	.bx-pillar-card:hover {
		transform: translateY(-3px);
	}
}

.bx-pillar-num {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	border: 2px solid var(--bx-green);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	color: var(--bx-black);
	background: var(--bx-white);
}

.bx-pillar-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--bx-black);
}

.bx-pillar-text {
	font-size: 0.9375rem;
	color: var(--bx-muted);
	line-height: 1.65;
	margin: 0;
}

.bx-pillar-card--plain {
	padding-top: 1.75rem;
}

/* ——— Stats ——— */
.bx-stat-card {
	background: var(--bx-white);
	border: 1px solid var(--bx-border);
	border-radius: var(--bx-wp-radius-lg);
	padding: 2rem 1.5rem;
	text-align: center;
	height: 100%;
	transition:
		transform var(--bx-dur-motion) var(--bx-ease-figma-out),
		box-shadow var(--bx-dur-motion) var(--bx-ease-figma-out);
	box-shadow: var(--bx-wp-shadow-sm);
}

.bx-stat-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--bx-wp-shadow-card);
}

.bx-stat-num {
	font-size: 2.75rem;
	font-weight: 700;
	font-family: 'Source Serif 4', Georgia, serif;
	color: var(--bx-black);
	line-height: 1;
}

.bx-stat-label {
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--bx-black);
	margin-top: 0.5rem;
}

.bx-stat-desc {
	font-size: 0.875rem;
	color: var(--bx-muted);
	margin: 0.75rem 0 0;
	line-height: 1.5;
}

.bx-stat-card--minimal {
	text-align: left;
	padding: 1.5rem 1.35rem;
}

.bx-stat-kicker {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--bx-green);
	margin: 0 0 0.35rem;
}

.bx-stat-card--minimal .bx-stat-num {
	font-size: 2.25rem;
	margin-bottom: 0.15rem;
}

.bx-stat-card--minimal .bx-stat-label {
	margin-top: 0.25rem;
}

/* ——— Repères : accordéon domaines ——— */
.bx-accordion-block-title {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--bx-black);
}

.bx-domain-acc .accordion-item {
	border: 1px solid var(--bx-border);
	border-radius: var(--bx-radius);
	overflow: hidden;
	margin-bottom: 0.65rem;
	background: var(--bx-white);
}

.bx-domain-acc .accordion-item:last-child {
	margin-bottom: 0;
}

.bx-domain-acc .accordion-button {
	font-family: 'Instrument Sans', system-ui, sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--bx-black);
	background: var(--bx-bg-alt);
	box-shadow: none;
	padding: 1rem 1.25rem;
	transition:
		background var(--bx-dur-motion) var(--bx-ease-figma-out),
		color var(--bx-dur-motion) var(--bx-ease-figma-out),
		box-shadow 0.2s ease;
}

.bx-domain-acc .accordion-button:not(.collapsed) {
	background: var(--bx-white);
	color: var(--bx-black);
	border-bottom: 1px solid var(--bx-border);
}

.bx-domain-acc .accordion-button:focus {
	box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.2);
	border-color: var(--bx-border);
}

.bx-domain-acc .accordion-button::after {
	filter: brightness(0.25);
}

.bx-domain-acc .accordion-body {
	padding: 1.15rem 1.25rem 1.35rem;
}

.bx-domain-list {
	margin: 0;
	padding-left: 1.2rem;
	color: var(--bx-muted);
	font-size: 0.9375rem;
	line-height: 1.65;
}

.bx-domain-list li {
	margin-bottom: 0.45rem;
}

.bx-domain-list li:last-child {
	margin-bottom: 0;
}

/* ——— Footer institutionnel ——— */
.bx-footer--official {
	background: var(--bx-black-soft);
	border-top: 4px solid var(--bx-green);
	color: rgba(255, 255, 255, 0.88);
	padding-top: 3rem;
	padding-bottom: 2rem;
}

.bx-footer--official a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	transition:
		color var(--bx-dur-motion) var(--bx-ease-figma-out),
		transform var(--bx-dur-motion) var(--bx-ease-figma-out);
}

.bx-footer--official a:hover {
	color: var(--bx-green);
}

@media (prefers-reduced-motion: no-preference) {
	.bx-footer--official .bx-footer-list a:hover {
		transform: translateX(3px);
	}
}

.bx-footer-legal-label {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--bx-green);
	margin: 0;
}

.bx-footer-lead {
	font-size: 0.875rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
}

.bx-footer-list {
	font-size: 0.875rem;
}

.bx-footer-list li {
	margin-bottom: 0.5rem;
}

.bx-footer-legal-text {
	font-size: 0.8125rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.55);
}

.bx-footer-legal-dl {
	font-size: 0.8125rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.55);
}

.bx-footer-legal-dl dt {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.72);
	margin-top: 0.65rem;
}

.bx-footer-legal-dl dt:first-child {
	margin-top: 0;
}

.bx-footer-legal-dl dd {
	margin: 0.2rem 0 0;
	padding: 0;
}

.bx-footer-legal-note {
	color: rgba(255, 255, 255, 0.45) !important;
	line-height: 1.45;
}

.bx-footer-copy {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
}

.bx-footer-meta {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.45);
	font-style: italic;
}

.bx-base--on-dark {
	color: #fff !important;
}

.bx-logo-img--footer {
	width: 2rem;
	height: 2rem;
}

.bx-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 2.5rem;
	padding-top: 1.5rem;
}

.bx-footer-cta {
	border: 1px solid var(--bx-green);
	color: #fff;
	font-weight: 600;
	background: transparent;
	border-radius: 9999px;
}

.bx-footer-cta:hover {
	background: var(--bx-green);
	color: #fff;
	border-color: var(--bx-green);
}

/* ——— Effets créatifs : fonds animés, transitions latérales, brillances ——— */
:root {
	--bx-ease-smooth: var(--bx-ease-figma-out);
	--bx-ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
	--bx-dur: 0.55s;
}

.bx-fx-bg {
	display: none;
}

@media (prefers-reduced-motion: no-preference) {
	.bx-fx-bg {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 0;
		pointer-events: none;
		background:
			radial-gradient(ellipse 100% 80% at 0% 0%, rgba(0, 166, 81, 0.09), transparent 55%),
			radial-gradient(ellipse 80% 60% at 100% 100%, rgba(0, 0, 0, 0.04), transparent 50%),
			radial-gradient(ellipse 50% 40% at 70% 20%, rgba(0, 166, 81, 0.05), transparent 45%);
		animation: bx-fx-mesh-drift 28s ease-in-out infinite alternate;
	}

	.bx-header:not(.bx-header--sticky),
	.bx-wp-main,
	.bx-footer {
		position: relative;
		z-index: 1;
	}

	#loader {
		z-index: 1090;
	}

	@keyframes bx-fx-mesh-drift {
		0% {
			transform: scale(1) translate(0, 0);
		}

		100% {
			transform: scale(1.06) translate(-1.5%, 1.5%);
		}
	}
}

/* Hero : grille diagonale + orbes (latéral) */
.bx-fx-hero-deco {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

.bx-fx-hero-gridlines {
	position: absolute;
	inset: -50%;
	width: 200%;
	height: 200%;
	background-image:
		repeating-linear-gradient(-12deg,
			transparent,
			transparent 48px,
			rgba(0, 166, 81, 0.04) 48px,
			rgba(0, 166, 81, 0.04) 49px),
		repeating-linear-gradient(78deg,
			transparent,
			transparent 80px,
			rgba(0, 0, 0, 0.02) 80px,
			rgba(0, 0, 0, 0.02) 81px);
	opacity: 0.65;
}

@media (prefers-reduced-motion: no-preference) {
	.bx-fx-hero-gridlines {
		animation: bx-fx-grid-slide 50s linear infinite;
	}

	@keyframes bx-fx-grid-slide {
		0% {
			transform: translate(0, 0);
		}

		100% {
			transform: translate(-4%, -3%);
		}
	}
}

.bx-fx-hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(72px);
	opacity: 0.5;
}

.bx-fx-hero-orb--1 {
	width: min(55vw, 480px);
	height: min(55vw, 480px);
	background: radial-gradient(circle, rgba(0, 166, 81, 0.35), transparent 68%);
	top: -15%;
	right: -8%;
}

.bx-fx-hero-orb--2 {
	width: min(45vw, 380px);
	height: min(45vw, 380px);
	background: radial-gradient(circle, rgba(0, 143, 71, 0.2), transparent 70%);
	bottom: -5%;
	left: -12%;
}

@media (prefers-reduced-motion: no-preference) {
	.bx-fx-hero-orb--1 {
		animation: bx-fx-orb-a 16s ease-in-out infinite alternate;
	}

	.bx-fx-hero-orb--2 {
		animation: bx-fx-orb-b 20s ease-in-out infinite alternate;
	}

	@keyframes bx-fx-orb-a {
		0% {
			transform: translate(0, 0) scale(1);
		}

		100% {
			transform: translate(-8%, 12%) scale(1.12);
		}
	}

	@keyframes bx-fx-orb-b {
		0% {
			transform: translate(0, 0) scale(1);
		}

		100% {
			transform: translate(14%, -8%) scale(1.08);
		}
	}
}

/* Sections alternées : léger mouvement de fond */
@media (prefers-reduced-motion: no-preference) {
	.bx-page-section--muted {
		background-image: linear-gradient(125deg, #f4f4f4 0%, #eef6f0 40%, #f6f6f6 100%);
		background-size: 200% 200%;
		animation: bx-fx-section-pan 22s ease-in-out infinite alternate;
	}

	@keyframes bx-fx-section-pan {
		0% {
			background-position: 0% 50%;
		}

		100% {
			background-position: 100% 50%;
		}
	}
}

/* Cartes offre : translation latérale alternée + brillance */
.bx-offer-card {
	position: relative;
	transition:
		transform var(--bx-dur) var(--bx-ease-spring),
		box-shadow calc(var(--bx-dur) + 0.1s) var(--bx-ease-smooth),
		border-color var(--bx-dur) ease;
}

.bx-offer-card::after {
	content: '';
	position: absolute;
	inset: 0;
	left: -100%;
	z-index: 0;
	width: 55%;
	background: linear-gradient(100deg,
			transparent 0%,
			rgba(255, 255, 255, 0.45) 45%,
			transparent 90%);
	transform: skewX(-12deg);
	pointer-events: none;
	opacity: 0;
	transition: left 0.65s var(--bx-ease-smooth), opacity 0.3s ease;
}

.bx-offer-card .bx-offer-top,
.bx-offer-card .card-body {
	position: relative;
	z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
	.bx-offer-card:hover::after {
		left: 120%;
		opacity: 1;
		transition: left 0.75s var(--bx-ease-smooth);
	}

	.bx-offer-grid>div:nth-child(odd) .bx-offer-card:hover {
		transform: translateY(-8px) translateX(6px);
	}

	.bx-offer-grid>div:nth-child(even) .bx-offer-card:hover {
		transform: translateY(-8px) translateX(-6px);
	}
}

/* Piliers : léger glissement latéral + bordure lumineuse */
.bx-pillar-card {
	transition:
		transform var(--bx-dur) var(--bx-ease-spring),
		box-shadow var(--bx-dur) var(--bx-ease-smooth),
		border-color 0.35s ease;
}

@media (prefers-reduced-motion: no-preference) {
	.bx-pillar-card:hover {
		transform: translateY(-4px) translateX(4px);
		box-shadow:
			var(--bx-wp-shadow-card),
			0 0 0 1px rgba(0, 166, 81, 0.15),
			-6px 0 24px rgba(0, 166, 81, 0.08);
	}

	.row.g-4>.col-md-4:nth-child(even) .bx-pillar-card:hover {
		transform: translateY(-4px) translateX(-4px);
	}
}

/* Stats : pulse doux au survol */
.bx-stat-card {
	transition:
		transform var(--bx-dur) var(--bx-ease-smooth),
		box-shadow var(--bx-dur) var(--bx-ease-smooth);
}

@media (prefers-reduced-motion: no-preference) {
	.bx-stat-card:hover {
		transform: translateY(-4px);
		box-shadow: var(--bx-wp-shadow-card);
	}
}

/* Groupe confiance : entrée latérale subtile au survol des cellules */
.bx-trust-item {
	transition: background 0.4s ease, transform 0.45s var(--bx-ease-smooth);
}

@media (prefers-reduced-motion: no-preference) {
	.bx-trust-item:hover {
		background: rgba(0, 166, 81, 0.04);
	}

	.bx-trust-group .col-md-4:nth-child(1) .bx-trust-item:hover {
		transform: translateX(4px);
	}

	.bx-trust-group .col-md-4:nth-child(2) .bx-trust-item:hover {
		transform: translateY(-3px);
	}

	.bx-trust-group .col-md-4:nth-child(3) .bx-trust-item:hover {
		transform: translateX(-4px);
	}
}

/* Boutons : micro-lift + ombre colorée */
.bx-btn-primary,
.bx-btn-outline,
.bx-footer-cta {
	transition:
		transform var(--bx-dur-motion) var(--bx-ease-figma-out),
		box-shadow var(--bx-dur-motion) var(--bx-ease-figma-out),
		background var(--bx-dur-motion) var(--bx-ease-figma-out),
		border-color var(--bx-dur-motion) var(--bx-ease-figma-out),
		color var(--bx-dur-motion) var(--bx-ease-figma-out);
}

@media (prefers-reduced-motion: no-preference) {

	.bx-btn-primary:hover,
	.bx-btn-outline:hover {
		transform: translateY(-2px);
	}

	.bx-btn-primary:hover {
		box-shadow: 0 8px 28px rgba(0, 166, 81, 0.35);
	}
}

/* Séparateur accent : pulsation légère */
@media (prefers-reduced-motion: no-preference) {
	.bx-wp-separator-accent__bar {
		animation: bx-fx-bar-pulse 3.5s var(--bx-ease-repose) infinite;
	}

	@keyframes bx-fx-bar-pulse {

		0%,
		100% {
			opacity: 1;
			transform: scaleX(1);
		}

		50% {
			opacity: 0.85;
			transform: scaleX(1.08);
		}
	}
}

/* Logo : léger zoom au survol */
@media (prefers-reduced-motion: no-preference) {
	.navbar-brand:hover .bx-logo-img {
		transform: scale(1.05);
		transition: transform var(--bx-dur-motion) var(--bx-ease-figma-out);
	}

	.bx-logo-img {
		transition: transform var(--bx-dur-motion) var(--bx-ease-figma-out);
	}
}

/* ——— Skip link ——— */
.skip-link:focus {
	position: fixed;
	left: 1rem;
	top: 1rem;
	z-index: 2000;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: var(--bx-black);
	color: #fff;
	clip: auto;
	overflow: visible;
	border-radius: 0.25rem;
}

/* ---- Tokens ---- */
:root {
	--bx-bg: #ffffff;
	--bx-text: #1a1b2e;
	--bx-muted: #6b7490;
	--bx-border: rgba(0, 0, 0, 0.07);
	--bx-blue: #1a73e8;
	--bx-radius: 1.25rem;
	--ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body.bx-site {
	font-family: 'Inter', system-ui, sans-serif !important;
	background: #fff;
	color: var(--bx-text);
	-webkit-font-smoothing: antialiased;
	cursor: none !important;
}

a,
button,
label,
.accordion-button {
	cursor: none !important;
}

::selection {
	background: rgba(26, 115, 232, 0.15);
	color: #1a73e8;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 99px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.bx-wordmark {
	font-family: 'Outfit', system-ui, sans-serif !important;
	letter-spacing: -0.03em !important;
}

/* ---- Fixed BG Mesh ---- */
.bx-fx-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 70% 60% at 80% -5%, rgba(66, 133, 244, 0.07), transparent 60%),
		radial-gradient(ellipse 55% 45% at -5% 90%, rgba(52, 168, 83, 0.05), transparent 60%),
		radial-gradient(ellipse 50% 40% at 105% 110%, rgba(251, 188, 4, 0.04), transparent 55%),
		#fff;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.basex-navbar {
	background: rgba(255, 255, 255, 0.85) !important;
	backdrop-filter: blur(28px) saturate(200%) !important;
	-webkit-backdrop-filter: blur(28px) saturate(200%);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.basex-navbar {
		background: #fff !important;
	}
}

.bx-header--sticky.bx-nav-pinned .basex-navbar {
	background: rgba(255, 255, 255, 0.97) !important;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.06) !important;
}

.bx-logo-img {
	filter: none !important;
}

.bx-wordmark {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 800 !important;
	font-size: 1.35rem !important;
	letter-spacing: -0.04em !important;
	color: var(--bx-text) !important;
}

.bx-base {
	color: var(--bx-text) !important;
}

.bx-x {
	background: linear-gradient(135deg, #1a73e8 0%, #9c27b0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.bx-logo-tag {
	color: #6b7490 !important;
	font-family: 'Inter', sans-serif !important;
}

.basex-navbar .nav-link {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 500 !important;
	font-size: 0.9rem !important;
	color: #6b7490 !important;
	border-bottom: none !important;
	border-radius: 0.6rem !important;
	padding: 0.5rem 0.75rem !important;
	transition: color .2s ease, background .2s ease !important;
}

.basex-navbar .nav-link:hover {
	color: var(--bx-text) !important;
	background: rgba(0, 0, 0, 0.04) !important;
}

.basex-navbar .nav-link.active {
	color: #1a73e8 !important;
	background: #e8f0fe !important;
	font-weight: 600 !important;
}

.bx-nav-cta {
	background: #1a73e8 !important;
	border: none !important;
	color: #fff !important;
	border-radius: 99px !important;
	padding: .6rem 1.4rem !important;
	font-family: 'Outfit', sans-serif !important;
	font-weight: 600 !important;
	font-size: .875rem !important;
	text-transform: none !important;
	letter-spacing: .01em !important;
	box-shadow: 0 4px 14px rgba(26, 115, 232, .35) !important;
	transition: all .25s var(--ease-spring) !important;
}

.bx-nav-cta:hover {
	background: #1557b0 !important;
	color: #fff !important;
	transform: translateY(-2px) scale(1.03) !important;
	box-shadow: 0 10px 28px rgba(26, 115, 232, .4) !important;
}

.bx-navbar-toggler {
	border-color: rgba(0, 0, 0, .1) !important;
}

/* ================================================================
   SECTION WRAPPERS (shared)
   ================================================================ */
.ag-section {
	padding: 6rem 0;
	position: relative;
	z-index: 1;
}

.ag-section--light {
	background: #ffffff;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ag-section--soft {
	background: #f7f8fc;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ag-section-head {
	margin-bottom: 3.5rem;
}

.ag-section-title {
	font-family: 'Outfit', sans-serif !important;
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--bx-text);
	margin-bottom: 0;
}

.bx-section-eyebrow {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: .7rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #1a73e8;
	margin-bottom: .75rem;
}

.bx-section-divider {
	width: 52px;
	height: 3px;
	background: linear-gradient(90deg, #1a73e8, #9c27b0);
	border-radius: 4px;
}

.bx-section-sub {
	color: #6b7490;
	font-size: 1.05rem;
	line-height: 1.75;
	max-width: 46rem;
}

.text-center .bx-section-sub {
	margin: 0 auto;
}

/* ================================================================
   HERO
   ================================================================ */
.ag-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 0 5rem;
	overflow: hidden;
	background: #fff;
}

.ag-hero .container {
	display: flex;
	align-items: center;
	gap: 4rem;
}

/* Floating orbs */
.ag-orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(70px);
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

.ag-orb--1 {
	width: 55vw;
	height: 55vw;
	max-width: 700px;
	max-height: 700px;
	top: -15%;
	right: -10%;
	background: radial-gradient(circle, rgba(66, 133, 244, .09), transparent 70%);
	animation: orb-a 20s infinite alternate;
}

.ag-orb--2 {
	width: 40vw;
	height: 40vw;
	max-width: 500px;
	max-height: 500px;
	bottom: -10%;
	left: -8%;
	background: radial-gradient(circle, rgba(234, 67, 53, .06), transparent 70%);
	animation: orb-b 16s infinite alternate;
}

.ag-orb--3 {
	width: 30vw;
	height: 30vw;
	max-width: 400px;
	max-height: 400px;
	bottom: 20%;
	right: 30%;
	background: radial-gradient(circle, rgba(52, 168, 83, .05), transparent 70%);
	animation: orb-c 22s infinite alternate;
}

@keyframes orb-a {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(-30px, 40px) scale(1.08);
	}
}

@keyframes orb-b {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(35px, -25px) scale(1.06);
	}
}

@keyframes orb-c {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(-20px, 30px) scale(0.95);
	}
}

/* Grid pattern */
.ag-grid-pattern {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	-webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
	mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.ag-hero-content {
	flex: 0 0 55%;
	max-width: 55%;
	position: relative;
	z-index: 5;
}

.ag-hero-visual {
	flex: 0 0 40%;
	max-width: 40%;
	position: relative;
	z-index: 5;
}

/* Chip */
.ag-hero-chip {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-family: 'Outfit', sans-serif;
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	background: #f0f4ff;
	border: 1px solid rgba(26, 115, 232, .2);
	color: #1a73e8;
	padding: .45rem 1rem;
	border-radius: 99px;
	margin-bottom: 2rem;
}

.ag-hero-chip-dot {
	width: 7px;
	height: 7px;
	background: #1a73e8;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(26, 115, 232, .3);
	animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.4);
		opacity: .6;
	}
}

/* Title */
.ag-hero-title {
	font-family: 'Outfit', sans-serif !important;
	font-size: clamp(2.6rem, 5vw, 4.5rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 1.08;
	margin-bottom: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: .15em;
}

.ag-title-line {
	color: var(--bx-text);
}

.ag-title-gradient {
	background: linear-gradient(135deg, #1a73e8 0%, #9c27b0 60%, #ea4335 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ag-hero-lead {
	color: #6b7490;
	font-size: 1.15rem;
	line-height: 1.8;
	margin-bottom: 2rem;
	max-width: 540px;
}

.ag-hero-lead strong {
	color: var(--bx-text);
	font-weight: 600;
}

/* Action buttons */
.ag-hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

.ag-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	border-radius: 99px;
	padding: .75rem 1.75rem;
	transition: all .3s var(--ease-spring);
	white-space: nowrap;
}

.ag-btn--primary {
	background: #1a73e8;
	color: #fff;
	box-shadow: 0 4px 18px rgba(26, 115, 232, .35);
}

.ag-btn--primary:hover {
	background: #1557b0;
	color: #fff;
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 12px 32px rgba(26, 115, 232, .4);
}

.ag-btn--ghost {
	background: transparent;
	color: var(--bx-text);
	border: 1.5px solid rgba(0, 0, 0, .12);
}

.ag-btn--ghost:hover {
	background: rgba(0, 0, 0, .04);
	color: #1a73e8;
	border-color: rgba(26, 115, 232, .4);
	transform: translateY(-2px);
}

.ag-btn--sm {
	padding: .55rem 1.25rem;
	font-size: .85rem;
}

/* Product chips */
.ag-product-chips {
	display: flex;
	gap: .75rem;
	flex-wrap: wrap;
}

.ag-chip {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-family: 'Outfit', sans-serif;
	font-size: .8rem;
	font-weight: 600;
	padding: .4rem .9rem;
	border-radius: 99px;
	text-decoration: none;
	transition: all .25s var(--ease-spring);
	border: 1.5px solid;
}

.ag-chip--blue {
	background: #e8f0fe;
	color: #1a73e8;
	border-color: rgba(26, 115, 232, .25);
}

.ag-chip--green {
	background: #e6f4ea;
	color: #34a853;
	border-color: rgba(52, 168, 83, .25);
}

.ag-chip--purple {
	background: #f3e8fd;
	color: #9c27b0;
	border-color: rgba(156, 39, 176, .25);
}

.ag-chip--gray {
	background: #f1f3f4;
	color: #5f6368;
	border-color: rgba(0, 0, 0, .12);
}

.ag-chip:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
}

/* Hero Panel */
.ag-hero-panel {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 1.5rem;
	box-shadow: 0 8px 40px rgba(0, 0, 0, .08), 0 2px 12px rgba(0, 0, 0, .04);
	overflow: hidden;
	transform-style: preserve-3d;
	transition: box-shadow .4s ease, border-color .4s ease;
}

.ag-hero-panel:hover {
	box-shadow: 0 20px 60px rgba(26, 115, 232, .12), 0 6px 24px rgba(0, 0, 0, .06);
	border-color: rgba(26, 115, 232, .25);
}

.ag-hero-panel-header {
	display: flex;
	align-items: center;
	gap: .45rem;
	padding: .9rem 1.25rem;
	border-bottom: 1px solid rgba(0, 0, 0, .06);
	background: #f7f8fc;
}

.ag-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.ag-dot--red {
	background: #ff5f57;
}

.ag-dot--yellow {
	background: #febc2e;
}

.ag-dot--green {
	background: #27c840;
}

.ag-panel-label {
	margin-left: .5rem;
	font-family: 'Outfit', sans-serif;
	font-size: .75rem;
	font-weight: 600;
	color: #6b7490;
}

.ag-offer-list {
	list-style: none;
	margin: 0;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ag-offer-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.ag-offer-icon {
	width: 40px;
	height: 40px;
	border-radius: .75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.ag-offer-item div {
	display: flex;
	flex-direction: column;
	gap: .15rem;
}

.ag-offer-item strong {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: .9rem;
	color: var(--bx-text);
}

.ag-offer-item span {
	font-size: .8rem;
	color: #6b7490;
}

.ag-panel-footer {
	padding: 1rem 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, .06);
	background: #f7f8fc;
}

/* Scroll indicator */
.ag-scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 10;
}

.ag-scroll-dot {
	width: 22px;
	height: 36px;
	border: 2px solid rgba(0, 0, 0, .15);
	border-radius: 99px;
	position: relative;
}

.ag-scroll-dot::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 8px;
	background: #1a73e8;
	border-radius: 99px;
	animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
	0% {
		top: 5px;
		opacity: 1;
	}

	100% {
		top: 20px;
		opacity: 0;
	}
}

/* Responsive hero */
@media (max-width: 991.98px) {
	.ag-hero .container {
		flex-direction: column;
		gap: 3rem;
		text-align: center;
	}

	.ag-hero-content,
	.ag-hero-visual {
		flex: none;
		max-width: 100%;
	}

	.ag-hero-actions {
		justify-content: center;
	}

	.ag-product-chips {
		justify-content: center;
	}

	.ag-scroll-indicator {
		display: none;
	}
}

/* ================================================================
   MARQUEE BAR
   ================================================================ */
.ag-marquee-bar {
	background: #f0f4ff;
	border-top: 1px solid rgba(26, 115, 232, .12);
	border-bottom: 1px solid rgba(26, 115, 232, .12);
	overflow: hidden;
	padding: .85rem 0;
	white-space: nowrap;
}

.ag-marquee-track {
	display: inline-flex;
	align-items: center;
	gap: 0;
	animation: marquee 25s linear infinite;
}

.ag-marquee-item {
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: .75rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #1a73e8;
	padding: 0 1.25rem;
}

.ag-marquee-sep {
	color: rgba(26, 115, 232, .35);
	font-size: .5rem;
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* ================================================================
   PRODUCT TABS
   ================================================================ */
.ag-product-tabs {}

.ag-tabs-nav {
	display: flex;
	gap: .75rem;
	margin-bottom: 2rem;
	background: #f0f4ff;
	padding: .4rem;
	border-radius: 1rem;
	width: fit-content;
}

.ag-tab {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: .9rem;
	padding: .6rem 1.4rem;
	border: none;
	border-radius: .75rem;
	background: transparent;
	color: #6b7490;
	transition: all .3s var(--ease-spring);
}

.ag-tab:hover {
	color: #1a73e8;
	background: rgba(26, 115, 232, .08);
}

.ag-tab.active {
	background: #fff;
	color: #1a73e8;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.ag-tab-icon {
	font-size: 1rem;
}

.ag-tab-panel {
	display: none;
}

.ag-tab-panel.active {
	display: block;
	animation: tab-fade-in .45s var(--ease-out) both;
}

@keyframes tab-fade-in {
	from {
		opacity: 0;
		transform: translateY(16px) scale(.98);
		filter: blur(4px);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
}

.ag-product-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.75rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
	display: flex;
	gap: 0;
	overflow: hidden;
	transition: box-shadow .4s ease;
}

.ag-product-card:hover {
	box-shadow: 0 12px 48px rgba(0, 0, 0, .1);
}

.ag-product-card-left {
	flex: 0 0 50%;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	border-right: 1px solid rgba(0, 0, 0, .06);
}

.ag-product-card-right {
	flex: 0 0 50%;
	padding: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f7f8fc;
}

.ag-product-badge {
	display: inline-block;
	background: var(--badge-bg, #e8f0fe);
	color: var(--badge-color, #1a73e8);
	font-family: 'Outfit', sans-serif;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: .35rem 1rem;
	border-radius: 99px;
	margin-bottom: 1.25rem;
	width: fit-content;
}

.ag-product-title {
	font-family: 'Outfit', sans-serif !important;
	font-size: 2.75rem;
	font-weight: 900;
	letter-spacing: -0.04em;
	margin-bottom: 1rem;
}

.ag-product-card--blue .ag-product-title {
	color: #1a73e8;
}

.ag-product-card--green .ag-product-title {
	color: #34a853;
}

.ag-product-card--purple .ag-product-title {
	color: #9c27b0;
}

.ag-product-desc {
	color: #6b7490;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.ag-product-features {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	flex: 1;
}

.ag-feature {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	font-size: .9rem;
	color: #3c4043;
	line-height: 1.5;
}

.ag-feature-check {
	background: #e8f0fe;
	color: #1a73e8;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .65rem;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: .1rem;
}

/* Mockup inside product card */
.ag-product-visual {
	width: 100%;
	border-radius: 1.25rem;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.ag-mockup-bar {
	display: flex;
	align-items: center;
	gap: .4rem;
	padding: .75rem 1rem;
	background: #f1f3f4;
	border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.ag-mockup-bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #e0e0e0;
}

.ag-mockup-bar span:nth-child(1) {
	background: #ff5f57;
}

.ag-mockup-bar span:nth-child(2) {
	background: #febc2e;
}

.ag-mockup-bar span:nth-child(3) {
	background: #27c840;
}

.ag-mockup-title {
	font-family: 'Inter', sans-serif;
	font-size: .72rem;
	color: #9aa0a6;
	margin-left: .25rem;
}

.ag-mockup-body {
	padding: 1.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: .75rem;
}

.ag-mockup-stat {
	display: flex;
	flex-direction: column;
	gap: .2rem;
}

.ag-mockup-num {
	font-family: 'Outfit', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a73e8;
}

.ag-mockup-lbl {
	font-size: .68rem;
	color: #9aa0a6;
	font-weight: 500;
}

.ag-mockup-chart {
	grid-column: 1 / -1;
	display: flex;
	align-items: flex-end;
	gap: 6px;
	height: 60px;
	padding-top: .5rem;
}

.ag-chart-bar {
	flex: 1;
	border-radius: 4px 4px 0 0;
	background: rgba(26, 115, 232, .2);
	transition: height .4s var(--ease-spring);
}

.ag-product-visual--blue .ag-chart-bar {
	background: rgba(26, 115, 232, .2);
}

.ag-product-visual--blue .ag-chart-bar--active {
	background: #1a73e8;
}

.ag-product-visual--green .ag-chart-bar {
	background: rgba(52, 168, 83, .2);
}

.ag-product-visual--green .ag-chart-bar--active {
	background: #34a853;
}

.ag-product-visual--purple .ag-chart-bar {
	background: rgba(156, 39, 176, .2);
}

.ag-product-visual--purple .ag-chart-bar--active {
	background: #9c27b0;
}

@media (max-width: 991.98px) {
	.ag-product-card {
		flex-direction: column;
	}

	.ag-product-card-left,
	.ag-product-card-right {
		flex: none;
		border-right: none;
	}

	.ag-product-card-right {
		border-top: 1px solid rgba(0, 0, 0, .06);
	}

	.ag-tabs-nav {
		width: 100%;
	}

	.ag-tab {
		flex: 1;
		justify-content: center;
		font-size: .8rem;
		padding: .5rem .75rem;
	}
}

/* ================================================================
   FEATURE GRID (Sur mesure)
   ================================================================ */
.ag-feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.ag-feature-tile {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.25rem;
	padding: 1.75rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	transition: all .4s var(--ease-spring);
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
}

.ag-feature-tile::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(400px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(26, 115, 232, .06), transparent 60%);
	opacity: 0;
	transition: opacity .4s ease;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
}

.ag-feature-tile:hover::before {
	opacity: 1;
}

.ag-feature-tile:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
	border-color: rgba(26, 115, 232, .25);
}

.ag-feature-tile>* {
	position: relative;
	z-index: 1;
}

.ag-feature-icon {
	width: 48px;
	height: 48px;
	border-radius: .875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.ag-feature-title {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: 1rem;
	color: var(--bx-text);
	margin-bottom: .5rem;
	letter-spacing: -0.02em;
}

.ag-feature-text {
	font-size: .875rem;
	color: #6b7490;
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 575.98px) {
	.ag-feature-grid {
		grid-template-columns: 1fr;
	}
}

/* ================================================================
   TIMELINE
   ================================================================ */
.ag-timeline {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.25rem;
	position: relative;
}

.ag-timeline::before {
	content: '';
	position: absolute;
	top: 50px;
	left: 8%;
	right: 8%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(26, 115, 232, .2), rgba(156, 39, 176, .2), transparent);
	z-index: 0;
}

.ag-timeline-item {
	position: relative;
	z-index: 1;
}

.ag-timeline-step {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.25rem;
	padding: 2rem 1.5rem;
	height: 100%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	transition: all .45s var(--ease-spring);
	transform-style: preserve-3d;
	position: relative;
	overflow: hidden;
}

.ag-timeline-step::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(300px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(26, 115, 232, .06), transparent 60%);
	opacity: 0;
	transition: opacity .4s ease;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
}

.ag-timeline-step:hover::before {
	opacity: 1;
}

.ag-timeline-step>* {
	position: relative;
	z-index: 2;
}

.ag-timeline-step:hover {
	transform: translateY(-8px) rotateX(4deg);
	box-shadow: 0 20px 50px rgba(26, 115, 232, .12), 0 6px 20px rgba(0, 0, 0, .06);
	border-color: rgba(26, 115, 232, .25);
}

.ag-timeline-num {
	font-family: 'Outfit', sans-serif;
	font-size: 2.5rem;
	font-weight: 900;
	background: linear-gradient(135deg, #1a73e8, #9c27b0);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: .15;
	line-height: 1;
	margin-bottom: .5rem;
	transition: opacity .3s ease;
}

.ag-timeline-step:hover .ag-timeline-num {
	opacity: .35;
}

.ag-timeline-icon {
	width: 44px;
	height: 44px;
	border-radius: .875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.ag-timeline-h {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: 1rem;
	color: var(--bx-text);
	margin-bottom: .5rem;
	letter-spacing: -0.02em;
}

.ag-timeline-p {
	font-size: .875rem;
	color: #6b7490;
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 991.98px) {
	.ag-timeline {
		grid-template-columns: repeat(3, 1fr);
	}

	.ag-timeline::before {
		display: none;
	}
}

@media (max-width: 575.98px) {
	.ag-timeline {
		grid-template-columns: 1fr 1fr;
	}
}

/* ================================================================
   PILLAR CARDS
   ================================================================ */
.ag-pillar-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.5rem;
	padding: 2.25rem;
	height: 100%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	transition: all .45s var(--ease-spring);
	transform-style: preserve-3d;
	position: relative;
	overflow: hidden;
}

.ag-pillar-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(400px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(26, 115, 232, .05), transparent 60%);
	opacity: 0;
	transition: opacity .4s ease;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
}

.ag-pillar-card:hover::before {
	opacity: 1;
}

.ag-pillar-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(26, 115, 232, .1);
	border-color: rgba(26, 115, 232, .2);
}

.ag-pillar-card>* {
	position: relative;
	z-index: 2;
}

.ag-pillar-icon-wrap {
	width: 56px;
	height: 56px;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.ag-pillar-title {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--bx-text);
	margin-bottom: .75rem;
	letter-spacing: -.02em;
}

.ag-pillar-text {
	color: #6b7490;
	line-height: 1.75;
	margin: 0;
}

/* ================================================================
   STATS
   ================================================================ */
.ag-stat-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.5rem;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	transition: all .45s var(--ease-spring);
	transform-style: preserve-3d;
}

.ag-stat-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
	border-color: rgba(26, 115, 232, .2);
}

.ag-stat-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 1rem;
	margin: 0 auto 1rem;
}

.bx-stat-num {
	font-family: 'Outfit', sans-serif !important;
	font-size: 3.5rem !important;
	font-weight: 900 !important;
	letter-spacing: -.04em !important;
	line-height: 1 !important;
	background: linear-gradient(135deg, #1a73e8, #9c27b0) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	display: block;
	margin-bottom: .5rem;
}

.bx-stat-label {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	color: var(--bx-text);
	font-size: .95rem;
	margin-bottom: .5rem;
	display: block;
}

.bx-stat-kicker {
	font-size: .7rem;
	color: #9aa0a6;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 600;
	margin-bottom: .5rem;
	display: block;
}

.bx-stat-desc {
	font-size: .85rem;
	color: #6b7490;
	margin: 0;
	line-height: 1.6;
}

/* ================================================================
   ACCORDION
   ================================================================ */
.ag-accordion-title {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--bx-text);
	letter-spacing: -.02em;
}

.accordion-item {
	background: #fff !important;
	border: 1px solid rgba(0, 0, 0, .07) !important;
	border-radius: 1.25rem !important;
	margin-bottom: .75rem !important;
	overflow: hidden !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .03) !important;
	transition: all .3s ease !important;
}

.accordion-item:hover {
	border-color: rgba(26, 115, 232, .25) !important;
	box-shadow: 0 8px 24px rgba(26, 115, 232, .08) !important;
}

.accordion-button {
	background: #fff !important;
	color: var(--bx-text) !important;
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700 !important;
	font-size: 1rem !important;
	padding: 1.4rem 1.75rem !important;
	box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
	background: #f0f4ff !important;
	color: #1a73e8 !important;
	box-shadow: none !important;
}

.accordion-button::after {
	filter: none !important;
}

.accordion-body {
	background: #fff !important;
	color: #6b7490 !important;
	border-top: 1px solid rgba(0, 0, 0, .05) !important;
	padding: 1.5rem 1.75rem !important;
}

.bx-domain-list {
	padding-left: 0;
	list-style: none;
	margin: 0;
}

.bx-domain-list li {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	padding: .5rem 0;
	color: var(--bx-text);
	font-size: .95rem;
	line-height: 1.6;
	border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.bx-domain-list li:last-child {
	border-bottom: none;
}

.bx-domain-list li::before {
	content: '→';
	color: #1a73e8;
	font-weight: 700;
	margin-top: .05rem;
	flex-shrink: 0;
}

/* ================================================================
   FOOTER — dark background, always fully visible
   ================================================================ */
.ag-footer {
	background: #1a1b2e !important;
	border-top: none !important;
	padding: 5rem 0 0 !important;
	position: relative;
	z-index: 10;
}

.ag-footer .bx-wordmark {
	color: #ffffff !important;
}

.ag-footer .bx-base {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.ag-footer .bx-x {
	background: linear-gradient(135deg, #a8c7fa, #81c995) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
}

.ag-footer-desc {
	color: rgba(255, 255, 255, 0.55) !important;
	font-size: .9rem !important;
	line-height: 1.8 !important;
	max-width: 380px !important;
}

.ag-footer-label {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700 !important;
	font-size: .7rem !important;
	letter-spacing: .14em !important;
	text-transform: uppercase !important;
	color: rgba(255, 255, 255, 0.35) !important;
	margin-bottom: 1.25rem !important;
	display: block !important;
}

.ag-footer-links li {
	margin-bottom: .65rem !important;
}

.ag-footer-links a {
	color: rgba(255, 255, 255, 0.6) !important;
	text-decoration: none !important;
	font-size: .9rem !important;
	transition: color .2s ease, transform .2s ease !important;
	display: inline-block !important;
}

.ag-footer-links a:hover {
	color: #ffffff !important;
	transform: translateX(4px) !important;
}

.ag-footer-dl dt {
	font-weight: 700 !important;
	font-size: .75rem !important;
	color: rgba(255, 255, 255, 0.35) !important;
	text-transform: uppercase !important;
	letter-spacing: .08em !important;
	margin-bottom: .2rem !important;
}

.ag-footer-dl dd {
	color: rgba(255, 255, 255, 0.6) !important;
	font-size: .9rem !important;
	margin-bottom: .9rem !important;
}

.ag-footer-dl a {
	color: #a8c7fa !important;
	text-decoration: none !important;
}

.ag-footer-note {
	font-size: .78rem !important;
	color: rgba(255, 255, 255, 0.3) !important;
	line-height: 1.6 !important;
	margin-top: .75rem !important;
}

.ag-footer-bottom {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	padding: 1.5rem 0 !important;
	margin-top: 3rem !important;
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
	font-size: .825rem !important;
	color: rgba(255, 255, 255, 0.3) !important;
	gap: 1rem !important;
	flex-wrap: wrap !important;
}

/* ================================================================
   LOADER
   ================================================================ */
#loader {
	background: #fff !important;
}

.loader-spin {
	border-top-color: #1a73e8 !important;
}

/* ================================================================
   AOS OVERRIDES — safe: elements only hidden after AOS inits
   ================================================================ */
[data-aos] {
	transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
	transition-duration: .75s !important;
}

/* Only apply hidden state when AOS has initialized the element */
.aos-init[data-aos="fade-up"]:not(.aos-animate) {
	transform: translate3d(0, 50px, 0) scale3d(.97, .97, 1) !important;
	filter: blur(5px);
}

.aos-init[data-aos="fade-up"].aos-animate {
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1) !important;
	filter: blur(0) !important;
}

.aos-init[data-aos="fade-left"]:not(.aos-animate) {
	transform: translate3d(40px, 0, 0) !important;
	filter: blur(4px);
}

.aos-init[data-aos="fade-left"].aos-animate {
	transform: translate3d(0, 0, 0) !important;
	filter: blur(0) !important;
}

.aos-init[data-aos="fade-right"]:not(.aos-animate) {
	transform: translate3d(-40px, 0, 0) !important;
	filter: blur(4px);
}

.aos-init[data-aos="fade-right"].aos-animate {
	transform: translate3d(0, 0, 0) !important;
	filter: blur(0) !important;
}

.aos-init[data-aos="fade-down"]:not(.aos-animate) {
	transform: translate3d(0, -30px, 0) !important;
	filter: blur(3px);
}

.aos-init[data-aos="fade-down"].aos-animate {
	transform: translate3d(0, 0, 0) !important;
	filter: blur(0) !important;
}

/* ================================================================
   CUSTOM CURSOR
   ================================================================ */
.themebx-cursor {
	position: fixed;
	top: -40px;
	left: -40px;
	width: 8px;
	height: 8px;
	background: #1a73e8;
	border-radius: 50%;
	pointer-events: none;
	z-index: 99999;
	transform: translate(-50%, -50%);
	transition: width .25s var(--ease-spring), height .25s var(--ease-spring), background .25s ease, border .25s ease;
}

.themebx-cursor.expand {
	width: 38px;
	height: 38px;
	background: transparent;
	border: 2px solid #1a73e8;
}

.themebx-cursor-glow {
	position: fixed;
	top: -40px;
	left: -40px;
	width: 50px;
	height: 50px;
	background: rgba(26, 115, 232, .12);
	border-radius: 50%;
	pointer-events: none;
	z-index: 99998;
	transform: translate(-50%, -50%);
	filter: blur(12px);
	transition: left .1s linear, top .1s linear, width .35s ease, height .35s ease, background .35s ease, filter .35s ease;
}

.themebx-cursor-glow.expand {
	width: 80px;
	height: 80px;
	background: rgba(26, 115, 232, .08);
	filter: blur(20px);
}


/* ================================================================
   themebx THEME - merged
   ================================================================ */

/* ================================================================
   BASEX — themebx × Figma Theme
   Complete light-mode design system
   ================================================================ */

/* ---- Tokens ---- */
:root {
	--bx-bg: #ffffff;
	--bx-text: #1a1b2e;
	--bx-muted: #6b7490;
	--bx-border: rgba(0, 0, 0, 0.07);
	--bx-blue: #1a73e8;
	--bx-radius: 1.25rem;
	--ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body.bx-site {
	font-family: 'Inter', system-ui, sans-serif !important;
	background: #fff;
	color: var(--bx-text);
	-webkit-font-smoothing: antialiased;
	cursor: none !important;
}

a,
button,
label,
.accordion-button {
	cursor: none !important;
}

::selection {
	background: rgba(26, 115, 232, 0.15);
	color: #1a73e8;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 99px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.bx-wordmark {
	font-family: 'Outfit', system-ui, sans-serif !important;
	letter-spacing: -0.03em !important;
}

/* ---- Fixed BG Mesh ---- */
.bx-fx-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 70% 60% at 80% -5%, rgba(66, 133, 244, 0.07), transparent 60%),
		radial-gradient(ellipse 55% 45% at -5% 90%, rgba(52, 168, 83, 0.05), transparent 60%),
		radial-gradient(ellipse 50% 40% at 105% 110%, rgba(251, 188, 4, 0.04), transparent 55%),
		#fff;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.basex-navbar {
	background: rgba(255, 255, 255, 0.85) !important;
	backdrop-filter: blur(28px) saturate(200%) !important;
	-webkit-backdrop-filter: blur(28px) saturate(200%);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.basex-navbar {
		background: #fff !important;
	}
}

.bx-header--sticky.bx-nav-pinned .basex-navbar {
	background: rgba(255, 255, 255, 0.97) !important;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.06) !important;
}

.bx-logo-img {
	filter: none !important;
}

.bx-wordmark {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 800 !important;
	font-size: 1.35rem !important;
	letter-spacing: -0.04em !important;
	color: var(--bx-text) !important;
}

.bx-base {
	color: var(--bx-text) !important;
}

.bx-x {
	background: linear-gradient(135deg, #1a73e8 0%, #9c27b0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.bx-logo-tag {
	color: #6b7490 !important;
	font-family: 'Inter', sans-serif !important;
}

.basex-navbar .nav-link {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 500 !important;
	font-size: 0.9rem !important;
	color: #6b7490 !important;
	border-bottom: none !important;
	border-radius: 0.6rem !important;
	padding: 0.5rem 0.75rem !important;
	transition: color .2s ease, background .2s ease !important;
}

.basex-navbar .nav-link:hover {
	color: var(--bx-text) !important;
	background: rgba(0, 0, 0, 0.04) !important;
}

.basex-navbar .nav-link.active {
	color: #1a73e8 !important;
	background: #e8f0fe !important;
	font-weight: 600 !important;
}

.bx-nav-cta {
	background: #1a73e8 !important;
	border: none !important;
	color: #fff !important;
	border-radius: 99px !important;
	padding: .6rem 1.4rem !important;
	font-family: 'Outfit', sans-serif !important;
	font-weight: 600 !important;
	font-size: .875rem !important;
	text-transform: none !important;
	letter-spacing: .01em !important;
	box-shadow: 0 4px 14px rgba(26, 115, 232, .35) !important;
	transition: all .25s var(--ease-spring) !important;
}

.bx-nav-cta:hover {
	background: #1557b0 !important;
	color: #fff !important;
	transform: translateY(-2px) scale(1.03) !important;
	box-shadow: 0 10px 28px rgba(26, 115, 232, .4) !important;
}

.bx-navbar-toggler {
	border-color: rgba(0, 0, 0, .1) !important;
}

/* ================================================================
   SECTION WRAPPERS (shared)
   ================================================================ */
.ag-section {
	padding: 6rem 0;
	position: relative;
	z-index: 1;
}

.ag-section--light {
	background: #ffffff;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ag-section--soft {
	background: #f7f8fc;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ag-section-head {
	margin-bottom: 3.5rem;
}

.ag-section-title {
	font-family: 'Outfit', sans-serif !important;
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--bx-text);
	margin-bottom: 0;
}

.bx-section-eyebrow {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: .7rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #1a73e8;
	margin-bottom: .75rem;
}

.bx-section-divider {
	width: 52px;
	height: 3px;
	background: linear-gradient(90deg, #1a73e8, #9c27b0);
	border-radius: 4px;
}

.bx-section-sub {
	color: #6b7490;
	font-size: 1.05rem;
	line-height: 1.75;
	max-width: 46rem;
}

.text-center .bx-section-sub {
	margin: 0 auto;
}

/* ================================================================
   HERO
   ================================================================ */
.ag-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 0 5rem;
	overflow: hidden;
	background: #fff;
}

.ag-hero .container {
	display: flex;
	align-items: center;
	gap: 4rem;
}

/* Floating orbs */
.ag-orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(70px);
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

.ag-orb--1 {
	width: 55vw;
	height: 55vw;
	max-width: 700px;
	max-height: 700px;
	top: -15%;
	right: -10%;
	background: radial-gradient(circle, rgba(66, 133, 244, .09), transparent 70%);
	animation: orb-a 20s infinite alternate;
}

.ag-orb--2 {
	width: 40vw;
	height: 40vw;
	max-width: 500px;
	max-height: 500px;
	bottom: -10%;
	left: -8%;
	background: radial-gradient(circle, rgba(234, 67, 53, .06), transparent 70%);
	animation: orb-b 16s infinite alternate;
}

.ag-orb--3 {
	width: 30vw;
	height: 30vw;
	max-width: 400px;
	max-height: 400px;
	bottom: 20%;
	right: 30%;
	background: radial-gradient(circle, rgba(52, 168, 83, .05), transparent 70%);
	animation: orb-c 22s infinite alternate;
}

@keyframes orb-a {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(-30px, 40px) scale(1.08);
	}
}

@keyframes orb-b {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(35px, -25px) scale(1.06);
	}
}

@keyframes orb-c {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(-20px, 30px) scale(0.95);
	}
}

/* Grid pattern */
.ag-grid-pattern {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	-webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
	mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.ag-hero-content {
	flex: 0 0 55%;
	max-width: 55%;
	position: relative;
	z-index: 5;
}

.ag-hero-visual {
	flex: 0 0 40%;
	max-width: 40%;
	position: relative;
	z-index: 5;
}

/* Chip */
.ag-hero-chip {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-family: 'Outfit', sans-serif;
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	background: #f0f4ff;
	border: 1px solid rgba(26, 115, 232, .2);
	color: #1a73e8;
	padding: .45rem 1rem;
	border-radius: 99px;
	margin-bottom: 2rem;
}

.ag-hero-chip-dot {
	width: 7px;
	height: 7px;
	background: #1a73e8;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(26, 115, 232, .3);
	animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.4);
		opacity: .6;
	}
}

/* Title */
.ag-hero-title {
	font-family: 'Outfit', sans-serif !important;
	font-size: clamp(2.6rem, 5vw, 4.5rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 1.08;
	margin-bottom: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: .15em;
}

.ag-title-line {
	color: var(--bx-text);
}

.ag-title-gradient {
	background: linear-gradient(135deg, #1a73e8 0%, #9c27b0 60%, #ea4335 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ag-hero-lead {
	color: #6b7490;
	font-size: 1.15rem;
	line-height: 1.8;
	margin-bottom: 2rem;
	max-width: 540px;
}

.ag-hero-lead strong {
	color: var(--bx-text);
	font-weight: 600;
}

/* Action buttons */
.ag-hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

.ag-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	border-radius: 99px;
	padding: .75rem 1.75rem;
	transition: all .3s var(--ease-spring);
	white-space: nowrap;
}

.ag-btn--primary {
	background: #1a73e8;
	color: #fff;
	box-shadow: 0 4px 18px rgba(26, 115, 232, .35);
}

.ag-btn--primary:hover {
	background: #1557b0;
	color: #fff;
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 12px 32px rgba(26, 115, 232, .4);
}

.ag-btn--ghost {
	background: transparent;
	color: var(--bx-text);
	border: 1.5px solid rgba(0, 0, 0, .12);
}

.ag-btn--ghost:hover {
	background: rgba(0, 0, 0, .04);
	color: #1a73e8;
	border-color: rgba(26, 115, 232, .4);
	transform: translateY(-2px);
}

.ag-btn--sm {
	padding: .55rem 1.25rem;
	font-size: .85rem;
}

/* Product chips */
.ag-product-chips {
	display: flex;
	gap: .75rem;
	flex-wrap: wrap;
}

.ag-chip {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-family: 'Outfit', sans-serif;
	font-size: .8rem;
	font-weight: 600;
	padding: .4rem .9rem;
	border-radius: 99px;
	text-decoration: none;
	transition: all .25s var(--ease-spring);
	border: 1.5px solid;
}

.ag-chip--blue {
	background: #e8f0fe;
	color: #1a73e8;
	border-color: rgba(26, 115, 232, .25);
}

.ag-chip--green {
	background: #e6f4ea;
	color: #34a853;
	border-color: rgba(52, 168, 83, .25);
}

.ag-chip--purple {
	background: #f3e8fd;
	color: #9c27b0;
	border-color: rgba(156, 39, 176, .25);
}

.ag-chip--gray {
	background: #f1f3f4;
	color: #5f6368;
	border-color: rgba(0, 0, 0, .12);
}

.ag-chip:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
}

/* Hero Panel */
.ag-hero-panel {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 1.5rem;
	box-shadow: 0 8px 40px rgba(0, 0, 0, .08), 0 2px 12px rgba(0, 0, 0, .04);
	overflow: hidden;
	transform-style: preserve-3d;
	transition: box-shadow .4s ease, border-color .4s ease;
}

.ag-hero-panel:hover {
	box-shadow: 0 20px 60px rgba(26, 115, 232, .12), 0 6px 24px rgba(0, 0, 0, .06);
	border-color: rgba(26, 115, 232, .25);
}

.ag-hero-panel-header {
	display: flex;
	align-items: center;
	gap: .45rem;
	padding: .9rem 1.25rem;
	border-bottom: 1px solid rgba(0, 0, 0, .06);
	background: #f7f8fc;
}

.ag-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.ag-dot--red {
	background: #ff5f57;
}

.ag-dot--yellow {
	background: #febc2e;
}

.ag-dot--green {
	background: #27c840;
}

.ag-panel-label {
	margin-left: .5rem;
	font-family: 'Outfit', sans-serif;
	font-size: .75rem;
	font-weight: 600;
	color: #6b7490;
}

.ag-offer-list {
	list-style: none;
	margin: 0;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ag-offer-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.ag-offer-icon {
	width: 40px;
	height: 40px;
	border-radius: .75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.ag-offer-item div {
	display: flex;
	flex-direction: column;
	gap: .15rem;
}

.ag-offer-item strong {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: .9rem;
	color: var(--bx-text);
}

.ag-offer-item span {
	font-size: .8rem;
	color: #6b7490;
}

.ag-panel-footer {
	padding: 1rem 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, .06);
	background: #f7f8fc;
}

/* Scroll indicator */
.ag-scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 10;
}

.ag-scroll-dot {
	width: 22px;
	height: 36px;
	border: 2px solid rgba(0, 0, 0, .15);
	border-radius: 99px;
	position: relative;
}

.ag-scroll-dot::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 8px;
	background: #1a73e8;
	border-radius: 99px;
	animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
	0% {
		top: 5px;
		opacity: 1;
	}

	100% {
		top: 20px;
		opacity: 0;
	}
}

/* Responsive hero */
@media (max-width: 991.98px) {
	.ag-hero .container {
		flex-direction: column;
		gap: 3rem;
		text-align: center;
	}

	.ag-hero-content,
	.ag-hero-visual {
		flex: none;
		max-width: 100%;
	}

	.ag-hero-actions {
		justify-content: center;
	}

	.ag-product-chips {
		justify-content: center;
	}

	.ag-scroll-indicator {
		display: none;
	}
}

/* ================================================================
   MARQUEE BAR
   ================================================================ */
.ag-marquee-bar {
	background: #f0f4ff;
	border-top: 1px solid rgba(26, 115, 232, .12);
	border-bottom: 1px solid rgba(26, 115, 232, .12);
	overflow: hidden;
	padding: .85rem 0;
	white-space: nowrap;
}

.ag-marquee-track {
	display: inline-flex;
	align-items: center;
	gap: 0;
	animation: marquee 25s linear infinite;
}

.ag-marquee-item {
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: .75rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #1a73e8;
	padding: 0 1.25rem;
}

.ag-marquee-sep {
	color: rgba(26, 115, 232, .35);
	font-size: .5rem;
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* ================================================================
   PRODUCT TABS
   ================================================================ */
.ag-product-tabs {}

.ag-tabs-nav {
	display: flex;
	gap: .75rem;
	margin-bottom: 2rem;
	background: #f0f4ff;
	padding: .4rem;
	border-radius: 1rem;
	width: fit-content;
}

.ag-tab {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: .9rem;
	padding: .6rem 1.4rem;
	border: none;
	border-radius: .75rem;
	background: transparent;
	color: #6b7490;
	transition: all .3s var(--ease-spring);
}

.ag-tab:hover {
	color: #1a73e8;
	background: rgba(26, 115, 232, .08);
}

.ag-tab.active {
	background: #fff;
	color: #1a73e8;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.ag-tab-icon {
	font-size: 1rem;
}

.ag-tab-panel {
	display: none;
}

.ag-tab-panel.active {
	display: block;
	animation: tab-fade-in .45s var(--ease-out) both;
}

@keyframes tab-fade-in {
	from {
		opacity: 0;
		transform: translateY(16px) scale(.98);
		filter: blur(4px);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
}

.ag-product-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.75rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
	display: flex;
	gap: 0;
	overflow: hidden;
	transition: box-shadow .4s ease;
}

.ag-product-card:hover {
	box-shadow: 0 12px 48px rgba(0, 0, 0, .1);
}

.ag-product-card-left {
	flex: 0 0 50%;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	border-right: 1px solid rgba(0, 0, 0, .06);
}

.ag-product-card-right {
	flex: 0 0 50%;
	padding: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f7f8fc;
}

.ag-product-badge {
	display: inline-block;
	background: var(--badge-bg, #e8f0fe);
	color: var(--badge-color, #1a73e8);
	font-family: 'Outfit', sans-serif;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: .35rem 1rem;
	border-radius: 99px;
	margin-bottom: 1.25rem;
	width: fit-content;
}

.ag-product-title {
	font-family: 'Outfit', sans-serif !important;
	font-size: 2.75rem;
	font-weight: 900;
	letter-spacing: -0.04em;
	margin-bottom: 1rem;
}

.ag-product-card--blue .ag-product-title {
	color: #1a73e8;
}

.ag-product-card--green .ag-product-title {
	color: #34a853;
}

.ag-product-card--purple .ag-product-title {
	color: #9c27b0;
}

.ag-product-desc {
	color: #6b7490;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.ag-product-features {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	flex: 1;
}

.ag-feature {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	font-size: .9rem;
	color: #3c4043;
	line-height: 1.5;
}

.ag-feature-check {
	background: #e8f0fe;
	color: #1a73e8;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .65rem;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: .1rem;
}

/* Mockup inside product card */
.ag-product-visual {
	width: 100%;
	border-radius: 1.25rem;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.ag-mockup-bar {
	display: flex;
	align-items: center;
	gap: .4rem;
	padding: .75rem 1rem;
	background: #f1f3f4;
	border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.ag-mockup-bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #e0e0e0;
}

.ag-mockup-bar span:nth-child(1) {
	background: #ff5f57;
}

.ag-mockup-bar span:nth-child(2) {
	background: #febc2e;
}

.ag-mockup-bar span:nth-child(3) {
	background: #27c840;
}

.ag-mockup-title {
	font-family: 'Inter', sans-serif;
	font-size: .72rem;
	color: #9aa0a6;
	margin-left: .25rem;
}

.ag-mockup-body {
	padding: 1.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: .75rem;
}

.ag-mockup-stat {
	display: flex;
	flex-direction: column;
	gap: .2rem;
}

.ag-mockup-num {
	font-family: 'Outfit', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a73e8;
}

.ag-mockup-lbl {
	font-size: .68rem;
	color: #9aa0a6;
	font-weight: 500;
}

.ag-mockup-chart {
	grid-column: 1 / -1;
	display: flex;
	align-items: flex-end;
	gap: 6px;
	height: 60px;
	padding-top: .5rem;
}

.ag-chart-bar {
	flex: 1;
	border-radius: 4px 4px 0 0;
	background: rgba(26, 115, 232, .2);
	transition: height .4s var(--ease-spring);
}

.ag-product-visual--blue .ag-chart-bar {
	background: rgba(26, 115, 232, .2);
}

.ag-product-visual--blue .ag-chart-bar--active {
	background: #1a73e8;
}

.ag-product-visual--green .ag-chart-bar {
	background: rgba(52, 168, 83, .2);
}

.ag-product-visual--green .ag-chart-bar--active {
	background: #34a853;
}

.ag-product-visual--purple .ag-chart-bar {
	background: rgba(156, 39, 176, .2);
}

.ag-product-visual--purple .ag-chart-bar--active {
	background: #9c27b0;
}

@media (max-width: 991.98px) {
	.ag-product-card {
		flex-direction: column;
	}

	.ag-product-card-left,
	.ag-product-card-right {
		flex: none;
		border-right: none;
	}

	.ag-product-card-right {
		border-top: 1px solid rgba(0, 0, 0, .06);
	}

	.ag-tabs-nav {
		width: 100%;
	}

	.ag-tab {
		flex: 1;
		justify-content: center;
		font-size: .8rem;
		padding: .5rem .75rem;
	}
}

/* ================================================================
   FEATURE GRID (Sur mesure)
   ================================================================ */
.ag-feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.ag-feature-tile {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.25rem;
	padding: 1.75rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	transition: all .4s var(--ease-spring);
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
}

.ag-feature-tile::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(400px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(26, 115, 232, .06), transparent 60%);
	opacity: 0;
	transition: opacity .4s ease;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
}

.ag-feature-tile:hover::before {
	opacity: 1;
}

.ag-feature-tile:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
	border-color: rgba(26, 115, 232, .25);
}

.ag-feature-tile>* {
	position: relative;
	z-index: 1;
}

.ag-feature-icon {
	width: 48px;
	height: 48px;
	border-radius: .875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.ag-feature-title {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: 1rem;
	color: var(--bx-text);
	margin-bottom: .5rem;
	letter-spacing: -0.02em;
}

.ag-feature-text {
	font-size: .875rem;
	color: #6b7490;
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 575.98px) {
	.ag-feature-grid {
		grid-template-columns: 1fr;
	}
}

/* ================================================================
   TIMELINE
   ================================================================ */
.ag-timeline {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.25rem;
	position: relative;
}

.ag-timeline::before {
	content: '';
	position: absolute;
	top: 50px;
	left: 8%;
	right: 8%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(26, 115, 232, .2), rgba(156, 39, 176, .2), transparent);
	z-index: 0;
}

.ag-timeline-item {
	position: relative;
	z-index: 1;
}

.ag-timeline-step {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.25rem;
	padding: 2rem 1.5rem;
	height: 100%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	transition: all .45s var(--ease-spring);
	transform-style: preserve-3d;
	position: relative;
	overflow: hidden;
}

.ag-timeline-step::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(300px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(26, 115, 232, .06), transparent 60%);
	opacity: 0;
	transition: opacity .4s ease;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
}

.ag-timeline-step:hover::before {
	opacity: 1;
}

.ag-timeline-step>* {
	position: relative;
	z-index: 2;
}

.ag-timeline-step:hover {
	transform: translateY(-8px) rotateX(4deg);
	box-shadow: 0 20px 50px rgba(26, 115, 232, .12), 0 6px 20px rgba(0, 0, 0, .06);
	border-color: rgba(26, 115, 232, .25);
}

.ag-timeline-num {
	font-family: 'Outfit', sans-serif;
	font-size: 2.5rem;
	font-weight: 900;
	background: linear-gradient(135deg, #1a73e8, #9c27b0);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: .15;
	line-height: 1;
	margin-bottom: .5rem;
	transition: opacity .3s ease;
}

.ag-timeline-step:hover .ag-timeline-num {
	opacity: .35;
}

.ag-timeline-icon {
	width: 44px;
	height: 44px;
	border-radius: .875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.ag-timeline-h {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: 1rem;
	color: var(--bx-text);
	margin-bottom: .5rem;
	letter-spacing: -0.02em;
}

.ag-timeline-p {
	font-size: .875rem;
	color: #6b7490;
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 991.98px) {
	.ag-timeline {
		grid-template-columns: repeat(3, 1fr);
	}

	.ag-timeline::before {
		display: none;
	}
}

@media (max-width: 575.98px) {
	.ag-timeline {
		grid-template-columns: 1fr 1fr;
	}
}

/* ================================================================
   PILLAR CARDS
   ================================================================ */
.ag-pillar-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.5rem;
	padding: 2.25rem;
	height: 100%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	transition: all .45s var(--ease-spring);
	transform-style: preserve-3d;
	position: relative;
	overflow: hidden;
}

.ag-pillar-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(400px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(26, 115, 232, .05), transparent 60%);
	opacity: 0;
	transition: opacity .4s ease;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
}

.ag-pillar-card:hover::before {
	opacity: 1;
}

.ag-pillar-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(26, 115, 232, .1);
	border-color: rgba(26, 115, 232, .2);
}

.ag-pillar-card>* {
	position: relative;
	z-index: 2;
}

.ag-pillar-icon-wrap {
	width: 56px;
	height: 56px;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.ag-pillar-title {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--bx-text);
	margin-bottom: .75rem;
	letter-spacing: -.02em;
}

.ag-pillar-text {
	color: #6b7490;
	line-height: 1.75;
	margin: 0;
}

/* ================================================================
   STATS
   ================================================================ */
.ag-stat-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.5rem;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	transition: all .45s var(--ease-spring);
	transform-style: preserve-3d;
}

.ag-stat-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
	border-color: rgba(26, 115, 232, .2);
}

.ag-stat-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 1rem;
	margin: 0 auto 1rem;
}

.bx-stat-num {
	font-family: 'Outfit', sans-serif !important;
	font-size: 3.5rem !important;
	font-weight: 900 !important;
	letter-spacing: -.04em !important;
	line-height: 1 !important;
	background: linear-gradient(135deg, #1a73e8, #9c27b0) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	display: block;
	margin-bottom: .5rem;
}

.bx-stat-label {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	color: var(--bx-text);
	font-size: .95rem;
	margin-bottom: .5rem;
	display: block;
}

.bx-stat-kicker {
	font-size: .7rem;
	color: #9aa0a6;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 600;
	margin-bottom: .5rem;
	display: block;
}

.bx-stat-desc {
	font-size: .85rem;
	color: #6b7490;
	margin: 0;
	line-height: 1.6;
}

/* ================================================================
   ACCORDION
   ================================================================ */
.ag-accordion-title {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--bx-text);
	letter-spacing: -.02em;
}

.accordion-item {
	background: #fff !important;
	border: 1px solid rgba(0, 0, 0, .07) !important;
	border-radius: 1.25rem !important;
	margin-bottom: .75rem !important;
	overflow: hidden !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .03) !important;
	transition: all .3s ease !important;
}

.accordion-item:hover {
	border-color: rgba(26, 115, 232, .25) !important;
	box-shadow: 0 8px 24px rgba(26, 115, 232, .08) !important;
}

.accordion-button {
	background: #fff !important;
	color: var(--bx-text) !important;
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700 !important;
	font-size: 1rem !important;
	padding: 1.4rem 1.75rem !important;
	box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
	background: #f0f4ff !important;
	color: #1a73e8 !important;
	box-shadow: none !important;
}

.accordion-button::after {
	filter: none !important;
}

.accordion-body {
	background: #fff !important;
	color: #6b7490 !important;
	border-top: 1px solid rgba(0, 0, 0, .05) !important;
	padding: 1.5rem 1.75rem !important;
}

.bx-domain-list {
	padding-left: 0;
	list-style: none;
	margin: 0;
}

.bx-domain-list li {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	padding: .5rem 0;
	color: var(--bx-text);
	font-size: .95rem;
	line-height: 1.6;
	border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.bx-domain-list li:last-child {
	border-bottom: none;
}

.bx-domain-list li::before {
	content: '→';
	color: #1a73e8;
	font-weight: 700;
	margin-top: .05rem;
	flex-shrink: 0;
}

/* ================================================================
   FOOTER — dark background, always fully visible
   ================================================================ */
.ag-footer {
	background: #1a1b2e !important;
	border-top: none !important;
	padding: 5rem 0 0 !important;
	position: relative;
	z-index: 10;
}

.ag-footer .bx-wordmark {
	color: #ffffff !important;
}

.ag-footer .bx-base {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.ag-footer .bx-x {
	background: linear-gradient(135deg, #a8c7fa, #81c995) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
}

.ag-footer-desc {
	color: rgba(255, 255, 255, 0.55) !important;
	font-size: .9rem !important;
	line-height: 1.8 !important;
	max-width: 380px !important;
}

.ag-footer-label {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700 !important;
	font-size: .7rem !important;
	letter-spacing: .14em !important;
	text-transform: uppercase !important;
	color: rgba(255, 255, 255, 0.35) !important;
	margin-bottom: 1.25rem !important;
	display: block !important;
}

.ag-footer-links li {
	margin-bottom: .65rem !important;
}

.ag-footer-links a {
	color: rgba(255, 255, 255, 0.6) !important;
	text-decoration: none !important;
	font-size: .9rem !important;
	transition: color .2s ease, transform .2s ease !important;
	display: inline-block !important;
}

.ag-footer-links a:hover {
	color: #ffffff !important;
	transform: translateX(4px) !important;
}

.ag-footer-dl dt {
	font-weight: 700 !important;
	font-size: .75rem !important;
	color: rgba(255, 255, 255, 0.35) !important;
	text-transform: uppercase !important;
	letter-spacing: .08em !important;
	margin-bottom: .2rem !important;
}

.ag-footer-dl dd {
	color: rgba(255, 255, 255, 0.6) !important;
	font-size: .9rem !important;
	margin-bottom: .9rem !important;
}

.ag-footer-dl a {
	color: #a8c7fa !important;
	text-decoration: none !important;
}

.ag-footer-note {
	font-size: .78rem !important;
	color: rgba(255, 255, 255, 0.3) !important;
	line-height: 1.6 !important;
	margin-top: .75rem !important;
}

.ag-footer-bottom {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	padding: 1.5rem 0 !important;
	margin-top: 3rem !important;
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
	font-size: .825rem !important;
	color: rgba(255, 255, 255, 0.3) !important;
	gap: 1rem !important;
	flex-wrap: wrap !important;
}

/* ================================================================
   LOADER
   ================================================================ */
#loader {
	background: #fff !important;
}

.loader-spin {
	border-top-color: #1a73e8 !important;
}

/* ================================================================
   AOS OVERRIDES — safe: elements only hidden after AOS inits
   ================================================================ */
[data-aos] {
	transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
	transition-duration: .75s !important;
}

/* Only apply hidden state when AOS has initialized the element */
.aos-init[data-aos="fade-up"]:not(.aos-animate) {
	transform: translate3d(0, 50px, 0) scale3d(.97, .97, 1) !important;
	filter: blur(5px);
}

.aos-init[data-aos="fade-up"].aos-animate {
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1) !important;
	filter: blur(0) !important;
}

.aos-init[data-aos="fade-left"]:not(.aos-animate) {
	transform: translate3d(40px, 0, 0) !important;
	filter: blur(4px);
}

.aos-init[data-aos="fade-left"].aos-animate {
	transform: translate3d(0, 0, 0) !important;
	filter: blur(0) !important;
}

.aos-init[data-aos="fade-right"]:not(.aos-animate) {
	transform: translate3d(-40px, 0, 0) !important;
	filter: blur(4px);
}

.aos-init[data-aos="fade-right"].aos-animate {
	transform: translate3d(0, 0, 0) !important;
	filter: blur(0) !important;
}

.aos-init[data-aos="fade-down"]:not(.aos-animate) {
	transform: translate3d(0, -30px, 0) !important;
	filter: blur(3px);
}

.aos-init[data-aos="fade-down"].aos-animate {
	transform: translate3d(0, 0, 0) !important;
	filter: blur(0) !important;
}

/* ================================================================
   CUSTOM CURSOR
   ================================================================ */
.themebx-cursor {
	position: fixed;
	top: -40px;
	left: -40px;
	width: 8px;
	height: 8px;
	background: #1a73e8;
	border-radius: 50%;
	pointer-events: none;
	z-index: 99999;
	transform: translate(-50%, -50%);
	transition: width .25s var(--ease-spring), height .25s var(--ease-spring), background .25s ease, border .25s ease;
}

.themebx-cursor.expand {
	width: 38px;
	height: 38px;
	background: transparent;
	border: 2px solid #1a73e8;
}

.themebx-cursor-glow {
	position: fixed;
	top: -40px;
	left: -40px;
	width: 50px;
	height: 50px;
	background: rgba(26, 115, 232, .12);
	border-radius: 50%;
	pointer-events: none;
	z-index: 99998;
	transform: translate(-50%, -50%);
	filter: blur(12px);
	transition: left .1s linear, top .1s linear, width .35s ease, height .35s ease, background .35s ease, filter .35s ease;
}

.themebx-cursor-glow.expand {
	width: 80px;
	height: 80px;
	background: rgba(26, 115, 232, .08);
	filter: blur(20px);
}

/* ================================================================
   BASEX — themebx × Figma Theme
   Complete light-mode design system
   ================================================================ */

/* ---- Tokens ---- */
:root {
	--bx-bg: #ffffff;
	--bx-text: #1a1b2e;
	--bx-muted: #6b7490;
	--bx-border: rgba(0, 0, 0, 0.07);
	--bx-blue: #1a73e8;
	--bx-radius: 1.25rem;
	--ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body.bx-site {
	font-family: 'Inter', system-ui, sans-serif !important;
	background: #fff;
	color: var(--bx-text);
	-webkit-font-smoothing: antialiased;
	cursor: none !important;
}

a,
button,
label,
.accordion-button {
	cursor: none !important;
}

::selection {
	background: rgba(26, 115, 232, 0.15);
	color: #1a73e8;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 99px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.bx-wordmark {
	font-family: 'Outfit', system-ui, sans-serif !important;
	letter-spacing: -0.03em !important;
}

/* ---- Fixed BG Mesh ---- */
.bx-fx-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 70% 60% at 80% -5%, rgba(66, 133, 244, 0.07), transparent 60%),
		radial-gradient(ellipse 55% 45% at -5% 90%, rgba(52, 168, 83, 0.05), transparent 60%),
		radial-gradient(ellipse 50% 40% at 105% 110%, rgba(251, 188, 4, 0.04), transparent 55%),
		#fff;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.basex-navbar {
	background: rgba(255, 255, 255, 0.85) !important;
	backdrop-filter: blur(28px) saturate(200%) !important;
	-webkit-backdrop-filter: blur(28px) saturate(200%);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.basex-navbar {
		background: #fff !important;
	}
}

.bx-header--sticky.bx-nav-pinned .basex-navbar {
	background: rgba(255, 255, 255, 0.97) !important;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.06) !important;
}

.bx-logo-img {
	filter: none !important;
}

.bx-wordmark {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 800 !important;
	font-size: 1.35rem !important;
	letter-spacing: -0.04em !important;
	color: var(--bx-text) !important;
}

.bx-base {
	color: var(--bx-text) !important;
}

.bx-x {
	background: linear-gradient(135deg, #1a73e8 0%, #9c27b0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.bx-logo-tag {
	color: #6b7490 !important;
	font-family: 'Inter', sans-serif !important;
}

.basex-navbar .nav-link {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 500 !important;
	font-size: 0.9rem !important;
	color: #6b7490 !important;
	border-bottom: none !important;
	border-radius: 0.6rem !important;
	padding: 0.5rem 0.75rem !important;
	transition: color .2s ease, background .2s ease !important;
}

.basex-navbar .nav-link:hover {
	color: var(--bx-text) !important;
	background: rgba(0, 0, 0, 0.04) !important;
}

.basex-navbar .nav-link.active {
	color: #1a73e8 !important;
	background: #e8f0fe !important;
	font-weight: 600 !important;
}

.bx-nav-cta {
	background: #1a73e8 !important;
	border: none !important;
	color: #fff !important;
	border-radius: 99px !important;
	padding: .6rem 1.4rem !important;
	font-family: 'Outfit', sans-serif !important;
	font-weight: 600 !important;
	font-size: .875rem !important;
	text-transform: none !important;
	letter-spacing: .01em !important;
	box-shadow: 0 4px 14px rgba(26, 115, 232, .35) !important;
	transition: all .25s var(--ease-spring) !important;
}

.bx-nav-cta:hover {
	background: #1557b0 !important;
	color: #fff !important;
	transform: translateY(-2px) scale(1.03) !important;
	box-shadow: 0 10px 28px rgba(26, 115, 232, .4) !important;
}

.bx-navbar-toggler {
	border-color: rgba(0, 0, 0, .1) !important;
}

/* ================================================================
   SECTION WRAPPERS (shared)
   ================================================================ */
.ag-section {
	padding: 6rem 0;
	position: relative;
	z-index: 1;
}

.ag-section--light {
	background: #ffffff;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ag-section--soft {
	background: #f7f8fc;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ag-section-head {
	margin-bottom: 3.5rem;
}

.ag-section-title {
	font-family: 'Outfit', sans-serif !important;
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--bx-text);
	margin-bottom: 0;
}

.bx-section-eyebrow {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: .7rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #1a73e8;
	margin-bottom: .75rem;
}

.bx-section-divider {
	width: 52px;
	height: 3px;
	background: linear-gradient(90deg, #1a73e8, #9c27b0);
	border-radius: 4px;
}

.bx-section-sub {
	color: #6b7490;
	font-size: 1.05rem;
	line-height: 1.75;
	max-width: 46rem;
}

.text-center .bx-section-sub {
	margin: 0 auto;
}

/* ================================================================
   HERO
   ================================================================ */
.ag-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 0 5rem;
	overflow: hidden;
	background: #fff;
}

.ag-hero .container {
	display: flex;
	align-items: center;
	gap: 4rem;
}

/* Floating orbs */
.ag-orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(70px);
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

.ag-orb--1 {
	width: 55vw;
	height: 55vw;
	max-width: 700px;
	max-height: 700px;
	top: -15%;
	right: -10%;
	background: radial-gradient(circle, rgba(66, 133, 244, .09), transparent 70%);
	animation: orb-a 20s infinite alternate;
}

.ag-orb--2 {
	width: 40vw;
	height: 40vw;
	max-width: 500px;
	max-height: 500px;
	bottom: -10%;
	left: -8%;
	background: radial-gradient(circle, rgba(234, 67, 53, .06), transparent 70%);
	animation: orb-b 16s infinite alternate;
}

.ag-orb--3 {
	width: 30vw;
	height: 30vw;
	max-width: 400px;
	max-height: 400px;
	bottom: 20%;
	right: 30%;
	background: radial-gradient(circle, rgba(52, 168, 83, .05), transparent 70%);
	animation: orb-c 22s infinite alternate;
}

@keyframes orb-a {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(-30px, 40px) scale(1.08);
	}
}

@keyframes orb-b {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(35px, -25px) scale(1.06);
	}
}

@keyframes orb-c {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(-20px, 30px) scale(0.95);
	}
}

/* Grid pattern */
.ag-grid-pattern {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	-webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
	mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.ag-hero-content {
	flex: 0 0 55%;
	max-width: 55%;
	position: relative;
	z-index: 5;
}

.ag-hero-visual {
	flex: 0 0 40%;
	max-width: 40%;
	position: relative;
	z-index: 5;
}

/* Chip */
.ag-hero-chip {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-family: 'Outfit', sans-serif;
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	background: #f0f4ff;
	border: 1px solid rgba(26, 115, 232, .2);
	color: #1a73e8;
	padding: .45rem 1rem;
	border-radius: 99px;
	margin-bottom: 2rem;
}

.ag-hero-chip-dot {
	width: 7px;
	height: 7px;
	background: #1a73e8;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(26, 115, 232, .3);
	animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.4);
		opacity: .6;
	}
}

/* Title */
.ag-hero-title {
	font-family: 'Outfit', sans-serif !important;
	font-size: clamp(2.6rem, 5vw, 4.5rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 1.08;
	margin-bottom: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: .15em;
}

.ag-title-line {
	color: var(--bx-text);
}

.ag-title-gradient {
	background: linear-gradient(135deg, #1a73e8 0%, #9c27b0 60%, #ea4335 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ag-hero-lead {
	color: #6b7490;
	font-size: 1.15rem;
	line-height: 1.8;
	margin-bottom: 2rem;
	max-width: 540px;
}

.ag-hero-lead strong {
	color: var(--bx-text);
	font-weight: 600;
}

/* Action buttons */
.ag-hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

.ag-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	border-radius: 99px;
	padding: .75rem 1.75rem;
	transition: all .3s var(--ease-spring);
	white-space: nowrap;
}

.ag-btn--primary {
	background: #1a73e8;
	color: #fff;
	box-shadow: 0 4px 18px rgba(26, 115, 232, .35);
}

.ag-btn--primary:hover {
	background: #1557b0;
	color: #fff;
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 12px 32px rgba(26, 115, 232, .4);
}

.ag-btn--ghost {
	background: transparent;
	color: var(--bx-text);
	border: 1.5px solid rgba(0, 0, 0, .12);
}

.ag-btn--ghost:hover {
	background: rgba(0, 0, 0, .04);
	color: #1a73e8;
	border-color: rgba(26, 115, 232, .4);
	transform: translateY(-2px);
}

.ag-btn--sm {
	padding: .55rem 1.25rem;
	font-size: .85rem;
}

/* Product chips */
.ag-product-chips {
	display: flex;
	gap: .75rem;
	flex-wrap: wrap;
}

.ag-chip {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-family: 'Outfit', sans-serif;
	font-size: .8rem;
	font-weight: 600;
	padding: .4rem .9rem;
	border-radius: 99px;
	text-decoration: none;
	transition: all .25s var(--ease-spring);
	border: 1.5px solid;
}

.ag-chip--blue {
	background: #e8f0fe;
	color: #1a73e8;
	border-color: rgba(26, 115, 232, .25);
}

.ag-chip--green {
	background: #e6f4ea;
	color: #34a853;
	border-color: rgba(52, 168, 83, .25);
}

.ag-chip--purple {
	background: #f3e8fd;
	color: #9c27b0;
	border-color: rgba(156, 39, 176, .25);
}

.ag-chip--gray {
	background: #f1f3f4;
	color: #5f6368;
	border-color: rgba(0, 0, 0, .12);
}

.ag-chip:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
}

/* Hero Panel */
.ag-hero-panel {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 1.5rem;
	box-shadow: 0 8px 40px rgba(0, 0, 0, .08), 0 2px 12px rgba(0, 0, 0, .04);
	overflow: hidden;
	transform-style: preserve-3d;
	transition: box-shadow .4s ease, border-color .4s ease;
}

.ag-hero-panel:hover {
	box-shadow: 0 20px 60px rgba(26, 115, 232, .12), 0 6px 24px rgba(0, 0, 0, .06);
	border-color: rgba(26, 115, 232, .25);
}

.ag-hero-panel-header {
	display: flex;
	align-items: center;
	gap: .45rem;
	padding: .9rem 1.25rem;
	border-bottom: 1px solid rgba(0, 0, 0, .06);
	background: #f7f8fc;
}

.ag-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.ag-dot--red {
	background: #ff5f57;
}

.ag-dot--yellow {
	background: #febc2e;
}

.ag-dot--green {
	background: #27c840;
}

.ag-panel-label {
	margin-left: .5rem;
	font-family: 'Outfit', sans-serif;
	font-size: .75rem;
	font-weight: 600;
	color: #6b7490;
}

.ag-offer-list {
	list-style: none;
	margin: 0;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ag-offer-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.ag-offer-icon {
	width: 40px;
	height: 40px;
	border-radius: .75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.ag-offer-item div {
	display: flex;
	flex-direction: column;
	gap: .15rem;
}

.ag-offer-item strong {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: .9rem;
	color: var(--bx-text);
}

.ag-offer-item span {
	font-size: .8rem;
	color: #6b7490;
}

.ag-panel-footer {
	padding: 1rem 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, .06);
	background: #f7f8fc;
}

/* Scroll indicator */
.ag-scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 10;
}

.ag-scroll-dot {
	width: 22px;
	height: 36px;
	border: 2px solid rgba(0, 0, 0, .15);
	border-radius: 99px;
	position: relative;
}

.ag-scroll-dot::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 8px;
	background: #1a73e8;
	border-radius: 99px;
	animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
	0% {
		top: 5px;
		opacity: 1;
	}

	100% {
		top: 20px;
		opacity: 0;
	}
}

/* Responsive hero */
@media (max-width: 991.98px) {
	.ag-hero .container {
		flex-direction: column;
		gap: 3rem;
		text-align: center;
	}

	.ag-hero-content,
	.ag-hero-visual {
		flex: none;
		max-width: 100%;
	}

	.ag-hero-actions {
		justify-content: center;
	}

	.ag-product-chips {
		justify-content: center;
	}

	.ag-scroll-indicator {
		display: none;
	}
}

/* ================================================================
   MARQUEE BAR
   ================================================================ */
.ag-marquee-bar {
	background: #f0f4ff;
	border-top: 1px solid rgba(26, 115, 232, .12);
	border-bottom: 1px solid rgba(26, 115, 232, .12);
	overflow: hidden;
	padding: .85rem 0;
	white-space: nowrap;
}

.ag-marquee-track {
	display: inline-flex;
	align-items: center;
	gap: 0;
	animation: marquee 25s linear infinite;
}

.ag-marquee-item {
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: .75rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #1a73e8;
	padding: 0 1.25rem;
}

.ag-marquee-sep {
	color: rgba(26, 115, 232, .35);
	font-size: .5rem;
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* ================================================================
   PRODUCT TABS
   ================================================================ */
.ag-product-tabs {}

.ag-tabs-nav {
	display: flex;
	gap: .75rem;
	margin-bottom: 2rem;
	background: #f0f4ff;
	padding: .4rem;
	border-radius: 1rem;
	width: fit-content;
}

.ag-tab {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: .9rem;
	padding: .6rem 1.4rem;
	border: none;
	border-radius: .75rem;
	background: transparent;
	color: #6b7490;
	transition: all .3s var(--ease-spring);
}

.ag-tab:hover {
	color: #1a73e8;
	background: rgba(26, 115, 232, .08);
}

.ag-tab.active {
	background: #fff;
	color: #1a73e8;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.ag-tab-icon {
	font-size: 1rem;
}

.ag-tab-panel {
	display: none;
}

.ag-tab-panel.active {
	display: block;
	animation: tab-fade-in .45s var(--ease-out) both;
}

@keyframes tab-fade-in {
	from {
		opacity: 0;
		transform: translateY(16px) scale(.98);
		filter: blur(4px);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
}

.ag-product-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.75rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
	display: flex;
	gap: 0;
	overflow: hidden;
	transition: box-shadow .4s ease;
}

.ag-product-card:hover {
	box-shadow: 0 12px 48px rgba(0, 0, 0, .1);
}

.ag-product-card-left {
	flex: 0 0 50%;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	border-right: 1px solid rgba(0, 0, 0, .06);
}

.ag-product-card-right {
	flex: 0 0 50%;
	padding: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f7f8fc;
}

.ag-product-badge {
	display: inline-block;
	background: var(--badge-bg, #e8f0fe);
	color: var(--badge-color, #1a73e8);
	font-family: 'Outfit', sans-serif;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: .35rem 1rem;
	border-radius: 99px;
	margin-bottom: 1.25rem;
	width: fit-content;
}

.ag-product-title {
	font-family: 'Outfit', sans-serif !important;
	font-size: 2.75rem;
	font-weight: 900;
	letter-spacing: -0.04em;
	margin-bottom: 1rem;
}

.ag-product-card--blue .ag-product-title {
	color: #1a73e8;
}

.ag-product-card--green .ag-product-title {
	color: #34a853;
}

.ag-product-card--purple .ag-product-title {
	color: #9c27b0;
}

.ag-product-desc {
	color: #6b7490;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.ag-product-features {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	flex: 1;
}

.ag-feature {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	font-size: .9rem;
	color: #3c4043;
	line-height: 1.5;
}

.ag-feature-check {
	background: #e8f0fe;
	color: #1a73e8;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .65rem;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: .1rem;
}

/* Mockup inside product card */
.ag-product-visual {
	width: 100%;
	border-radius: 1.25rem;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.ag-mockup-bar {
	display: flex;
	align-items: center;
	gap: .4rem;
	padding: .75rem 1rem;
	background: #f1f3f4;
	border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.ag-mockup-bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #e0e0e0;
}

.ag-mockup-bar span:nth-child(1) {
	background: #ff5f57;
}

.ag-mockup-bar span:nth-child(2) {
	background: #febc2e;
}

.ag-mockup-bar span:nth-child(3) {
	background: #27c840;
}

.ag-mockup-title {
	font-family: 'Inter', sans-serif;
	font-size: .72rem;
	color: #9aa0a6;
	margin-left: .25rem;
}

.ag-mockup-body {
	padding: 1.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: .75rem;
}

.ag-mockup-stat {
	display: flex;
	flex-direction: column;
	gap: .2rem;
}

.ag-mockup-num {
	font-family: 'Outfit', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1a73e8;
}

.ag-mockup-lbl {
	font-size: .68rem;
	color: #9aa0a6;
	font-weight: 500;
}

.ag-mockup-chart {
	grid-column: 1 / -1;
	display: flex;
	align-items: flex-end;
	gap: 6px;
	height: 60px;
	padding-top: .5rem;
}

.ag-chart-bar {
	flex: 1;
	border-radius: 4px 4px 0 0;
	background: rgba(26, 115, 232, .2);
	transition: height .4s var(--ease-spring);
}

.ag-product-visual--blue .ag-chart-bar {
	background: rgba(26, 115, 232, .2);
}

.ag-product-visual--blue .ag-chart-bar--active {
	background: #1a73e8;
}

.ag-product-visual--green .ag-chart-bar {
	background: rgba(52, 168, 83, .2);
}

.ag-product-visual--green .ag-chart-bar--active {
	background: #34a853;
}

.ag-product-visual--purple .ag-chart-bar {
	background: rgba(156, 39, 176, .2);
}

.ag-product-visual--purple .ag-chart-bar--active {
	background: #9c27b0;
}

@media (max-width: 991.98px) {
	.ag-product-card {
		flex-direction: column;
	}

	.ag-product-card-left,
	.ag-product-card-right {
		flex: none;
		border-right: none;
	}

	.ag-product-card-right {
		border-top: 1px solid rgba(0, 0, 0, .06);
	}

	.ag-tabs-nav {
		width: 100%;
	}

	.ag-tab {
		flex: 1;
		justify-content: center;
		font-size: .8rem;
		padding: .5rem .75rem;
	}
}

/* ================================================================
   FEATURE GRID (Sur mesure)
   ================================================================ */
.ag-feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.ag-feature-tile {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.25rem;
	padding: 1.75rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	transition: all .4s var(--ease-spring);
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
}

.ag-feature-tile::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(400px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(26, 115, 232, .06), transparent 60%);
	opacity: 0;
	transition: opacity .4s ease;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
}

.ag-feature-tile:hover::before {
	opacity: 1;
}

.ag-feature-tile:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
	border-color: rgba(26, 115, 232, .25);
}

.ag-feature-tile>* {
	position: relative;
	z-index: 1;
}

.ag-feature-icon {
	width: 48px;
	height: 48px;
	border-radius: .875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.ag-feature-title {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: 1rem;
	color: var(--bx-text);
	margin-bottom: .5rem;
	letter-spacing: -0.02em;
}

.ag-feature-text {
	font-size: .875rem;
	color: #6b7490;
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 575.98px) {
	.ag-feature-grid {
		grid-template-columns: 1fr;
	}
}

/* ================================================================
   TIMELINE
   ================================================================ */
.ag-timeline {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.25rem;
	position: relative;
}

.ag-timeline::before {
	content: '';
	position: absolute;
	top: 50px;
	left: 8%;
	right: 8%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(26, 115, 232, .2), rgba(156, 39, 176, .2), transparent);
	z-index: 0;
}

.ag-timeline-item {
	position: relative;
	z-index: 1;
}

.ag-timeline-step {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.25rem;
	padding: 2rem 1.5rem;
	height: 100%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	transition: all .45s var(--ease-spring);
	transform-style: preserve-3d;
	position: relative;
	overflow: hidden;
}

.ag-timeline-step::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(300px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(26, 115, 232, .06), transparent 60%);
	opacity: 0;
	transition: opacity .4s ease;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
}

.ag-timeline-step:hover::before {
	opacity: 1;
}

.ag-timeline-step>* {
	position: relative;
	z-index: 2;
}

.ag-timeline-step:hover {
	transform: translateY(-8px) rotateX(4deg);
	box-shadow: 0 20px 50px rgba(26, 115, 232, .12), 0 6px 20px rgba(0, 0, 0, .06);
	border-color: rgba(26, 115, 232, .25);
}

.ag-timeline-num {
	font-family: 'Outfit', sans-serif;
	font-size: 2.5rem;
	font-weight: 900;
	background: linear-gradient(135deg, #1a73e8, #9c27b0);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: .15;
	line-height: 1;
	margin-bottom: .5rem;
	transition: opacity .3s ease;
}

.ag-timeline-step:hover .ag-timeline-num {
	opacity: .35;
}

.ag-timeline-icon {
	width: 44px;
	height: 44px;
	border-radius: .875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.ag-timeline-h {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: 1rem;
	color: var(--bx-text);
	margin-bottom: .5rem;
	letter-spacing: -0.02em;
}

.ag-timeline-p {
	font-size: .875rem;
	color: #6b7490;
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 991.98px) {
	.ag-timeline {
		grid-template-columns: repeat(3, 1fr);
	}

	.ag-timeline::before {
		display: none;
	}
}

@media (max-width: 575.98px) {
	.ag-timeline {
		grid-template-columns: 1fr 1fr;
	}
}

/* ================================================================
   PILLAR CARDS
   ================================================================ */
.ag-pillar-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.5rem;
	padding: 2.25rem;
	height: 100%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	transition: all .45s var(--ease-spring);
	transform-style: preserve-3d;
	position: relative;
	overflow: hidden;
}

.ag-pillar-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(400px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(26, 115, 232, .05), transparent 60%);
	opacity: 0;
	transition: opacity .4s ease;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
}

.ag-pillar-card:hover::before {
	opacity: 1;
}

.ag-pillar-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(26, 115, 232, .1);
	border-color: rgba(26, 115, 232, .2);
}

.ag-pillar-card>* {
	position: relative;
	z-index: 2;
}

.ag-pillar-icon-wrap {
	width: 56px;
	height: 56px;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.ag-pillar-title {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--bx-text);
	margin-bottom: .75rem;
	letter-spacing: -.02em;
}

.ag-pillar-text {
	color: #6b7490;
	line-height: 1.75;
	margin: 0;
}

/* ================================================================
   STATS
   ================================================================ */
.ag-stat-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 1.5rem;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	transition: all .45s var(--ease-spring);
	transform-style: preserve-3d;
}

.ag-stat-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
	border-color: rgba(26, 115, 232, .2);
}

.ag-stat-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 1rem;
	margin: 0 auto 1rem;
}

.bx-stat-num {
	font-family: 'Outfit', sans-serif !important;
	font-size: 3.5rem !important;
	font-weight: 900 !important;
	letter-spacing: -.04em !important;
	line-height: 1 !important;
	background: linear-gradient(135deg, #1a73e8, #9c27b0) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	display: block;
	margin-bottom: .5rem;
}

.bx-stat-label {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	color: var(--bx-text);
	font-size: .95rem;
	margin-bottom: .5rem;
	display: block;
}

.bx-stat-kicker {
	font-size: .7rem;
	color: #9aa0a6;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 600;
	margin-bottom: .5rem;
	display: block;
}

.bx-stat-desc {
	font-size: .85rem;
	color: #6b7490;
	margin: 0;
	line-height: 1.6;
}

/* ================================================================
   ACCORDION
   ================================================================ */
.ag-accordion-title {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--bx-text);
	letter-spacing: -.02em;
}

.accordion-item {
	background: #fff !important;
	border: 1px solid rgba(0, 0, 0, .07) !important;
	border-radius: 1.25rem !important;
	margin-bottom: .75rem !important;
	overflow: hidden !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .03) !important;
	transition: all .3s ease !important;
}

.accordion-item:hover {
	border-color: rgba(26, 115, 232, .25) !important;
	box-shadow: 0 8px 24px rgba(26, 115, 232, .08) !important;
}

.accordion-button {
	background: #fff !important;
	color: var(--bx-text) !important;
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700 !important;
	font-size: 1rem !important;
	padding: 1.4rem 1.75rem !important;
	box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
	background: #f0f4ff !important;
	color: #1a73e8 !important;
	box-shadow: none !important;
}

.accordion-button::after {
	filter: none !important;
}

.accordion-body {
	background: #fff !important;
	color: #6b7490 !important;
	border-top: 1px solid rgba(0, 0, 0, .05) !important;
	padding: 1.5rem 1.75rem !important;
}

.bx-domain-list {
	padding-left: 0;
	list-style: none;
	margin: 0;
}

.bx-domain-list li {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	padding: .5rem 0;
	color: var(--bx-text);
	font-size: .95rem;
	line-height: 1.6;
	border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.bx-domain-list li:last-child {
	border-bottom: none;
}

.bx-domain-list li::before {
	content: '→';
	color: #1a73e8;
	font-weight: 700;
	margin-top: .05rem;
	flex-shrink: 0;
}

/* ================================================================
   FOOTER — dark background, always fully visible
   ================================================================ */
.ag-footer {
	background: #1a1b2e !important;
	border-top: none !important;
	padding: 5rem 0 0 !important;
	position: relative;
	z-index: 10;
}

.ag-footer .bx-wordmark {
	color: #ffffff !important;
}

.ag-footer .bx-base {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.ag-footer .bx-x {
	background: linear-gradient(135deg, #a8c7fa, #81c995) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
}

.ag-footer-desc {
	color: rgba(255, 255, 255, 0.55) !important;
	font-size: .9rem !important;
	line-height: 1.8 !important;
	max-width: 380px !important;
}

.ag-footer-label {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 700 !important;
	font-size: .7rem !important;
	letter-spacing: .14em !important;
	text-transform: uppercase !important;
	color: rgba(255, 255, 255, 0.35) !important;
	margin-bottom: 1.25rem !important;
	display: block !important;
}

.ag-footer-links li {
	margin-bottom: .65rem !important;
}

.ag-footer-links a {
	color: rgba(255, 255, 255, 0.6) !important;
	text-decoration: none !important;
	font-size: .9rem !important;
	transition: color .2s ease, transform .2s ease !important;
	display: inline-block !important;
}

.ag-footer-links a:hover {
	color: #ffffff !important;
	transform: translateX(4px) !important;
}

.ag-footer-dl dt {
	font-weight: 700 !important;
	font-size: .75rem !important;
	color: rgba(255, 255, 255, 0.35) !important;
	text-transform: uppercase !important;
	letter-spacing: .08em !important;
	margin-bottom: .2rem !important;
}

.ag-footer-dl dd {
	color: rgba(255, 255, 255, 0.6) !important;
	font-size: .9rem !important;
	margin-bottom: .9rem !important;
}

.ag-footer-dl a {
	color: #a8c7fa !important;
	text-decoration: none !important;
}

.ag-footer-note {
	font-size: .78rem !important;
	color: rgba(255, 255, 255, 0.3) !important;
	line-height: 1.6 !important;
	margin-top: .75rem !important;
}

.ag-footer-bottom {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	padding: 1.5rem 0 !important;
	margin-top: 3rem !important;
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
	font-size: .825rem !important;
	color: rgba(255, 255, 255, 0.3) !important;
	gap: 1rem !important;
	flex-wrap: wrap !important;
}

/* ================================================================
   LOADER
   ================================================================ */
#loader {
	background: #fff !important;
}

.loader-spin {
	border-top-color: #1a73e8 !important;
}

/* ================================================================
   AOS OVERRIDES — safe: elements only hidden after AOS inits
   ================================================================ */
[data-aos] {
	transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
	transition-duration: .75s !important;
}

/* Only apply hidden state when AOS has initialized the element */
.aos-init[data-aos="fade-up"]:not(.aos-animate) {
	transform: translate3d(0, 50px, 0) scale3d(.97, .97, 1) !important;
	filter: blur(5px);
}

.aos-init[data-aos="fade-up"].aos-animate {
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1) !important;
	filter: blur(0) !important;
}

.aos-init[data-aos="fade-left"]:not(.aos-animate) {
	transform: translate3d(40px, 0, 0) !important;
	filter: blur(4px);
}

.aos-init[data-aos="fade-left"].aos-animate {
	transform: translate3d(0, 0, 0) !important;
	filter: blur(0) !important;
}

.aos-init[data-aos="fade-right"]:not(.aos-animate) {
	transform: translate3d(-40px, 0, 0) !important;
	filter: blur(4px);
}

.aos-init[data-aos="fade-right"].aos-animate {
	transform: translate3d(0, 0, 0) !important;
	filter: blur(0) !important;
}

.aos-init[data-aos="fade-down"]:not(.aos-animate) {
	transform: translate3d(0, -30px, 0) !important;
	filter: blur(3px);
}

.aos-init[data-aos="fade-down"].aos-animate {
	transform: translate3d(0, 0, 0) !important;
	filter: blur(0) !important;
}

/* ================================================================
   CUSTOM CURSOR
   ================================================================ */
.themebx-cursor {
	position: fixed;
	top: -40px;
	left: -40px;
	width: 8px;
	height: 8px;
	background: #1a73e8;
	border-radius: 50%;
	pointer-events: none;
	z-index: 99999;
	transform: translate(-50%, -50%);
	transition: width .25s var(--ease-spring), height .25s var(--ease-spring), background .25s ease, border .25s ease;
}

.themebx-cursor.expand {
	width: 38px;
	height: 38px;
	background: transparent;
	border: 2px solid #1a73e8;
}

.themebx-cursor-glow {
	position: fixed;
	top: -40px;
	left: -40px;
	width: 50px;
	height: 50px;
	background: rgba(26, 115, 232, .12);
	border-radius: 50%;
	pointer-events: none;
	z-index: 99998;
	transform: translate(-50%, -50%);
	filter: blur(12px);
	transition: left .1s linear, top .1s linear, width .35s ease, height .35s ease, background .35s ease, filter .35s ease;
}

.themebx-cursor-glow.expand {
	width: 80px;
	height: 80px;
	background: rgba(26, 115, 232, .08);
	filter: blur(20px);
}