* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Effra', 'Helvetica Neue', Arial, sans-serif;
}

html, body {
	overflow-x: hidden;
	background-color: #f5f5f5;
	color: #333;
	scroll-behavior: smooth;
}

.hero-section {
	background: linear-gradient(135deg, #1a4670 0%, #2a5a8a 50%, #1a4670 100%);
	color: white;
	padding: 100px 20px 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 60%;
	height: 200%;
	background: radial-gradient(circle, rgba(109, 214, 205, 0.1) 0%, transparent 70%);
	animation: float 20s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(5deg); }
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	flex-wrap: wrap;
}

.hero-text {
	flex: 1;
	min-width: 300px;
	text-align: left;
}

.app-logo {
	width: 120px;
	height: 120px;
	margin-bottom: 30px;
}

h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	color: #6DD6CD;
}

.subtitle {
	font-size: 1.6rem;
	margin-bottom: 25px;
	opacity: 0.95;
	font-weight: 500;
}

.description {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 40px;
	opacity: 0.9;
}

.app-preview {
	flex: 0 0 400px;
	max-width: 100%;
	position: relative;
}

.app-preview img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
	position: relative;
	z-index: 2;
}

.app-preview::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120%;
	height: 120%;
	background: radial-gradient(circle at center, rgba(109, 214, 205, 0.15) 0%, transparent 60%);
	z-index: 1;
}

.download-section {
	background: white;
	padding: 60px 20px;
}

.download-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 40px;
	color: #02264A;
}

.download-container {
	max-width: 900px;
	margin: 0 auto;
}

.platform-group {
	margin-bottom: 40px;
}

.platform-label {
	font-size: 1.2rem;
	font-weight: 600;
	color: #02264A;
	margin-bottom: 20px;
	padding-left: 10px;
	border-left: 4px solid #6DD6CD;
}

.download-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.download-card {
	background: #f8f9fa;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease;
}

.download-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	border-color: #6DD6CD;
}

.platform-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: #02264A;
}

.platform-name {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #02264A;
}

.download-btn {
	display: inline-block;
	background-color: #6DD6CD;
	color: white;
	padding: 12px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.download-btn:hover {
	background-color: #5BC4BB;
	transform: scale(1.05);
}

.download-btn.disabled {
	background-color: #ccc;
	cursor: not-allowed;
	pointer-events: none;
}

.features-section {
	background: #02264A;
	color: white;
	padding: 60px 20px;
}

.features-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 40px;
	color: #6DD6CD;
}

.features-list {
	max-width: 800px;
	margin: 0 auto;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	padding-left: 40px;
	position: relative;
}

.feature-item::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 0;
	width: 25px;
	height: 25px;
	background: #6DD6CD;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-text {
	font-size: 1.1rem;
	line-height: 1.6;
	opacity: 0.9;
}

.contact-section {
	background: white;
	padding: 60px 20px;
	text-align: center;
}

.contact-title {
	font-size: 1.8rem;
	margin-bottom: 30px;
	color: #02264A;
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.contact-item {
	color: #666;
	font-size: 1rem;
	text-decoration: none;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-item:hover {
	color: #6DD6CD;
}

.contact-item i {
	color: #6DD6CD;
}

.legal-section {
	background: white;
	padding: 80px 20px;
	min-height: 100vh;
}

.legal-content {
	max-width: 800px;
	margin: 0 auto;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #2a5a8a;
	text-decoration: none;
	margin-bottom: 30px;
	transition: all 0.3s ease;
}

.back-link:hover {
	color: #6DD6CD;
	transform: translateX(-5px);
}

.legal-title {
	font-size: 2.5rem;
	color: #02264A;
	margin-bottom: 40px;
}

.legal-section-title {
	font-size: 1.4rem;
	color: #02264A;
	margin: 30px 0 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #6DD6CD;
}

.legal-text {
	line-height: 1.6;
	color: #555;
	margin-bottom: 15px;
}

.legal-list {
	list-style: none;
	padding-left: 20px;
	margin: 15px 0;
}

.legal-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
	color: #555;
}

.legal-list li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: #6DD6CD;
}

.footer {
	background: #02264A;
	color: white;
	padding: 30px 20px;
	text-align: center;
	border-top: 1px solid rgba(109, 214, 205, 0.2);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-links {
	margin-bottom: 15px;
}

.footer-copyright {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

.footer-copyright a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-copyright a:hover {
	color: #6DD6CD;
}

.footer-copyright .separator {
	color: rgba(255, 255, 255, 0.3);
}


@media (max-width: 1200px) {
	.hero-section {
		background: #2a5a8a;
	}
	
	.hero-section::before {
		width: 80%;
		height: 150%;
		top: -25%;
		right: -20%;
		background: radial-gradient(circle, rgba(109, 214, 205, 0.05) 0%, transparent 50%);
		/* Opacité réduite de 0.1 à 0.05 et dégradé plus court */
	}
	
	.app-preview::before {
		background: radial-gradient(circle at center, rgba(109, 214, 205, 0.08) 0%, transparent 40%);
		/* Opacité réduite de 0.15 à 0.08 */
	}
}

@media (max-width: 768px) {
	.hero-section::before {
		background: radial-gradient(circle, rgba(109, 214, 205, 0.03) 0%, transparent 40%);
		/* Très subtil sur mobile */
	}
	
	.app-preview::before {
		display: none; /* On retire le halo de l'image sur mobile */
	}

	h1 {
		font-size: 2rem;
	}
	
	.subtitle {
		font-size: 1.4rem;
	}
	
	.hero-content {
		text-align: center;
	}
	
	.hero-text {
		text-align: center;
	}
	
	.app-preview {
		flex: 1 1 100%;
	}
	
	.download-grid {
		grid-template-columns: 1fr;
	}
	
	.contact-info {
		flex-direction: column;
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.subtitle {
		font-size: 1.3rem;
	}
}