 /* --- 1. VARIABLES & RESET --- */
:root {
    --beige-bg: #FDFBF7;
    --magenta: #E10098;
    --gold: #D4AF37;
    --dark-text: #222222;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 12px 32px 0 rgba(31, 38, 135, 0.05);
    --glass-blur: blur(14px);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Manrope', sans-serif; scroll-behavior: smooth; }

body { background-color: var(--beige-bg); color: var(--dark-text); overflow-x: hidden; line-height: 1.6; }

/* --- 2. BACKGROUND ANIMATION --- */
.bg-orbs { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.3; animation: float 15s infinite ease-in-out; }
.orb-1 { width: 45vw; height: 45vw; background: var(--gold); top: -10%; left: -5%; }
.orb-2 { width: 40vw; height: 40vw; background: var(--magenta); bottom: -10%; right: -5%; animation-delay: -5s; }
@keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, 40px); } }

/* --- 3. GLASS COMPONENT --- */
.glass { background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: 24px; box-shadow: var(--glass-shadow); transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }

/* --- 4. NAVIGATION --- */
nav { position: fixed; top: 0; width: 100%; padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: rgba(253, 251, 247, 0.85); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.4); transition: all 0.4s ease; }
.logo { font-size: 1.6rem; font-weight: 800; color: var(--dark-text); text-decoration: none; letter-spacing: -0.5px; display: flex; align-items: center; gap: 0px; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.02); }
.logo img { height: 35px; width: auto; object-fit: contain; }
.logo span { color: var(--magenta); }

.nav-links { display: flex; gap: 2rem; align-items: center; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.nav-links a { text-decoration: none; color: var(--dark-text); font-weight: 600; transition: color 0.3s, transform 0.3s; }
.nav-links a:hover { color: var(--magenta); transform: translateY(-1px); }
.burger { display: none; cursor: pointer; font-size: 1.5rem; color: var(--dark-text); z-index: 1002; transition: transform 0.3s ease; }
.burger:active { transform: scale(0.9); }

/* --- 5. BUTTONS & CTAs --- */
.btn { padding: 14px 32px; border-radius: 50px; text-decoration: none; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); border: none; cursor: pointer; font-size: 1rem; }
.btn:hover { transform: translateY(-4px); box-shadow: 0 12px 25px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #e8c654); color: white; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
.btn-magenta { background: linear-gradient(135deg, var(--magenta), #ff33b8); color: white; box-shadow: 0 4px 15px rgba(225, 0, 152, 0.3); }
.btn-outline { border: 2px solid var(--dark-text); color: var(--dark-text); background: transparent; }
.btn-outline:hover { background: var(--dark-text); color: white; }

/* --- 6. LAYOUT UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.text-magenta { color: var(--magenta); }
.text-gold { color: var(--gold); }
.mb-3 { margin-bottom: 3rem; }
h1 { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1px; }
h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -1px; }
p { margin-bottom: 1rem; color: #555; font-size: 1.05rem; }

/* --- 7. HERO --- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 60px 0; width: 100%; }
.hero-container { width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 5%; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.glass-phone { width: 280px; height: 460px; border: 8px solid rgba(255,255,255,0.8); border-radius: 45px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; animation: floating 6s ease-in-out infinite; box-shadow: 0 30px 60px rgba(0,0,0,0.1); background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2)); backdrop-filter: blur(20px); margin: 0 auto; }
.wave-anim { display: flex; align-items: center; gap: 4px; margin-top: 20px; }
.wave-anim div { width: 8px; height: 20px; background: var(--magenta); border-radius: 5px; animation: wave 1s infinite ease-in-out; }
.wave-anim div:nth-child(2) { animation-delay: 0.1s; height: 40px; }
.wave-anim div:nth-child(3) { animation-delay: 0.2s; height: 25px; }
@keyframes floating { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* --- 8. STATS & OUBLIEZ LE PAPIER --- */
.stats-banner { background: white; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 3rem 0; margin-bottom: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: 3rem; color: var(--gold); margin: 0; line-height: 1; }
.stat-item p { font-size: 1.1rem; font-weight: 700; color: var(--dark-text); margin-top: 10px; }
.stat-item span { display: block; font-size: 0.9rem; color: #888; font-weight: 400; }

.vs-wrapper { background: rgba(255,255,255,0.3); border-radius: 30px; padding: 3rem; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.vs-wrapper:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.vs-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }
.old-way { filter: grayscale(1); opacity: 0.6; padding-right: 2rem; border-right: 1px solid rgba(0,0,0,0.1); }
.old-way h4 { font-size: 1.5rem; color: #333; margin-bottom: 1rem; }
.new-way { padding-left: 1rem; }
.new-way h4 { font-size: 2rem; color: var(--magenta); margin-bottom: 1rem; }
.check-list { list-style: none; margin-top: 1.5rem; }
.check-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 15px; font-weight: 600; }
.check-list li i { color: var(--gold); font-size: 1.3rem; background: rgba(212,175,55,0.1); padding: 10px; border-radius: 50%; }

/* --- 9. POUR QUEL ÉVÉNEMENT ? --- */
.event-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.event-card { text-align: center; padding: 2rem; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); border: 1px solid transparent; background: white; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.event-card:hover { border-color: var(--gold); transform: translateY(-8px); box-shadow: 0 15px 40px rgba(212,175,55,0.15); }
.event-card i { font-size: 2.5rem; color: var(--magenta); margin-bottom: 1rem; transition: transform 0.4s ease; }
.event-card:hover i { transform: scale(1.1); }

/* --- 10. COMMENT ÇA FONCTIONNE (A à Z) --- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::after { content: ''; position: absolute; width: 4px; background: rgba(212,175,55,0.2); top: 0; bottom: 0; left: 50%; margin-left: -2px; border-radius: 5px; }
.timeline-step { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; }
.timeline-step.left { left: 0; text-align: right; }
.timeline-step.right { left: 50%; text-align: left; }
.timeline-icon { position: absolute; width: 60px; height: 60px; right: -30px; background-color: white; border: 4px solid var(--gold); top: 15px; border-radius: 50%; z-index: 1; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: var(--gold); box-shadow: 0 0 0 8px rgba(255,255,255,0.8); }
.timeline-step.right .timeline-icon { left: -30px; }
.timeline-content { padding: 30px; background: white; position: relative; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05); transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.timeline-content:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(212,175,55,0.15); border-color: rgba(212,175,55,0.3); }
.timeline-content h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--dark-text); }
.tag-plan { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 800; margin-bottom: 10px; }
.tag-phys { background: rgba(212,175,55,0.1); color: var(--gold); }
.tag-digi { background: rgba(225,0,152,0.1); color: var(--magenta); }
.tag-all { background: rgba(34,34,34,0.1); color: var(--dark-text); }

/* --- 11. NOS FORMULES --- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1000px; margin: 0 auto; align-items: end; }
.pricing-card { background: white; border-radius: 30px; padding: 3rem 2.5rem; text-align: center; position: relative; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 15px 40px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.05); }
.pricing-card:hover { transform: translateY(-12px); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.pricing-card.premium { box-shadow: 0 20px 50px rgba(212,175,55,0.2); border: none; background: linear-gradient(to bottom, #ffffff, #fffdf5); }
.pricing-card.premium:hover { box-shadow: 0 30px 60px rgba(212,175,55,0.3); }
.badge-best { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--dark-text); color: white; padding: 8px 25px; border-radius: 30px; font-weight: 800; font-size: 0.9rem; letter-spacing: 1px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.price-tag { font-size: 4.5rem; font-weight: 800; margin: 1rem 0; line-height: 1; }
.price-tag span { font-size: 1.2rem; color: #888; font-weight: 600; }
.pricing-list { list-style: none; text-align: left; margin: 2.5rem 0; }
.pricing-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-size: 1.05rem; font-weight: 600; color: #444; }
.pricing-list li i { font-size: 1.2rem; }

/* --- 12. EXPÉRIENCE AUGMENTÉE --- */
.augmented-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.augmented-card { text-align: left; padding: 2.5rem; background: white; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); border: 1px solid transparent; }
.augmented-card:hover { border-color: var(--magenta); transform: translateY(-8px); box-shadow: 0 15px 40px rgba(225,0,152,0.1); }
.aug-icon { width: 70px; height: 70px; background: var(--beige-bg); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--magenta); margin-bottom: 1.5rem; transition: transform 0.4s ease; }
.augmented-card:hover .aug-icon { transform: scale(1.05) rotate(5deg); }

/* --- 13. TÉMOIGNAGES --- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.review-card { padding: 2.5rem; text-align: left; background: white; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; }
.reviewer-name { font-weight: 800; margin-top: 1rem; font-size: 1.05rem; color: var(--magenta); }
.reviewer-event { font-size: 0.85rem; color: #888; }

/* --- 14. FAQ & FOOTER --- */
.faq-container { max-width: 800px; margin: 0 auto; }
details { background: white; border-radius: 16px; margin-bottom: 1rem; padding: 5px 25px; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
details[open] { box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1); padding-bottom: 20px; }
summary { font-weight: 700; font-size: 1.1rem; padding: 20px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; outline: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold); transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease; background: rgba(212,175,55,0.1); width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
details[open] summary::after { content: '\f068'; transform: rotate(180deg); background: var(--gold); color: white; }
details p { color: #666; margin-top: 10px; padding-top: 15px; border-top: 1px solid rgba(0,0,0,0.05); }

footer { padding: 5rem 0 2rem; text-align: center; background: white; border-top: 1px solid rgba(0,0,0,0.05); margin-top: 4rem; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 8px; max-width: 480px; margin: 1.5rem auto 0; background: var(--beige-bg); border-radius: 50px; padding: 6px; border: 1px solid rgba(0,0,0,0.05); }
.newsletter-form input { flex: 1; min-width: 200px; border: none; padding: 12px 20px; border-radius: 50px; outline: none; font-size: 1rem; background: transparent; transition: background 0.3s; }
.newsletter-form input:focus { background: rgba(0,0,0,0.02); }
.newsletter-form button { background: var(--dark-text); color: white; border: none; padding: 12px 25px; border-radius: 50px; cursor: pointer; font-weight: 800; transition: all 0.3s ease; }
.newsletter-form button:hover { background: var(--gold); transform: scale(1.05); }

.mobile-sticky-cta{display:none;position:fixed;bottom:20px;left:5%;width:90%;z-index:900;background:linear-gradient(135deg,var(--gold),#e8c654);color:#fff;text-align:center;padding:16px;border-radius:50px;font-weight:800;font-size:1.2rem;text-decoration:none;box-shadow:0 10px 30px rgba(212,175,55,.4);animation:slideUp .5s ease-out;transform:translateY(0) scale(1);transition:transform .35s cubic-bezier(.22,.9,.34,1),box-shadow .35s cubic-bezier(.22,.9,.34,1),filter .35s ease;background-position .6s ease;-webkit-tap-highlight-color:transparent;will-change:transform,box-shadow,filter}
.mobile-sticky-cta:hover{transform:translateY(-3px) scale(1.02);box-shadow:0 18px 45px rgba(212,175,55,.55);filter:brightness(1.08) saturate(1.05)}
.mobile-sticky-cta:active{transform:translateY(1px) scale(.98);box-shadow:0 6px 15px rgba(212,175,55,.35);transition-duration:.08s}
@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-buttons { justify-content: center; }
    .vs-grid { grid-template-columns: 1fr; }
    .old-way { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding-right: 0; padding-bottom: 2rem; margin-bottom: 2rem; }
    .new-way { padding-left: 0; }
    .pricing-grid { grid-template-columns: 1fr; gap: 3rem; }
    .timeline::after { left: 31px; }
    .timeline-step { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-step.left { text-align: left; }
    .timeline-step.right { left: 0%; }
    .timeline-step.left .timeline-icon, .timeline-step.right .timeline-icon { left: 0px; }
    .augmented-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    
    /* Responsive Menu Hamburger - Fluidifié et superposé correctement */
    .nav-links { 
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 100vw; 
        height: 100vh; 
        background: rgba(253, 251, 247, 0.98); 
        backdrop-filter: blur(20px); 
        -webkit-backdrop-filter: blur(20px); 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
        opacity: 0; 
        pointer-events: none; 
        transform: translateY(-100%); /* Fait glisser le menu depuis le haut de façon fluide */
        gap: 2.5rem; 
        z-index: 1001; /* Doit être sous le burger (1002) mais au-dessus de la navbar (1000) */
    }
    .nav-links.active { 
        opacity: 1; 
        pointer-events: all; 
        transform: translateY(0); 
    }
    .nav-links a { font-size: 1.6rem; }
    .burger { display: block; z-index: 1002; } /* Au premier plan même avec le menu ouvert */
    
    /* Ajustement Newsletter Mobile */
    .newsletter-form { flex-direction: column; background: transparent; padding: 0; border: none; gap: 10px; }
    .newsletter-form input { width: 100%; background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.1); padding: 15px; border-radius: 15px; }
    .newsletter-form button { width: 100%; padding: 15px; border-radius: 15px; }
    
    body { padding-bottom: 80px; } 
    .mobile-sticky-cta { display: block; }
    #nav-book-btn { display: none; } 
}

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- BANNIÈRE COOKIES --- */
.cookie-banner { position: fixed; bottom: 30px; right: 30px; max-width: 360px; padding: 25px; z-index: 9999; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); border: 1px solid var(--gold); border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); display: none; text-align: left; transition: all 0.4s ease; }
.cookie-banner.show { display: block; animation: slideUpCookie 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
@keyframes slideUpCookie { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-buttons { display: flex; gap: 10px; margin-top: 15px; }
.btn-cookie { flex: 1; padding: 10px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: all 0.3s ease; border: none; }
.btn-cookie-accept { background: var(--dark-text); color: white; }
.btn-cookie-accept:hover { background: var(--gold); transform: translateY(-2px); }
.btn-cookie-decline { background: transparent; color: #666; border: 1px solid #ccc; }
.btn-cookie-decline:hover { background: rgba(0,0,0,0.05); color: var(--dark-text); }

@media (max-width: 768px) {
    .cookie-banner { bottom: 100px; right: 5%; left: 5%; max-width: 90%; }
}