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

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #212121;
	background: #fafafa;
	overflow-x: hidden;
}

.cm-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.cm-section {
	padding: 80px 0;
}

.cm-section-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
	color: #212121;
	text-align: center;
	margin-bottom: 20px;
}

.cm-section-subtitle {
	font-size: 1.2rem;
	color: #757575;
	text-align: center;
	margin-bottom: 60px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

a {
	text-decoration: none;
	color: #1976d2;
	transition: color 0.3s ease;
}

a:hover {
	color: #1565c0;
}

ul {
	list-style: none;
}

/* ===== BUTTONS ===== */

.cm-btn {
	display: inline-block;
	padding: 15px 30px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	transition: all 0.3s ease;
	text-decoration: none;
}

.cm-btn-primary {
	background: #1976d2;
	color: #ffffff;
}

.cm-btn-primary:hover {
	background: #1565c0;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
}

.cm-btn-secondary {
	background: #43a047;
	color: #ffffff;
}

.cm-btn-secondary:hover {
	background: #388e3c;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(67, 160, 71, 0.3);
}

.cm-btn-outline {
	background: transparent;
	color: #1976d2;
	border: 2px solid #1976d2;
}

.cm-btn-outline:hover {
	background: #1976d2;
	color: #ffffff;
}

/* ===== HEADER STYLES ===== */

.cm-header {
	background: #ffffff;
	padding: 20px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
}

.cm-header.cm-scrolled {
	padding: 15px 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cm-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cm-logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: #212121;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.cm-logo i {
	margin-right: 10px;
	color: #1976d2;
	font-size: 2rem;
}

.cm-nav {
	display: flex;
}

.cm-nav-list {
	display: flex;
	align-items: center;
}

.cm-nav-link {
	color: #616161;
	margin: 0 20px;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.cm-nav-link:hover {
	color: #1976d2;
}

.cm-nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: #1976d2;
	transition: width 0.3s ease;
}

.cm-nav-link:hover::after {
	width: 100%;
}

.cm-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.cm-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #212121;
	margin: 3px 0;
	transition: 0.3s;
}

/* ===== HERO SECTION ===== */

.cm-hero {
	background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
	padding: 150px 0 100px;
	text-align: center;
	position: relative;
	overflow: hidden;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cm-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/cm-hero.webp') top/cover;
	background-attachment: fixed;
	opacity: 0.3;
}

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

.cm-hero-title {
	font-family: 'Poppins', sans-serif;
	font-size: 3.5rem;
	font-weight: 600;
	color: #212121;
	margin-bottom: 20px;
	line-height: 1.2;
}

.cm-hero-subtitle {
	font-size: 1.3rem;
	color: #424242;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.cm-hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.cm-hero-decoration {
	position: absolute;
	top: 20%;
	right: 10%;
	width: 200px;
	height: 200px;
	background: linear-gradient(45deg, #1976d2, #43a047);
	border-radius: 50%;
	opacity: 0.1;
	animation: cm-float 6s ease-in-out infinite;
}

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

/* ===== CARD STYLES ===== */

.cm-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
}

.cm-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cm-card-icon {
	font-size: 3rem;
	color: #1976d2;
	margin-bottom: 20px;
	text-align: center;
}

.cm-card-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #212121;
	margin-bottom: 15px;
	text-align: center;
}

.cm-card-description {
	color: #616161;
	line-height: 1.7;
	text-align: center;
}

/* ===== GRID LAYOUTS ===== */

.cm-grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.cm-grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

/* ===== FONDEMENTS SECTION ===== */

.cm-fondements {
	background: #ffffff;
	padding: 80px 0;
}

.cm-fondements .cm-card-icon {
	color: #43a047;
}

/* ===== LABORATOIRE SECTION ===== */

.cm-laboratoire {
	background: #f5f5f5;
	padding: 80px 0;
}

.cm-slider-container {
	position: relative;
	overflow: hidden;
	margin-top: 60px;
}

.cm-slider {
	display: flex;
	transition: transform 0.5s ease;
}

.cm-slide {
	min-width: 350px;
	margin-right: 30px;
}

.cm-slide-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.cm-slide-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cm-slide-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: #212121;
	margin-bottom: 15px;
}

.cm-slide-content {
	color: #616161;
	line-height: 1.6;
	flex-grow: 1;
}

.cm-slide-link {
	color: #1976d2;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	margin-top: 15px;
}

.cm-slide-link i {
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.cm-slide-link:hover i {
	transform: translateX(5px);
}

.cm-slider-nav {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	margin-bottom: 40px;
	gap: 15px;
}

.cm-slider-btn {
	background: #1976d2;
	color: #ffffff;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cm-slider-btn:hover {
	background: #1565c0;
	transform: scale(1.1);
}

/* ===== TESTIMONIALS SECTION ===== */

.cm-testimonials {
	background: #ffffff;
	padding: 80px 0;
}

.cm-testimonial-card {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
	border-left: 4px solid #43a047;
}

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

.cm-testimonial-photo {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 20px;
	background: linear-gradient(45deg, #1976d2, #43a047);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 2rem;
	font-weight: 700;
}

.cm-testimonial-photo img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.cm-testimonial-text {
	font-style: italic;
	color: #424242;
	margin-bottom: 20px;
	line-height: 1.7;
	font-size: 1.1rem;
}

.cm-testimonial-author {
	font-weight: 600;
	color: #212121;
	margin-bottom: 5px;
}

.cm-testimonial-role {
	color: #616161;
	font-size: 0.9rem;
}

/* ===== TEAM SECTION ===== */

.cm-team {
	background: #f5f5f5;
	padding: 80px 0;
}

.cm-team-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	display: flex !important;
	flex-direction: column;
	height: 100%;
}

.cm-team-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	margin-top: 1rem;
}

.cm-team-link p {
	margin-top: auto;
	color: #2e7d32;
	padding: 10px;
	border: 2px solid #1565c0;
	border-radius: 25px;
}

.cm-team-link a {
	margin-top: auto;
}

.cm-team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cm-team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 20px;
	background: linear-gradient(45deg, #1976d2, #43a047);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 3rem;
	font-weight: 700;
}

.cm-team-photo img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.cm-team-name {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: #212121;
	margin-bottom: 10px;
}

.cm-team-role {
	color: #1976d2;
	font-weight: 500;
	margin-bottom: 15px;
}

.cm-team-bio {
	color: #616161;
	line-height: 1.6;
}

/* ===== PRICING SECTION ===== */

.cm-pricing {
	background: #ffffff;
	padding: 80px 0;
}

.cm-pricing-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	border: 2px solid #e0e0e0;
	transition: all 0.3s ease;
	position: relative;
	display: flex !important;
	flex-direction: column;
	height: 100%;
}

.cm-pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border-color: #1976d2;
}

.cm-pricing-card.cm-featured {
	border-color: #1976d2;
	transform: scale(1.05);
}

.cm-pricing-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: #43a047;
	color: #ffffff;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
}

.cm-pricing-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #212121;
	margin-bottom: 15px;
}

.cm-pricing-price {
	font-size: 3rem;
	font-weight: 700;
	color: #1976d2;
	margin-bottom: 30px;
}

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

.cm-pricing-features li {
	padding: 10px 0;
	color: #616161;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cm-pricing-features li i {
	color: #43a047;
	margin-right: 10px;
}

/* ===== CONTACT SECTION ===== */

.cm-contact {
	background: #f5f5f5;
	padding: 80px 0;
}

.cm-form {
	background: #ffffff;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	max-width: 600px;
	margin: 0 auto;
}

.cm-form-group {
	margin-bottom: 25px;
}

.cm-form-label {
	display: block;
	margin-bottom: 8px;
	color: #212121;
	font-weight: 500;
}

.cm-form-input,
.cm-form-textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #ffffff;
}

.cm-form-input:focus,
.cm-form-textarea:focus {
	outline: none;
	border-color: #1976d2;
	box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

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

.cm-form-error {
	border-color: #f44336 !important;
	box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1) !important;
}

.cm-form-error-message {
	color: #f44336;
	font-size: 0.9rem;
	margin-top: 5px;
	display: block;
}

.cm-form-success {
	background: #e8f5e8;
	color: #2e7d32;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	margin-top: 20px;
}

/* ===== MODAL STYLES ===== */

.cm-modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.cm-modal-content {
	background: #ffffff;
	margin: 5% auto;
	padding: 40px;
	border-radius: 16px;
	width: 90%;
	max-width: 600px;
	position: relative;
	animation: cm-modal-appear 0.3s ease;
}

@keyframes cm-modal-appear {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.cm-modal-close {
	position: absolute;
	right: 20px;
	top: 20px;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: #616161;
	transition: color 0.3s ease;
}

.cm-modal-close:hover {
	color: #212121;
}

.cm-modal-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: #212121;
	margin-bottom: 20px;
}

.cm-modal-text {
	color: #616161;
	line-height: 1.7;
	font-size: 1.1rem;
}

/* ===== FOOTER STYLES ===== */

.cm-footer {
	background: #f5f5f5;
	padding: 60px 0 30px;
	border-top: 1px solid #e0e0e0;
}

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

.cm-footer-section h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: #212121;
	margin-bottom: 20px;
}

.cm-footer-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #212121;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.cm-footer-logo i {
	margin-right: 10px;
	color: #1976d2;
}

.cm-footer-description {
	color: #616161;
	line-height: 1.6;
	margin-bottom: 20px;
}

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

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

.cm-footer-links a {
	color: #616161;
	transition: color 0.3s ease;
}

.cm-footer-links a:hover {
	color: #1976d2;
}

.cm-footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid #e0e0e0;
	color: #616161;
}

/* ===== COOKIE POPUP ===== */

.cm-cookie-popup {
	position: fixed;
	display: none;
	bottom: -100px;
	left: 0;
	width: 100%;
	background: #ffffff;
	padding: 20px;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	z-index: 1500;
	transition: bottom 0.5s ease;
}

.cm-cookie-popup.cm-show {
	bottom: 0;
	display: block;
}

.cm-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.cm-cookie-text {
	flex: 1;
	color: #616161;
}

.cm-cookie-text a {
	color: #1976d2;
}

.cm-cookie-buttons {
	display: flex;
	gap: 15px;
}

/* ===== ANIMATIONS ===== */

.cm-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.cm-fade-in.cm-visible {
	opacity: 1;
	transform: translateY(0);
}

.cm-progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background: linear-gradient(90deg, #1976d2, #43a047);
	z-index: 9999;
	transition: width 0.1s ease;
}

/* ===== LEGAL PAGES STYLES ===== */

.cm-legal-hero {
	background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
	padding: 120px 0 80px;
	text-align: center;
	margin-top: 80px;
}

.cm-legal-title {
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
	font-weight: 600;
	color: #212121;
	margin-bottom: 20px;
}

.cm-legal-subtitle {
	font-size: 1.2rem;
	color: #616161;
}

.cm-legal-content {
	background: #ffffff;
	padding: 80px 0;
}

.cm-legal-document {
	max-width: 800px;
	margin: 0 auto;
	background: #ffffff;
	padding: 60px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cm-legal-section {
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e0e0e0;
}

.cm-legal-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.cm-legal-heading {
	font-family: 'Poppins', sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: #212121;
	margin-bottom: 20px;
	padding-left: 20px;
	border-left: 4px solid #1976d2;
}

.cm-legal-content p {
	color: #424242;
	line-height: 1.8;
	margin-bottom: 20px;
}

.cm-legal-list {
	margin: 20px 0;
	padding-left: 0;
}

.cm-legal-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
	color: #424242;
	line-height: 1.7;
}

.cm-legal-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	top: 0;
	color: #43a047;
	font-weight: bold;
	font-size: 1.2rem;
}

.cm-contact-info {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 12px;
	border-left: 4px solid #1976d2;
	margin: 20px 0;
}

.cm-contact-info p {
	margin-bottom: 10px;
	color: #212121;
}

.cm-contact-info strong {
	color: #1976d2;
}

/* ===== UTILITY CLASSES ===== */

.cm-text-center {
	text-align: center;
}
.cm-text-left {
	text-align: left;
}
.cm-text-right {
	text-align: right;
}

.cm-mb-0 {
	margin-bottom: 0;
}
.cm-mb-10 {
	margin-bottom: 10px;
}
.cm-mb-20 {
	margin-bottom: 20px;
}
.cm-mb-30 {
	margin-bottom: 30px;
}

.cm-mt-0 {
	margin-top: 0;
}
.cm-mt-10 {
	margin-top: 10px;
}
.cm-mt-20 {
	margin-top: 20px;
}
.cm-mt-30 {
	margin-top: 30px;
}

.cm-hidden {
	display: none;
}
.cm-visible {
	display: block;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
	.cm-nav {
		display: none;
		width: 100%;
	}

	.cm-nav.cm-active {
		display: flex;
		margin-top: 20px;
	}

	.cm-nav-list {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		flex-direction: column;
		background: #ffffff;

		padding: 20px;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	}

	.cm-nav-link {
		margin: 10px 0;
		display: block;
		text-align: center;
	}

	.cm-mobile-toggle {
		display: flex;
	}
}
@media (max-width: 768px) {
	.cm-hero {
		padding: 120px 0 80px;
	}

	.cm-hero-title {
		font-size: 2.5rem;
	}

	.cm-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cm-section {
		padding: 60px 0;
	}

	.cm-section-title {
		font-size: 2rem;
	}

	.cm-grid-3,
	.cm-grid-4 {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.cm-slider {
		flex-direction: column;
		transform: none !important;
	}

	.cm-slide {
		min-width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.cm-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cm-modal-content {
		width: 95%;
		margin: 10% auto;
		padding: 30px 20px;
	}

	.cm-form {
		padding: 30px 20px;
	}

	.cm-slider-nav {
		display: none;
	}
}

@media (max-width: 480px) {
	.cm-hero-title {
		font-size: 2rem;
	}

	.cm-section-title {
		font-size: 1.8rem;
	}

	.cm-card {
		padding: 20px;
	}

	.cm-pricing-card {
		padding: 30px 20px;
	}

	.cm-form {
		padding: 20px;
	}

	.cm-legal-title {
		font-size: 1.5rem;
	}

	.cm-legal-document {
		padding: 2rem;
	}

	.cm-legal-heading {
		font-size: 1.2rem;
	}
}
