/* Styles modernes pour la page d'accueil */
.hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 2rem 0;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	margin-bottom: 1.5rem;
}

.hero-subtitle {
	font-size: 1.3rem;
	font-weight: 300;
	opacity: 0.9;
	margin-bottom: 2rem;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-modern {
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-modern:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-primary-modern {
	background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
	border: none;
	color: white;
}

.btn-outline-modern {
	background: transparent;
	border: 2px solid white;
	color: white;
}

.btn-outline-modern:hover {
	background: white;
	color: #667eea;
}

.content-section {
	padding: 2.5rem 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.card-modern {
	background: rgba(255, 255, 255, 0.95);
	border: none;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	overflow: hidden;
	margin-bottom: 2rem;
}

.card-modern:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff6b6b, #ff8e8e, #667eea);
}

.card-header-modern {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	padding: 1.5rem;
	border-radius: 20px 20px 0 0;
}

.card-body-modern {
	padding: 1.5rem;
}

.feature-item {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 15px;
	padding: 1.2rem;
	margin-bottom: 1rem;
	position: relative;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	min-height: 150px;
}

.feature-item::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	transform: rotate(45deg);
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 0.75rem;
	display: block;
}

.feature-title {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.testimonial-card {
	background: white;
	border-radius: 15px;
	padding: 1.2rem;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	height: 100%;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-text {
	font-style: italic;
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 1rem;
}

.testimonial-author {
	font-weight: 700;
	color: #667eea;
}

.cta-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 2rem;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.cta-content {
	position: relative;
	z-index: 2;
}

.cta-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-subtitle {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.btn-light-modern {
	background: white;
	color: #667eea;
	border: none;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-light-modern:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
	color: #667eea;
}

.btn-outline-light-modern {
	background: transparent;
	border: 2px solid white;
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.btn-outline-light-modern:hover {
	background: white;
	color: #667eea;
	transform: translateY(-3px);
}

.floating-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
}

.floating-element {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(180deg); }
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 3rem;
	background: linear-gradient(45deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.highlight-text {
	background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

/* Styles pour les points de douleur */
.pain-point-item {
	background: white;
	border-radius: 15px;
	padding: 1rem;
	margin-bottom: 0.75rem;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	border-left: 4px solid #667eea;
	height: 100%;
}

.pain-point-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pain-point-title {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #333;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.pain-point-title i {
	font-size: 1.3rem;
}

.pain-point-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0.5rem;
}

.pain-point-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.3rem;
	color: #666;
	font-size: 0.95rem;
	line-height: 1.3;
}

.pain-point-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #667eea;
	font-weight: bold;
	font-size: 1.2rem;
}

.solution-box {
	background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
	border: 1px solid #c3e6cb;
	border-radius: 10px;
	padding: 0.6rem;
	margin-top: 0.5rem;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.solution-box i {
	font-size: 1.2rem;
	margin-top: 0.1rem;
	flex-shrink: 0;
}

.solution-box strong {
	color: #155724;
	font-size: 0.95rem;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn-modern {
		width: 100%;
		max-width: 300px;
	}

	.pain-point-item {
		margin-bottom: 1rem;
	}

	.pain-point-title {
		font-size: 1rem;
	}

	.solution-box {
		padding: 0.75rem;
	}
}