/**
 * Styles pour la section Diagnostic & Roadmap
 * Design moderne et créatif avec effet liquid glass
 */

/* ============================================
   DIAGNOSTIC SECTION
   ============================================ */

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

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

/* Label */
.diagnostic-label {
	display: inline-block;
	background: rgba(74, 158, 255, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #4A9EFF;
	padding: 0.6rem 1.5rem;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	font-family: 'Montserrat', sans-serif;
	border: 1px solid rgba(74, 158, 255, 0.3);
}

/* Titre */
.diagnostic-title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(2.2rem, 4.5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1rem;
	color: #ffffff;
	letter-spacing: -0.02em;
}

/* Accroche */
.diagnostic-accroche {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	font-weight: 500;
	font-style: italic;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 2rem;
}

/* Intro */
.diagnostic-intro {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	max-width: 800px;
	margin: 0 auto;
}

.diagnostic-intro strong {
	color: #4A9EFF;
	font-weight: 700;
}

/* Blocs Analyse & Résultats */
.diagnostic-block {
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 2.5rem;
	height: 100%;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.diagnostic-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #4A9EFF, #357ABD, transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.diagnostic-block:hover::before {
	opacity: 1;
}

.diagnostic-block:hover {
	transform: translateY(-5px);
	border-color: rgba(74, 158, 255, 0.3);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Titre du bloc */
.diagnostic-block-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.diagnostic-block-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(74, 158, 255, 0.3);
}

.diagnostic-block-icon i {
	font-size: 1.3rem;
	color: #4A9EFF;
}

/* Items d'analyse */
.diagnostic-items {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.diagnostic-item {
	display: flex;
	gap: 1rem;
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.3s ease;
}

.diagnostic-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
	transform: translateX(5px);
}

.diagnostic-item-icon {
	width: 45px;
	height: 45px;
	min-width: 45px;
	background: rgba(74, 158, 255, 0.15);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.diagnostic-item-icon i {
	font-size: 1.2rem;
	color: #4A9EFF;
}

.diagnostic-item-content h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.4rem;
}

.diagnostic-item-content p {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

/* Liste des résultats */
.diagnostic-results-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.diagnostic-results-list li {
	display: flex;
	gap: 1rem;
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.3s ease;
	align-items: flex-start;
}

.diagnostic-results-list li:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
	transform: translateX(5px);
}

.result-number {
	width: 32px;
	height: 32px;
	min-width: 32px;
	background: linear-gradient(135deg, #4A9EFF, #357ABD);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	color: #ffffff;
}

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

.result-text strong {
	color: #ffffff;
	font-weight: 700;
}

.result-detail {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	font-style: italic;
}

/* Highlight des pertes de CA */
.diagnostic-highlight {
	margin-top: 1.5rem;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(135deg, rgba(255, 179, 71, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
	border: 1px solid rgba(255, 179, 71, 0.4);
	border-radius: 12px;
}

.diagnostic-highlight p {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.6;
	color: #FFB347;
	margin: 0;
}

/* Engagement fort */
.diagnostic-engagement {
	background: linear-gradient(135deg, rgba(74, 158, 255, 0.12) 0%, rgba(53, 122, 189, 0.08) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 2px solid rgba(74, 158, 255, 0.3);
	border-radius: 24px;
	padding: 2.5rem 3rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	position: relative;
	overflow: hidden;
}

.diagnostic-engagement::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(74, 158, 255, 0.15) 0%, transparent 70%);
	border-radius: 50%;
}

.engagement-badge {
	width: 80px;
	height: 80px;
	min-width: 80px;
	background: linear-gradient(135deg, #4A9EFF, #357ABD);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(74, 158, 255, 0.4);
	position: relative;
	z-index: 1;
}

.engagement-badge i {
	font-size: 2rem;
	color: #ffffff;
}

.engagement-content {
	flex: 1;
	position: relative;
	z-index: 1;
}

.engagement-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: #4A9EFF;
	margin-bottom: 0.5rem;
}

.engagement-text {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.engagement-text strong {
	color: #ffffff;
	font-weight: 700;
}

/* Bouton CTA */
.btn-diagnostic-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, #4A9EFF 0%, #357ABD 100%);
	border: none;
	padding: 1.1rem 2.5rem;
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(74, 158, 255, 0.4);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.btn-diagnostic-cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn-diagnostic-cta:hover::before {
	width: 400px;
	height: 400px;
}

.btn-diagnostic-cta:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 40px rgba(74, 158, 255, 0.5);
	color: #ffffff;
}

.btn-diagnostic-cta i {
	font-size: 1.1rem;
	transition: transform 0.3s ease;
}

.btn-diagnostic-cta:hover i {
	transform: translateX(5px);
}

.btn-diagnostic-cta:focus,
.btn-diagnostic-cta:focus-visible {
	outline: none !important;
	box-shadow: 0 10px 30px rgba(74, 158, 255, 0.4) !important;
}

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

	.diagnostic-block {
		margin-bottom: 2rem;
		padding: 2rem;
	}

	.diagnostic-engagement {
		flex-direction: column;
		text-align: center;
		padding: 2rem;
	}

	.engagement-badge {
		width: 70px;
		height: 70px;
		min-width: 70px;
	}

	.engagement-badge i {
		font-size: 1.75rem;
	}
}

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

	.diagnostic-block {
		padding: 1.5rem;
	}

	.diagnostic-block-title {
		font-size: 1.2rem;
	}

	.diagnostic-item {
		padding: 1rem;
	}

	.diagnostic-item-icon {
		width: 40px;
		height: 40px;
		min-width: 40px;
	}

	.diagnostic-results-list li {
		padding: 1rem;
	}

	.result-number {
		width: 28px;
		height: 28px;
		min-width: 28px;
		font-size: 0.75rem;
	}

	.diagnostic-engagement {
		padding: 1.5rem;
		gap: 1.5rem;
	}

	.engagement-badge {
		width: 60px;
		height: 60px;
		min-width: 60px;
	}

	.engagement-badge i {
		font-size: 1.5rem;
	}

	.btn-diagnostic-cta {
		padding: 1rem 2rem;
		font-size: 1rem;
		width: 100%;
		justify-content: center;
	}
}

