/**
 * Styles pour la section Leviers d'action
 * Design moderne avec effet liquid glass - continuité du style
 */

/* ============================================
   LEVIERS SECTION
   ============================================ */

.leviers-section {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
	background: transparent;
}

.leviers-section .container {
	position: relative;
	z-index: 2;
}

/* Label */
.leviers-label {
	display: inline-block;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #ffffff;
	padding: 0.5rem 1.25rem;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 2rem;
	font-family: 'Montserrat', sans-serif;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Titre principal */
.leviers-title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: #ffffff;
}

/* Introduction */
.leviers-intro {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.1rem, 1.5vw, 1.25rem);
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
}

.leviers-intro strong {
	color: #ffffff;
	font-weight: 700;
}

/* Cartes des leviers */
.levier-card {
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 2rem;
	height: 100%;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.levier-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.6s ease;
}

.levier-card:hover::before {
	left: 100%;
}

.levier-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 255, 255, 0.3);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 0.1);
}

/* Header de la carte */
.levier-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.levier-number {
	font-family: 'Montserrat', sans-serif;
	font-size: 3rem;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.15);
	line-height: 1;
}

.levier-icon {
	width: 55px;
	height: 55px;
	background: rgba(74, 158, 255, 0.2);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(74, 158, 255, 0.3);
}

.levier-card:hover .levier-icon {
	background: rgba(74, 158, 255, 0.35);
	transform: scale(1.1);
	box-shadow: 0 0 25px rgba(74, 158, 255, 0.4);
}

.levier-icon i {
	font-size: 1.5rem;
	color: #4A9EFF;
}

/* Titre du levier */
.levier-title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.1rem, 1.4vw, 1.25rem);
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

/* Hook accrocheur */
.levier-hook {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: #4A9EFF;
	margin-bottom: 1.25rem;
	line-height: 1.5;
}

/* Liste des items */
.levier-items {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
}

.levier-items li {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
	position: relative;
}

.levier-items li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #4A9EFF;
	font-weight: bold;
	font-size: 1.2rem;
}

/* Objectif */
.levier-objective {
	background: rgba(74, 158, 255, 0.1);
	border: 1px solid rgba(74, 158, 255, 0.25);
	border-radius: 12px;
	padding: 1rem 1.25rem;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: auto;
}

.levier-objective-icon {
	font-size: 1.1rem;
	flex-shrink: 0;
}

.levier-objective-text {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
}

.levier-objective-text strong {
	color: #4A9EFF;
	font-weight: 700;
}

/* Bénéfices business */
.levier-benefits {
	background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(0, 180, 140, 0.08) 100%);
	border: 1px solid rgba(0, 212, 170, 0.3);
	border-radius: 12px;
	padding: 1.25rem;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.levier-benefit-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	color: #00D4AA;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.25rem;
}

.levier-benefit {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 500;
}

/* Responsive */
@media (max-width: 991.98px) {
	.leviers-section {
		padding: 80px 0;
	}

	.leviers-title {
		text-align: center;
	}

	.leviers-intro {
		text-align: center;
	}

	.levier-card {
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 575.98px) {
	.leviers-section {
		padding: 60px 0;
	}

	.leviers-label {
		display: block;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		width: fit-content;
	}

	.levier-card {
		padding: 1.5rem;
	}

	.levier-number {
		font-size: 2.5rem;
	}

	.levier-icon {
		width: 45px;
		height: 45px;
	}

	.levier-icon i {
		font-size: 1.25rem;
	}
}

