			body { font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; position: relative; overflow-x: hidden; }
			.hero-title { font-weight: 400; line-height: 1.2; letter-spacing: -0.5px; }
			.hero-description { font-weight: 400; line-height: 1.75; letter-spacing: -0.2px; }
			.hero-cta-wrap {
				margin: 2.6rem auto 0;
				max-width: 900px;
				padding: 0.25rem 0.5rem 0;
			}
			.hero-cta-title {
				font-size: clamp(1.3rem, 2.2vw, 1.75rem);
				line-height: 1.35;
				font-weight: 500;
				color: #121217;
				letter-spacing: -0.2px;
				opacity: 0;
				transform: translateY(10px);
				animation: heroCtaReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
			}
			.hero-cta-title strong {
				font-weight: 700;
				color: #111827;
			}
			.hero-cta-button {
				position: relative;
				display: inline-flex;
				align-items: center;
				justify-content: center;
				gap: 8px;
				margin-top: 0.95rem;
				padding: 11px 26px;
				border-radius: 12px;
				color: #fff;
				font-size: 1rem;
				font-weight: 500;
				letter-spacing: 0;
				background: linear-gradient(90deg, #10b981, #06c270);
				box-shadow: 0 8px 18px rgba(4, 120, 87, 0.22);
				transition: transform 0.25s ease, box-shadow 0.25s ease;
				overflow: hidden;
				opacity: 0;
				transform: translateY(10px);
				animation: heroCtaReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards, ctaPulse 4s ease-in-out 1.35s infinite;
			}
			.hero-cta-button::before {
				content: '';
				position: absolute;
				top: 0;
				left: -40%;
				width: 24%;
				height: 100%;
				background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
				transform: skewX(-22deg);
				animation: ctaSweep 3.4s linear infinite;
			}
			.hero-cta-arrow {
				width: 16px;
				height: 16px;
				transition: transform 0.2s ease;
			}
			.hero-cta-button:hover {
				transform: translateY(-1px);
				box-shadow: 0 10px 24px rgba(4, 120, 87, 0.28);
			}
			.hero-cta-button:hover .hero-cta-arrow {
				transform: translateX(2px);
			}
			.hero-cta-button.hero-cta-button-static {
				margin-top: 0;
				opacity: 1;
				transform: none;
				animation: ctaPulse 4s ease-in-out infinite;
			}
			.hero-orange-banner {
				display: inline-flex;
				flex-direction: column;
				align-items: flex-start;
				text-align: left;
				gap: 6px;
				background-color: #fff7ed;
				color: #9a3412;
				font-size: 0.95rem;
				font-weight: 500;
				padding: 14px 28px;
				border-radius: 12px;
				text-align: left;
				max-width: 720px;
				margin: 0 auto 2.5rem;
				opacity: 0;
				transform: translateY(10px);
				animation: heroCtaReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
			}
			.hero-orange-banner .banner-title {
				font-size: 1.1rem;
				font-weight: 700;
				color: #ea580c;
				align-self: center;
			}
			.hero-orange-banner sup {
				font-size: 0.6em;
			}

			.hero-cta-note {
				margin-top: 0.95rem;
				text-align: left;
				background: #f8fafc;
				border: 1px solid #e9edf2;
				border-radius: 14px;
				padding: 10px 11px;
			}
			.hero-cta-note-row {
				display: flex;
				align-items: flex-start;
				gap: 9px;
				background: transparent;
				border: 0;
				border-radius: 0;
				padding: 2px 0;
				opacity: 0;
				transform: translateY(8px);
				animation: heroCtaReveal 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
			}
			.hero-cta-note-row + .hero-cta-note-row {
				margin-top: 8px;
			}
			.hero-cta-note .hero-cta-note-row:nth-child(1) {
				animation-delay: 0.72s;
			}
			.hero-cta-note .hero-cta-note-row:nth-child(2) {
				animation-delay: 0.9s;
			}
			.hero-cta-note-icon {
				width: 18px;
				height: 18px;
				border-radius: 999px;
				background: #f1f5f9;
				color: #94a3b8;
				display: inline-flex;
				align-items: center;
				justify-content: center;
				flex-shrink: 0;
				margin-top: 2px;
			}
			.hero-cta-note .hero-cta-note-row:nth-child(2) .hero-cta-note-icon {
				background: #f1f5f9;
				color: #94a3b8;
			}
			.hero-cta-note-icon svg {
				width: 11px;
				height: 11px;
			}
			.hero-cta-note-text {
				font-size: 0.875rem;
				line-height: 1.5;
				color: #64748b;
			}
			.hero-cta-note-text strong {
				color: #475569;
			}
			.hero-highlight {
				display: inline;
				padding: 0 1px;
				font-weight: 600;
				color: #334155;
				box-decoration-break: clone;
				-webkit-box-decoration-break: clone;
				background: rgba(148, 163, 184, 0.14);
				border-radius: 3px;
			}
			.hero-highlight--urgent {
				background: rgba(4, 120, 87, 0.12);
				font-weight: 600;
			}
			@keyframes heroCtaReveal {
				from { opacity: 0; transform: translateY(10px); }
				to { opacity: 1; transform: translateY(0); }
			}
			@keyframes ctaSweep {
				0% { left: -40%; }
				100% { left: 130%; }
			}
			@keyframes ctaPulse {
				0%, 100% { box-shadow: 0 8px 18px rgba(4, 120, 87, 0.22); }
				50% { box-shadow: 0 11px 22px rgba(4, 120, 87, 0.3); }
			}
			body::before { content: ''; position: fixed; top: 40%; left: 30%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, rgba(52, 211, 153, 0.3) 30%, rgba(16, 185, 129, 0.2) 50%, transparent 70%); filter: blur(80px); z-index: -1; pointer-events: none; animation: floatingBubble 8s ease-in-out infinite; }
			body::after { content: ''; position: fixed; top: 20%; right: 10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(52, 211, 153, 0.2) 30%, rgba(16, 185, 129, 0.15) 50%, transparent 70%); filter: blur(60px); z-index: -1; pointer-events: none; animation: floatingBubbleRight 15s ease-in-out infinite; }
			.gradient-text-blue { background: linear-gradient(90deg, #10b981, #06c270); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; line-height: 1.15; padding-bottom: 0.08em; }
			.gradient-text-orange { background: linear-gradient(90deg, #10b981, #34d399, #34d399); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; line-height: 1.15; padding-bottom: 0.08em; }

		/* Animation des mots du titre */
		.word-animate {
			opacity: 0;
			transform: translateY(20px);
			display: inline-block;
			animation: fadeInUp 0.5s ease-out forwards;
		}
		.word-animate:nth-child(1) { animation-delay: 0.1s; }
		.word-animate:nth-child(2) { animation-delay: 0.2s; }
		.word-animate:nth-child(3) { animation-delay: 0.3s; }
		.word-animate:nth-child(4) { animation-delay: 0.4s; }
		.word-animate:nth-child(5) { animation-delay: 0.5s; }
		.word-animate:nth-child(6) { animation-delay: 0.6s; }
		.word-animate:nth-child(7) { animation-delay: 0.7s; }
		.word-animate:nth-child(8) { animation-delay: 0.8s; }
		.word-animate:nth-child(9) { animation-delay: 0.9s; }

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

		/* Animation de la description */
		.animate-description {
			animation: fadeInDescription 1s ease-out 1.6s forwards;
		}

		@keyframes fadeInDescription {
			from {
				opacity: 0;
				transform: translateY(20px);
			}
			to {
				opacity: 1;
				transform: translateY(0);
			}
		}
		
		/* Style des cartes de fonctionnalités mis à jour */
		.feature-container {
			background-color: rgba(255, 255, 255, 0.7);
			border: 1px solid rgba(0, 0, 0, 0.08);
			backdrop-filter: blur(4px);
			transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
		}
		.feature-container:hover {
			transform: translateY(-5px);
			box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
		}
		.feature-hover-blur { display: none; } /* On cache l'ancien effet de flou */

		.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease-out; text-align: justify; line-height: 1.6; }
		.faq-answer.open { max-height: 400px; padding-top: 12px; padding-bottom: 12px; }
		
		.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.4); backdrop-filter: blur(8px); display: flex; justify-content: center; align-items: center; z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
		.modal-overlay.open { opacity: 1; visibility: visible; }
		.modal-content { background: white; padding: 2rem; border-radius: 16px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); width: 90%; max-width: 500px; max-height: 90vh; overflow-y: auto; text-align: center; position: relative; border: 1px solid rgba(0, 0, 0, 0.05); }
		#emailModal .modal-content { max-width: 400px; padding: 1.5rem; }
		#featureModal .modal-content { max-width: 900px; padding: 2rem; max-height: 85vh; overflow-y: auto; }
.modal-overlay {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open {
	opacity: 1;
	visibility: visible;
}
.modal-content {
	transform: scale(0.9);
	transition: transform 0.3s ease;
}
.modal-overlay.open .modal-content {
	transform: scale(1);
}
		.modal-overlay.open .modal-content { animation: modalEnter 0.3s ease-out forwards; }
		.modal-close-button {
			position: fixed;
			top: 2rem;
			right: 2rem;
			width: 3rem;
			height: 3rem;
			background: white;
			color: #1f2937;
			border: none;
			border-radius: 50%;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			box-shadow: none;
			z-index: 1002;
			transition: all 0.2s ease;
		}
		.modal-close-button:hover {
			background: #f3f4f6;
			color: #111827;
		}
		.modal-icon { width: 48px; height: 48px; margin: 0 auto 1rem; background: linear-gradient(135deg, #10b981, #06c270); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
		.form-input { transition: all 0.2s ease; border: 1px solid #d1d5db; font-size: 14px; }
		.form-input:focus { border-color: #047857; box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1); outline: none; }
		.form-input:disabled { background-color: #f9fafb; color: #6b7280; cursor: not-allowed; border-color: #e5e7eb; }
		.submit-button { font-size: 14px; font-weight: 500; transition: all 0.2s ease; }
		
		/* CTA plateforme révélé au scroll (verre + dégradé vert) */
		.nav-platform-btn {
			display: none;
			align-items: center;
			gap: 6px;
			padding: 7px 15px;
			border-radius: 10px;
			font-size: 13px;
			font-weight: 600;
			color: #fff;
			text-decoration: none;
			background: linear-gradient(90deg, rgba(16,185,129,0.92), rgba(6,194,112,0.92));
			-webkit-backdrop-filter: blur(8px);
			backdrop-filter: blur(8px);
			border: 1px solid rgba(255,255,255,0.4);
			box-shadow: 0 8px 20px rgba(6,194,112,0.3);
			transition: box-shadow 0.25s ease, transform 0.25s ease;
		}
		.nav-platform-btn.visible { display: inline-flex; animation: navPlatformReveal 0.4s cubic-bezier(0.22,1,0.36,1) both; }
		.nav-platform-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(6,194,112,0.42); }
		.nav-platform-btn svg { width: 16px; height: 16px; }
		@keyframes navPlatformReveal { from { opacity: 0; transform: translateY(-8px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
		/* Contactez-nous : compact & secondaire (ne concurrence plus le CTA principal) */
		.nav-contact-btn {
			display: inline-flex;
			align-items: center;
			gap: 5px;
			padding: 5px 11px;
			border-radius: 8px;
			font-size: 12px;
			font-weight: 500;
			color: #047857;
			text-decoration: none;
			background: rgba(4,120,87,0.07);
			border: 1px solid rgba(4,120,87,0.18);
			transition: background-color 0.2s ease, border-color 0.2s ease;
		}
		.nav-contact-btn:hover { background: rgba(4,120,87,0.12); border-color: rgba(4,120,87,0.4); }
		.nav-contact-btn svg { width: 13px; height: 13px; }
		.navbar-fixed { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; transition: all 0.3s ease; padding: 0.85rem 0; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
		.navbar-fixed.scrolled { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
		.navbar-fixed.has-banner { padding-bottom: 0; }
		/* Logo de la navbar : masqué tant que le grand logo héro est visible.
		   Il se "colle" (mode sticky) avec une petite animation une fois qu'on
		   a dépassé le logo héro. */
		.navbar-logo { opacity: 0; transform: translateY(-10px) scale(0.92); transform-origin: center; transition: opacity 0.35s ease, transform 0.35s cubic-bezier(.2,.72,.16,1); pointer-events: none; will-change: opacity, transform; }
		.navbar-fixed.logo-stuck .navbar-logo { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

		/* Grand logo héro : défile avec le contenu, juste au-dessus du titre */
		.hero-logo { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; margin: 8px 0 10px; transition: opacity 0.3s ease; }
		.hero-logo img { height: 110px; object-fit: contain; }
		.hero-logo .hero-logo-word { font-weight: 800; font-size: 2.6rem; line-height: 1; letter-spacing: -0.5px; color: var(--foreground, #0f172a); }
		/* Bouton contact flottant : halo pulsant pour attirer l'œil */
		@keyframes floating-contact-pulse {
			0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
			70% { box-shadow: 0 0 0 16px rgba(16,185,129,0); }
			100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
		}
		.floating-contact-pulse { animation: floating-contact-pulse 2.2s ease-out infinite; }
		.mobile-menu-button { display: none; }
		/* Desktop : logo centré dans la barre, liens de navigation à droite. */
		@media (min-width: 769px) {
			.navbar-fixed .navbar-row { display: grid !important; grid-template-columns: 1fr auto 1fr; align-items: center; }
			.navbar-fixed .navbar-row > .navbar-logo { grid-column: 2; justify-self: center; }
			.navbar-fixed .navbar-row > .navbar-links { grid-column: 3; justify-self: end; }
		}
			@media (max-width: 768px) {
				.hero-logo img { height: 78px; }
				.hero-logo .hero-logo-word { font-size: 2rem; }
				.navbar-links { display: none; width: 100%; padding: 1rem 0; flex-direction: column; align-items: center; gap: 1rem; }
				.navbar-links.open { display: flex; }
				.mobile-menu-button { display: flex; }
				h1 { font-size: 2.5rem; line-height: 1.2; }
				.modal-content { width: calc(100% - 2rem); }
				.hero-cta-wrap {
					margin-top: 2.1rem;
					padding: 0.2rem 0 0;
				}
				.hero-cta-title {
					font-size: 1.08rem;
					line-height: 1.4;
				}
				.hero-cta-button {
					width: 100%;
					padding: 11px 10px;
					font-size: 0.95rem;
					border-radius: 10px;
				}
				.hero-cta-note {
					padding: 8px 9px;
					border-radius: 12px;
				}
				.hero-cta-note-row {
					padding: 1px 0;
					gap: 7px;
				}
				.hero-cta-note-icon {
					width: 16px;
					height: 16px;
				}
				.hero-cta-note-text {
					font-size: 0.82rem;
					line-height: 1.45;
				}
				.hero-highlight {
					padding: 0 1px;
				}
				
				/* Fix floating contact button position on mobile */
				#floatingContactContainer {
					bottom: 120px !important; /* Move button higher to avoid footer overlap */
				right: 16px !important;
			}
			
			/* Improve footer accessibility on mobile */
			footer {
				padding-bottom: 20px;
			}
			
			footer a {
				padding: 8px 4px;
				display: inline-block;
				min-height: 44px; /* Ensure touch target is at least 44px */
				line-height: 28px;
			}
		}
		.animate-pulse-grow { animation: pulseGrow 2s infinite ease-in-out; }
		
		

		/* Effets hover pour les cartes fonctionnalités - Transitions longues (1s) */
		.feature-container:hover {
			cursor: pointer;
			transition: all 1s ease;
			box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
		}

		/* Spécifique : pas de transform pour les cartes avec modals (pour éviter les conflits) */
		.feature-container[data-modal]:hover {
			transform: translateY(-2px);
		}

		/* Effets hover spécifiques pour les cartes dans la grille - Transitions immédiates pour les couleurs */
		.feature-grid .feature-container:nth-child(1):hover {
			background-color: #E6F7ED !important;
			transition: background-color 1s ease, transform 1s ease, box-shadow 1s ease;
		}
		.feature-grid .feature-container:nth-child(2):hover {
			background-color: #d1fae5 !important;
			transition: background-color 1s ease, transform 1s ease, box-shadow 1s ease;
		}
		.feature-grid .feature-container:nth-child(3):hover {
			background-color: #ffedd5 !important;
			transition: background-color 1s ease, transform 1s ease, box-shadow 1s ease;
		}
		.feature-grid .feature-container:nth-child(4):hover {
			background-color: #ecfdf5 !important;
			transition: background-color 1s ease, transform 1s ease, box-shadow 1s ease;
		}


		/* Carrousel infini lent pour les personnalités */
		.carousel-container {
			position: relative;
			width: 100%;
			max-width: 100%;
			margin: 0 auto;
			overflow: hidden;
		}

		.carousel-track {
			display: flex;
			width: fit-content;
			will-change: transform;
			transform: translateZ(0);
			backface-visibility: hidden;
		}

		.carousel-track.paused {
			transition: none;
		}

		.carousel-item {
			flex-shrink: 0;
			width: 120px;
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 0.5rem;
			padding: 0.5rem;
			transition: transform 1s ease;
		}

		.carousel-item img {
			transition: transform 1s ease;
		}


		/* Responsive pour mobile */
		@media (max-width: 768px) {
			/* Élargir le conteneur sur mobile */
			.carousel-container {
				margin: 0 -1rem; /* Déborde des marges du conteneur parent */
				width: calc(100% + 2rem);
			}
			
			/* Agrandir les items du carrousel */
			.carousel-item {
				width: 120px; /* Augmenté de 100px à 120px */
				padding: 0.5rem;
				transition: transform 1s ease;
			}
			
			/* Agrandir les photos */
			.carousel-item img {
				width: 80px !important; /* Augmenté de 48px à 80px */
				height: 80px !important;
				transition: transform 1s ease;
			}
			
			/* Réduire les boutons de navigation */
			#carouselPrev,
			#carouselNext {
				width: 32px !important;
				height: 32px !important;
				padding: 0.5rem !important;
			}
			
			#carouselPrev svg,
			#carouselNext svg {
				width: 16px !important;
				height: 16px !important;
			}
			
			/* Positionner les boutons légèrement en retrait */
			#carouselPrev {
				left: 0.25rem !important;
			}
			
			#carouselNext {
				right: 0.25rem !important;
			}
		}
		
		.scroll-arrow {
			width: 40px;
			height: 40px;
			border: 2px solid rgba(4, 120, 87, 0.8);
			border-radius: 50%;
			margin: 0 auto 8px;
			position: relative;
			animation: bounce 2s infinite;
			background: rgba(255, 255, 255, 0.2);
		}
		/* Barre de progression 7s discrète */
		.scroll-progress {  height: 4px; background: rgba(0,0,0,0.1); border-radius: 9999px; overflow: hidden; }
		.scroll-progress .scroll-progress-bar { height: 4px; width: 0%; background: linear-gradient(90deg, #10b981, #06c270); transition: width 0.1s linear; }
		
		/* Mise en valeur temporaire (3s) sans déplacement/fond */
		.scroll-indicator.emph #scrollIndicatorText { color: #111; font-weight: 700; }
		.scroll-arrow.emph { animation: bounceStrong 1.2s infinite; }
		
		.scroll-arrow::after {
			content: '';
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%) rotate(45deg);
			width: 8px;
			height: 8px;
			border-right: 2px solid rgba(0, 0, 0, 0.7);
			border-bottom: 2px solid rgba(0, 0, 0, 0.7);
		}
		
		@keyframes bounce {
			0%, 20%, 50%, 80%, 100% {
				transform: translateY(0);
			}
			40% {
				transform: translateY(-10px);
			}
			60% {
				transform: translateY(-5px);
			}
		}
		@keyframes bounceStrong {
			0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
			40% { transform: translateY(-16px); }
			60% { transform: translateY(-8px); }
		}
		/* Numéros en dégradé */
		.gradient-number { 
			background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
			-webkit-background-clip: text; background-clip: text; 
			-webkit-text-fill-color: transparent; color: transparent;
		}

		.feature-grid { align-items: stretch; }
		.feature-grid .feature-container { min-height: 360px; }
		.database-container.feature-container:hover {
			background-color: #ecfdf5;
			box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
			cursor: default;
			transition: all 1s ease;
		}
		
		
		/* Animation de la base de données */
		@keyframes databasePulse {
			0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
			50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(16, 185, 129, 0); }
			100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
		}
		

		
		
		/* États initiaux des lignes de connexion */
		#line-vertical-main {
			transform: translateX(-50%) scaleY(0);
			transform-origin: top;
		}
		
		#line-horizontal {
			transform: translateY(-50%) scaleX(0);
			transform-origin: center;
		}
		
		#line-to-sms, #line-to-rcs, #line-to-voice, #line-to-email {
			transform-origin: top;
		}
		
		#line-to-sms { transform: translateX(-50%) scaleY(0); }
		#line-to-rcs { transform: translateX(-50%) scaleY(0); }
		#line-to-voice { transform: translateX(-50%) scaleY(0); }
		#line-to-email { transform: translateX(50%) scaleY(0); }
		
		/* Points de connexion initialement cachés */
		#connection-point-center { transform: translate(-50%, -50%) scale(0); }
		#connection-point-sms { transform: translate(-50%, -50%) scale(0); }
		#connection-point-rcs { transform: translate(-50%, -50%) scale(0); }
		#connection-point-voice { transform: translate(-50%, -50%) scale(0); }
		#connection-point-email { transform: translate(50%, -50%) scale(0); }

		/* Styles simplifiés pour connection-lines */
		#connection-lines {
			transition: all 0.6s ease-out;
		}

		/* SVG et courbes */
		#connection-svg {
			opacity: 0;
			transition: opacity 0.8s ease-in-out;
		}

		#connection-svg.visible {
			opacity: 1;
		}

		/* Styles pour le design Apple des services de communication */
		.column {
			display: flex;
			flex-direction: column;
			align-items: center;
			text-align: center;
			padding: 2rem 1rem;
		}

		.typography-body {
			font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
		}

		.icon {
			margin-bottom: 1.5rem;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.typography-label {
			font-size: 1.5rem;
			font-weight: 600;
			line-height: 1.2;
			margin-bottom: 1rem;
			color: #1d1d1f;
		}

		.router-copy {
			font-size: 0.875rem;
			line-height: 1.4;
			color: #86868b;
			margin-bottom: 1.5rem;
			max-width: 280px;
		}

		.icon-wrapper {
			display: inline-flex;
			align-items: center;
			text-decoration: none;
			color: #047857;
			font-size: 0.875rem;
			font-weight: 400;
			transition: all 0.2s ease;
		}

		.icon-wrapper:hover {
			color: #047857;
			text-decoration: underline;
		}

		.icon-copy {
			margin-right: 0.25rem;
		}

		.icon-after {
			margin-left: 0.25rem;
			width: 0.5rem;
			height: 0.5rem;
			background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 14' fill='none'%3E%3Cpath d='m1 1 7 6-7 6' stroke='%230071e3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
			background-repeat: no-repeat;
			background-position: center;
			background-size: contain;
			transition: transform 0.2s ease;
		}

		.icon-wrapper:hover .icon-after {
			transform: translateX(2px);
		}

		/* Responsive */
		@media (max-width: 768px) {
			.column {
				padding: 1.5rem 0.5rem;
			}

			.typography-label {
				font-size: 1.25rem;
			}

			.router-copy {
				font-size: 0.8125rem;
				max-width: 240px;
				text-align: center; /* Center text on mobile */
				margin-left: auto;
				margin-right: auto;
			}
		}

		/* Animation en vague pour les services de communication */
		@keyframes slideInFromBottom {
			0% {
				opacity: 0;
				transform: translateY(50px) scale(0.9);
			}
			100% {
				opacity: 1;
				transform: translateY(0) scale(1);
			}
		}

		@keyframes fadeInScale {
			0% {
				opacity: 0;
				transform: scale(0.8);
			}
			100% {
				opacity: 1;
				transform: scale(1);
			}
		}

		/* Classes d'animation pour chaque service */
		.service-card {
			opacity: 0;
			transform: translateY(50px) scale(0.9);
		}

		.service-card.animate {
			animation: slideInFromBottom 0.8s ease-out forwards;
		}

		.service-card-1.animate {
			animation-delay: 0s;
		}

		.service-card-2.animate {
			animation-delay: 0.2s;
		}

		.service-card-3.animate {
			animation-delay: 0.4s;
		}

		.service-card-4.animate {
			animation-delay: 0.6s;
		}

		/* Animation au survol améliorée */
		.service-card:hover {
			transform: translateY(-5px) scale(1.02);
			transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		}

		/* Animations pour la modal du téléphone */
		@keyframes phoneVibration {
			0%, 100% { transform: translateX(0); }
			25% { transform: translateX(-3px); }
			75% { transform: translateX(3px); }
		}

		@keyframes answerButtonRotate {
			0% { transform: rotate(-15deg); }
			50% { transform: rotate(15deg); }
			100% { transform: rotate(-15deg); }
		}

		.phone-vibrating {
			animation: phoneVibration 0.1s infinite;
		}

		.answer-button-animated {
			animation: answerButtonRotate 1s infinite ease-in-out;
		}

		/* Amélioration du contraste du téléphone */
		.phone-container {
			background: linear-gradient(145deg, #2d3748, #4a5568);
			border: 2px solid #718096;
		}

		/* Animation pour l'icône graphique */
		@keyframes chartIconGrow {
			0% {
				transform: scale(0.3);
				opacity: 0;
			}
			30% {
				transform: scale(0.6);
				opacity: 0.7;
			}
			60% {
				transform: scale(0.9);
				opacity: 0.9;
			}
			100% {
				transform: scale(1);
				opacity: 1;
			}
		}

		@keyframes chartIconPulse {
			0%, 100% {
				transform: scale(1);
			}
			50% {
				transform: scale(1.05);
			}
		}

		.chart-icon {
			animation: chartIconGrow 1.5s ease-out forwards;
		}

		.chart-icon:hover {
			animation: chartIconPulse 2s ease-in-out infinite;
		}

		/* Animation de scale subtile pour le bouton CTA */
		@keyframes buttonScale {
			0%, 100% {
				transform: scale(1);
			}
			50% {
				transform: scale(1.02);
			}
		}

		.button-pulse {
			animation: buttonScale 3s ease-in-out infinite;
		}
		
		
		
		
		
		
		.modal-overlay { 
			position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
			background-color: rgba(0, 0, 0, 0.4); backdrop-filter: blur(8px); 
			display: flex; justify-content: center; align-items: center; z-index: 1000; 
			opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; 
		}
		.modal-overlay.open { opacity: 1; visibility: visible; }
		.modal-content { 
			background: white; padding: 2rem; border-radius: 16px; 
			box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); width: 90%; max-width: 500px; 
			max-height: 90vh; overflow-y: auto; text-align: center; position: relative; 
			border: 1px solid rgba(0, 0, 0, 0.05); 
		}
		#emailModal .modal-content { max-width: 400px; padding: 1.5rem; }
		.modal-overlay.open .modal-content { animation: modalEnter 0.3s ease-out forwards; }
		.modal-close-button {
			position: fixed; top: 1rem; right: 1rem; background: rgba(255, 255, 255, 0.95);
			border: none; font-size: 1.5rem; width: 3rem; height: 3rem; border-radius: 50%;
			cursor: pointer; color: #6b7280; transition: all 0.2s ease; display: flex;
			align-items: center; justify-content: center; z-index: 1002; line-height: 1;
		}
		.modal-close-button:hover { color: #1f2937; background: white; transform: scale(1.05); }
		.modal-icon { 
			width: 48px; height: 48px; margin: 0 auto 1rem; background: linear-gradient(135deg, #10b981, #06c270); 
			border-radius: 12px; display: flex; align-items: center; justify-content: center; 
		}
		.form-input { 
			transition: all 0.2s ease; border: 1px solid #d1d5db; font-size: 1em; 
		}
		.form-input:focus { 
			border-color: #047857; box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1); outline: none; 
		}
		.form-input:disabled { 
			background-color: #f9fafb; color: #6b7280; cursor: not-allowed; border-color: #e5e7eb; 
		}
		.modal-overlay input, .modal-content input { font-size: 1em !important; }
		.submit-button { font-size: 14px; font-weight: 500; transition: all 0.2s ease; }
		
		/* Animation pour le modal */
		@keyframes modalEnter { 
			'0%': { opacity: '0', transform: 'translateY(-20px) scale(0.9)' }, 
			'100%': { opacity: '1', transform: 'translateY(0) scale(1)' } 
		}
		
		/* Style personnalisé pour votre header existant */
		.navbar-fixed {
			position: fixed;
			top: 64px; /* Positionné juste en dessous de notre header (64px = hauteur de notre header) */
			left: 0;
			right: 0;
			width: 100%;
			z-index: 50; /* Z-index plus bas que notre header (1000) */
			transition: all 0.3s ease;
			background-color: rgba(255, 255, 255, 0.95);
			backdrop-filter: blur(8px);
			-webkit-backdrop-filter: blur(8px);
		}
		.navbar-fixed.scrolled {
			box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
		}
		.navbar-fixed.has-banner {
			padding-bottom: 0;
		}
		.mobile-menu-button {
			display: none;
		}
		@media (max-width: 768px) {
			.navbar-links {
				display: none;
				width: 100%;
				padding: 1rem 0;
				flex-direction: column;
				align-items: center;
				gap: 1rem;
			}
			.navbar-links.open {
				display: flex;
			}
			.mobile-menu-button {
				display: flex;
			}
			/* Ajustement initial pour mobile, sera affiné par JS */
			.navbar-fixed {
				top: 140px;
			}
		}

		/* ========================================
		   Animations "Comment ça marche"
		   ======================================== */

		/* Container des animations */
		.ccm-animation-container {
			background: linear-gradient(135deg, #f8f7ff 0%, #f0f0f7 100%);
			border-radius: 12px;
			overflow: hidden;
			position: relative;
			aspect-ratio: 4/3;
		}
		.ccm-animation-container.ccm-diffusez {
			aspect-ratio: auto;
			height: clamp(680px, 78vw, 940px);
			max-height: 940px;
			background: transparent;
			border-radius: 0;
			overflow: visible;
		}

		/* === Animation 1: Ciblez === */
		.ccm-ciblez {
			background: #ffffff;
			padding: 16px;
			display: flex;
			flex-direction: column;
			gap: 12px;
			height: 100%;
		}

		/* Barre de recherche */
		.ccm-search-bar {
			background: white;
			border-radius: 8px;
			padding: 10px 14px;
			display: flex;
			align-items: center;
			gap: 10px;
			box-shadow: 0 2px 8px rgba(0,0,0,0.06);
			z-index: 10;
		}
		.ccm-search-bar svg {
			width: 18px;
			height: 18px;
			color: #9ca3af;
			flex-shrink: 0;
		}
		.ccm-search-input {
			flex: 1;
			font-size: 14px;
			color: #374151;
			font-family: inherit;
			overflow: hidden;
			white-space: nowrap;
		}
		.ccm-search-result {
			font-size: 12px;
			color: #047857;
			font-weight: 600;
			white-space: nowrap;
			opacity: 0;
			transition: opacity 0.5s ease;
		}
		.ccm-search-result.visible {
			opacity: 1;
		}

		/* Curseur clignotant */
		.ccm-cursor {
			display: inline-block;
			width: 2px;
			height: 16px;
			background: #047857;
			margin-left: 1px;
			animation: ccm-blink 0.8s infinite;
		}
		@keyframes ccm-blink {
			0%, 50% { opacity: 1; }
			51%, 100% { opacity: 0; }
		}

		/* Carte Leaflet */
		.ccm-map {
			background: #ffffff;
			flex: 1;
			border-radius: 8px;
			position: relative;
			overflow: hidden;
			min-height: 120px;
			z-index: 1;
		}
		.ccm-map .leaflet-container {
			background: #ffffff;
			border-radius: 8px;
		}
		.ccm-map .leaflet-control-zoom,
		.ccm-map .leaflet-control-attribution {
			display: none !important;
		}
		.ccm-map-counter-wrapper {
			position: relative;
			z-index: 10;
			margin-top: -40px;
			margin-bottom: 8px;
			display: flex;
			justify-content: flex-end;
			padding-right: 8px;
		}
		.ccm-map-counter {
			background: #047857;
			color: white;
			padding: 8px 14px;
			border-radius: 8px;
			font-size: 14px;
			font-weight: 600;
			opacity: 0;
			transform: translateY(10px);
			transition: all 0.5s ease;
			box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
		}
		.ccm-map-counter.visible {
			opacity: 1;
			transform: translateY(0);
		}

		/* Filtres */
		.ccm-filters {
			display: flex;
			gap: 10px;
			flex-wrap: wrap;
		}
		.ccm-filter-item {
			background: white;
			border-radius: 6px;
			padding: 8px 12px;
			font-size: 12px;
			display: flex;
			align-items: center;
			gap: 8px;
			box-shadow: 0 1px 4px rgba(0,0,0,0.05);
		}
		.ccm-filter-label {
			color: #6b7280;
		}
		.ccm-filter-slider {
			width: 60px;
			height: 4px;
			background: #e5e7eb;
			border-radius: 2px;
			position: relative;
		}
		.ccm-filter-slider-fill {
			height: 100%;
			background: #047857;
			border-radius: 2px;
			width: 30%;
			transition: width 1s ease;
		}
		.ccm-filter-checkbox {
			width: 14px;
			height: 14px;
			border: 2px solid #d1d5db;
			border-radius: 3px;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: all 0.3s ease;
		}
		.ccm-filter-checkbox.checked {
			background: #047857;
			border-color: #047857;
		}
		.ccm-filter-checkbox svg {
			width: 10px;
			height: 10px;
			color: white;
			opacity: 0;
			transition: opacity 0.2s ease;
		}
		.ccm-filter-checkbox.checked svg {
			opacity: 1;
		}

		/* === Animation 2: Analysez === */
		.ccm-analysez {
			padding: 16px;
			display: flex;
			flex-direction: column;
			gap: 12px;
			height: 100%;
		}

		/* ===== Animation « Enrichir » (étape 2) : fichier client + apport DriveTarget ===== */
		.ccm-enrich { padding: 0; position: relative; height: 100%; overflow: hidden; border-radius: 14px; }
		.ccm-enrich-map { position: absolute; inset: 0; z-index: 1; }
		.ccm-enrich-map .leaflet-container { width: 100%; height: 100%; background: #eef1f4; border-radius: 14px; font-family: inherit; }
		.ccm-enrich-map .leaflet-control-zoom, .ccm-enrich-map .leaflet-control-attribution { display: none; }
		.ccm-excel-drop {
			position: absolute; top: 14px; left: 50%; transform: translateX(-50%) translateY(-130%);
			z-index: 5; display: flex; align-items: center; gap: 8px;
			background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
			padding: 8px 12px; box-shadow: 0 10px 24px rgba(15,23,42,0.18);
			font-size: 13px; font-weight: 600; color: #0f172a; opacity: 0; pointer-events: none;
		}
		.ccm-excel-drop svg { width: 18px; height: 18px; color: #16a34a; }
		.ccm-excel-drop.dropping { animation: ccm-excel-fall 1.4s cubic-bezier(.34,1.2,.64,1) forwards; }
		@keyframes ccm-excel-fall {
			0% { opacity: 0; transform: translateX(-50%) translateY(-130%) scale(.92); }
			35% { opacity: 1; }
			70% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
			100% { opacity: 0; transform: translateX(-50%) translateY(10px) scale(.96); }
		}
		.ccm-enrich-btn {
			position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%) translateY(8px);
			z-index: 5; display: inline-flex; align-items: center; gap: 8px;
			padding: 9px 16px; border: none; border-radius: 999px; cursor: pointer;
			background: linear-gradient(90deg, #10b981, #06c270); color: #fff;
			font-size: 13px; font-weight: 700; box-shadow: 0 10px 24px rgba(6,194,112,0.4);
			opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease, box-shadow .2s ease;
		}
		.ccm-enrich-btn-logo { width: 18px; height: 18px; border-radius: 50%; object-fit: contain; background: #fff; padding: 1px; }
		.ccm-enrich-btn.revealed { opacity: 1; transform: translateX(-50%) translateY(0); }
		.ccm-enrich-btn.clicked { transform: translateX(-50%) translateY(0) scale(0.94); box-shadow: 0 4px 12px rgba(6,194,112,0.5); }
		.ccm-enrich-legend {
			position: absolute; bottom: 12px; left: 12px; z-index: 5; width: 168px;
			background: rgba(255,255,255,0.95); border: 1px solid #e2e8f0; border-radius: 10px;
			padding: 9px 11px; box-shadow: 0 6px 16px rgba(15,23,42,0.12);
		}
		.ccm-enrich-legend .map-legend-title { margin: 0; font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #6b7280; }
		.ccm-enrich-legend .iris-leg-scale { display: flex; gap: 3px; margin-top: 6px; }
		.ccm-enrich-legend .iris-leg-sw { flex: 1; height: 16px; border-radius: 3px; display: block; }
		.ccm-enrich-legend .iris-leg-ends { display: flex; justify-content: space-between; font-size: 10px; color: #94a3b8; margin-top: 2px; }
		.ccm-enrich-legend .iris-leg-none { display: flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 10.5px; color: #64748b; }
		.ccm-enrich-legend .iris-leg-none-sw { width: 14px; height: 14px; border-radius: 3px; background: #e5e7eb; border: 1px solid #d1d5db; flex-shrink: 0; }

		/* Dropdown */
		.ccm-dropdown {
			background: white;
			border-radius: 8px;
			box-shadow: 0 2px 8px rgba(0,0,0,0.06);
			overflow: hidden;
			z-index: 10;
			position: relative;
		}
		.ccm-dropdown-header {
			padding: 10px 14px;
			display: flex;
			align-items: center;
			justify-content: space-between;
			cursor: pointer;
		}
		.ccm-dropdown-header span {
			font-size: 14px;
			color: #374151;
		}
		.ccm-dropdown-header svg {
			width: 16px;
			height: 16px;
			color: #9ca3af;
			transition: transform 0.3s ease;
		}
		.ccm-dropdown.open .ccm-dropdown-header svg {
			transform: rotate(180deg);
		}
		.ccm-dropdown-options {
			max-height: 0;
			overflow: hidden;
			transition: max-height 0.3s ease;
			background: #f9fafb;
		}
		.ccm-dropdown.open .ccm-dropdown-options {
			max-height: 120px;
		}
		.ccm-dropdown-option {
			padding: 8px 14px;
			font-size: 13px;
			color: #6b7280;
			cursor: pointer;
			transition: background 0.2s ease;
		}
		.ccm-dropdown-option:hover,
		.ccm-dropdown-option.selected {
			background: #ede9fe;
			color: #047857;
		}

		/* Pastilles de couleurs */
		.ccm-color-pills {
			display: flex;
			gap: 8px;
			justify-content: center;
			padding: 8px 0;
		}
		.ccm-color-pill {
			width: 32px;
			height: 32px;
			border-radius: 50%;
			cursor: pointer;
			position: relative;
			transition: transform 0.2s ease;
		}
		.ccm-color-pill:hover {
			transform: scale(1.1);
		}
		.ccm-color-pill.selected::after {
			content: '';
			position: absolute;
			inset: -4px;
			border: 2px solid currentColor;
			border-radius: 50%;
			animation: ccm-pulse-ring 1s ease-out;
		}
		.ccm-color-pill svg {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%) scale(0);
			width: 16px;
			height: 16px;
			color: white;
			transition: transform 0.2s ease;
		}
		.ccm-color-pill.selected svg {
			transform: translate(-50%, -50%) scale(1);
		}
		@keyframes ccm-pulse-ring {
			0% { transform: scale(0.8); opacity: 1; }
			100% { transform: scale(1.2); opacity: 0; }
		}

		/* Carte Leaflet pour Analysez */
		.ccm-heatmap {
			flex: 1;
			border-radius: 8px;
			position: relative;
			overflow: hidden;
			min-height: 100px;
			z-index: 1;
		}
		.ccm-heatmap .leaflet-container {
			background: #f0f4f8;
			border-radius: 8px;
		}
		.ccm-heatmap .leaflet-control-zoom,
		.ccm-heatmap .leaflet-control-attribution {
			display: none !important;
		}
		.ccm-legend-wrapper {
			position: relative;
			z-index: 10;
			margin-top: -36px;
			margin-bottom: 4px;
			display: flex;
			justify-content: flex-start;
			padding-left: 8px;
		}
		.ccm-heatmap-legend {
			background: white;
			padding: 6px 10px;
			border-radius: 4px;
			font-size: 11px;
			color: #6b7280;
			display: flex;
			align-items: center;
			gap: 6px;
			opacity: 0;
			transform: translateY(10px);
			transition: all 0.5s ease;
			box-shadow: 0 2px 6px rgba(0,0,0,0.1);
		}
		.ccm-heatmap-legend.visible {
			opacity: 1;
			transform: translateY(0);
		}
		.ccm-heatmap-gradient {
			width: 50px;
			height: 8px;
			border-radius: 2px;
		}

			/* === Animation 3: Diffusez (SMS -> clic lien -> aperçu site -> RCS) === */
			.ccm-diffusez {
				padding: 0;
				height: 100%;
				position: relative;
			}
			.ccm-discover-row {
				display: flex;
				align-items: center;
				gap: 12px;
				margin-top: 20px;
				flex-wrap: wrap;
			}
			.ccm-discover-label {
				display: inline-flex;
				align-items: center;
				gap: 6px;
				font-size: 13px;
				font-weight: 600;
				color: #047857;
				white-space: nowrap;
			}
			.ccm-discover-arrow {
				width: 18px;
				height: 18px;
				color: #047857;
				animation: ccm-arrow-nudge 1.5s ease-in-out infinite;
			}
			.ccm-discover-arrow-down {
				display: none;
				width: 18px;
				height: 18px;
				color: #047857;
				animation: ccm-arrow-nudge-down 1.5s ease-in-out infinite;
			}
			@keyframes ccm-arrow-nudge {
				0%, 100% { transform: translateX(0); }
				50% { transform: translateX(5px); }
			}
			@keyframes ccm-arrow-nudge-down {
				0%, 100% { transform: translateY(0); }
				50% { transform: translateY(4px); }
			}
			@media (max-width: 1023px) {
				.ccm-discover-arrow { display: none; }
				.ccm-discover-arrow-down { display: inline-block; }
			}
			.ccm-diffusez-toggles {
				display: flex;
				gap: 5px;
			}
			.ccm-diffusez-toggle {
				padding: 6px 16px;
				border-radius: 999px;
				border: 1px solid #e5e7eb;
				background: #ffffff;
				font-size: 12px;
				font-weight: 600;
				color: #6b7280;
				cursor: pointer;
				transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
				position: relative;
				overflow: hidden;
			}
			.ccm-diffusez-toggle::after {
				content: '';
				position: absolute;
				bottom: 0;
				left: 0;
				height: 3px;
				width: 0%;
				background: #047857;
				border-radius: 0 0 999px 999px;
			}
			.ccm-diffusez-toggle.timing::after {
				animation: ccm-toggle-progress var(--toggle-duration, 8s) linear forwards;
			}
			@keyframes ccm-toggle-progress {
				from { width: 0%; }
				to { width: 100%; }
			}
			.ccm-diffusez-toggle:hover {
				border-color: #047857;
				color: #047857;
			}
			.ccm-diffusez-toggle.active {
				background: #047857;
				color: #ffffff;
				border-color: #047857;
			}
			.ccm-diffusez-toggle.active.timing::after {
				background: rgba(255,255,255,0.5);
			}
			.ccm-diffusez-toggle.timing:not(.active) {
				border-color: #6ee7b7;
				color: #047857;
			}
			.ccm-diffusez-stage {
				position: relative;
				width: 100%;
				height: 100%;
				border-radius: 0;
				overflow: visible;
				border: 0;
				background: transparent;
			}
			.ccm-scene {
				position: absolute;
				inset: 0;
				display: flex;
				align-items: center;
				justify-content: center;
				opacity: 0;
				transform: translateY(12px) scale(0.986);
				transition: opacity 0.5s ease, transform 0.5s ease;
				pointer-events: none;
			}
			.ccm-scene.active {
				opacity: 1;
				transform: translateY(0) scale(1);
				pointer-events: auto;
			}
			.ccm-sms-layout,
			.ccm-rcs-layout {
				position: relative;
				width: 100%;
				height: 100%;
				display: flex;
				align-items: center;
				justify-content: center;
			}
			.ccm-sms-layout {
				justify-content: flex-start;
				padding-left: 2%;
			}

			.ccm-phone {
				position: relative;
				background: linear-gradient(180deg, #dce3ea 0%, #c8d1dc 100%);
				border: 1px solid #64748b;
				border-radius: 44px;
				padding: 8px;
				box-shadow: 0 18px 36px rgba(15, 23, 42, 0.24);
			}
			.ccm-phone::before {
				content: '';
				position: absolute;
				left: 50%;
				top: 12px;
				transform: translateX(-50%);
				width: 62px;
				height: 6px;
				border-radius: 999px;
				background: rgba(31, 41, 55, 0.28);
				z-index: 9;
			}
			.ccm-phone-inner {
				height: 100%;
				border-radius: 36px;
				overflow: hidden;
				position: relative;
				background: #f8fafc;
			}
			.ccm-channel-badge {
				position: absolute;
				top: -15px;
				left: 14px;
				padding: 6px 14px;
				border-radius: 999px;
				font-size: 13px;
				font-weight: 700;
				letter-spacing: 0.5px;
				text-transform: uppercase;
				z-index: 10;
				box-shadow: 0 6px 12px rgba(15, 23, 42, 0.14);
			}
			.ccm-channel-badge--sms {
				background: #dcfce7;
				color: #166534;
			}
			.ccm-channel-badge--rcs {
				background: #e0e7ff;
				color: #065f46;
			}
			.ccm-channel-badge--preview {
				background: #fff7ed;
				color: #9a3412;
				top: -14px;
				padding: 5px 12px;
				font-size: 12px;
			}

			/* Scène SMS */
			.ccm-phone-sms-main {
				width: clamp(296px, 52%, 378px);
				aspect-ratio: 9 / 18.7;
				z-index: 4;
			}
			.ccm-sms-shell {
				height: 100%;
				padding: 36px 15px 16px;
				background: #eceff3;
				position: relative;
			}
			.ccm-sms-bubble {
				background: #e5e8ee;
				border: 1px solid #d5dbe5;
				border-radius: 14px;
				padding: 14px 13px 11px;
				font-size: 14.3px;
				line-height: 1.5;
				color: #111827;
				position: relative;
			}
			.ccm-sms-bubble p {
				margin: 0 0 7px;
			}
			.ccm-sms-bubble p:last-child {
				margin-bottom: 0;
			}
			.ccm-sms-link {
				color: #065f46;
				text-decoration: underline;
				text-underline-offset: 2px;
				font-weight: 600;
				display: inline-block;
				border-radius: 4px;
				padding: 0 2px;
				transition: color 0.24s ease, background 0.24s ease;
			}
			.ccm-sms-link.pulse {
				animation: ccm-link-pulse 0.95s ease-in-out infinite;
			}
			.ccm-sms-link.clicked {
				background: rgba(4, 120, 87, 0.14);
				color: #312e81;
			}
			.ccm-sms-stop {
				margin-top: 9px;
				font-size: 12px;
				font-weight: 600;
				color: #334155;
			}
			.ccm-tap-indicator {
				position: absolute;
				width: 24px;
				height: 24px;
				border-radius: 999px;
				border: 2.5px solid #047857;
				opacity: 0;
				transform: scale(0.7);
				pointer-events: none;
				z-index: 21;
			}
			.ccm-sms-layout.clicked .ccm-tap-indicator {
				animation: ccm-tap 0.8s ease-out;
			}
			.ccm-finger-cursor {
				position: absolute;
				width: 28px;
				height: 28px;
				border-radius: 50%;
				background: radial-gradient(circle, rgba(4, 120, 87,0.85) 0%, rgba(4, 120, 87,0.4) 60%, rgba(4, 120, 87,0.1) 100%);
				box-shadow: 0 0 14px rgba(4, 120, 87,0.5), inset 0 0 4px rgba(255,255,255,0.3);
				border: 2px solid rgba(255,255,255,0.6);
				z-index: 20;
				opacity: 0;
				pointer-events: none;
				transition: opacity 0.3s ease, left 0.5s cubic-bezier(.2,.72,.16,1), top 0.5s cubic-bezier(.2,.72,.16,1);
			}
			.ccm-finger-cursor.visible {
				opacity: 1;
			}
			.ccm-finger-cursor.tapping {
				animation: ccm-finger-tap 0.3s ease-out;
			}
			@keyframes ccm-finger-tap {
				0% { transform: scale(1); }
				50% { transform: scale(0.65); }
				100% { transform: scale(1); }
			}

			/* Flèche dynamique entre le lien et l'aperçu du site */
			.ccm-sms-arrow {
				position: absolute;
				inset: 0;
				width: 100%;
				height: 100%;
				pointer-events: none;
				overflow: visible;
				z-index: 8;
				opacity: 0;
				transition: opacity 0.24s ease;
				filter: drop-shadow(0 3px 8px rgba(4, 120, 87, 0.22));
			}
			.ccm-sms-layout.preview-open .ccm-sms-arrow {
				opacity: 1;
			}
			.ccm-sms-arrow path {
				fill: none;
				stroke: #047857;
				stroke-width: 3.3;
				stroke-linecap: round;
				stroke-linejoin: round;
			}
			.ccm-sms-arrow .ccm-sms-arrow-line {
				opacity: 0.96;
				transition: stroke-dashoffset 0.85s ease;
			}
			.ccm-sms-arrow .ccm-sms-arrow-head {
				fill: #047857;
				stroke: none;
				opacity: 0;
				transition: opacity 0.24s ease;
			}
			.ccm-sms-layout.preview-open .ccm-sms-arrow .ccm-sms-arrow-line {
				stroke-dashoffset: 0;
			}
			.ccm-sms-layout.preview-open .ccm-sms-arrow .ccm-sms-arrow-head {
				opacity: 1;
			}

			/* Aperçu du lien (site web) */
			.ccm-phone-link-preview {
				position: absolute;
				right: 2%;
				bottom: 2%;
				width: clamp(248px, 44%, 320px);
				aspect-ratio: 9 / 18.7;
				transform: translate(20px, 140px) scale(0.82);
				transform-origin: bottom center;
				opacity: 0;
				transition: transform 0.56s cubic-bezier(.2,.72,.16,1), opacity 0.45s ease, box-shadow 0.45s ease;
				z-index: 5;
				pointer-events: none;
			}
			.ccm-sms-layout.preview-open .ccm-phone-link-preview {
				transform: translate(0, 0) scale(1);
				opacity: 1;
				box-shadow: 0 16px 32px rgba(15, 23, 42, 0.26);
			}
			.ccm-link-preview-content {
				height: 100%;
				padding: 34px 0 0;
				background: #ffffff;
				overflow: hidden;
			}
			.ccm-preview-iframe {
				width: 100%;
				height: 100%;
				border: none;
				display: block;
			}

			/* Scène RCS */
			.ccm-phone-rcs-full {
				width: clamp(312px, 56%, 404px);
				aspect-ratio: 9 / 18.7;
			}
			.ccm-phone-inner-rcs {
				display: flex;
				flex-direction: column;
				background: #ffffff;
			}
			.ccm-rcs-video {
				height: 214px;
				position: relative;
				overflow: hidden;
				background: #111827;
			}
			.ccm-rcs-video-media {
				position: absolute;
				inset: 0;
				width: 100%;
				height: 100%;
				object-fit: cover;
				display: block;
			}
			.ccm-rcs-video::before {
				content: '';
				position: absolute;
				inset: 0;
				background: linear-gradient(135deg, rgba(249, 115, 22, 0.28), rgba(4, 120, 87, 0.3));
				mix-blend-mode: screen;
				z-index: 2;
			}
			.ccm-rcs-video-label {
				position: absolute;
				left: 12px;
				bottom: 10px;
				padding: 4px 8px;
				border-radius: 999px;
				background: rgba(17, 24, 39, 0.72);
				color: #ffffff;
				font-size: 10px;
				font-weight: 700;
				letter-spacing: 0.2px;
				z-index: 4;
			}
			.ccm-rcs-play {
				position: absolute;
				left: 50%;
				top: 50%;
				width: 50px;
				height: 50px;
				border-radius: 50%;
				transform: translate(-50%, -50%);
				background: rgba(255, 255, 255, 0.96);
				box-shadow: 0 8px 16px rgba(15, 23, 42, 0.2);
				z-index: 4;
			}
			.ccm-rcs-play::before {
				content: '';
				position: absolute;
				left: 20px;
				top: 15px;
				border-style: solid;
				border-width: 10px 0 10px 14px;
				border-color: transparent transparent transparent #111827;
			}
			.ccm-rcs-play::after {
				content: '';
				position: absolute;
				inset: -8px;
				border-radius: 999px;
				border: 2px solid rgba(255, 255, 255, 0.48);
				opacity: 0;
			}
			.ccm-scene-rcs.active .ccm-rcs-play::after {
				animation: ccm-video-ring 1.4s ease-out infinite;
			}
			.ccm-rcs-body {
				padding: 10px 12px 8px;
				color: #111827;
			}
			.ccm-rcs-body h4 {
				margin: 0 0 8px;
				font-size: 13.8px;
				line-height: 1.35;
				font-weight: 700;
			}
			.ccm-rcs-body p {
				margin: 0 0 7px;
				font-size: 12.8px;
				line-height: 1.45;
				color: #1f2937;
			}
			.ccm-rcs-cta {
				margin: 8px 10px 10px;
				padding: 8px 10px;
				border: 1px solid #e5e7eb;
				border-radius: 999px;
				background: #f8fafc;
				color: #111827;
				font-size: 11px;
				font-weight: 500;
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 6px;
			}
			.ccm-rcs-cta svg {
				width: 14px;
				height: 14px;
				color: #6b7280;
			}

			/* RCS staggered entry animations */
			.ccm-scene-rcs .ccm-rcs-video {
				opacity: 0;
				transform: translateY(-10px);
				transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
			}
			.ccm-scene-rcs.active .ccm-rcs-video {
				opacity: 1;
				transform: translateY(0);
			}
			.ccm-scene-rcs .ccm-rcs-body {
				opacity: 0;
				transform: translateY(8px);
				transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
			}
			.ccm-scene-rcs.active .ccm-rcs-body {
				opacity: 1;
				transform: translateY(0);
			}
			.ccm-scene-rcs .ccm-rcs-cta {
				opacity: 0;
				transform: translateY(8px);
				transition: opacity 0.4s ease 0.55s, transform 0.4s ease 0.55s;
			}
			.ccm-scene-rcs.active .ccm-rcs-cta {
				opacity: 1;
				transform: translateY(0);
			}

			@keyframes ccm-link-pulse {
				0%, 100% { color: #065f46; }
				50% { color: #047857; }
			}
			@keyframes ccm-tap {
				0% { opacity: 0; transform: scale(0.6); }
				20% { opacity: 1; }
				100% { opacity: 0; transform: scale(1.5); }
			}
			@keyframes ccm-video-ring {
				0% { transform: scale(1); opacity: 0.8; }
				100% { transform: scale(1.35); opacity: 0; }
			}

		/* Utilitaires communs */
		@keyframes ccm-fade-in-up {
			0% { opacity: 0; transform: translateY(10px); }
			100% { opacity: 1; transform: translateY(0); }
		}

		/* Responsive pour les animations */
			@media (max-width: 640px) {
				.ccm-animation-container {
					aspect-ratio: 1/1;
				}
				.ccm-animation-container.ccm-diffusez {
					aspect-ratio: auto;
					height: 760px;
				}
				.ccm-search-bar {
					padding: 8px 10px;
				}
				.ccm-search-input {
					font-size: 12px;
				}
				.ccm-search-result {
					font-size: 10px;
				}
				.ccm-filters {
					gap: 6px;
				}
				.ccm-filter-item {
					padding: 6px 8px;
					font-size: 11px;
				}
				.ccm-color-pill {
					width: 26px;
					height: 26px;
				}
				.ccm-phone-sms-main {
					width: clamp(242px, 78vw, 320px);
				}
				.ccm-phone-rcs-full {
					width: clamp(250px, 82vw, 336px);
				}
				.ccm-phone-link-preview {
					width: clamp(200px, 60vw, 260px);
					right: -5%;
					bottom: 0;
				}
				.ccm-sms-bubble {
					font-size: 12.6px;
				}
				.ccm-channel-badge {
					font-size: 10px;
					padding: 3px 8px;
				}
				.ccm-rcs-body h4 {
					font-size: 12px;
				}
				.ccm-rcs-body p {
					font-size: 11px;
				}
				.ccm-rcs-cta {
					font-size: 10px;
					padding: 7px 8px;
				}
				.ccm-link-preview-title {
					font-size: 10px;
				}
				.ccm-link-preview-list {
					font-size: 8.2px;
				}
			}
.cookie-consent {
  position: fixed;
  z-index: 10000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  color: #111827;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .2);
}
.cookie-consent h2 { margin: 0 0 .35rem; font-size: 1rem; font-weight: 700; }
.cookie-consent p { margin: 0; font-size: .875rem; line-height: 1.45; }
.cookie-consent a { color: #047857; text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: .75rem; flex: none; }
.cookie-consent button { padding: .7rem 1rem; border-radius: 10px; font-weight: 700; cursor: pointer; }
.cookie-reject { color: #111827; background: #fff; border: 1px solid #9ca3af; }
.cookie-accept { color: #fff; background: #047857; border: 1px solid #047857; }
.cookie-link { padding: 0; color: inherit; background: none; border: 0; text-decoration: underline; cursor: pointer; }
@media (max-width: 640px) {
  .cookie-consent { align-items: stretch; flex-direction: column; }
  .cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
}
