/* ============================================
   AEON Theme Overrides
   Neutralizes Agntix default colors & fonts.
   Must load AFTER main.css
   ============================================ */

/* -------------------------------------------
   TYPOGRAPHY — Force Inter everywhere
   ------------------------------------------- */

:root {
	--tp-ff-body: var(--aeon-font-family);
	--tp-ff-heading: var(--aeon-font-family);
	--tp-ff-inter: var(--aeon-font-family);
	--tp-ff-p: var(--aeon-font-family);
	--tp-ff-poppins: var(--aeon-font-family);
	--tp-ff-onest: var(--aeon-font-family);
	--tp-ff-grotesk: var(--aeon-font-family);
	--tp-ff-besley: var(--aeon-font-family);
	--tp-ff-playfair: var(--aeon-font-family);
	--tp-ff-satisfy: var(--aeon-font-family);
	--tp-ff-platform: var(--aeon-font-family);
	--tp-ff-phudu: var(--aeon-font-family);
	--tp-ff-teko: var(--aeon-font-family);
	--tp-ff-mango: var(--aeon-font-family);
	--tp-ff-mango-light: var(--aeon-font-family);
	--tp-ff-mango-medium: var(--aeon-font-family);
	--tp-ff-mango-semibold: var(--aeon-font-family);
	--tp-ff-mango-thin: var(--aeon-font-family);
	--tp-ff-dirtyline: var(--aeon-font-family);
	--tp-ff-marcellus: var(--aeon-font-family);
	--tp-ff-clash-light: var(--aeon-font-family);
	--tp-ff-clash-regular: var(--aeon-font-family);
	--tp-ff-clash-medium: var(--aeon-font-family);
	--tp-ff-clash-semibold: var(--aeon-font-family);
	--tp-ff-clash-bold: var(--aeon-font-family);
}

/* -------------------------------------------
   COLORS — Map Agntix variables to AEON
   ------------------------------------------- */

:root {
	/* Greens → AEON orange */
	--tp-common-green-light: var(--aeon-primary);
	--tp-common-green-regular: var(--aeon-primary);
	--tp-common-green-1: var(--aeon-primary);
	--tp-common-green-solid: var(--aeon-black);
	--tp-theme-green: var(--aeon-primary);

	/* Reds → AEON orange */
	--tp-common-red: var(--aeon-primary);
	--tp-common-red-2: var(--aeon-primary);
	--tp-common-red-3: var(--aeon-primary);

	/* Blue → AEON orange */
	--tp-common-blue: var(--aeon-primary);

	/* Pink, Yellow → AEON orange */
	--tp-theme-pink: var(--aeon-primary);
	--tp-theme-yellow: var(--aeon-primary);
}

/* ============================================
   AEON Design Tokens
   Source of truth for all design decisions.
   ============================================ */

:root {
	/* -------------------------------------------
     COLORS
     ------------------------------------------- */

	/* Primary — Orange AEON */
	--aeon-primary: #f88010;
	--aeon-primary-hover: #e07000;
	--aeon-primary-light: #fef0e6;
	--aeon-primary-ultra-light: #fff7f0;

	/* Neutrals — Dark */
	--aeon-black: #1a1a1a;
	--aeon-dark: #21212d;
	--aeon-dark-soft: #2d2d3a;

	/* Neutrals — Gray */
	--aeon-gray-900: #333;
	--aeon-gray-700: #444;
	--aeon-gray-600: #555;
	--aeon-gray-400: #888;
	--aeon-gray-200: #ccc;
	--aeon-gray-100: #e8e8e8;

	/* Neutrals — Light */
	--aeon-white: #ffffff;
	--aeon-bg: #ffffff;
	--aeon-bg-alt: #f6f6f9;
	--aeon-bg-warm: #f3f1f2;
	--aeon-bg-cream: #faf9f7;

	/* Borders */
	--aeon-border: rgba(33, 33, 45, 0.12);
	--aeon-border-light: rgba(33, 33, 45, 0.06);

	/* -------------------------------------------
     TYPOGRAPHY
     ------------------------------------------- */

	--aeon-font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--aeon-font-display: "ClashDisplay-Semibold", "Inter", sans-serif;

	/* Scale */
	--aeon-fs-xs: 12px;
	--aeon-fs-sm: 13px;
	--aeon-fs-base: 15px;
	--aeon-fs-md: 16px;
	--aeon-fs-lg: 18px;
	--aeon-fs-xl: 20px;
	--aeon-fs-2xl: 24px;
	--aeon-fs-3xl: 30px;
	--aeon-fs-4xl: 40px;

	/* Weights */
	--aeon-fw-light: 300;
	--aeon-fw-regular: 400;
	--aeon-fw-medium: 500;
	--aeon-fw-semibold: 600;
	--aeon-fw-bold: 700;
	--aeon-fw-extrabold: 800;

	/* Line heights */
	--aeon-lh-tight: 1.2;
	--aeon-lh-base: 1.6;
	--aeon-lh-relaxed: 1.8;
	--aeon-lh-loose: 2.2;

	/* Letter spacing */
	--aeon-ls-tight: -0.02em;
	--aeon-ls-normal: 0;
	--aeon-ls-wide: 0.05em;
	--aeon-ls-wider: 0.1em;
	--aeon-ls-overline: 0.2em;

	/* -------------------------------------------
     SPACING
     ------------------------------------------- */

	--aeon-space-xs: 4px;
	--aeon-space-sm: 8px;
	--aeon-space-md: 16px;
	--aeon-space-lg: 24px;
	--aeon-space-xl: 32px;
	--aeon-space-2xl: 48px;
	--aeon-space-3xl: 64px;
	--aeon-space-4xl: 96px;
	--aeon-space-5xl: 128px;

	/* -------------------------------------------
     RADIUS
     ------------------------------------------- */

	--aeon-radius-sm: 4px;
	--aeon-radius-md: 8px;
	--aeon-radius-lg: 12px;
	--aeon-radius-xl: 20px;
	--aeon-radius-pill: 50px;
	--aeon-radius-circle: 50%;

	/* -------------------------------------------
     SHADOWS
     ------------------------------------------- */

	--aeon-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
	--aeon-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
	--aeon-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
	--aeon-shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.12);

	/* -------------------------------------------
     TRANSITIONS
     ------------------------------------------- */

	--aeon-transition-fast: 0.2s ease;
	--aeon-transition-base: 0.3s ease;
	--aeon-transition-slow: 0.5s ease;

	/* -------------------------------------------
     CONTAINER
     ------------------------------------------- */

	--aeon-container-sm: 720px;
	--aeon-container-md: 960px;
	--aeon-container-lg: 1140px;
	--aeon-container-xl: 1320px;
}

/* -------------------------------------------
   BODY & GLOBAL
   ------------------------------------------- */

body {
	font-family: var(--aeon-font-family);
	color: var(--aeon-dark);
}

p {
	font-weight: 400;
	font-size: 17px;
	color: #61616a;
	margin-bottom: 25px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--aeon-font-family);
}

/* -------------------------------------------
   BUTTONS — Accent color alignment
   ------------------------------------------- */

.tp-btn-black-solid {
	background-color: var(--aeon-primary);
	color: var(--aeon-white);
}

.tp-btn-black-solid:hover {
	background-color: var(--aeon-primary-hover);
	color: var(--aeon-white);
}

.btn-red-bg .tp-btn-black-filter {
	background-color: var(--aeon-primary);
}

.btn-red-bg .tp-btn-black-filter:hover {
	background-color: var(--aeon-primary-hover);
}

.tp-btn-black.btn-red-bg .tp-btn-black-text {
	background-color: #f88010;
	color: #fff;
}

.tp-btn-black.btn-red-bg .tp-btn-black-circle {
	background: #313131;
}

.tp-btn-black.btn-red-bg .tp-btn-black-circle svg {
	color: #fff;
}

.btn-blue-bg {
	background-color: var(--aeon-primary) !important;
	border-color: var(--aeon-primary) !important;
}

.btn-blue-bg:hover {
	background-color: var(--aeon-primary-hover) !important;
	border-color: var(--aeon-primary-hover) !important;
}

.tp-btn-black-radius {
	background-color: var(--aeon-primary);
}

.tp-btn-black-radius:hover {
	background-color: var(--aeon-primary-hover);
}

.tp-btn-black-radius i {
	background-color: #21212d;
}

.tp-btn-black-radius i svg path {
	stroke: #fff;
}

/* -------------------------------------------
   SECTION SUBTITLES
   ------------------------------------------- */

.tp-section-subtitle.pre::before {
	background-color: var(--aeon-primary);
}

.cst-section-subtitle {
	color: var(--aeon-primary);
}

.color-red {
	color: var(--aeon-primary) !important;
}

/* -------------------------------------------
   ACCORDION / FAQ
   ------------------------------------------- */

.accordion-buttons:not(.collapsed) {
	color: var(--aeon-primary);
}

.accordion-icon::before,
.accordion-icon::after {
	background-color: var(--aeon-dark);
}

.accordion-buttons:not(.collapsed) .accordion-icon::before,
.accordion-buttons:not(.collapsed) .accordion-icon::after {
	background-color: var(--aeon-primary);
}

/* -------------------------------------------
   FUNFACT — stroke color fix
   ------------------------------------------- */

.tp-funfact-number span i {
	-webkit-text-stroke-color: var(--aeon-bg-alt);
}

/* -------------------------------------------
   SERVICE CATEGORY TAGS
   ------------------------------------------- */

.tp-service-category span {
	border-color: var(--aeon-border);
	color: var(--aeon-dark);
}

.tp-service-category span:hover {
	background-color: var(--aeon-primary);
	border-color: var(--aeon-primary);
	color: var(--aeon-white);
}

/* -------------------------------------------
   SECTOR IMAGE — rounded + shadow + overlay
   ------------------------------------------- */

.aeon-sector-img-wrap {
	position: relative;
	display: block;
	width: 464px;
	height: 580px;
	max-width: 464px;
	max-height: 580px;
	border-radius: 15px;
	overflow: hidden;
	flex-shrink: 0;
	box-shadow:
		0px 2px 4px rgba(0, 0, 0, 0.05),
		0px 7px 7px rgba(0, 0, 0, 0.04),
		0px 16px 10px rgba(0, 0, 0, 0.03),
		0px 29px 12px rgba(0, 0, 0, 0.01);
}

.aeon-sector-img-wrap img {
	width: 464px !important;
	height: 580px !important;
	object-fit: cover;
	display: block;
	border-radius: 15px;
}

.aeon-sector-img-overlay {
	display: none;
}

@media (max-width: 1399px) {
	.aeon-sector-img-wrap {
		width: 380px;
		height: 475px;
		max-width: 380px;
		max-height: 475px;
	}
	.aeon-sector-img-wrap img {
		width: 380px !important;
		height: 475px !important;
	}
}

@media (max-width: 1199px) {
	.aeon-sector-img-wrap {
		width: 320px;
		height: 400px;
		max-width: 320px;
		max-height: 400px;
	}
	.aeon-sector-img-wrap img {
		width: 320px !important;
		height: 400px !important;
	}
}

@media (max-width: 991px) {
	.aeon-sector-img-wrap {
		width: 100%;
		height: 350px;
		max-width: 100%;
		max-height: 350px;
		margin-top: 30px;
	}
	.aeon-sector-img-wrap img {
		width: 100% !important;
		height: 350px !important;
	}
}

@media (max-width: 767px) {
	.aeon-sector-img-wrap {
		height: 280px;
		max-height: 280px;
	}
	.aeon-sector-img-wrap img {
		height: 280px !important;
	}
}

/* Service area — alternating backgrounds */
.tp-service-item:nth-child(even) {
	background-color: #f6f6f9;
}

/* -------------------------------------------
   EXPERTISE PANELS — Full-width Figma layout
   ------------------------------------------- */

.tp-funfact-panel-wrap {
	width: 400% !important;
}

.tp-funfact-panel {
	width: 25% !important;
}

.tp-funfact-area .tp-funfact-green-wrap {
	min-height: 100vh;
	display: flex;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
	border-right: 0 !important;
	padding-top: 60px !important;
	padding-bottom: 40px !important;
}

.tp-funfact-area .tp-funfact-green-wrap > .container {
	max-width: none !important;
	width: 100%;
	padding: 0 100px;
}

.aeon-bg-deco {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 710px;
	height: 710px;
	opacity: 0.25;
	pointer-events: none;
	z-index: 0;
}

.aeon-bg-deco1 {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 710px;
	height: 710px;
	pointer-events: none;
	z-index: 0;
}

.aeon-bg-deco.rotated {
	transform: translateY(-50%) rotate(180deg);
}

.aeon-logo-grid {
	display: grid;
	grid-template-columns: repeat(4, 120px);
	gap: 15px;
	padding: 40px 0;
	position: relative;
	z-index: 1;
}

.aeon-logo-circle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	position: relative;
	overflow: hidden;
}

/* Expertises : scale / lift / glow GSAP (overflow visible pour box-shadow) */
#expertises .aeon-logo-circle {
	transform-origin: center center;
	overflow: visible;
}

#expertises .aeon-logo-circle img {
	transform-origin: center center;
}

.aeon-circle-white {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: white;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
}

.aeon-logo-circle img {
	width: 62%;
	height: 62%;
	object-fit: contain;
}

.aeon-circle-orange {
	border: 2px solid #f88010;
}

.aeon-circle-gray {
	border: 2px solid #bbb;
}

.aeon-circle-empty {
	background: #e8e8ec;
	border: 2px solid transparent;
}

.aeon-circle-empty-warm {
	background: #f0e4d8;
	border: 2px solid transparent;
}

.aeon-circle-gray-empty {
	background: #dddde2;
	border: 2px solid transparent;
}

.aeon-expertise-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 620px;
	padding: 40px 0 40px 80px;
	position: relative;
	z-index: 1;
}

.aeon-expertise-label {
	font-size: 20px;
	font-weight: 600;
	display: block;
	margin-bottom: 21px;
	line-height: 24px;
}

.aeon-expertise-text {
	font-size: 25px;
	line-height: 40px;
	letter-spacing: -1.8px;
	color: #313131;
	font-weight: 400;
	max-width: 940px;
}

.aeon-highlight {
	color: #f88010;
}

.aeon-color-orange {
	color: #f88010;
}

.aeon-color-dark {
	color: #313131;
}

.aeon-expertise-footer {
	display: flex;
	align-items: center;
	gap: 17px;
	margin-top: auto;
	padding-top: 60px;
}

.aeon-expertise-icon {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.aeon-expertise-icon img {
	width: 68px;
	height: 68px;
	object-fit: contain;
}

.aeon-icon-bg-orange {
	background: #f88010;
}

.aeon-icon-bg-green {
	background: #313131;
}

.aeon-expertise-title {
	font-size: 90px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -2.04px;
	line-height: 1;
}

/* SplitText : chars en inline-block pour y/scale ; lignes laissées en bloc */
#expertises .aeon-exp-brand-char {
	display: inline-block;
}

#expertises .aeon-expertise-footer {
	overflow: visible;
}

@media (max-width: 1600px) {
	.tp-funfact-area .tp-funfact-green-wrap > .container {
		padding: 0 60px;
	}
	.aeon-expertise-title {
		font-size: 80px;
	}
	.aeon-expertise-content {
		padding-left: 50px;
	}
	.aeon-bg-deco {
		width: 550px;
		height: 550px;
	}
}

@media (max-width: 1399px) {
	.tp-funfact-area .tp-funfact-green-wrap > .container {
		padding: 0 40px;
	}
	.aeon-expertise-title {
		font-size: 64px;
	}
	.aeon-logo-grid {
		grid-template-columns: repeat(4, 100px);
		gap: 12px;
	}
	.aeon-logo-circle {
		width: 100px;
		height: 100px;
		padding: 18px;
	}
	.aeon-expertise-content {
		min-height: 520px;
		padding-left: 40px;
	}
	.aeon-expertise-text {
		font-size: 21px;
		line-height: 34px;
	}
	.aeon-expertise-icon {
		width: 100px;
		height: 100px;
	}
	.aeon-expertise-icon img {
		width: 56px;
		height: 56px;
	}
}

@media (max-width: 1199px) {
	.aeon-expertise-title {
		font-size: 48px;
	}
	.aeon-expertise-text {
		font-size: 18px;
		line-height: 30px;
		letter-spacing: -0.8px;
	}
	.aeon-logo-grid {
		grid-template-columns: repeat(4, 85px);
		gap: 10px;
	}
	.aeon-logo-circle {
		width: 85px;
		height: 85px;
		padding: 14px;
	}
	.aeon-expertise-content {
		min-height: 440px;
		padding-left: 30px;
	}
	.aeon-bg-deco {
		width: 400px;
		height: 400px;
	}
}

@media (max-width: 991px) {
	.tp-funfact-area .tp-funfact-green-wrap > .container {
		padding: 0 20px;
	}
	.aeon-logo-grid {
		grid-template-columns: repeat(4, 80px);
		gap: 10px;
		padding: 20px 0;
		margin-bottom: 20px;
	}
	.aeon-logo-circle {
		width: 80px;
		height: 80px;
	}
	.aeon-expertise-content {
		min-height: auto;
		padding: 0 0 30px;
	}
	.aeon-expertise-title {
		font-size: 40px;
	}
	.aeon-bg-deco {
		display: none;
	}
}

/* -------------------------------------------
   LINKS & MISC
   ------------------------------------------- */

a:hover {
	color: var(--aeon-primary);
}

.tp-line-black::after {
	background-color: var(--aeon-primary);
}

/* -------------------------------------------
   ABOUT — Info badges
   ------------------------------------------- */

.tp-section-title-platform.fs-84 {
	font-size: 46px;
	line-height: 1.1;
	font-weight: 700;
}

.it-about-thumb-inner {
	width: 360px;
	height: 500px;
	overflow: hidden;
	border-radius: 12px;
}

.it-about-thumb-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0 !important;
}

.it-about-thumb img.img-2 {
	width: 510px;
	height: 340px;
	object-fit: cover;
	border-radius: 12px;
	margin-left: -150px;
}

.it-about-thumb img.img-3 {
	width: 360px;
	height: 620px;
	object-fit: cover;
	object-position: top;
	border-radius: 15px;
}

.it-about-area .col-xl-8 > .row {
	align-items: center !important;
}

.it-about-info-item {
	padding: 12px 15px;
	border-radius: 25px;
	margin-bottom: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border: 1px solid rgba(50, 41, 73, 0.1);
	background-color: transparent;
}

.it-about-info-item i {
	font-size: 25px;
	color: #f8800d;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.it-about-info-item p {
	font-size: 18px;
	letter-spacing: -0.44px;
	color: var(--tp-common-black);
	font-family: var(--aeon-font-family);
}

.chiffre-cles i {
	font-size: 35px;
	color: var(--aeon-primary);
}

.cst-about-list ul li {
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 18px;
	color: #61616a;
}

/* -------------------------------------------
   HERO — Title font weight bump
   ------------------------------------------- */

.ar-hero-title {
	font-family: var(--aeon-font-family);
	font-weight: 600;
	word-spacing: 20px;
}

.ar-hero-area {
	overflow: visible;
}

/* -------------------------------------------
   HERO — Inline icons (Figma assets)
   ------------------------------------------- */

.ar-hero-shape-1,
.ar-hero-shape-2,
.ar-hero-shape-3,
.ar-hero-shape-4 {
	width: 80px;
	height: 80px;
	object-fit: contain;
	vertical-align: middle;
}

.ar-hero-shape-1 {
	transform: translateY(-11px) rotate(-16deg);
}

.ar-hero-shape-2 {
	transform: translateY(-10px);
}

.ar-hero-shape-3 {
	margin-left: 10px;
	transform: translateY(-8px) rotate(-27deg);
}

.ar-hero-shape-4 {
	margin-left: 10px;
	transform: translateY(-15px) rotate(25deg);
}

@media (max-width: 991px) {
	.ar-hero-shape-1,
	.ar-hero-shape-2,
	.ar-hero-shape-3,
	.ar-hero-shape-4 {
		width: 50px;
		height: 50px;
	}
}

@media (max-width: 767px) {
	.ar-hero-shape-1,
	.ar-hero-shape-2,
	.ar-hero-shape-3,
	.ar-hero-shape-4 {
		width: 35px;
		height: 35px;
	}
}

/* -------------------------------------------
   HERO — Side circle decorations
   ------------------------------------------- */

.aeon-hero-deco-left {
	position: absolute;
	left: -50px;
	top: 85%;
	transform: translateY(-50%) rotate(135deg);
	width: 128px;
	z-index: 1;
	pointer-events: none;
}

.aeon-hero-deco-right {
	position: absolute;
	right: -40px;
	top: 30%;
	transform: translateY(-50%) rotate(310deg);
	width: 128px;
	z-index: 1;
	pointer-events: none;
}

@media (max-width: 1399px) {
	.aeon-hero-deco-left {
		width: 160px;
		left: -50px;
	}
	.aeon-hero-deco-right {
		width: 160px;
		right: -50px;
	}
}

@media (max-width: 1199px) {
	.aeon-hero-deco-left {
		width: 120px;
		left: -30px;
	}
	.aeon-hero-deco-right {
		width: 120px;
		right: -30px;
	}
}

img.aeon-hero-deco-left {
	animation: rotate2 5s linear infinite !important;
}

img.aeon-hero-deco-right {
	animation: rotate2 10s linear infinite !important;
}

/* -------------------------------------------
   FOOTER
   ------------------------------------------- */

.creative-footer-style .tp-footer-widget-social {
	background: white !important;
}

.creative-footer-style .tp-footer-widget-social::after,
.creative-footer-style .tp-footer-widget-social::before,
.creative-footer-text::after,
.creative-footer-text::before {
	box-shadow: 0px -18px 0 0 #ffffff;
}

.creative-footer-text {
	background-color: white !important;
}
.creative-footer-text p {
	color: black;
}

.creative-footer-style .tp-footer-widget-title-sm {
	color: #494949;
}
.creative-footer-style .tp-footer-widget-menu ul li a {
	color: var(--tp-common-black);
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: white;
}
.creative-footer-style .tp-footer-widget-info a {
	color: #494949;
}
.it-about-shape-2 {
	position: absolute;
	top: -5%;
	right: -200px;
	z-index: 2;
}

@media only screen and (min-width: 1701px) and (max-width: 1800px) {
	.title-aeon {
		font-size: 55px !important;
	}
}

.tp-work-number span {
	height: 80px;
	width: 80px;
}
.tp-work-number i {
	position: absolute;
	top: 17px;
	right: -18px;
}
.des-brand-item.black-style .des-brand-item-inner {
	background-color: white;
}
.des-brand-item.black-style .des-brand-item-inner img {
	filter: none !important;
}
.design-service-big-text h4 {
	font-size: 100px;
	font-family: var(--aeon-font-family);
	font-weight: 600;
	word-spacing: 20px;
	line-height: 1;
	letter-spacing: -0.05em;
	text-transform: uppercase;
	color: var(--tp-common-black);
}

.it-feature-item::before {
	box-shadow: 0 2px 3px 0 rgba(50, 41, 73, 0.1);
	border: 1px solid #e4e4e4;
}

.opacity-2 {
	opacity: 0.2;
}
.cst-section-title {
	font-size: 45px;
	font-weight: 700;
	line-height: 1.1;
	color: var(--tp-common-black);
	text-transform: uppercase;
}
.tp_text_invert.dark > div {
	background-image: linear-gradient(to right, #ffffff 50%, #918e8e 50%);
}
.ais-section-subtitle.dark {
	border: 1px solid rgb(255 255 255 / 94%);
	color: white;
}

.st-service-item {
	padding: 10px 0px;
}
.cr-feature-2-bg {
	filter: invert(1);
}
.cr-feature-2-item {
	border-color: #ebebeb;
}
.cr-feature-2-item span {
	background-color: #ebebeb;
}
.tp-section-subtitle-gradient.ct {
	border-color: rgba(0, 0, 0, 0.1);
}
.tp-section-title-onest {
	color: var(--tp-common-black);
}
.cr-feature-2-heading p {
	color: rgba(0, 0, 0, 0.5);
}

.ai-choose-shape {
	display: none;
	position: absolute;
	bottom: -40%;
	top: auto;
	left: 0;
	right: 0;
	text-align: center;
	z-index: -1;
}

.it-feature-icon {
	position: relative;
	width: 100%;
	height: auto;
	line-height: 160px;
	text-align: center;
	border-radius: 0;
	margin-top: 20px;
	margin-bottom: 15px;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.it-feature-icon i {
	font-size: 60px;
	color: #f8800d;
}

.it-feature-icon::before {
	top: 45%;
	height: 115px;
	width: 115px;
}

.cst-service-item-content {
	padding: 0px;
}

.f-erp {
	margin-bottom: 20px !important;
}

.cst-service-item {
	height: 100%;
	position: relative;
	border-radius: 20px;
	padding: 60px 30px 30px;
}

.it-feature-icon.color-3::before {
	background-color: #feecdd;
}

.it-feature-title {
	margin-bottom: 20px !important;
	font-family: var(--aeon-font-family);
}

.st-service-item-btn a {
	display: none !important;
	display: inline-block;
}

.st-award-wrapper .ar-award-right-wrap .ar-award-item .ar-award-box-left .ar-award-title {
	font-size: 22px;
	letter-spacing: -0.44px;
	color: var(--tp-common-black);
	font-family: var(--aeon-font-family);
}

.st-award-wrapper .ar-award-right-wrap .ar-award-item::after {
	border-radius: 15px;
	background-color: var(--aeon-primary);
}

#st-award-thumb img {
	border-radius: 100%;
}

.it-faq-wrap .accordion-buttons i {
	color: var(--aeon-primary);
	font-family: var(--aeon-font-family);
}

.it-faq-wrap .accordion-buttons span {
	color: var(--tp-common-black);
	font-family: var(--aeon-font-family);
	font-weight: 600;
	letter-spacing: normal;
}

.it-faq-wrap .accordion-body p {
	color: #61616a;
}

.it-faq-accordion .faq-active::before {
	background: var(--aeon-primary) !important;
}

.it-faq-wrap::after {
	background-color: rgb(209 209 209 / 20%);
}

.it-faq-wrap .accordion-items:not(:last-child) {
	margin-bottom: 40px;
}

.it-feature-item-style-bg {
	height: 600px !important;
	border: 1px solid rgba(5, 3, 18, 0.1);
}

.st-copyright-title {
	color: var(--tp-common-black);
	font-family: var(--aeon-font-family);
}
.st-copyright-title span {
	background-color: var(--tp-common-black);
}

.tp-btn-black.btn-green-light-bg .tp-btn-black-circle svg {
	color: white;
}
.tp-btn-black.btn-green-light-bg .tp-btn-black-text {
	color: white;
}

.st-service-item-title {
	font-family: var(--aeon-font-family);
}

.app-faq-wrap .ai-faq-accordion-wrap .accordion .accordion-items .accordion-body p {
	font-weight: 400;
	font-size: 17px;
	color: #61616a;
}

.dgm-brand-item img {
	height: 65px;
}
.tp-offcanvas-2-right-info-title,
.tp-offcanvas-2-right-info-item > a {
	color: var(--tp-common-black);
}

.tp-offcanvas-2-right-social a {
	background-color: var(--aeon-primary);
}
.cst-about-thumb img {
	border-radius: 8px;
	width: 100%;
	border: 1px solid rgba(5, 3, 18, 0.1);
}

.w-90 {
	width: 90%;
}

.st-award-wrapper .ar-award-right-wrap .ar-award-item .ar-award-box-left .ar-award-year {
	color: var(--aeon-primary);
}
.it-feature-item-style-bg .it-feature-title {
	font-size: 30px;
	line-height: 0.9;
	font-weight: 600;
	text-align: center;
	color: var(--aeon-primary);
}

.tp-btn-black-radius.btn-blur {
	background-color: var(--aeon-primary);
}

@media (max-width: 767px) {
	.ar-hero-title {
		font-size: 40px;
	}
	.s-ml-0 {
		margin-left: 0px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
	.cst-section-title {
		font-size: 36px !important;
	}
}

/* ——— lead modal (fullscreen premium — thème clair) ——— */
body.contact-modal-open {
	overflow: hidden;
	touch-action: none;
}

.contact-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: stretch;
	justify-content: center;
	pointer-events: none;
	font-family: var(--tp-ff-inter);
	-webkit-font-smoothing: antialiased;
}

.contact-modal:not(.contact-modal--open) {
	visibility: hidden;
}

.contact-modal:not(.contact-modal--open) .contact-modal__backdrop,
.contact-modal:not(.contact-modal--open) .contact-modal__shell {
	opacity: 0;
}

.contact-modal:not(.contact-modal--open) .contact-modal__shell {
	transform: translate3d(0, 14px, 0) scale(0.992);
}

.contact-modal--open {
	pointer-events: auto;
	visibility: visible;
}

.contact-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 18, 22, 0.28);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	transition:
		opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		backdrop-filter 0.45s ease;
}

.contact-modal__shell {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-height: 100%;
	margin: 0;
	background: #ffffff;
	color: var(--tp-common-black);
	border: none;
	box-shadow:
		0 1px 0 rgba(0, 0, 0, 0.04),
		0 24px 80px rgba(15, 18, 22, 0.08);
	display: flex;
	flex-direction: column;
	overflow: hidden auto;
	transition:
		opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal--open .contact-modal__backdrop,
.contact-modal--open .contact-modal__shell {
	opacity: 1;
}

.contact-modal--open .contact-modal__shell {
	transform: translate3d(0, 0, 0) scale(1);
}

.contact-modal__close {
	position: fixed;
	top: clamp(16px, 3vw, 28px);
	right: clamp(16px, 3vw, 32px);
	z-index: 5;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: rgba(255, 255, 255, 0.85);
	color: var(--tp-common-black);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 24px rgba(15, 18, 22, 0.06);
	transition:
		background 0.28s ease,
		border-color 0.28s ease,
		box-shadow 0.28s ease,
		transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-modal__close:hover {
	background: #f4f4f5;
	border-color: rgba(0, 0, 0, 0.12);
	box-shadow: 0 8px 32px rgba(15, 18, 22, 0.08);
	transform: rotate(90deg) scale(1.04);
}

.contact-modal__close:focus-visible {
	outline: 2px solid var(--aeon-primary);
	outline-offset: 3px;
}

.contact-modal__grid {
	flex: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
	min-height: min(100vh, 920px);
}

.contact-modal__brand {
	display: flex;
	align-items: center;
}

.contact-modal__brand {
	position: relative;
	padding: clamp(72px, 10vw, 120px) clamp(28px, 5vw, 64px) clamp(40px, 6vw, 80px);
	background: radial-gradient(ellipse 100% 70% at 0% 0%, rgba(193, 237, 0, 0.12) 0%, transparent 52%), linear-gradient(180deg, #fafafa 0%, #f6f6f7 100%);
	overflow: hidden;
	background-image: url(../img/home-08/hero/hero-bg-shape.png);
	background-repeat: repeat;
	background-size: contain;
}

.contact-modal__brand::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.06) 25%, rgba(0, 0, 0, 0.06) 75%, transparent);
	pointer-events: none;
}

.contact-modal__brand-inner {
	position: relative;
	z-index: 1;
	animation: contactModalFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.contact-modal__glow {
	position: absolute;
	width: 280px;
	height: 280px;
	left: -60px;
	bottom: -80px;
	background: radial-gradient(circle, rgba(193, 237, 0, 0.15) 0%, transparent 68%);
	filter: blur(8px);
	pointer-events: none;
	animation: contactModalPulseLight 6s ease-in-out infinite;
}

.contact-modal__logo {
	display: block;
	height: auto;
	width: clamp(120px, 22vw, 168px);
	margin-bottom: clamp(24px, 4vw, 36px);
}

.contact-modal__eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #61616a;
	margin: 0 0 14px;
}

.contact-modal__title {
	font-size: clamp(26px, 3.4vw, 40px);
	font-weight: 600;
	line-height: 1;
	margin: 0 0 18px;
	color: var(--tp-common-black);
	font-family: var(--tp-ff-inter);
	letter-spacing: 0;
}

.contact-modal__copy {
	font-size: 15px;
	line-height: 1.65;
	color: #61616a;
	margin: 0;
	font-weight: 500;
}

.contact-modal__aside {
	padding: clamp(72px, 10vw, 100px) clamp(28px, 5vw, 72px) clamp(48px, 8vw, 96px);
	background: #ffffff;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.contact-modal__stage {
	position: relative;
	width: 100%;
	max-width: 560px;
	min-height: min(560px, calc(100vh - 200px));
}

.contact-modal__form {
	position: relative;
	z-index: 1;
	width: 100%;
	animation: contactModalFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
	transition:
		opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal__stage--success .contact-modal__form {
	opacity: 0;
	transform: translate3d(0, -10px, 0) scale(0.99);
	pointer-events: none;
}

.contact-modal__success-panel {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 0;
	opacity: 0;
	transform: translate3d(0, 16px, 0) scale(0.985);
	pointer-events: none;
	transition:
		opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.contact-modal__stage--success .contact-modal__success-panel {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	pointer-events: auto;
}

.contact-modal__success-card {
	width: 100%;
	max-width: 400px;
	text-align: center;
	padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 32px);
	background: #f4f4f5;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 20px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.8) inset,
		0 20px 50px rgba(15, 18, 22, 0.06);
}

.contact-modal__success-icon {
	color: var(--tp-common-black);
	margin: 0 auto 20px;
	width: 48px;
	height: 48px;
}

.contact-modal__success-check {
	stroke-dasharray: 40;
	stroke-dashoffset: 40;
}

.contact-modal__stage--success .contact-modal__success-check {
	animation: contactModalCheckDraw 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.contact-modal__success-title {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.03em;
	color: var(--tp-common-black);
	margin: 0 0 12px;
	line-height: 1.2;
}

.contact-modal__success-text {
	font-size: 15px;
	line-height: 1.6;
	color: #61616a;
	margin: 0 0 24px;
}

.contact-modal__success-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	font-size: 14px;
	font-weight: 600;
	color: var(--tp-common-black);
	background: var(--aeon-primary);
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition:
		transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 0.3s ease,
		filter 0.25s ease;
}

.contact-modal__success-cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 28px rgba(237, 146, 0, 0.35);
	filter: brightness(0.98);
}

.contact-modal__success-cta:focus-visible {
	outline: 2px solid var(--tp-common-black);
	outline-offset: 3px;
}

.contact-modal__form-head {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #61616a;
	margin: 0 0 24px;
}

.contact-modal__fields {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.contact-modal__row {
	display: grid;
	gap: 16px;
}

.contact-modal__row--2 {
	grid-template-columns: 1fr 1fr;
}

.contact-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}

.contact-field--full {
	width: 100%;
}

.contact-field__req {
	text-decoration: none;
	font-weight: 600;
	color: #61616a;
	font-size: 0.85em;
}

.contact-field__label {
	font-size: 13px;
	font-weight: 500;
	color: var(--tp-common-black);
	letter-spacing: -0.01em;
}

.contact-field__hint {
	font-weight: 400;
	color: #61616a;
	font-size: 12px;
}

.contact-field--card {
	padding: 0;
}

.contact-field__control {
	background: rgb(246, 246, 249);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 12px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
	transition:
		border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.28s ease;

	padding-left: 26px !important;
	padding-right: 26px !important;
}
.contact-modal__form input[type="text"],
.contact-modal__form input[type="email"],
.contact-modal__form input[type="tel"],
.contact-modal__form input[type="number"],
.contact-modal__form input[type="password"],
.contact-modal__form input[type="url"],
.contact-modal__form textarea {
	padding: 0px;
	border: none;
	background-color: transparent;
}

.contact-modal__form input[type="text"]:focus,
.contact-modal__form input[type="email"]:focus,
.contact-modal__form input[type="tel"]:focus,
.contact-modal__form input[type="number"]:focus,
.contact-modal__form input[type="password"]:focus,
.contact-modal__form input[type="url"]:focus,
.contact-modal__form textarea:focus {
	border: none;
}

.contact-field--card:hover .contact-field__control {
	border-color: rgba(0, 0, 0, 0.1);
	background: #f0f0f2;
}

.contact-field--card:focus-within:not(.contact-field--invalid) .contact-field__control {
	border-color: rgba(0, 0, 0, 0.14);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.65) inset,
		0 0 0 3px rgba(237, 146, 0, 0.35);
	background: #fafafa;
}

.contact-field--invalid .contact-field__control {
	border-color: rgba(220, 38, 38, 0.35);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.5) inset,
		0 0 0 3px rgba(220, 38, 38, 0.08);
	background: #fdf6f5;
}

.contact-field__input,
.contact-field__textarea,
.contact-field__select {
	width: 100%;
	font-size: 15px;
	font-weight: 400;
	color: var(--tp-common-black);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	transition: color 0.2s ease;
	height: 100%;
}

.contact-field__select {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%2361616a' stroke-linecap='round' stroke-width='1.5' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 2px center;
	height: 60px;
}

.contact-field__input::placeholder,
.contact-field__textarea::placeholder {
	color: rgba(97, 97, 106, 0.55);
}

.contact-field__textarea {
	resize: vertical;
	min-height: 96px;
	line-height: 1.5;
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}

.contact-field__error {
	min-height: 1.15em;
	font-size: 12px;
	font-weight: 500;
	color: #b91c1c;
	letter-spacing: 0.01em;
	transition: opacity 0.2s ease;
}

.contact-field__error:empty {
	opacity: 0;
}

.contact-modal__submit {
	margin-top: 24px;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 17px 24px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.01em;
	text-transform: capitalize;
	color: var(--tp-common-white);
	background-color: var(--aeon-primary);
	border: 1px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	transition:
		transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 0.32s ease,
		filter 0.25s ease;
	box-shadow: 0 4px 20px rgba(237, 146, 0, 0.25);
}

.contact-modal__submit:hover {
	color: var(--tp-common-black);
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(237, 146, 0, 0.35);
	filter: brightness(0.99);
}

.contact-modal__submit:active {
	transform: translateY(0);
}

.contact-modal__submit:focus-visible {
	outline: 2px solid var(--tp-common-black);
	outline-offset: 3px;
}

.contact-modal__fields > *:nth-child(1) {
	animation: contactModalFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
.contact-modal__fields > *:nth-child(2) {
	animation: contactModalFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}
.contact-modal__fields > *:nth-child(3) {
	animation: contactModalFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.contact-modal__fields > *:nth-child(4) {
	animation: contactModalFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}

@keyframes contactModalFadeUp {
	from {
		opacity: 0;
		transform: translate3d(0, 12px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes contactModalPulseLight {
	0%,
	100% {
		opacity: 0.55;
		transform: scale(1);
	}
	50% {
		opacity: 0.9;
		transform: scale(1.04);
	}
}

@keyframes contactModalCheckDraw {
	to {
		stroke-dashoffset: 0;
	}
}

@media (max-width: 991px) {
	.contact-modal__grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.contact-modal__brand::after {
		display: none;
	}

	.contact-modal__brand {
		padding-bottom: 32px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}

	.contact-modal__brand-inner {
		max-width: none;
	}

	.contact-modal__aside {
		padding-top: 36px;
	}

	.contact-modal__row--2 {
		grid-template-columns: 1fr;
	}

	.contact-modal__stage {
		min-height: 480px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.contact-modal__backdrop,
	.contact-modal__shell,
	.contact-modal__close,
	.contact-modal__submit,
	.contact-modal__form,
	.contact-modal__success-panel {
		transition-duration: 0.01ms !important;
	}

	.contact-modal:not(.contact-modal--open) .contact-modal__shell {
		transform: none;
	}

	.contact-modal__brand-inner,
	.contact-modal__form,
	.contact-modal__fields > * {
		animation: none !important;
	}

	.contact-modal__glow {
		animation: none;
	}

	.contact-modal__stage--success .contact-modal__success-check {
		animation: none;
		stroke-dashoffset: 0;
	}
}
@media (max-width: 767px) {
	.cr-feature-2-right {
		display: block;
	}
	.xs-d-none {
		display: none;
	}
}

.cr-feature-2-ptb {
	padding-top: 110px;
	padding-bottom: 60px;
}

.cr-feature-2-bg {
	top: 45px;
}

@media (max-width: 768px) {
	.tp_fade_anim,
	.tp_text_anim > p > div,
	.tp_img_reveal,
	.tp_img_reveal > img {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
		animation: none !important;
	}
}
.creative-footer-style .tp-footer-widget-social a i {
	font-size: 20px;
}

.tp-offcanvas-2-right-social a i {
	font-size: 18px;
}

.tp-offcanvas-2-right-social a {
	line-height: 37px;
}
