.nav-tabs-wrap .nav-link.active .icon img,
.nav-tabs-wrap .nav-link:hover .icon img {
    filter: brightness(0) invert(1);
}

.dirigeant-card__icon img {
    filter: brightness(0) invert(1);
    max-width: 70%;
}

:root,
.primary-2 {
	--agex-primary: #e71b02;
	--agex-primary-rgb: 231, 27, 2;
	--Sub-color-2: color-mix(in srgb, var(--agex-primary) 10%, white);
}

@keyframes phone-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(var(--agex-primary-rgb), 0.55); }
	60%  { box-shadow: 0 0 0 14px rgba(var(--agex-primary-rgb), 0); }
	100% { box-shadow: 0 0 0 0 rgba(var(--agex-primary-rgb), 0); }
}

@keyframes phone-ring {
	0%   { transform: translate(0, -50%) rotate(0deg); }
	10%  { transform: translate(0, -50%) rotate(-12deg); }
	20%  { transform: translate(0, -50%) rotate(12deg); }
	30%  { transform: translate(0, -50%) rotate(-10deg); }
	40%  { transform: translate(0, -50%) rotate(10deg); }
	50%  { transform: translate(0, -50%) rotate(0deg); }
	100% { transform: translate(0, -50%) rotate(0deg); }
}

.site-wrapper {
	overflow-x: clip;
}

/* Fix: contenant les tab-panes positionnés en absolute */
.flat-animate-tab {
	position: relative;
}

.site-logo img {
	min-width: 180px;
}

.nav-mb-item.d-xl-none .mb-menu-link {
	text-transform: uppercase;
}

.main-menu .navigation > li > a {
    font-weight: 700;
    color: #000 !important;
    font-size: 16px;
    letter-spacing: 0.02em;
}

@media (max-width: 1500px) {
	.main-menu .navigation > li > a {
		font-size: 15px;
	}
}

@media (max-width: 1400px) {
	.main-menu .navigation {
		gap: 19px;
	}

	.main-menu .navigation > li > a {
		font-size: 13px;
	}
}

.phone-theme-btn.phone-bt-support-now {
        background: var(--agex-primary) !important;
        background: -moz-linear-gradient(45deg, var(--agex-primary) 8%, color-mix(in srgb, var(--agex-primary) 70%, white) 100%) !important;
        background: -webkit-linear-gradient(45deg, var(--agex-primary) 8%, color-mix(in srgb, var(--agex-primary) 70%, white) 100%) !important;
        background: linear-gradient(45deg, var(--agex-primary) 8%, color-mix(in srgb, var(--agex-primary) 70%, white) 100%) !important;
        bottom: 90px !important;
        animation: phone-pulse 2.4s ease-out infinite;
}

.phone-theme-btn.phone-bt-support-now svg {
        animation: phone-ring 2.4s ease-in-out infinite;
        transform-origin: top center;
}

.phone-theme-btn {
	background-color: #fff;
	border-radius: 40px;
	position: fixed;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 50px;
	height: 50px;
	min-width: 50px;
	z-index: 99999;
	color: #fff;
	text-align: center;
	overflow: hidden;
	transition: width 0.3s ease;
	cursor: pointer;
	padding: 0 20px;
}

.phone-theme-btn svg {
	fill: #fff;
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0, -50%);
	transition: transform 0.3s ease;
}

.phone-theme-btn svg path {
	fill: #fff;
}

.phone-theme-btn span {
	white-space: nowrap;
	font-size: 16px;
	opacity: 0;
	margin-left: 10px;
	transform: translateX(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	text-transform: uppercase;
	pointer-events: none;
	color: #fff;
}

.phone-theme-btn:hover {
        width: 180px;
        padding: 0 10px;
}


.phone-theme-btn:hover span {
	opacity: 1;
	transform: translateX(0);
}

/* ============================= */
/* WRAPPER GÉNÉRAL */
/* ============================= */

.header-top {
	width: 100%;
	position: relative;
	z-index: 1002;
	padding: 10px 0;
	background-color: var(--agex-primary);
}

.header-top > .container-fluid > .d-flex {
	/* Use CSS Grid: ticker (1fr) + menu (auto) -> menu keeps its intrinsic width, ticker adapts */
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 18px;
}

/* Pour les petits écrans, revenir au comportement en colonne (flex) */
@media (max-width: 991px) {
	.header-top > .container-fluid > .d-flex {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}
}

/* Forcer le menu à occuper uniquement l'espace dont il a besoin (override inline style flex-shrink:0) */
.header-top .menu {
	flex: 0 0 auto !important;
	min-width: 0; /* sécurité */
}

/* Le ticker/zone d'actualite prendra l'espace restant et pourra se réduire */
.header-top .container-actualite-defilante {
	flex: 1 1 0%;
	min-width: 0; /* permet au flex child de réduire au besoin */
	overflow: hidden;
}

/* S'assure que le wrapper du ticker masque le débordement */
.header-top .container-actualite-defilante .wrapper,
.header-top .container-actualite-defilante .ticker {
	overflow: hidden;
	max-width: 100%;
	display: flex;
	align-items: center;
}
.header-top .container-actualite-defilante .ticker p {
	color: #fff;
}

/* Empêcher le menu de casser la mise en page : autoriser un scroll horizontal si trop d'items */
.header-top .menu ul {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	align-items: center;
	max-width: 100%;
	overflow-x: visible;
	-webkit-overflow-scrolling: touch;
	/* Masquer les barres de défilement sur tous les navigateurs */
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE et Edge */
}

/* Masquer la scrollbar sur Chrome/Safari/Opera */
.header-top .menu ul::-webkit-scrollbar {
	display: none;
}

/* Rendre le texte du ticker lisible et tronqué s'il manque de place */
.header-top .container-actualite-defilante .ticker__item p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0;
}

/* ============================= */
/* MENU PRINCIPAL */
/* ============================= */

.header-top .menu > ul {
	display: flex;
	gap: 20px;
}

.header-top .menu > ul > li {
	position: relative;
}

.header-top .menu > ul > li > a {
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	white-space: nowrap;
	color: white !important;
	font-size: 15px;
}

.header-top .menu > ul > li > a:hover {
	color: rgba(255, 255, 255, 0.75) !important;
}

/* ============================= */
/* SOUS-MENU */
/* ============================= */

.header-top .menu .menu-subs {
	position: absolute;
	top: 100%;
	transform: translateY(20%);
	left: 0;
	background-color: white;
	flex-direction: column;
	min-width: 215px;
	padding: 10px 0;
	z-index: -1;
	pointer-events: none;
	opacity: 0;
	gap: 0;
	transition: all 0.3s ease;
	display: flex;
	border-radius: 10px;
	border-top: 4px solid var(--agex-secondary);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-top .menu .menu-subs.right {
	left: auto;
	right: 0;
}

.header-top .menu .menu-subs li {
	width: 100%;
}

.header-top .menu .menu-subs a {
	display: block;
	padding: 8px 16px;
	text-decoration: none;
	white-space: nowrap;
	color: black;
	transition: all 0.3s ease;
}

.header-top .menu .menu-subs a:hover {
	transform: translateX(5px);
	color: var(--agex-secondary);
}

/* ============================= */
/* AFFICHAGE AU HOVER */
/* ============================= */
.header-top .menu .menu-item-has-children:hover > .menu-subs {
	opacity: 1;
	transform: translateY(0);
	z-index: 1000;
	pointer-events: auto;
}
/* ============================= */
/* EXPERTISE CARDS               */
/* ============================= */

.section-service .tf-box-icon {
	display: block;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.3s ease;
	padding: 20px;
	border-radius: 20px;
}

.section-service .tf-box-icon:hover {
	background-color: var(--agex-primary) !important;
	transform: translateY(-6px);
}

.section-service .tf-box-icon:hover h5,
.section-service .tf-box-icon:hover p,
.section-service .tf-box-icon:hover .icon {
	color: #fff !important;
}

.section-service .swiper-wrapper {
	padding-top: 10px;
}

#header-main {
	margin-top: 20px;
}

.partner {
	margin-top: 60px;
	margin-bottom: 60px;
}

.bandCreateur__content__block.first span, .bandCreateur__content__block.first h2, .bandCreateur__content__block.third .cta, .bandCreateur__content__block.second p {
	color: white !important;
}

/* Page expertise — cards */
.expertise-card-link { text-decoration: none; color: inherit; }
.expertise-card {
	position: relative;
	padding: 36px 28px 28px;
	border: 1px solid var(--Border, #dee3ee);
	border-top: 3px solid var(--agex-primary, #0075ff);
	border-radius: 4px;
	background: #fff;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	display: flex;
	flex-direction: column;
}
.expertise-card:hover {
	box-shadow: 0 12px 40px rgba(0, 117, 255, 0.12);
	transform: translateY(-4px);
}
.expertise-card .icon {
	font-size: 40px;
	color: var(--agex-primary, #0075ff);
	line-height: 1;
}
.expertise-card p { flex: 1; }
.expertise-card__num {
	position: absolute;
	top: 14px;
	right: 20px;
	font-size: 13px;
	font-weight: 700;
	color: var(--agex-primary, #0075ff);
	opacity: 0.5;
	letter-spacing: 0.05em;
}
.expertise-card__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--Border, #dee3ee);
	color: var(--agex-primary, #0075ff);
	font-size: 14px;
	transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.expertise-card:hover .expertise-card__arrow {
	background: var(--agex-primary, #0075ff);
	border-color: var(--agex-primary, #0075ff);
	color: #fff;
}

/* ============================= */
/* EXPERTISE LAYOUT — SIDEBAR    */
/* ============================= */

.expertise-layout {
	padding-top: 60px;
	padding-bottom: 80px;
}

.sidebar-widget {
	background: #f8f9fc;
	border-radius: 8px;
	padding: 28px 24px;
	border-top: 3px solid var(--agex-primary, #0075ff);
}

.sidebar-widget__title {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #111;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--Border, #dee3ee);
}

.sidebar-expertise-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-expertise-list li a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 0;
	text-decoration: none;
	color: #444;
	font-size: 18px;
	border-bottom: 1px solid var(--Border, #dee3ee);
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.sidebar-expertise-list li:last-child a {
	border-bottom: none;
}

.sidebar-expertise-list li a:hover,
.sidebar-expertise-list li.active a {
	color: var(--agex-primary, #0075ff);
	padding-left: 4px;
}

.sidebar-expertise-list li.active a {
	font-weight: 600;
}

.form-sidebar fieldset {
	margin-bottom: 14px;
}

.form-sidebar fieldset label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #555;
	margin-bottom: 6px;
}

.form-sidebar fieldset input,
.form-sidebar fieldset textarea,
.form-sidebar fieldset select {
	width: 100%;
	font-size: 14px !important;
}

fieldset select {
	height: 48px !important;
	border-radius: 12px !important;
	border: 1px solid var(--Mono-gray-3) !important;
	font-size: 14px !important;

}


fieldset textarea {
	min-height: 100px !important;
	resize: vertical !important;
	border-radius: 12px !important;
	border: 1px solid var(--Mono-gray-3) !important;
	font-size: 14px !important;
}

.sidebar-widget .form-contact {
	padding: 0;
	background-color: transparent;
	gap: 10px;
}

/* ── Sticky sidebar – pages expertise ── */
@media (min-width: 992px) {
	.sidebar-sticky {
		position: sticky;
		top: 90px;
	}
}

/* ── Section contacts CTA – tint couleur primaire ── */
.section-choices .cta {
	background-color: color-mix(in srgb, var(--agex-primary, #e71b02) 8%, white);
}

/* ── Page Contact – info cards ── */
.contact-info-card {
	background: #fff;
	border-radius: 20px;
	border: 1px solid var(--Mono-gray-2, #e8ecf0);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
	padding: 36px 32px 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

/* Barre d'accent en haut, animée au hover */
.contact-info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--agex-primary, #e71b02);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.35s ease;
	border-radius: 20px 20px 0 0;
}

/* Grande icône décorative en arrière-plan via ::after */
.contact-info-card::after {
	font-family: 'Font Awesome 6 Pro';
	font-weight: 900;
	position: absolute;
	right: -8px;
	bottom: -12px;
	font-size: 120px;
	color: var(--agex-primary, #e71b02);
	opacity: 0.06;
	pointer-events: none;
	line-height: 1;
	transition: opacity 0.3s ease, transform 0.35s ease;
}

.contact-info-card--phone::after   { content: "\f095"; }
.contact-info-card--address::after { content: "\f3c5"; bottom: 10px; right: 10px; font-size: 100px; }
.contact-info-card--hours::after   { content: "\f017"; }

/* Badge icône */
.contact-info-card__icon {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	background: color-mix(in srgb, var(--agex-primary, #e71b02) 10%, white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.3s ease;
}

.contact-info-card__icon i {
	font-size: 24px;
	color: var(--agex-primary, #e71b02);
}

/* Contenu texte */
.contact-info-card__label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--agex-primary, #e71b02);
	margin-bottom: 6px;
}

.contact-info-card__value {
	font-size: 17px;
	font-weight: 600;
	color: var(--Color-dark, #000);
	line-height: 1.5;
	text-decoration: none;
	display: block;
}

a.contact-info-card__value:hover {
	color: var(--agex-primary, #e71b02);
}

.contact-info-card__phone {
	display: inline-block;
	margin-top: 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--agex-primary, #e71b02);
	text-decoration: none;
}
.contact-info-card__phone:hover {
	text-decoration: underline;
}

/* Hover de la card */
.contact-info-card:hover {
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
	transform: translateY(-5px);
	border-color: color-mix(in srgb, var(--agex-primary, #e71b02) 25%, white);
}

.contact-info-card:hover::before {
	transform: scaleX(1);
}

.contact-info-card:hover::after {
	opacity: 0.10;
	transform: scale(1.08) rotate(-5deg);
}

.contact-info-card:hover .contact-info-card__icon {
	background: color-mix(in srgb, var(--agex-primary, #e71b02) 16%, white);
}

/* ── Page Contact – image formulaire ── */
.contact-form-section__img {
	border-radius: 24px;
	overflow: hidden;
	height: 100%;
	min-height: 420px;
}

.contact-form-section__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 991px) {
	.contact-form-section__img {
		min-height: 320px;
	}
}

/* ===== Cards dirigeant ===== */
.dirigeant-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: color-mix(in srgb, var(--agex-primary, #e71b02) 10%, white);
    border-radius: 16px;
    padding: 18px 16px;
    height: 100%;
}
.dirigeant-card__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--agex-primary, #e71b02);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.dirigeant-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 4px;
}
.dirigeant-card__desc {
    font-size: 13px;
    color: #0a0a0a;
    line-height: 1.5;
    margin: 0;
}

/* ===== Pictos tf-box-icon style-7 en rouge dès le départ ===== */
.expertise-layout .tf-box-icon.style-7 svg path[stroke],
.expertise-layout .tf-box-icon.style-7 svg path[stroke="#000000"] {
    stroke: var(--agex-primary, #e71b02);
}
.expertise-layout .tf-box-icon.style-7 svg path[fill="black"] {
    fill: var(--agex-primary, #e71b02);
}

/* ===== List-check pages expertise ===== */
.expertise-checklist {
    display: grid;
    gap: 14px;
    margin-bottom: 0;
}
.expertise-checklist i {
    height: 32px;
    width: 32px;
    min-width: 32px;
    font-size: 16px;
    color: var(--agex-primary, #e71b02);
    background-color: color-mix(in srgb, var(--agex-primary, #e71b02) 12%, white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

/* ===== List-check hors box-choose ===== */
.text-with-img-2 .list-check {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}
.text-with-img-2 .list-check i {
    height: 32px;
    width: 32px;
    font-size: 16px;
    color: var(--agex-primary, #e71b02);
    background-color: color-mix(in srgb, var(--agex-primary, #e71b02) 12%, white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    flex-shrink: 0;
}

/* ===== Image avec cartes flottantes ===== */
.img-float-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.img-float-main {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    position: relative;
    z-index: 1;
}
.img-float-accent {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--Sub-color-2, rgba(231,27,2,0.08));
    bottom: -30px;
    right: -30px;
    z-index: 0;
    animation: accent-morph 6s ease-in-out infinite;
}
@keyframes accent-morph {
    0%, 100% { border-radius: 50%; transform: scale(1) rotate(0deg); }
    33%       { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; transform: scale(1.08) rotate(6deg); }
    66%       { border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%; transform: scale(0.95) rotate(-4deg); }
}

/* ===== Section équipe ===== */
.section-team {
    background-color: #f8f8f8;
}
.team-swiper-wrap {
    position: relative;
    padding: 16px 50px 32px;
}
.team-swiper-wrap .swiper {
    overflow: visible;
}
@media (min-width: 992px) {
    .team-swiper-wrap .swiper-wrapper {
        justify-content: center;
    }
}
.team-card {
    background: #fff;
    overflow: hidden;
    border-radius: 16px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.team-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transform: translateY(-6px);
}
.team-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: 16px 16px 0 0;
}
.team-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.team-card:hover .team-card__img-wrap img {
    transform: scale(1.06);
}
.team-card__body {
    padding: 22px 24px 26px;
    border-top: 3px solid transparent;
    transition: border-color 0.3s;
}
.team-card:hover .team-card__body {
    border-top-color: var(--agex-primary, #e71b02);
}
.team-card__name {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.team-card__role {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--agex-primary, #e71b02);
    font-weight: 600;
    margin-bottom: 12px;
}
.team-card__desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}
.team-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    color: #0a0a0a;
    font-size: 14px;
}
.team-swiper-btn:hover {
    background: var(--agex-primary, #e71b02);
    color: #fff;
    border-color: var(--agex-primary, #e71b02);
}
.team-swiper-prev { left: 0; }
.team-swiper-next { right: 0; }
.team-swiper-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.team-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: #d0d0d0;
    opacity: 1;
    transition: background 0.35s ease, width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.team-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--agex-primary, #e71b02);
    width: 32px;
    transform: scaleY(1.2);
}

agex_simulateur #agex_simulateur #agex_simulateur_liste {
	margin-top: 300px !important;
}

#agex_simulateur_liste > p {
	color: white;
}

/* Double image — section about cabinet */
.cabinet-img-wrap {
    position: relative;
    flex-shrink: 0;
}

.cabinet-img-main {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cabinet-img-main {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
}

.cabinet-img-secondary {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 55%;
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    border: 5px solid #fff;
    overflow: hidden;
    animation: cabinet-float 4s ease-in-out infinite;
    z-index: 2;
}

.cabinet-img-secondary img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@keyframes cabinet-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

@media (max-width: 992px) {
    .cabinet-img-secondary {
        width: 50%;
    }
}

@media (max-width: 574px) {
    .cabinet-img-secondary {
        display: none;
    }
}

/* Key points list — section about cabinet */
.key-points-list {
    list-style: none;
    padding: 0;
    margin: 0 0 31px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.key-point-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 8px;
    background: var(--Sub-color-1, color-mix(in srgb, #e71b02 8%, white));
    transition: background 0.25s ease, transform 0.25s ease;
}

.key-point-item:hover {
    background: var(--Sub-color-2, color-mix(in srgb, #e71b02 10%, white));
    transform: translateX(4px);
}

.key-point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--agex-primary, #e71b02);
    color: #fff;
    font-size: 13px;
}

.key-point-item .text-body-1 {
    font-weight: 500;
}

agex_simulateur #agex_simulateur_liste > p {
	color: white !important;
}

.expertise-card .icon img {
    max-width: 100px;
}

.cabinet-img-secondary {
    background-color: #fff;
}

.team-swiper .swiper-slide {
    height: auto;
}

.team-swiper .team-card {
    height: 100%;
}

/* Espace autour du widget helpers firms positionné en absolute entre les deux sections */
.section-team.tf-spacing-7 {
    padding-bottom: 200px;
}

.section-about.tf-spacing-19 {
    padding-top: 240px;
}

/* Tableau comparatif LMNP (location nue vs meublée) */
.lmnp-compare {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	box-shadow: 0 0 0 1px rgba(var(--agex-primary-rgb), 0.15), 0 6px 18px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
}

.lmnp-compare thead th {
	background-color: var(--agex-primary);
	color: #fff;
	font-weight: 600;
	padding: 14px 18px;
	text-align: left;
	font-size: 15px;
}

/* Arrondi porté par les cellules d'angle pour éviter que le border-radius ne rogne les bordures */
.lmnp-compare thead th:first-child {
	border-top-left-radius: 8px;
}

.lmnp-compare thead th:last-child {
	border-top-right-radius: 8px;
}

.lmnp-compare tbody tr:last-child td:first-child {
	border-bottom-left-radius: 8px;
}

.lmnp-compare tbody tr:last-child td:last-child {
	border-bottom-right-radius: 8px;
}

.lmnp-compare tbody td {
	padding: 13px 18px;
	border-top: 1px solid rgba(var(--agex-primary-rgb), 0.12);
	vertical-align: top;
	font-size: 15px;
}

.lmnp-compare tbody td:first-child {
	font-weight: 600;
}

.lmnp-compare tbody tr:nth-child(even) {
	background-color: color-mix(in srgb, var(--agex-primary) 4%, white);
}

/* ------------------------------------------------------------------
   Bande CTA contact - page d'accueil
   Le theme code en dur un fond bleute (#f0f0ff) sur .section-choices .cta :
   on le realigne sur la couleur de marque, sans toucher la page Pilotage.
------------------------------------------------------------------ */
.home-cta-contact .cta {
	background-color: color-mix(in srgb, var(--agex-primary) 6%, white);
	align-items: center;
	gap: 40px;
}

.home-cta-contact .cta .left {
	max-width: 560px;
}

.home-cta-contact .cta .right {
	max-width: 430px;
}

.home-cta-contact .cta .list i {
	color: var(--agex-primary);
	font-size: 24px;
	flex: 0 0 auto;
}

@media (max-width: 991px) {
	.home-cta-contact .cta {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.home-cta-contact .cta .left,
	.home-cta-contact .cta .right {
		max-width: 100%;
	}
}

/* ------------------------------------------------------------------
   FAQ "Vos questions" - page d'accueil
   Le theme applique .h5 (32px) aux intitules d'accordeon : trop lourd
   pour des questions longues. On reduit uniquement sur cette section.
------------------------------------------------------------------ */
#questions .accordion-item .title {
	font-size: 24px;
	line-height: 32px;
}

@media (max-width: 767px) {
	#questions .accordion-item .title {
		font-size: 19px;
		line-height: 27px;
	}
}
