* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
	background: #0a0a0a;
	color: #ffffff;
	line-height: 1.6;
	overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
	background: #0a0a0a;
	padding: 0.5rem 0;
	border-bottom: 1px solid #333;
}

.top-bar-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
}

.contact-info-top {
	display: flex;
	gap: 2rem;
	color: #a0a0a0;
}

.contact-info-top a {
	color: #10a37f;
	text-decoration: none;
}

.top-nav {
	display: flex;
	gap: 1.5rem;
}

.top-nav a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s;
}

.top-nav a:hover {
	color: #10a37f;
}

/* HERO SECTION */
.hero {
	min-height: 90vh;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #10a37f 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
	0% { transform: translate(0, 0); }
	100% { transform: translate(10px, 10px); }
}

.hero-content {
	text-align: center;
	z-index: 1;
	position: relative;
	max-width: 1400px;
	padding: 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-text {
	text-align: left;
}

.hero-mockup {
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 900;
	margin-bottom: 0rem;
	background: linear-gradient(45deg, #ffffff, #e0f2fe, #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
	from { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
	to { filter: drop-shadow(0 0 40px rgba(255,255,255,0.6)); }
}

.hero-subtitle {
	font-size: clamp(1.2rem, 3vw, 2rem);
	font-weight: 300;
	margin-bottom: 1rem;
	opacity: 0.9;
	animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-description {
	font-size: clamp(1rem, 2vw, 1.2rem);
	margin-bottom: 2rem;
	opacity: 0.8;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1s ease-out 1s both;
}

.cta-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease-out 1.5s both;
}

/* FORMULAIRE D'ADHÉSION */
.adhesion-section {
	padding: 8rem 2rem;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.adhesion-form {
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 3rem;
	max-width: 900px;
	margin: 4rem auto 0;
	position: relative;
	z-index: 10;
	box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.adhesion-form h3 {
	color: #1a202c;
	text-align: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	display: none;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.form-group-adhesion {
	margin-bottom: 1rem;
}

.form-group-adhesion label {
	display: block;
	color: #4a5568;
	font-weight: 500;
	margin-bottom: 0.3rem;
	font-size: 0.9rem;
}

.form-group-adhesion input {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-size: 0.95rem;
	transition: border-color 0.2s;
}

.form-group-adhesion input:focus {
	outline: none;
	border-color: #10a37f;
	box-shadow: 0 0 0 3px rgba(16, 163, 127, 0.1);
}

.btn-adhesion {
	background: linear-gradient(45deg, #10a37f, #059669);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 10px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s;
}

.btn-adhesion:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(16, 163, 127, 0.3);
}

/* MODAL DE CONFIRMATION */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	backdrop-filter: blur(5px);
}

.modal-content {
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	border-radius: 20px;
	padding: 3rem 2rem;
	max-width: 500px;
	width: 90%;
	text-align: center;
	position: relative;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
	animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-50px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.modal-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	animation: bounce 1s infinite;
}

.modal-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: #10a37f;
	margin-bottom: 1rem;
}

.modal-text {
	color: #4a5568;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.modal-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.btn-modal {
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-modal-primary {
	background: linear-gradient(45deg, #10a37f, #059669);
	color: white;
}

.btn-modal-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(16, 163, 127, 0.3);
}

.btn-modal-secondary {
	background: #f7fafc;
	color: #4a5568;
	border: 2px solid #e2e8f0;
}

.btn-modal-secondary:hover {
	background: #edf2f7;
	border-color: #cbd5e0;
}

.btn-primary {
	background: linear-gradient(45deg, #10a37f, #059669);
	color: white;
	padding: 1.2rem 2.5rem;
	border: none;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(16, 163, 127, 0.4);
}

.btn-secondary {
	background: rgba(255,255,255,0.1);
	color: white;
	padding: 1.2rem 2.5rem;
	border: 2px solid rgba(255,255,255,0.2);
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s;
	backdrop-filter: blur(10px);
}

.btn-secondary:hover {
	background: rgba(255,255,255,0.2);
	border-color: rgba(255,255,255,0.4);
	transform: translateY(-3px);
}

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

/* MOCKUP INTERFACE */
.mockup-container {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	transition: transform 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.mockup-header {
	background: linear-gradient(135deg, #10a37f, #059669);
	color: white;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.mockup-dots {
	display: flex;
	gap: 0.5rem;
}

.mockup-dots span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28ca42; }

.mockup-title {
	font-weight: 700;
	font-size: 1.1rem;
}

.mockup-content {
	padding: 2rem 1.5rem;
	color: #2d3748;
}

.mockup-form {
	margin-bottom: 2rem;
}

.mockup-label {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #4a5568;
	font-size: 0.9rem;
}

.mockup-input {
	background: #f7fafc;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	padding: 0.75rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: #2d3748;
}

.mockup-button {
	background: linear-gradient(135deg, #10a37f, #059669);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	text-align: center;
	font-size: 0.9rem;
}

.mockup-results {
	border-top: 1px solid #e2e8f0;
	padding-top: 1.5rem;
}

.mockup-result {
	margin-bottom: 1rem;
	padding: 1rem;
	background: #f8fafc;
	border-radius: 8px;
	border-left: 3px solid #10a37f;
}

.mockup-result-title {
	font-weight: 600;
	color: #2d3748;
	font-size: 0.8rem;
	margin-bottom: 0.3rem;
}

.mockup-result-content {
	color: #4a5568;
	font-size: 0.8rem;
	line-height: 1.4;
}

.mockup-more {
	text-align: center;
	color: #718096;
	font-style: italic;
	font-size: 0.8rem;
	margin-top: 1rem;
}

/* FLOATING ELEMENTS */
.floating-element {
	position: absolute;
	animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; right: 10%; animation-delay: 2s; }
.floating-element:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }

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

/* FEATURES SECTION */
.features {
	padding: 8rem 2rem;
	background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
	position: relative;
}

.features::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #10a37f, transparent);
}

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

.section-title {
	text-align: center;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, #10a37f, #667eea);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.comment {
	text-align: center;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 1rem;
	color:white;
}

.section-subtitle {
	text-align: center;
	font-size: 1.3rem;
	color: #a0a0a0;
	margin-bottom: 6rem;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
}

.feature-card {
	background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
	border: 1px solid #333;
	border-radius: 20px;
	padding: 3rem 1rem;
	text-align: center;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #10a37f, #667eea);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s;
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(16, 163, 127, 0.2);
	border-color: #10a37f;
}

.feature-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	display: block;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(-10px); }
	60% { transform: translateY(-5px); }
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #10a37f;
}

.feature-card p {
	color: #b0b0b0;
	line-height: 1.7;
}

/* PROCESS SECTION */
.process {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-top: 4rem;
}

.process-step {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 20px;
	padding: 3rem 2rem;
	text-align: center;
	position: relative;
	transition: all 0.3s;
}

.process-step:hover {
	transform: scale(1.05);
	background: rgba(255,255,255,0.15);
}

.step-number {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #10a37f, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
}

.process-step h3 {
	margin: 1rem 0;
	font-size: 1.3rem;
}

/* STATS SECTION */
.stats {
	padding: 6rem 2rem;
	background: #0a0a0a;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	text-align: center;
}

.stat-item {
	padding: 2rem;
}

.stat-number {
	font-size: 4rem;
	font-weight: 900;
	color: #10a37f;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, #10a37f, #667eea);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stat-label {
	font-size: 1.2rem;
	color: #a0a0a0;
}

/* TESTIMONIALS */
.testimonials {
	padding: 8rem 2rem;
	background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
	margin-top: 4rem;
}

.testimonial {
	background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
	border: 1px solid #333;
	border-radius: 20px;
	padding: 3rem 2rem;
	position: relative;
	transition: all 0.3s;
}

.testimonial:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testimonial::before {
	content: '"';
	position: absolute;
	top: 1rem;
	left: 2rem;
	font-size: 4rem;
	color: #10a37f;
	font-family: serif;
}

.testimonial-text {
	font-style: italic;
	margin: 2rem 0;
	color: #d0d0d0;
	line-height: 1.6;
}

.testimonial-author {
	font-weight: 600;
	color: #10a37f;
	margin-bottom: 0.5rem;
}

.testimonial-company {
	color: #a0a0a0;
	font-size: 0.9rem;
}

/* PRICING */
.pricing {
	padding: 8rem 2rem;
	background: linear-gradient(135deg, #10a37f 0%, #059669 100%);
	text-align: center;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin: 6rem auto 0;
	max-width: 1400px;
	padding-top: 2rem;
}

.pricing-card-new {
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 25px;
	padding: 3rem 1.5rem 2.5rem;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: visible;
	color: #1a202c;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 420px;
}

.pricing-card-new::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
	animation: shine 4s infinite;
	opacity: 0;
	transition: opacity 0.3s;
}

.pricing-card-new:hover::before {
	opacity: 1;
}

.pricing-card-new:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0,0,0,0.25);
	border-color: rgba(255,255,255,0.5);
}

.pricing-card-new.popular {
	border: 3px solid #fbbf24;
	box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
}

.pricing-card-new.premium {
	border: 3px solid #ef4444;
}

.popular-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(45deg, #fbbf24, #f59e0b);
	color: white;
	padding: 0.6rem 1.8rem;
	border-radius: 25px;
	font-size: 0.85rem;
	font-weight: 700;
	box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
	white-space: nowrap;
	z-index: 10;
}

.plan-badge {
	display: inline-block;
	padding: 0.8rem 1.5rem;
	border-radius: 15px;
	color: white;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.plan-limit {
	font-size: 1.1rem;
	color: #4a5568;
	margin-bottom: 1rem;
	font-weight: 600;
}

.plan-price {
	font-size: 2.8rem;
	font-weight: 900;
	color: #1a202c;
	margin-bottom: 0.5rem;
}

.plan-period {
	font-size: 0.9rem;
	font-weight: 400;
	color: #718096;
}

.plan-description {
	color: #718096;
	margin-bottom: 2rem;
	font-style: italic;
}

.btn-plan {
	display: inline-block;
	padding: 1rem 1.4rem;
	border-radius: 15px;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	margin-bottom: 1rem;
}

.btn-plan:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.common-features {
	margin: 6rem auto 0;
	max-width: 1400px;
}

.features-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.feature-item {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 10px;
	padding: 1rem;
	color: #ffffff;
	font-weight: 500;
	transition: all 0.3s;
}

.feature-item:hover {
	background: rgba(255,255,255,0.15);
	transform: translateY(-2px);
}

@keyframes shine {
	0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
	100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}


.result-demo {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 20px;
  color: #fff;
  margin-top: 5rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.result-demo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.result-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease;
}

.result-grid .result-item:last-child {
  grid-column: 1 / -1;
}

.result-item:hover {
  transform: translateY(-3px);
}

.result-item h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
}

.result-item p {
  font-size: 1rem;
  line-height: 1.4;
  color: #000;
}


.faq-section {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #ffffff;
  padding: 4rem 1.5rem;
  border-radius: 20px;
  margin-top: 3rem;
}

.faq-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 960px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.faq-list > div {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  transition: background 0.3s;
}

.faq-list > div:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-list h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.faq-list p {
  font-size: 1rem;
  color: #e2e8f0;
  line-height: 1.5;
  margin: 0;
}



/* FOOTER */
.footer {
	padding: 4rem 2rem 2rem;
	background: #0a0a0a;
	border-top: 1px solid #333;
	text-align: center;
}

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

.footer h3 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #10a37f;
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 2rem 0;
	flex-wrap: wrap;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #a0a0a0;
}

.legal-info {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #333;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
	.pricing-grid {
		grid-template-columns: repeat(3, 1fr);
		max-width: 1000px;
	}
}

@media (max-width: 900px) {
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 700px;
	}
}

@media (max-width: 768px) {
	.top-bar-content {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}
	
	.contact-info-top {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
	
	.hero-text {
		text-align: center;
	}
	
	.mockup-container {
		transform: none;
		max-width: 350px;
		margin: 0 auto;
	}
	
	.hero {
		min-height: 80vh;
	}
	
	.adhesion-section {
		padding: 4rem 1rem;
	}
	
	.adhesion-form {
		padding: 2rem;
		margin: 2rem auto 0;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.features-grid,
	.process-steps,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		max-width: 400px;
	}

	.pricing-card-new {
		min-height: 380px;
	}

	.features-list {
		grid-template-columns: 1fr;
	}

	.plan-price {
		font-size: 2.2rem;
	}
}

@media (max-width: 480px) {
	.stats-grid {
		grid-template-columns: 1fr;
	}
}

/* SCROLL ANIMATIONS */
.fade-in {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease-out;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}
@media (max-width: 768px) {
	.comparison-grid {
		grid-template-columns: 1fr !important;
		gap: 2rem !important;
	}
	
	.comparison-table {
		font-size: 0.9rem;
	}
	
	.comparison-table th,
	.comparison-table td {
		padding: 1rem !important;
	}
	
	.detailed-comparison {
		padding: 2rem 0.2rem !important;
	}
	
	.comparison-cta {
		padding: 2rem !important;
	}
}

@media (max-width: 480px) {
	.comparison-table {
		font-size: 0.8rem;
	}
	
	.comparison-table th,
	.comparison-table td {
		padding: 0.5rem !important;
	}
	
	.stat-item {padding:0rem !important;}
}
.chatgpt-card .feature-item {background: #f7f7f7;}

/* SECTION OPTIMISATION EXISTANTES */
.optimization-section {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
	position: relative;
	overflow: hidden;
}

.optimization-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><radialGradient id="glow"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="20" cy="30" r="2" fill="url(%23glow)"/><circle cx="80" cy="20" r="1.5" fill="url(%23glow)"/><circle cx="60" cy="70" r="1" fill="url(%23glow)"/><circle cx="30" cy="80" r="1.5" fill="url(%23glow)"/></svg>');
	animation: sparkle 8s linear infinite;
}

@keyframes sparkle {
	0%, 100% { opacity: 0.3; transform: rotate(0deg); }
	50% { opacity: 0.8; transform: rotate(180deg); }
}

.optimization-content {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.optimization-header {
	text-align: center;
	margin-bottom: 4rem;
}

.optimization-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 900;
	margin-bottom: 1rem;
	color: #ffffff;
	text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.optimization-subtitle {
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	color: rgba(255,255,255,0.9);
	margin-bottom: 2rem;
}

.optimization-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

.optimization-features {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 25px;
	padding: 3rem 2rem;
	box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.optimization-features h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.2rem;
	color: #ffffff;
	font-weight: 500;
	font-size: 1.1rem;
}

.feature-icon {
	font-size: 1.2rem;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	flex-shrink: 0;
}

.optimization-visual {
	position: relative;
}

.optimization-card {
	background: rgba(255,255,255,0.95);
	border-radius: 20px;
	box-shadow: 0 30px 80px rgba(0,0,0,0.3);
	overflow: hidden;
	transition: transform 0.3s ease;
}

.optimization-card:hover {
	transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.card-header {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: white;
	padding: 1.5rem;
	text-align: center;
}

.card-header h4 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.card-content {
	padding: 2rem;
	color: #2d3748;
}

.before-after {
	margin-bottom: 1.5rem;
}

.before-after h5 {
	font-size: 0.9rem;
	font-weight: 600;
	color: #4a5568;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.text-sample {
	background: #f7fafc;
	border-left: 3px solid #cbd5e0;
	padding: 1rem;
	font-size: 0.9rem;
	line-height: 1.4;
	border-radius: 0 8px 8px 0;
}

.text-sample.after {
	border-left-color: #10a37f;
	background: #f0fff4;
}

.process-flow {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	margin-top: 3rem;
	flex-wrap: nowrap;
}

.process-step {
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 20px;
	padding: 2rem 1.5rem;
	text-align: center;
	color: #ffffff;
	font-weight: 600;
	flex: 1;
	max-width: 280px;
	position: relative;
	transition: all 0.3s ease;
}

.process-step:hover {
	background: rgba(255,255,255,0.25);
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.process-step::before {
	content: attr(data-step);
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	background: linear-gradient(45deg, #10a37f, #059669);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 1.5rem;
	color: white;
	box-shadow: 0 8px 25px rgba(16, 163, 127, 0.4);
	border: 3px solid rgba(255,255,255,0.3);
}

.process-step h4 {
	margin: 1.5rem 0 0.8rem 0;
	font-size: 1.2rem;
	font-weight: 700;
}

.process-step p {
	font-size: 0.95rem;
	line-height: 1.4;
	opacity: 0.9;
}

.process-arrow {
	font-size: 2rem;
	color: rgba(255,255,255,0.6);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.1); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.optimization-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.process-flow {
		flex-direction: column;
		gap: 3rem;
	}

	.process-arrow {
		transform: rotate(90deg);
	}

	.process-step {
		max-width: 100%;
	}
}


/* ===================================
   MODALE VIDÉO - À ajouter dans style.css
   =================================== */

.video-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: none; /* Caché par défaut */
	align-items: center;
	justify-content: center;
	z-index: 10000;
	backdrop-filter: blur(5px);
	animation: fadeIn 0.3s ease-out;
}

/* Classe pour afficher la modale */
.video-modal.show {
	display: flex !important;
}

@keyframes fadeIn {
	from { 
		opacity: 0; 
	}
	to { 
		opacity: 1; 
	}
}

.video-modal-content {
	position: relative;
	width: 90%;
	max-width: 1000px;
	aspect-ratio: 16/9;
	background: #000;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
	animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-50px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.video-modal iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 15px;
}

.video-modal-close {
	position: absolute;
	top: -50px;
	right: 0;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	backdrop-filter: blur(10px);
}

.video-modal-close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.video-modal-header {
	position: absolute;
	top: -80px;
	left: 0;
	right: 0;
	text-align: center;
	color: white;
}

.video-modal-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.video-modal-subtitle {
	font-size: 1rem;
	opacity: 0.8;
}

.video-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 1.2rem;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 10px;
}

.video-loader::after {
	content: '';
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255,255,255,0.3);
	border-top: 2px solid white;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Styles pour la modale de confirmation (bonus) */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	animation: fadeIn 0.3s ease-out;
}

.modal-content {
	background: white;
	border-radius: 20px;
	padding: 3rem;
	max-width: 500px;
	width: 90%;
	text-align: center;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
	animation: slideIn 0.4s ease-out;
}

.modal-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
}

.modal-title {
	font-size: 2rem;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 1rem;
}

.modal-text {
	font-size: 1.1rem;
	color: #4a5568;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.modal-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-modal {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 1rem;
}

.btn-modal-primary {
	background: linear-gradient(135deg, #10a37f, #059669);
	color: white;
}

.btn-modal-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(16, 163, 127, 0.3);
}

.btn-modal-secondary {
	background: #f7fafc;
	color: #4a5568;
	border: 1px solid #e2e8f0;
}

.btn-modal-secondary:hover {
	background: #edf2f7;
	transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
	.video-modal-content {
		width: 95%;
		margin: 0 auto;
	}

	.video-modal-close {
		top: -45px;
		width: 35px;
		height: 35px;
		font-size: 1.2rem;
	}

	.video-modal-header {
		top: -70px;
	}

	.video-modal-title {
		font-size: 1.2rem;
	}

	.video-modal-subtitle {
		font-size: 0.9rem;
	}
	
	.modal-content {
		padding: 2rem;
	}
	
	.modal-title {
		font-size: 1.5rem;
	}
	
	.modal-buttons {
		flex-direction: column;
	}
}