.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.5); /* Flou + assombrissement */
    z-index: 9998;
    display: none;
}


/* Pop-up ajusté */
.popup-container {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
    width: 100%;
    max-width: 640px;
    max-height: 80vh;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
    border-radius: 16px;
}


.popup-container .container {
    font-family: 'Inter', sans-serif;
    background: #111;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(225, 19, 123, 0.4);
    border: 2px solid #e1137b;
    color: white;
}


.popup-container h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.popup-container .subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ddd;
}

.popup-container .mockup {
    width: 100%;
    height: 200px;
    background-color: #222;
    border: 2px dashed #e1137b;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.popup-container .benefits {
    list-style: none;
    margin-bottom: 30px;
}

.popup-container .benefits li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    color: #eee;
}

.popup-container .benefits li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #e1137b;
    font-weight: bold;
}

.popup-container .cta-button, 
.popup-container button[type="submit"] {
    padding: 14px;
    font-size: 1rem;
    background-color: #e1137b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    width: 100%;
    margin-bottom: 15px;
}

.popup-container .cta-button:hover, 
.popup-container button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(225, 19, 123, 0.7);
}

.popup-container #emailForm {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.popup-container input[type="email"] {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #555;
    border-radius: 6px;
    background-color: #1a1a1a;
    color: white;
}

.popup-container .assurance {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: #e1137b;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-popup:hover {
    background-color: #c10e6a;
    transform: rotate(90deg);
}

/* Notification de succès */
.success-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #111;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #e1137b;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: top 0.3s ease-out;
}

.success-notification.show {
    top: 30px;
}

.success-icon {
    width: 24px;
    height: 24px;
    fill: #e1137b;
    animation: bounce 0.5s;
}

.mockup img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.mockup {
    width: 100%;
    height: 200px;
    background-color: #222;
    border: 2px dashed #e1137b;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
/* Style général : lisibilité moderne et épurée */
.popup-container .container {
    font-family: 'Gordita', sans-serif;
}

/* Titres accrocheurs */
.popup-container h1 {
    font-family: 'Recoleta', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.2;
}

/* Sous-titre : plus léger mais classe */
.popup-container .subtitle {
    font-family: 'Gordita', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #ccc;
}

/* Liste des bénéfices : claire et lisible */
.popup-container .benefits li {
    font-family: 'Gilroy', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #eee;
}

/* Boutons CTA : visibles et impactants */
.popup-container .cta-button, 
.popup-container button[type="submit"] {
    font-family: 'Gordita', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Texte d’assurance */
.popup-container .assurance {
    font-family: 'Gordita', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #aaa;
}

    /* Styles autonomes pour la section pricing */
			.pricing-section-autonome {
				--neon-red: #FF006B;
				--neon-red-dark: #d10047;
				--black: #2a3042;
				--white: #ffffff;
				--gray: #f8f9fa;
				--text-primary: #2a3042;
				--text-secondary: #64748b;
			}

			.pricing-grid-autonome {
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
				gap: 30px;
			}

			.pricing-card-autonome {
				background: var(--white);
				border-radius: 16px;
				padding: 40px;
				box-shadow: 0 10px 40px rgba(0,0,0,0.08);
				transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
				border: 1px solid rgba(0,0,0,0.05);
				position: relative;
				overflow: hidden;
			}

			.pricing-card-autonome.popular {
				border: 2px solid var(--neon-red);
				box-shadow: 0 15px 50px rgba(255, 0, 107, 0.15);
			}

			.pricing-card-autonome::before {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 4px;
				background: linear-gradient(90deg, var(--neon-red), var(--neon-red-dark));
			}

			.card-header-autonome {
				margin-bottom: 25px;
			}

			.card-header-autonome h3 {
				font-size: 24px;
				margin-bottom: 10px;
				color: var(--text-primary);
				font-weight: 700;
			}

			.price-autonome {
				font-size: 36px;
				font-weight: 800;
				margin: 15px 0;
				color: var(--text-primary);
			}

			.price-autonome span {
				font-size: 16px;
				color: var(--text-secondary);
				font-weight: 500;
				display: block;
			}

			.features-autonome {
				list-style: none;
				margin: 25px 0;
			}

			.features-autonome li {
				padding: 12px 0;
				position: relative;
				padding-left: 28px;
				color: var(--text-primary);
				border-bottom: 1px solid rgba(0,0,0,0.05);
			}

			.features-autonome li::before {
				content: '→';
				position: absolute;
				left: 0;
				color: var(--neon-red);
				font-weight: bold;
				font-size: 18px;
			}

			.btn-autonome {
				display: block;
				padding: 15px;
				background: linear-gradient(90deg, var(--neon-red), var(--neon-red-dark));
				color: var(--white);
				border-radius: 8px;
				text-decoration: none;
				font-weight: 600;
				margin-top: 20px;
				transition: all 0.3s;
				border: none;
				cursor: pointer;
				width: 100%;
				text-align: center;
				font-size: 16px;
				box-shadow: 0 5px 20px rgba(255, 0, 107, 0.3);
			}

			.btn-autonome:hover {
				transform: translateY(-3px);
				box-shadow: 0 10px 30px rgba(255, 0, 107, 0.4);
			}

			.highlight-autonome {
				position: absolute;
				top: 20px;
				right: -40px;
				background: var(--neon-red);
				color: var(--white);
				padding: 5px 40px;
				font-size: 14px;
				font-weight: 700;
				transform: rotate(45deg);
				box-shadow: 0 5px 15px rgba(255, 0, 107, 0.3);
				z-index: 1;
			}

			@media (max-width: 768px) {
				.pricing-grid-autonome {
					grid-template-columns: 1fr;
				}
				
				.pricing-card-autonome {
					padding: 30px;
				}
			}