/* Optimisations de performance */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* Protection contre les attaques par injection CSS */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Optimisations de rendu */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Autoriser la sélection de texte pour le contenu principal */
body, p, h1, h2, h3, h4, h5, h6, span, div {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Protection contre les attaques par expression() */
* {
    /* Désactiver les expressions CSS dangereuses */
    -webkit-filter: none !important;
    filter: none !important;
}

/* Optimisations pour les animations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Optimisations de performance pour les éléments animés */
.pricing-card, .buy-btn, .cta-button, .menu-link {
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Optimisation du scroll */
html {
    scroll-behavior: smooth;
}

/* Optimisation des images */
img {
    max-width: 100%;
    height: auto;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Styles globaux pour cohérence */
body {
    background: #fff;
    color: #333;
}

/* Animations globales utilisées dans plusieurs sections */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes textAppear {
    0% { opacity: 0; transform: translateY(50px) rotateX(-20deg); }
    100% { opacity: 1; transform: translateY(0) rotateX(0deg); }
}
@keyframes nebulaPulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}
@keyframes twinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}
@keyframes orbit {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(100px, -100px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}
@keyframes scalePulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
@keyframes comet {
    0% { transform: translateX(-100vw) translateY(0); opacity: 0; }
    50% { transform: translateX(50vw) translateY(50vh); opacity: 1; }
    100% { transform: translateX(150vw) translateY(-50vh); opacity: 0; }
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes glow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.5); }
}
@keyframes particleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100vw, 50vh); }
}
@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Styles pour le menu */
.menu-section {
    margin: 0;
    padding: 25px 0;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    	position: relative;
	z-index: 10000;
}
.menu-section nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.menu-section .logo {
    color: white;
    font-size: 24px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.menu-section nav ul { display: flex; align-items: center; gap: 20px; position: relative; z-index: 10001; }
.menu-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}
.menu-section li {
    color: white;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
}
.menu-section li:hover {
    transform: scale(1.1);
    color: #ffcc00;
}
.menu-section li span {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffcc00;
    transition: width 0.3s ease;
}
.menu-section li:hover span {
    width: 100%;
}
.menu-section button {
    display: none;
    background: linear-gradient(to right, #ff0099, #493240);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 20px;
    transition: transform 0.3s ease;
}
.menu-section button:hover {
    transform: scale(1.1);
}
.menu-link {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}
.menu-link:hover {
    color: #ffcc00 !important;
    text-decoration: none !important;
}


/* Responsive menu */
@media (max-width: 1024px) {
    .menu-section {
        padding: 20px 0;
    }
    .menu-section .logo img {
        height: 70px !important;
    }
    .menu-section .logo span {
        font-size: 1.9rem !important;
        letter-spacing: 1px !important;
    }
    .menu-section ul {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 90px;
        right: 10px;
        width: calc(100vw - 20px);
        max-width: 320px;
        background: linear-gradient(to bottom, #a18cd1, #fbc2eb);
        padding: 30px 25px;
        border-radius: 15px;
        gap: 20px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        text-align: center;
        z-index: 1000;
    }
    .menu-section ul.active {
        display: flex !important;
    }
    .menu-section button {
        display: block;
        margin-left: 10px;
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .menu-section {
        padding: 20px 0;
    }
    .menu-section .logo img {
        height: 60px !important;
    }
    .menu-section .logo span {
        font-size: 1.8rem !important;
        letter-spacing: 1px !important;
    }
    	.menu-section ul {
		display: none !important;
		flex-direction: column;
		position: absolute;
		top: 80px;
		right: 10px;
		width: calc(100vw - 20px);
		max-width: 300px;
		background: linear-gradient(to bottom, #a18cd1, #fbc2eb);
		padding: 30px 25px;
		border-radius: 15px;
		gap: 20px;
		box-shadow: 0 8px 25px rgba(0,0,0,0.3);
		text-align: center;
		z-index: 1000;
	}
	.menu-section ul.active {
		display: flex !important;
	}
    .menu-section button {
        display: block;
        margin-left: 10px;
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .menu-section {
        padding: 15px 0;
    }
    .menu-section .logo img {
        height: 50px !important;
    }
    .menu-section .logo span {
        font-size: 1.5rem !important;
        letter-spacing: 0.5px !important;
    }
    .menu-section ul {
        top: 70px;
        right: 8px;
        width: calc(100vw - 16px);
        max-width: 280px;
        padding: 25px 20px;
        gap: 18px;
        z-index: 1000;
    }
    .menu-section button {
        padding: 6px 12px;
        font-size: 12px;
        margin-left: 5px;
    }
}

/* Hero section styles */
.hero-section {
    position: relative;
    height: 100vh;
    background: linear-gradient(to bottom right, #a18cd1, #fbc2eb);
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    perspective: 1000px;
    margin-bottom: 0; /* Suppression de la marge pour éviter les bandes */
}
.hero-section > div:first-child { /* hero-background */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><defs><radialGradient id="nebula" cx="50%" cy="50%" r="50%" fx="50%" fy="50%"><stop offset="0%" stop-color="#a18cd1" stop-opacity="0.5"/><stop offset="100%" stop-color="#fbc2eb" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(#nebula)"/></svg>') no-repeat center/cover;
    animation: nebulaPulse 10s infinite alternate ease-in-out;
}
.hero-section > div:nth-child(2) { /* hero-content */
    z-index: 10;
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
    transform-style: preserve-3d;
}
.hero-section h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transform: translateZ(50px);
    opacity: 0;
    animation: textAppear 2s ease-out forwards;
}
.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    transform: translateZ(30px);
    opacity: 0;
    animation: textAppear 2s ease-out 0.5s forwards;
}
.hero-section button {
    background: linear-gradient(to right, #ff0099, #ffcc00);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
    transform: translateZ(20px);
    opacity: 0;
    animation: textAppear 2s ease-out 1s forwards;
}
.hero-section button:hover {
    transform: scale(1.1) translateZ(30px);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.8);
}
	.hero-section .video-player { /* video-player */
		max-width: 40%;
		width: 100%;
		margin: 0 auto;
		z-index: 10;
		transform: translateZ(20px);
		opacity: 0;
		animation: textAppear 2s ease-out 1.5s forwards;
		border-radius: 15px;
		overflow: hidden;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	}
.hero-section iframe {
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 200px;
    max-height: 35vh;
    border: none;
    display: block;
}
	@media (max-width: 900px) {
		.hero-section .video-player {
			max-width: 100%;
		}
		.hero-section iframe {
        min-height: 120px;
        max-height: 30vh;
    }
}

/* Adapter la vidéo pour mobile */
@media (max-width: 768px) {
    .hero-section {
        height: auto !important;
        min-height: 100vh;
        padding: 40px 20px;
    }
    
    .hero-video {
        display: block;
        width: 100%;
        height: 70vw !important;
        max-height: 450px !important;
        min-height: 350px !important;
        object-fit: cover !important;
        aspect-ratio: auto !important;
    }
    
    .hero-section iframe {
        width: 100%;
        height: 70vw !important;
        max-height: 450px !important;
        min-height: 350px !important;
        object-fit: cover !important;
        aspect-ratio: auto !important;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .hero-section {
        height: auto !important;
        min-height: 100vh;
        padding: 30px 15px;
    }
    
    .hero-video {
        height: 70vw !important;
        max-height: 450px !important;
        min-height: 350px !important;
        object-fit: cover !important;
        aspect-ratio: auto !important;
    }
    
    .hero-section iframe {
        height: 70vw !important;
        max-height: 450px !important;
        min-height: 350px !important;
        object-fit: cover !important;
        aspect-ratio: auto !important;
    }
}

/* Equipe section styles */
.equipe-section {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.equipe-section h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease-out;
}
.equipe-section .team-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
    align-items: start;
}

.equipe-section .equipe-card {
    background: linear-gradient(to bottom right, #a18cd1, #fbc2eb);
    border-radius: 15px;
    padding: 20px 20px 0 20px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 400px;
}

.equipe-section .equipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.equipe-section .card-content {
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
    z-index: 1;
}
.equipe-section .card-content img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto 15px auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Styles responsive pour la section équipe */
@media (max-width: 768px) {
    .equipe-section {
        padding: 30px 15px;
    }
    
    .equipe-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .equipe-section .team-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-width: 100%;
        align-items: start;
    }
    
    .equipe-section .equipe-card {
        padding: 15px 15px 0 15px;
        margin: 0 auto;
        max-width: 300px;
        width: 100%;
        height: auto;
        min-height: auto;
    }
    
    .equipe-section .card-content img {
        height: 120px;
        width: 120px;
        object-fit: cover;
        object-position: center top;
        margin: 0 auto 15px auto;
        display: block;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    
    .equipe-section .card-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .equipe-section .card-content p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .equipe-section {
        padding: 20px 10px;
    }
    
    .equipe-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .equipe-section .team-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        max-width: 100%;
        align-items: start;
    }
    
    .equipe-section .equipe-card {
        padding: 12px 12px 0 12px;
        max-width: 280px;
    }
    
    .equipe-section .card-content img {
        height: 100px;
        width: 100px;
        border-radius: 8px;
    }
    
    .equipe-section .card-content h3 {
        font-size: 16px;
    }
    
    .equipe-section .card-content p {
        font-size: 13px;
    }
}
@media (max-width: 1200px) and (min-width: 901px) {
    .equipe-section .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        max-width: 1200px;
        align-items: start;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .equipe-section .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
        align-items: start;
    }
    
    .equipe-section .card-content img {
        height: 120px;
        width: 120px;
        border-radius: 12px;
    }
}
@media (max-width: 600px) {
    .equipe-section .card-content img {
        height: 110px;
        width: 110px;
        border-radius: 10px;
    }
}
.equipe-section .card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.equipe-section .card-content p {
    font-size: 14px;
    opacity: 0.9;
}
.equipe-section .equipe-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    animation: rotateGlow 10s infinite linear;
    z-index: 0;
}
/* Alignement des boutons en bas des cartes équipe */
.equipe-section .equipe-card {
    display: flex;
    flex-direction: column;
    height: auto; /* Chaque carte garde sa hauteur individuelle */
}

.equipe-section .card-content {
    display: flex;
    flex-direction: column;
    height: auto; /* Hauteur automatique selon le contenu */
    flex: 1; /* Prend l'espace nécessaire */
    padding-bottom: 0; /* Supprime le padding en bas pour coller le bouton */
}

/* Styles spécifiques pour les boutons des cartes équipe - sélecteur plus spécifique */
.equipe-section .equipe-card .contact-btn {
    margin-top: auto !important; /* Pousse le bouton en bas de la carte */
    margin-bottom: 12px !important; /* Ajoute une marge en bas */
    width: 80% !important; /* Réduit la largeur du bouton */
    padding: 12px 20px !important; /* Réduit le padding vertical */
    border-radius: 15px !important; /* Arrondit tous les coins du bouton */
    margin-left: auto !important; /* Centre le bouton horizontalement */
    margin-right: auto !important; /* Centre le bouton horizontalement */
    display: block !important; /* Force l'affichage en bloc pour le centrage */
    font-size: 14px !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

/* Styles responsive pour les boutons de contact */
@media (max-width: 768px) {
    .equipe-section .equipe-card .contact-btn {
        width: 90% !important;
        padding: 10px 16px !important;
        font-size: 13px !important;
        margin-top: 20px !important;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    .equipe-section .equipe-card .contact-btn {
        width: 90% !important;
        padding: 10px 16px !important;
        font-size: 12px !important;
        margin-top: 20px !important;
        margin-bottom: 15px !important;
    }
}

/* Alternance des couleurs des boutons selon la position dans la grille */
.equipe-section .equipe-card:nth-child(1) .contact-btn {
    background: linear-gradient(to right, #6a11cb, #2575fc) !important; /* Bleu-violet comme Pack Explorateur */
}

.equipe-section .equipe-card:nth-child(2) .contact-btn {
    background: linear-gradient(to right, #ff0099, #493240) !important; /* Rose-violet comme Pack Pionnier */
}

.equipe-section .equipe-card:nth-child(3) .contact-btn {
    background: linear-gradient(to right, #00b4db, #0083b0) !important; /* Bleu-cyan comme Pack Visionnaire */
}

.equipe-section .equipe-card:nth-child(4) .contact-btn {
    background: linear-gradient(to right, #6a11cb, #2575fc) !important; /* Retour au bleu-violet */
}

.equipe-section .equipe-card:nth-child(5) .contact-btn {
    background: linear-gradient(to right, #ff0099, #493240) !important; /* Retour au rose-violet */
}

/* Pricing section styles */
.pricing-section {
    margin: 0;
    padding: 50px 20px;
    color: #333;
    text-align: center;
}
.pricing-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: white;
}
.pricing-section p {
    font-size: 16px;
    color: white;
    margin-bottom: 40px;
}
.pricing-section > div:first-child { /* Toggle buttons */
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.pricing-section button {
    background: #ffffff;
    color: #333;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}
.pricing-section button:nth-child(2) {
    background: transparent;
    color: white;
    border: 1px solid white;
}
.pricing-section > div:last-child { /* Pricing Cards */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    align-items: start;
}
.pricing-section > div:last-child > div { /* Cards */
    background: white;
    border-radius: 10px;
    width: 100%;
    max-width: 320px;
    padding: 0 0 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-section > div:last-child > div {
    transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s cubic-bezier(.25,.8,.25,1);
}
.pricing-section > div:last-child > div:hover {
    transform: scale(1.07);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    z-index: 2;
}
.pricing-section > div:last-child > div > div:first-child { /* Header */
    color: white;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.pricing-section > div:last-child > div:nth-child(1) > div:first-child {
    background: linear-gradient(to right, #6a11cb, #2575fc);
}
.pricing-section > div:last-child > div:nth-child(2) > div:first-child {
    background: linear-gradient(to right, #ff0099, #493240);
}
.pricing-section > div:last-child > div:nth-child(3) > div:first-child {
    background: linear-gradient(to right, #00b4db, #0083b0);
}
.pricing-section > div:last-child > div h2 {
    font-size: 32px;
    margin: 20px 0 10px;
    text-align: center;
}
.pricing-section > div:last-child > div > p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}
.pricing-section > div:last-child > div > ul {
    list-style: none;
    padding: 0 20px;
    margin: 0;
}
.pricing-section > div:last-child > div > ul > li {
    margin-bottom: 10px;
    color: green;
}
.pricing-section > div:last-child > div > div:last-child {
    text-align: center;
    margin-top: 20px;
    margin-top: auto;
}
.pricing-section > div:last-child > div > div:last-child > button {
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}
.pricing-section > div:last-child > div:nth-child(1) > div:last-child > button {
    background: #6a11cb;
}
.pricing-section > div:last-child > div:nth-child(2) > div:last-child > button {
    background: #ff0099;
}
.pricing-section > div:last-child > div:nth-child(3) > div:last-child > button {
    background: #00b4db;
}

/* Pricing card hover effect */
.pricing-card {
    transition: transform 0.25s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.pricing-card:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* Responsive pour la section pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
        max-width: 1000px !important;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 400px !important;
    }
    
    .pricing-section > div:last-child > div {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }
}

/* Logo partenaire section styles */
.partners-section {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
}
.partners-section h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease-out;
}
.partners-section > div { /* slider */
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.partners-section > div > div { /* slider-track */
    display: flex;
    animation: scroll 20s linear infinite;
    transition: transform 0.5s ease;
}
.partners-section > div > div:hover {
    animation-play-state: paused;
}
.partners-section img {
    height: 100px;
    width: auto;
    margin: 0 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.partners-section img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Formulaire section styles */
.form-section {
    margin: 0;
    padding: 50px 20px;
    color: #333;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #a18cd1, #fbc2eb);
}
.form-section > div {
    display: flex;
    flex-direction: row;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: center;
}
@media (max-width: 900px) {
    .form-section > div {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
        padding: 0;
    }
    .form-section > div > div {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 0 24px 0;
    }
    .form-section > div > div:last-child {
        padding: 0 0 24px 0;
        border-radius: 0;
        box-shadow: none;
    }
    .form-section form {
        margin: 0;
    }
    .form-section input,
    .form-section select {
        width: 100% !important;
        min-width: 0;
        box-sizing: border-box;
    }
    .form-section form > div {
        flex-direction: column;
        gap: 12px;
    }
    .form-section > div > div:last-child h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 18px;
    }
    /* Centrer le texte au-dessus du formulaire en mobile */
    .form-section > div > div:first-child {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .form-section > div > div:first-child h1 {
        text-align: center !important;
        width: 100% !important;
    }
    .form-section > div > div:first-child p {
        text-align: center !important;
        width: 100% !important;
    }
    .form-section > div > div:first-child h3 {
        text-align: center !important;
        width: 100% !important;
    }
}
.form-section > div > div:first-child { /* Texte à gauche */
    width: 50%;
    text-align: left;
    color: white;
}
.form-section > div > div:first-child h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
.form-section > div > div:first-child p {
    font-size: 18px;
}
.form-section > div > div:last-child { /* Formulaire à droite */
    width: 100%;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.form-section > div > div:last-child h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left;
}
.form-section > div > div:last-child p {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
    color: #666;
}
.form-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-section form > div { /* Flex for name/prenom and tel/mail */
    display: flex;
    gap: 10px;
}
.form-section input, .form-section select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}
.form-section form > div input {
    flex: 1;
}
.form-section button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}


/* Aligne verticalement les cases à cocher du formulaire de paiement */
.form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0 12px 0;
    padding: 0;
    text-align: left;
    align-items: flex-start;
}
.form-checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 6px;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

/* Annule le padding et la bordure des checkboxes pour éviter le décalage */
.form-checkbox-group input[type="checkbox"] {
    padding: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    width: auto;
    height: auto;
}



/* Footer styles */
.footer-section {
    background: linear-gradient(to bottom, #a18cd1, #fbc2eb);
    color: white;
    padding: 50px 20px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.footer-section > div:first-child { /* footer-container */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.footer-section > div:first-child > div { /* footer-column */
    flex: 1;
    min-width: 200px;
    animation: fadeIn 1.5s ease-out;
}
.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-section ul li a:hover {
    color: #ffcc00;
    transform: translateX(5px);
}
.footer-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}
.footer-section .social-icons a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-section .social-icons a:hover {
    color: #ffcc00;
    transform: scale(1.2);
}
.footer-section .newsletter {
    margin-top: 15px;
}
.footer-section .newsletter form {
    margin: 0;
}
.footer-section .newsletter-input-group {
    display: flex;
    align-items: center;
    gap: 0;
}
.footer-section .newsletter input {
    padding: 10px;
    border: none;
    border-radius: 20px 0 0 20px;
    width: 200px;
    font-size: 14px;
    margin: 0;
}
.footer-section .newsletter button {
    padding: 10px 20px;
    background: #ffcc00;
    color: #333;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}
.footer-section .newsletter button:hover {
    background: #ff0099;
    color: white;
}
.footer-section .copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    opacity: 0.8;
}
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    animation: pulse 5s infinite alternate ease-in-out;
    z-index: -1;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-section > div:first-child {
        flex-direction: column;
        text-align: center;
    }
    .footer-section > div:first-child > div {
        margin-bottom: 30px;
    }
    .footer-section .social-icons {
        justify-content: center;
    }
    .footer-section .newsletter input {
        width: 150px;
    }
}

/* Volet latéral (side-panel) et overlay */
.overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: none;
}
.overlay.active {
    opacity: 1;
    pointer-events: auto;
    display: block !important;
}



.logo-carousel-section {
    background: #fff;
    padding: 60px 40px;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logo-carousel {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: scroll-logos 28s linear infinite;
    width: max-content;
}
.logo-carousel img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.2) brightness(0.95);
    transition: filter 0.2s;
}
.logo-carousel img:hover {
    filter: grayscale(0) brightness(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}
@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
    .logo-carousel-section { 
        min-height: 150px;
        padding: 40px 20px;
    }
    .logo-carousel img { height: 50px; }
    .logo-carousel { gap: 24px; }
} 

.cta-button {
    background: linear-gradient(to right, #ff0099, #ffcc00);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}
.cta-button:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.8) !important;
} 

/* Style pour la vidéo du slider (hero-section) pour afficher un poster par défaut */
.video-player video {
    background: #000;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Styles responsives pour tous les boutons */
@media (max-width: 768px) {
    /* Bouton CTA principal */
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 40px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    
    /* Boutons de tarification */
    .buy-btn {
        padding: 12px 20px !important;
        font-size: 16px !important;
        border-radius: 20px !important;
        width: 100% !important;
        max-width: 250px !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* Boutons toggle HT/TTC */
    #ht-btn, #ttc-btn {
        padding: 8px 16px !important;
        font-size: 14px !important;
        border-radius: 15px !important;
        min-width: 60px !important;
    }
    
    /* Conteneur PayPal du formulaire */
    #paypal-button-container {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* Checkboxes du formulaire */
    .form-checkbox-group {
        margin: 20px 0 !important;
        gap: 12px !important;
    }
    
    .form-checkbox-group label {
        font-size: 13px !important;
        line-height: 1.4 !important;
        gap: 8px !important;
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .form-checkbox-group input[type="checkbox"] {
        min-width: 16px !important;
        min-height: 16px !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }
    

    
    /* Bouton newsletter */
    .footer-section .newsletter button {
        padding: 8px 16px !important;
        font-size: 14px !important;
        border-radius: 15px !important;
        margin-top: 8px !important;
    }
}

@media (max-width: 480px) {
    /* Bouton CTA principal */
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 35px;
        max-width: 250px;
    }
    
    /* Boutons de tarification */
    .buy-btn {
        padding: 10px 16px !important;
        font-size: 14px !important;
        border-radius: 18px !important;
        max-width: 220px !important;
    }
    
    /* Boutons toggle HT/TTC */
    #ht-btn, #ttc-btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
        border-radius: 12px !important;
        min-width: 50px !important;
    }
    
    /* Conteneur PayPal du formulaire */
    #paypal-button-container {
        max-width: 250px !important;
    }
    
    /* Checkboxes du formulaire */
    .form-checkbox-group {
        margin: 16px 0 !important;
        gap: 10px !important;
    }
    
    .form-checkbox-group label {
        font-size: 12px !important;
        line-height: 1.3 !important;
        gap: 6px !important;
    }
    
    .form-checkbox-group input[type="checkbox"] {
        min-width: 14px !important;
        min-height: 14px !important;
        margin-top: 1px !important;
    }
    

    
    /* Bouton newsletter */
    .footer-section .newsletter button {
        padding: 6px 12px !important;
        font-size: 12px !important;
        border-radius: 12px !important;
    }
} 

.contact-btn {
    /* Bouton contacter sous chaque membre de l'équipe, même design que les boutons tarifs */
    background: linear-gradient(to right, #6a11cb, #2575fc) !important;
    color: white !important;
    border: none !important;
    padding: 10px 28px !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-top: 16px !important;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.18) !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}
.contact-btn:hover {
    background: linear-gradient(to right, #2575fc, #6a11cb) !important;
    box-shadow: 0 8px 25px rgba(106, 17, 203, 0.28) !important;
    transform: translateY(-2px) scale(1.04) !important;
}

/* Style pour les boutons de contact désactivés (quand pas d'email) */
.contact-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background: #6c757d !important;
    box-shadow: none !important;
    transform: none !important;
}

.contact-btn:disabled:hover {
    background: #6c757d !important;
    box-shadow: none !important;
    transform: none !important;
} 

/* Formulaire de contact modal */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: none;
    align-items: center; /* Centre verticalement le modal */
    justify-content: center;
    backdrop-filter: blur(5px);
    overflow-y: auto; /* Permet le scroll de la page */
    padding: 20px 0; /* Ajoute un peu d'espace en haut et en bas */
}

.contact-overlay.active {
    display: flex !important;
    z-index: 99999 !important;
    opacity: 1 !important;
}

.contact-modal {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    animation: fadeIn 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 100000;
    border: 2px solid rgba(106, 17, 203, 0.2);
    margin: auto;
    transform: scale(0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-modal.active {
    z-index: 100000 !important;
    opacity: 1 !important;
    transform: scale(1) !important;
}

.close-contact-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    z-index: 100001;
    pointer-events: auto;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.close-contact-btn:hover {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.contact-modal h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-modal form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 400px;
}

/* Style spécial pour le bouton du formulaire modal */
.contact-modal .contact-btn {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    color: white !important;
    border: none !important;
    padding: 18px 30px !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-top: 20px !important;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3) !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Style spécial pour les checkboxes du formulaire modal */
.contact-modal .form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-modal .form-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(106, 17, 203, 0.1);
    backdrop-filter: blur(5px);
}

.contact-modal .form-checkbox-group label:hover {
    background: rgba(106, 17, 203, 0.05);
    border-color: rgba(106, 17, 203, 0.3);
    transform: translateX(5px);
}

.contact-modal .form-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #6a11cb;
    cursor: pointer;
    border-radius: 4px;
}

.contact-modal .contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    transition: left 0.3s ease;
    z-index: 1;
}

.contact-modal .contact-btn:hover::before {
    left: 0;
}

.contact-modal .contact-btn span {
    position: relative;
    z-index: 2;
}

.contact-modal .contact-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(106, 17, 203, 0.4) !important;
}

.contact-modal input,
.contact-modal textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-modal input:focus,
.contact-modal textarea:focus {
    outline: none;
    border-color: #6a11cb;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1), 0 4px 15px rgba(106, 17, 203, 0.2);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
}

.contact-modal textarea {
    min-height: 120px;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
}

/* Styles pour la sécurité du formulaire */
.message-strength {
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #e9ecef;
}

.strength-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: #dc3545;
    transition: all 0.3s ease;
}

.strength-fill.weak { background: #dc3545; }
.strength-fill.medium { background: #ffc107; }
.strength-fill.strong { background: #28a745; }

.strength-text {
    font-size: 12px;
    color: #6c757d;
}

/* Styles pour le bouton désactivé */
.contact-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #6c757d !important;
}

/* Style pour les champs obligatoires */
.form-checkbox-group label:has(input[required]) {
    font-weight: 600;
    color: #333;
}

.form-checkbox-group label:has(input[required])::after {
    content: ' *';
    color: #dc3545;
    font-weight: bold;
}

.btn-loading {
    display: none;
}

/* Animation de chargement */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

/* Responsive pour le modal */
@media (max-width: 768px) {
    .contact-overlay {
        padding: 10px;
    }
    
    .contact-modal {
        padding: 25px 20px;
        width: 95%;
        max-width: none;
        max-height: 85vh;
        margin: auto; /* Centre parfaitement */
    }
    
    .contact-modal h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .contact-modal form {
        min-height: 300px; /* Réduit la hauteur minimale sur mobile */
        gap: 15px;
    }
    
    .contact-modal input,
    .contact-modal textarea {
        padding: 12px;
        font-size: 16px; /* Évite le zoom sur iOS */
    }
    
    .close-contact-btn {
        top: 10px;
        right: 15px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact-overlay {
        padding: 5px;
    }
    
    .contact-modal {
        padding: 20px 15px;
        width: 98%;
        max-height: 90vh;
        margin: auto; /* Centre parfaitement */
    }
    
    .contact-modal h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .contact-modal form {
        min-height: 250px;
        gap: 12px;
    }
    
    .contact-modal input,
    .contact-modal textarea {
        padding: 10px;
        font-size: 16px;
    }
    
    .close-contact-btn {
        top: 8px;
        right: 12px;
        font-size: 18px;
    }
}

/* Styles pour le popup Pack Galactique */
.galactique-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galactique-overlay.active {
    opacity: 1;
    display: flex;
}

.galactique-modal {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.galactique-overlay.active .galactique-modal {
    transform: scale(1);
}

.close-galactique-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-galactique-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.galactique-modal h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-align: center;
}

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

.galactique-modal label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.galactique-modal input,
.galactique-modal textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.galactique-modal input:focus,
.galactique-modal textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

.galactique-submit-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.galactique-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

@media (max-width: 768px) {
    .galactique-modal {
        padding: 30px 20px;
        width: 95%;
    }
    
    .galactique-modal h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .galactique-modal {
        padding: 25px 15px;
        width: 98%;
    }
    
    .galactique-modal h2 {
        font-size: 1.3rem;
    }
}

/* Styles pour l'accordéon des biographies */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    border-radius: 0 0 15px 15px;
    margin-top: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.accordion-content.active {
    max-height: 1200px;
    padding: 25px;
    padding-bottom: 40px;
    margin-top: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.bio-content {
    color: #333;
    line-height: 1.6;
}

.bio-content h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.bio-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.bio-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.bio-content li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

/* Styles pour les tags des points forts */
.bio-content .strengths-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.bio-content .strength-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.bio-content .strength-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Animation du bouton accordéon */
.accordion-toggle.active {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: scale(1.05);
}

/* Responsive pour l'accordéon */
@media (max-width: 768px) {
    .accordion-content.active {
        max-height: 1000px;
        padding: 15px;
        padding-bottom: 30px;
        margin-top: 10px;
        margin-bottom: 12px;
    }
    
    .bio-content h4 {
        font-size: 16px;
    }
    
    .bio-content p,
    .bio-content li {
        font-size: 13px;
    }
    
    .bio-content .strengths-tags {
        gap: 6px;
        margin-top: 12px;
    }
    
    .bio-content .strength-tag {
        padding: 5px 10px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .accordion-content.active {
        max-height: 800px;
        padding: 12px;
        padding-bottom: 25px;
        margin-top: 8px;
        margin-bottom: 12px;
    }
    
    .bio-content h4 {
        font-size: 15px;
    }
    
    .bio-content p,
    .bio-content li {
        font-size: 12px;
    }
    
    .bio-content .strengths-tags {
        gap: 5px;
        margin-top: 10px;
    }
    
    .bio-content .strength-tag {
        padding: 4px 8px;
        font-size: 10px;
    }
}

/* Styles pour la page de contact */
.contact-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-background .stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite;
}

.contact-hero-background .nebula {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    animation: nebulaPulse 6s ease-in-out infinite;
}

.contact-hero-background .asteroids {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 20px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 150px 60px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 250px 40px, rgba(255,255,255,0.7), transparent);
    animation: asteroid 8s linear infinite;
}

/* Vaisseau spatial */
.contact-hero-background .spaceship {
    position: absolute;
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 
        0 0 20px rgba(102, 126, 234, 0.8),
        0 0 40px rgba(118, 75, 162, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    animation: spaceshipFly 6s ease-in-out infinite;
    z-index: 10;
}

.contact-hero-background .spaceship::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6b6b, #ffd93d);
    border-radius: 2px;
    transform: translateY(-50%);
    animation: engineGlow 0.5s ease-in-out infinite alternate;
}

.contact-hero-background .spaceship::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, transparent);
    border-radius: 2px;
    transform: translateY(-50%);
}

/* Lignes d'hypervitesse */
.contact-hero-background .hyperdrive-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.8) 50%, transparent 100%),
        linear-gradient(90deg, transparent 0%, rgba(118, 75, 162, 0.6) 50%, transparent 100%),
        linear-gradient(90deg, transparent 0%, rgba(255, 107, 107, 0.4) 50%, transparent 100%);
    background-size: 200px 2px, 150px 1px, 100px 1px;
    background-position: 
        0% 20%, 
        0% 50%, 
        0% 80%;
    background-repeat: repeat-x;
    animation: hyperdriveSpeed 2s linear infinite;
    opacity: 0.7;
}

/* Animations pour le vaisseau */
@keyframes spaceshipFly {
    0%, 100% {
        transform: translateX(-100px) translateY(60px) rotate(-5deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateX(50vw) translateY(40px) rotate(5deg);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(60px) rotate(-5deg);
        opacity: 0;
    }
}

@keyframes engineGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.8);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 1), 0 0 30px rgba(255, 209, 61, 0.8);
    }
}

@keyframes hyperdriveSpeed {
    0% {
        background-position: 
            -200px 20%, 
            -150px 50%, 
            -100px 80%;
    }
    100% {
        background-position: 
            calc(100vw + 200px) 20%, 
            calc(100vw + 150px) 50%, 
            calc(100vw + 100px) 80%;
    }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: fadeIn 1s ease-out;
}

.contact-hero-content p {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    animation: fadeIn 1.5s ease-out;
}

.contact-page-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    min-height: 100vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 2px solid rgba(106, 17, 203, 0.1);
}

.contact-form-container h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-container > p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6a11cb;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

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

.contact-submit-btn {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 8px 25px rgba(106, 17, 203, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(106, 17, 203, 0.4);
}

.contact-info-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 2px solid rgba(106, 17, 203, 0.1);
}

.contact-info-container h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 17, 203, 0.15);
}

.contact-icon {
    font-size: 2rem;
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
}

.contact-details h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-details a {
    color: #6a11cb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2575fc;
}

.map-container {
    margin-top: 30px;
}

.map-container h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.google-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.google-map iframe {
    border-radius: 15px;
}

/* Responsive pour la page contact */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 60px 15px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .contact-form-container h2,
    .contact-info-container h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .contact-page-section {
        padding: 40px 10px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 20px 15px;
    }
    
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero-content p {
        font-size: 0.9rem;
    }
    
    .contact-form-container h2,
    .contact-info-container h2 {
        font-size: 1.4rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        margin-right: 10px;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
}

/* Section Produit */
.produit-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.produit-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.produit-stars .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.produit-stars .star:nth-child(1) { animation-delay: 0s; }
.produit-stars .star:nth-child(2) { animation-delay: -5s; }
.produit-stars .star:nth-child(3) { animation-delay: -2s; }
.produit-stars .star:nth-child(4) { animation-delay: -10s; }
.produit-stars .star:nth-child(5) { animation-delay: -3s; }
.produit-stars .star:nth-child(6) { animation-delay: -8s; }
.produit-stars .star:nth-child(7) { animation-delay: -4s; }

.produit-planet {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: orbit 30s infinite linear;
}

.produit-planet:nth-child(2) {
    animation: orbit 40s infinite linear reverse;
    animation-delay: -15s;
}

.produit-planet:nth-child(3) {
    animation: orbit 35s infinite linear;
    animation-delay: -10s;
}

.produit-galaxy {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 5%;
    left: 5%;
    animation: rotate 50s infinite linear;
    opacity: 0.8;
}

.galaxy-star {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: twinkle 2s infinite alternate;
}

.galaxy-star:nth-child(1) { top: 20px; left: 20px; animation-delay: 0s; }
.galaxy-star:nth-child(2) { top: 40px; left: 60px; animation-delay: 0.5s; }
.galaxy-star:nth-child(3) { top: 80px; left: 40px; animation-delay: 1s; }
.galaxy-star:nth-child(4) { top: 30px; left: 70px; animation-delay: 1.5s; }
.galaxy-star:nth-child(5) { top: 60px; left: 10px; animation-delay: 2s; }

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

.produit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.produit-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.produit-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.produit-cta {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.produit-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.produit-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.produit-mockup {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nfc-tag {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.nfc-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite alternate;
}

.nfc-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nfc-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: scalePulse 2s infinite alternate;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive pour la section produit */
@media (max-width: 1200px) {
    .produit-content {
        gap: 40px;
    }
    
    .produit-text h1 {
        font-size: 3rem;
    }
    
    .produit-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .produit-section {
        padding: 60px 20px;
    }
    
    .produit-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .produit-text h1 {
        font-size: 2.5rem;
    }
    
    .produit-text p {
        font-size: 1.1rem;
    }
    
    .produit-mockup {
        width: 250px;
        height: 250px;
    }
    
    .nfc-tag {
        width: 180px;
        height: 180px;
    }
    
    .nfc-icon {
        font-size: 2.5rem;
    }
    
    .produit-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .produit-section {
        padding: 40px 15px;
    }
    
    .produit-text h1 {
        font-size: 2rem;
    }
    
    .produit-text p {
        font-size: 1rem;
    }
    
    .produit-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .produit-mockup {
        width: 200px;
        height: 200px;
    }
    
    .nfc-tag {
        width: 150px;
        height: 150px;
    }
    
    .nfc-icon {
        font-size: 2rem;
    }
    
    .nfc-text {
        font-size: 1rem;
    }
    
    .produit-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .produit-mockup-porte-clefs,
    .produit-mockup-magnet {
        width: 200px;
        height: 200px;
    }
    
    .porte-clefs-icon img {
        width: 120px !important;
        height: 120px !important;
    }
    
    .magnet-icon img {
        width: 120px !important;
        height: 120px !important;
    }
    
    .xray-halo {
        width: 140px;
        height: 140px;
    }
    
    .xray-halo-2 {
        width: 160px;
        height: 160px;
    }
    
    .xray-halo-3 {
        width: 180px;
        height: 180px;
    }
    
    .magnetic-field {
        width: 120px;
        height: 120px;
    }
    
    .magnetic-field-1 {
        width: 140px;
        height: 140px;
    }
    
    .magnetic-field-2 {
        width: 160px;
        height: 160px;
    }
    
    .magnetic-field-3 {
        width: 180px;
        height: 180px;
    }
    
    .wave-ring {
        width: 130px;
        height: 130px;
    }
    
    .wave-ring-1 {
        width: 150px;
        height: 150px;
    }
    
    .wave-ring-2 {
        width: 170px;
        height: 170px;
    }
    
    .wave-ring-3 {
        width: 190px;
        height: 190px;
    }
    
    .porte-clefs-tag,
    .magnet-tag {
        width: 100px;
        height: 100px;
    }
    
    .magnet-tag {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .produit-section {
        padding: 30px 10px;
    }
    
    .produit-text h1 {
        font-size: 1.8rem;
    }
    
    .produit-text p {
        font-size: 0.9rem;
    }
    
    .produit-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .produit-mockup {
        width: 150px;
        height: 150px;
    }
    
    .nfc-tag {
        width: 120px;
        height: 120px;
    }
    
    .nfc-icon {
        font-size: 1.5rem;
    }
    
    .nfc-text {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .produit-mockup-porte-clefs,
    .produit-mockup-magnet {
        width: 150px;
        height: 150px;
    }
    
    .porte-clefs-icon img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .magnet-icon img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .xray-halo {
        width: 90px;
        height: 90px;
    }
    
    .xray-halo-2 {
        width: 110px;
        height: 110px;
    }
    
    .xray-halo-3 {
        width: 130px;
        height: 130px;
    }
    
    .magnetic-field {
        width: 80px;
        height: 80px;
    }
    
    .magnetic-field-1 {
        width: 100px;
        height: 100px;
    }
    
    .magnetic-field-2 {
        width: 120px;
        height: 120px;
    }
    
    .magnetic-field-3 {
        width: 140px;
        height: 140px;
    }
    
    .wave-ring {
        width: 85px;
        height: 85px;
    }
    
    .wave-ring-1 {
        width: 105px;
        height: 105px;
    }
    
    .wave-ring-2 {
        width: 125px;
        height: 125px;
    }
    
    .wave-ring-3 {
        width: 145px;
        height: 145px;
    }
    
    .porte-clefs-tag,
    .magnet-tag {
        width: 80px;
        height: 80px;
    }
    
    .magnet-tag {
        height: 60px;
    }
    
    .avantage-icon {
        font-size: 1.2rem;
    }
    
    .avantage span:last-child {
        font-size: 0.9rem;
    }
}

/* Animations pour le porte-clés - Effets spéciaux */
.xray-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    border: 2px solid rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: xrayPulse 5s ease-in-out infinite;
    z-index: 1;
}

.xray-halo-2 {
    width: 370px;
    height: 370px;
    border-color: rgba(0, 255, 255, 0.4);
    animation-delay: -1.7s;
    z-index: 2;
}

.xray-halo-3 {
    width: 390px;
    height: 390px;
    border-color: rgba(0, 255, 255, 0.2);
    animation-delay: -3.3s;
    z-index: 3;
}

@keyframes xrayPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
    }
}

.magnetic-field {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    border: 3px solid transparent;
    border-top: 3px solid rgba(255, 0, 255, 0.7);
    border-right: 3px solid rgba(255, 0, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: magneticRotate 7s linear infinite;
    z-index: 4;
}

.magnetic-field-1 {
    animation-duration: 7s;
    border-top-color: rgba(255, 0, 255, 0.8);
    border-right-color: rgba(255, 0, 255, 0.6);
}

.magnetic-field-2 {
    animation-duration: 10s;
    animation-direction: reverse;
    border-top-color: rgba(255, 0, 255, 0.5);
    border-right-color: rgba(255, 0, 255, 0.3);
    width: 340px;
    height: 340px;
}

.magnetic-field-3 {
    animation-duration: 13s;
    border-top-color: rgba(255, 0, 255, 0.3);
    border-right-color: rgba(255, 0, 255, 0.1);
    width: 360px;
    height: 360px;
}

@keyframes magneticRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.wave-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 330px;
    height: 330px;
    border: 2px solid rgba(0, 255, 0, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: waveExpand 4s ease-out infinite;
    z-index: 5;
}

.wave-ring-1 {
    animation-delay: 0s;
    border-color: rgba(0, 255, 0, 0.8);
}

.wave-ring-2 {
    animation-delay: 1.3s;
    border-color: rgba(0, 255, 0, 0.5);
}

.wave-ring-3 {
    animation-delay: 2.6s;
    border-color: rgba(0, 255, 0, 0.3);
}

@keyframes waveExpand {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Section Nos Produits */
.nos-produits-section {
    background: white;
    padding: 80px 20px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.produits-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.produits-container h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.produits-container > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

/* Onglets */
.onglets-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.onglet-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.onglet-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.onglet-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.onglet-icon {
    font-size: 1.5rem;
}

/* Contenu des onglets */
.onglets-content {
    position: relative;
}

.onglet-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.onglet-content.active {
    display: block;
}

/* Présentation produit */
.produit-presentation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.produit-visuel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.produit-mockup-porte-clefs,
.produit-mockup-magnet {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.porte-clefs-tag {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.porte-clefs-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.magnet-tag {
    position: relative;
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.magnet-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
}

.porte-clefs-icon,
.magnet-icon {
    z-index: 2;
}

/* Informations produit */
.produit-info {
    text-align: left;
}

.produit-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.produit-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.produit-avantages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.avantage {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.avantage-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.avantage span:last-child {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

.produit-cta-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.produit-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Responsive pour la section nos produits */
@media (max-width: 1200px) {
    .produit-presentation {
        gap: 40px;
    }
    
    .produits-container h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .nos-produits-section {
        padding: 60px 20px;
    }
    
    .produit-presentation {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .produit-info {
        text-align: center;
    }
    
    .produit-info h3 {
        font-size: 2rem;
    }
    
    .onglets-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .onglet-btn {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .nos-produits-section {
        padding: 40px 15px;
    }
    
    .produits-container h2 {
        font-size: 2rem;
    }
    
    .produits-container > p {
        font-size: 1rem;
    }
    
    .onglets-container {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .onglet-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .produit-presentation {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .produit-info h3 {
        font-size: 1.8rem;
    }
    
    .produit-description {
        font-size: 1rem;
    }
    
    .produit-avantages {
        gap: 15px;
    }
    
    .avantage {
        gap: 10px;
    }
    
    .produit-cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .produit-mockup-porte-clefs,
    .produit-mockup-magnet {
        width: 200px;
        height: 200px;
    }
    
    .porte-clefs-icon img {
        width: 120px !important;
        height: 120px !important;
    }
    
    .xray-halo {
        width: 140px;
        height: 140px;
    }
    
    .xray-halo-2 {
        width: 160px;
        height: 160px;
    }
    
    .xray-halo-3 {
        width: 180px;
        height: 180px;
    }
    
    .magnetic-field {
        width: 120px;
        height: 120px;
    }
    
    .magnetic-field-1 {
        width: 140px;
        height: 140px;
    }
    
    .magnetic-field-2 {
        width: 160px;
        height: 160px;
    }
    
    .magnetic-field-3 {
        width: 180px;
        height: 180px;
    }
    
    .wave-ring {
        width: 130px;
        height: 130px;
    }
    
    .wave-ring-1 {
        width: 150px;
        height: 150px;
    }
    
    .wave-ring-2 {
        width: 170px;
        height: 170px;
    }
    
    .wave-ring-3 {
        width: 190px;
        height: 190px;
    }
    
    .porte-clefs-tag,
    .magnet-tag {
        width: 100px;
        height: 100px;
    }
    
    .magnet-tag {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .nos-produits-section {
        padding: 30px 10px;
    }
    
    .produits-container h2 {
        font-size: 1.8rem;
    }
    
    .produits-container > p {
        font-size: 0.9rem;
    }
    
    .onglets-container {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .onglet-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .onglet-icon {
        font-size: 1.2rem;
    }
    
    .produit-presentation {
        gap: 30px;
    }
    
    .produit-info h3 {
        font-size: 1.6rem;
    }
    
    .produit-description {
        font-size: 0.9rem;
    }
    
    .produit-avantages {
        gap: 12px;
    }
    
    .avantage {
        gap: 8px;
    }
    
    .produit-cta-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .produit-mockup-porte-clefs,
    .produit-mockup-magnet {
        width: 150px;
        height: 150px;
    }
    
    .porte-clefs-icon img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .magnet-icon img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .xray-halo {
        width: 90px;
        height: 90px;
    }
    
    .xray-halo-2 {
        width: 110px;
        height: 110px;
    }
    
    .xray-halo-3 {
        width: 130px;
        height: 130px;
    }
    
    .magnetic-field {
        width: 80px;
        height: 80px;
    }
    
    .magnetic-field-1 {
        width: 100px;
        height: 100px;
    }
    
    .magnetic-field-2 {
        width: 120px;
        height: 120px;
    }
    
    .magnetic-field-3 {
        width: 140px;
        height: 140px;
    }
    
    .wave-ring {
        width: 85px;
        height: 85px;
    }
    
    .wave-ring-1 {
        width: 105px;
        height: 105px;
    }
    
    .wave-ring-2 {
        width: 125px;
        height: 125px;
    }
    
    .wave-ring-3 {
        width: 145px;
        height: 145px;
    }
    
    .porte-clefs-tag,
    .magnet-tag {
        width: 80px;
        height: 80px;
    }
    
    .magnet-tag {
        height: 60px;
    }
    
    .avantage-icon {
        font-size: 1.2rem;
    }
    
    .avantage span:last-child {
        font-size: 0.9rem;
    }
}




@media (max-width: 768px) {
	.menu-section nav { position: relative; }
	.menu-section #menu-toggle {
		display: block;
		position: absolute;
		top: 12px;
		right: 12px;
		z-index: 10005;
		background: rgba(0,0,0,0.15);
		color: #fff;
		border: 1px solid rgba(255,255,255,0.7);
		border-radius: 10px;
		padding: 8px 12px;
		backdrop-filter: blur(4px);
	}
	.menu-section ul {
		top: 60px; /* décale le panneau sous le bouton */
		right: 10px;
	}
}



/* Assure la cliquabilité du CTA du hero au-dessus des overlays */
.hero-cta-container {
	/* removed */
}
.hero-cta-container .cta-button {
	/* removed */
}

/* CTA en fin de menu (desktop) */
.menu-section nav ul .locale-li {
	margin-left: auto;
}

/* Bouton Nous contacter (rectangulaire contour blanc) */
.menu-section .contact-cta-button {
	background: transparent;
	color: #ffffff !important;
	padding: 10px 16px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	border: 2px solid #ffffff;
}
.menu-section .contact-cta-button:hover {
	background: rgba(255,255,255,0.12);
	color: #ffffff !important;
}

/* Bouton Mon compte (même style que Nous contacter) */
.menu-section .account-cta-button {
	background: transparent;
	color: #ffffff !important;
	padding: 10px 16px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	border: 2px solid #ffffff;
	display: flex;
	align-items: center;
	gap: 8px;
}
.menu-section .account-cta-button:hover {
	background: rgba(255,255,255,0.12);
	color: #ffffff !important;
}

/* Style pour l'icône dans le bouton Mon compte */
.menu-section .account-cta-button .user-icon {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
}

.menu-section .account-cta-button:hover .user-icon {
	transform: scale(1.1);
}

/* Tablet et Mobile: le UL passe en colonne, on annule le push à droite */
@media (max-width: 1024px) {
	.menu-section nav ul .menu-contact-cta {
		margin-left: 0;
	}
}

.porte-clefs-icon,
.magnet-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Alignement rendu images mockups (desktop/base) */
.produit-mockup-porte-clefs .porte-clefs-icon img,
.produit-mockup-magnet .magnet-icon img {
	width: 100%;
	height: auto;
	object-fit: contain;
	position: relative;
	z-index: 10;
}

/* Switch locale */
/* removed */
/* Zone droite du header: menu + switch + burger */
/* removed */
/* En mobile, placer le switch sous le logo si besoin */
/* removed */
/* Switch dans le UL */
/* removed */

/* Conteneur droit du header en flex minimal */
.nav-right { display: flex; align-items: center; gap: 10px; }

/* Forcer la visibilité du bouton burger en tablette et mobile et le placer au-dessus */
@media (max-width: 1024px) {
	.menu-section button#menu-toggle { display: block; position: relative; z-index: 10002; }
	.menu-section nav { display: flex; justify-content: space-between; align-items: center; }
	.nav-right { display: flex; align-items: center; gap: 10px; }
}

@media (max-width: 1024px) {
	/* Bouton en premier, panneau juste en dessous */
	.menu-section nav { position: relative; }
	.menu-section #menu-toggle { z-index: 10010; position: relative; }
	.menu-section ul { top: 50px; right: 10px; z-index: 1000; }
}

/* Correctif robuste menu tablette et mobile: panneau en absolute sous le bouton */
@media (max-width: 1024px) {
	.menu-section .nav-right { position: relative; }
	.menu-section #menu-toggle { display:block !important; position: absolute !important; top: 12px !important; right: 12px !important; z-index: 10010 !important; }
	.menu-section ul { position: absolute !important; display: none !important; top: 44px !important; right: 10px !important; left: auto !important; width: calc(100vw - 20px) !important; max-width: 300px !important; }
	.menu-section ul.active { display: flex !important; }
}

/* Reset tablette et mobile menu positioning to default (undo previous absolute overrides) */
@media (max-width: 1024px) {
	.menu-section #menu-toggle { position: static !important; z-index: auto !important; }
	.menu-section .nav-right { position: static !important; }
	.menu-section ul { position: absolute !important; top: 80px !important; right: 10px !important; left: auto !important; width: calc(100vw - 20px) !important; max-width: 300px !important; }
	.menu-section ul.active { display: flex !important; }
}

/* Responsive pour le titre Timelapse-3D */
@media (max-width: 1024px) {
	.menu-section .logo span {
		font-size: 1.4rem !important;
		letter-spacing: 0.5px !important;
	}
	
	.menu-section .logo img {
		height: 70px !important;
	}
}

@media (max-width: 768px) {
	.menu-section .logo span {
		font-size: 1.2rem !important;
		letter-spacing: 0.3px !important;
	}
	
	.menu-section .logo img {
		height: 60px !important;
	}
}

@media (max-width: 480px) {
	.menu-section .logo span {
		font-size: 1rem !important;
		letter-spacing: 0.2px !important;
	}
	
	.menu-section .logo img {
		height: 50px !important;
	}
	
	.menu-section .logo {
		gap: 10px !important;
	}
}