:root {
	--gold: #D4AF37;
	--gold-light: #F9EFC7;
	--gold-dark: #9E7C25;
	--purple: #5C2A9D;
	--purple-light: #8A4FD0;
	--dark: #1A1A1A;
	--dark-light: #2D2D2D;
	--light: #FAFAFA;
	--text: #333333;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--light);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
	0% { background-position: -1000px 0; }
	100% { background-position: 1000px 0; }
}

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

.shimmer {
	background: linear-gradient(to right, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.4) 20%, rgba(212, 175, 55, 0.1) 40%);
	background-size: 1000px 100%;
	animation: shimmer 3s infinite linear;
}

.float-animation {
	animation: float 6s ease-in-out infinite;
}

.header {
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
	color: white;
	padding: 20px 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo {
	display: flex;
	align-items: center;
	color: var(--gold);
	text-decoration: none;
	font-size: 28px;
	font-weight: 700;
}

.logo img {
	height: 40px;
	margin-right: 10px;
	fill: var(--gold);
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 30px;
}

.nav-links a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
}

.nav-links a:hover {
	color: var(--gold);
}

.cta-btn {
	background: linear-gradient(45deg, var(--gold-dark) 0%, var(--gold) 100%);
	color: white;
	padding: 12px 25px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.hero {
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.8) 100%), url('/images/hero-background.svg') center/cover;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('/images/hero-before.svg') center/30px repeat;
	opacity: 0.05;
	pointer-events: none;
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.hero-text {
	flex-basis: 50%;
	animation: fadeIn 1s ease-out;
}

.hero-text h1 {
	font-size: 48px;
	margin-bottom: 20px;
	color: white;
	line-height: 1.2;
	position: relative;
}

.highlight {
	color: var(--gold);
	position: relative;
	display: inline-block;
}

.highlight::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 10px;
	width: 100%;
	background-color: rgba(212, 175, 55, 0.2);
	z-index: -1;
}

.hero-text p {
	font-size: 18px;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.9);
	max-width: 500px;
}

.hero-image {
	flex-basis: 45%;
	position: relative;
	animation: float 6s ease-in-out infinite;
}

.hero-image img {
	max-width: 100%;
	border-radius: 5px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.features {
	padding: 100px 50px;
	background-color: white;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 36px;
	margin-bottom: 15px;
	color: var(--dark);
	position: relative;
	display: inline-block;
}

.section-title h2::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 3px;
	background: linear-gradient(to right, var(--gold-dark), var(--gold));
}

.section-title p {
	font-size: 18px;
	color: var(--text);
	max-width: 700px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.feature-card {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	animation: fadeIn 0.8s;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	margin-bottom: 25px;
	background: linear-gradient(45deg, var(--gold-light) 0%, rgba(212, 175, 55, 0.2) 100%);
}

.feature-icon svg {
	width: 45px;
	height: 45px;
	fill: var(--gold-dark);
}

.feature-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--dark);
}

.feature-card p {
	color: var(--text);
	margin-bottom: 20px;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 0;
	background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
	transition: height 0.5s;
}

.feature-card:hover::before {
	height: 100%;
}

.how-it-works {
	padding: 100px 50px;
	background-color: var(--light);
	position: relative;
	overflow: hidden;
}

.how-it-works::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.steps-container {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	padding: 30px 0;
}

.step-line {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 100%;
	background: linear-gradient(to bottom, var(--gold-light), var(--gold), var(--gold-dark));
	z-index: 1;
}

.step {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 80px;
	position: relative;
	z-index: 2;
}

.step:nth-child(even) {
	flex-direction: row-reverse;
}

.step-content {
	flex-basis: 45%;
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
	animation: fadeIn 1s;
}

.step-content::before {
	content: "";
	position: absolute;
	top: 30px;
	width: 20px;
	height: 20px;
	background: white;
	transform: rotate(45deg);
	z-index: -1;
}

.step:nth-child(odd) .step-content::before {
	right: -10px;
}

.step:nth-child(even) .step-content::before {
	left: -10px;
}

.step-number {
	flex-basis: 10%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(45deg, var(--gold) 0%, var(--gold-dark) 100%);
	color: white;
	font-size: 24px;
	font-weight: 700;
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.step-content h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--dark);
}

.step-content p {
	color: var(--text);
	margin-bottom: 15px;
}

.step-image {
	flex-basis: 40%;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s;
}

.step-image:hover img {
	transform: scale(1.05);
}

.testimonials {
	padding: 100px 50px;
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.testimonials::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('/images/testimonials-background.svg') center/40px repeat;
	opacity: 0.03;
	pointer-events: none;
}

.testimonials .section-title h2 {
	color: white;
}

.testimonials .section-title p {
	color: rgba(255, 255, 255, 0.8);
}

.testimonials-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 30px;
	position: relative;
	transition: all 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.1);
	animation: fadeIn 0.8s;
}

.testimonial-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.08);
}

.testimonial-card::before {
	content: """;
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 120px;
	line-height: 0;
	color: rgba(212, 175, 55, 0.2);
	font-family: Georgia, serif;
}

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

.testimonial-text {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
	border: 2px solid var(--gold);
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h4 {
	font-size: 18px;
	margin-bottom: 5px;
	color: var(--gold);
}

.author-info p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.pricing {
	padding: 100px 50px;
	background-color: white;
}

.pricing-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.pricing-card {
	flex-basis: 300px;
	background: white;
	border-radius: 10px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
	transition: all 0.3s;
	border: 1px solid rgba(0, 0, 0, 0.05);
	animation: fadeIn 0.8s;
}

.pricing-card.popular {
	transform: scale(1.05);
	border: none;
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.pricing-card.popular::before {
	content: "Populaire";
	position: absolute;
	top: 15px;
	right: -25px;
	background: var(--gold);
	color: white;
	font-size: 12px;
	padding: 5px 30px;
	transform: rotate(45deg);
	font-weight: 600;
}

.pricing-card:hover {
	transform: translateY(-10px);
}

.pricing-header {
	margin-bottom: 30px;
}

.pricing-name {
	font-size: 22px;
	margin-bottom: 10px;
	color: var(--dark);
}

.pricing-price {
	font-size: 48px;
	font-weight: 700;
	color: var(--gold-dark);
	margin-bottom: 5px;
	position: relative;
	display: inline-block;
}

.pricing-price::before {
	content: "€";
	position: absolute;
	top: 0;
	left: -15px;
	font-size: 24px;
	color: var(--gold);
}

.pricing-period {
	font-size: 14px;
	color: var(--text);
	opacity: 0.7;
}

.pricing-features {
	margin-bottom: 30px;
	list-style: none;
}

.pricing-features li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	color: var(--text);
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-btn {
	display: inline-block;
	padding: 12px 25px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
}

.pricing-btn.primary {
	background: linear-gradient(45deg, var(--gold-dark) 0%, var(--gold) 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.pricing-btn.secondary {
	border: 2px solid var(--gold);
	color: var(--gold-dark);
}

.pricing-btn:hover {
	transform: translateY(-2px);
}

.pricing-btn.primary:hover {
	box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.faq {
	padding: 100px 50px;
	background-color: var(--light);
	position: relative;
	overflow: hidden;
}

.faq::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
	pointer-events: none;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	animation: fadeIn 0.8s;
}

.faq-question {
	padding: 20px 30px;
	background: white;
	font-size: 18px;
	font-weight: 600;
	color: var(--dark);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s;
}

.faq-question:hover {
	background: var(--gold-light);
}

.faq-question svg {
	width: 20px;
	height: 20px;
	fill: var(--gold-dark);
	transition: transform 0.3s;
}

.faq-answer {
	background: white;
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s;
}

.faq-item.active .faq-question {
	background: var(--gold-light);
}

.faq-item.active .faq-question svg {
	transform: rotate(45deg);
}

.faq-item.active .faq-answer {
	padding: 20px 30px;
	max-height: 1000px;
}

.contact {
	padding: 100px 50px;
	background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.contact::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/images/contact-background.svg') center/30px repeat;
	opacity: 0.05;
	pointer-events: none;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-info h2 {
	font-size: 36px;
	margin-bottom: 20px;
	color: white;
}

.contact-info p {
	font-size: 18px;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.9);
}

.contact-methods {
	margin-bottom: 30px;
}

.contact-method {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.contact-method-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.contact-method-icon svg {
	width: 25px;
	height: 25px;
	fill: var(--gold);
}

.contact-method-text h4 {
	font-size: 18px;
	margin-bottom: 5px;
	color: var(--gold);
}

.contact-method-text p {
	font-size: 16px;
	margin-bottom: 0;
}

.contact-form {
	flex: 1;
	min-width: 300px;
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	animation: fadeIn 1s;
}

.contact-form h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--dark);
	text-align: center;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--text);
}

.form-control {
	width: 100%;
	padding: 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	font-size: 16px;
	transition: all 0.3s;
}

.form-control:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
	outline: none;
}

.textarea-control {
	min-height: 120px;
	resize: vertical;
}

.submit-btn {
	background: linear-gradient(45deg, var(--gold-dark) 0%, var(--gold) 100%);
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	display: block;
	width: 100%;
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.footer {
	background: var(--dark);
	padding: 80px 50px 30px;
	color: rgba(255, 255, 255, 0.7);
}

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

.footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 60px;
}

.footer-info {
	grid-column: span 2;
}

.footer-logo {
	color: var(--gold);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	display: inline-block;
}

.footer-description {
	margin-bottom: 20px;
	max-width: 400px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.social-link:hover {
	background: var(--gold);
	transform: translateY(-3px);
}

.social-link svg {
	width: 20px;
	height: 20px;
	fill: white;
}

.footer-links h3 {
	color: white;
	font-size: 18px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-links h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--gold);
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s;
	display: block;
	position: relative;
	padding-left: 15px;
}

.footer-links a::before {
	content: "→";
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.3s;
	opacity: 0;
	transform: translateX(-5px);
}

.footer-links a:hover {
	color: var(--gold);
	padding-left: 20px;
}

.footer-links a:hover::before {
	opacity: 1;
	transform: translateX(0);
}

.footer-newsletter h3 {
	color: white;
	font-size: 18px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-newsletter h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--gold);
}

.footer-newsletter p {
	margin-bottom: 20px;
}

.newsletter-form {
	display: flex;
}

.newsletter-input {
	flex-grow: 1;
	padding: 12px 15px;
	border: none;
	border-radius: 30px 0 0 30px;
	font-size: 14px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
	background: var(--gold);
	color: white;
	border: none;
	padding: 0 20px;
	border-radius: 0 30px 30px 0;
	cursor: pointer;
	transition: all 0.3s;
}

.newsletter-btn:hover {
	background: var(--gold-dark);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.copyright {
	font-size: 14px;
}

.footer-bottom-links {
	display: flex;
	gap: 20px;
}

.footer-bottom-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.footer-bottom-links a:hover {
	color: var(--gold);
}

/* Styles pour les alertes du formulaire */
.form-alert {
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 5px;
	font-weight: 500;
}

.alert-success {
	background-color: rgba(76, 175, 80, 0.1);
	border-left: 4px solid var(--gold);
	color: #2e7d32;
}

.alert-error {
	background-color: rgba(244, 67, 54, 0.1);
	border-left: 4px solid #f44336;
	color: #d32f2f;
}

@media (max-width: 991px) {
	.header {
		padding: 15px 30px;
	}
	
	.nav-links {
		display: none;
	}
	
	.hero-content {
		flex-direction: column;
		text-align: center;
	}
	
	.hero-text {
		flex-basis: 100%;
		margin-bottom: 40px;
	}
	
	.hero-text p {
		margin-left: auto;
		margin-right: auto;
	}
	
	.hero-image {
		flex-basis: 100%;
	}
	
	.step {
		flex-direction: column;
	}
	
	.step:nth-child(even) {
		flex-direction: column;
	}
	
	.step-content {
		flex-basis: 100%;
		order: 2;
	}
	
	.step-number {
		order: 1;
		margin-bottom: 20px;
	}
	
	.step-image {
		flex-basis: 100%;
		order: 3;
		margin-top: 20px;
	}
	
	.step-content::before {
		display: none;
	}
	
	.footer-info {
		grid-column: span 1;
	}
}