
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root { --primary: #75C4E7; --dark: #1a1a2e; --white: #ffffff; --gold: #C5A663; }
        body { font-family: 'Montserrat', sans-serif; }
        a { text-decoration: none; color: inherit; }

        /* ==================== HEADER ==================== */
        .header { 
            position: fixed; 
            top: 0; 
            left: 0; 
            right: 0; 
            z-index: 1000; 
            padding: 15px 0; 
            background: var(--primary); 
            box-shadow: 0 2px 20px rgba(0,0,0,0.1); 
        }
        
        .header-inner { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            max-width: 1400px; 
            margin: 0 auto; 
            padding: 0 40px; 
        }
        
        .logo { 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            font-size: 1.8rem; 
            z-index: 1001; 
            flex-shrink: 0;
        }
        .logo .anima { color: var(--white); font-weight: 700; }
        .logo .musica { color: var(--white); font-weight: 600; }

        .nav { 
            display: flex; 
            align-items: center; 
            gap: 35px; 
        }
        
        .nav-link { 
            color: var(--white); 
            font-weight: 500; 
            font-size: 0.95rem; 
            padding: 8px 0; 
            position: relative; 
            white-space: nowrap;
        }
        
        .nav-link::after { 
            content: ''; 
            position: absolute; 
            bottom: 0; 
            left: 0; 
            width: 0; 
            height: 2px; 
            background: var(--white); 
            transition: width 0.3s ease; 
        }
        
        .nav-link:hover::after,
        .nav-link.active::after { 
            width: 100%; 
        }

        /* Cacher le bouton Contact mobile sur desktop */
        .nav-link-mobile {
            display: none;
        }

        .btn-contact-header { 
            background: var(--white); 
            color: var(--primary); 
            padding: 12px 28px; 
            border-radius: 30px; 
            font-weight: 600; 
            font-size: 0.95rem; 
            transition: transform 0.2s ease, box-shadow 0.2s ease; 
            border: 2px solid var(--white); 
            flex-shrink: 0;
        }
        
        .btn-contact-header:hover { 
            background: transparent; 
            color: var(--white);
        }

        .burger { 
            display: none; 
            flex-direction: column; 
            width: 40px; 
            height: 40px; 
            cursor: pointer; 
            z-index: 1001; 
            background: none; 
            border: none; 
            justify-content: center; 
            align-items: center; 
        }
        
        .burger span { 
            display: block; 
            width: 28px; 
            height: 3px; 
            background: var(--white); 
            border-radius: 3px; 
            transition: transform 0.2s ease, box-shadow 0.2s ease; 
            margin: 3px 0; 
        }
        
        .burger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .burger.active span:nth-child(2) { opacity: 0; }
        .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

        /* ==================== HERO SERVICES ==================== */
        .hero-services {
            min-height: 60vh;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .music-note {
            position: absolute;
            font-size: 2rem;
            color: #000;
            opacity: 0.08;
            pointer-events: none;
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-content h1 .blue { color: var(--primary); }
        .hero-content h1 .black { color: #000; font-weight: 700; }

        .hero-content .subtitle {
            font-size: 1.3rem;
            color: var(--primary);
        }

        /* ==================== SERVICES DÉTAILLÉS ==================== */
        .service-detail {
            padding: 100px 20px;
        }

        .service-detail:nth-child(even) {
            background: #f8f9fa;
        }

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

        .service-detail:nth-child(even) .container {
            direction: rtl;
        }

        .service-detail:nth-child(even) .service-text {
            direction: ltr;
        }

        .service-detail:nth-child(even) .service-image-wrapper {
            direction: ltr;
        }

        .service-image-wrapper {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .service-image-wrapper img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .service-text span {
            display: block;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .service-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 25px;
        }

        .service-text p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .service-text ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .service-text ul li {
            color: #666;
            font-size: 1rem;
            line-height: 2;
            padding-left: 30px;
            position: relative;
        }

        .service-text ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }

        .btn-primary {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 2px solid var(--primary);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--primary);
        }

        /* ==================== FORMULES ==================== */
        .formules-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 100px 20px;
        }

        .formules-section .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .formules-section .section-header span {
            display: block;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .formules-section .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .formules-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .formule-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            border: 2px solid #e0e0e0;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .formule-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(117, 196, 231, 0.2);
        }

        .formule-card.popular {
            border-color: var(--primary);
            background: rgba(197, 166, 99, 0.1);
        }

        /* Cartes sur fond clair */
        .formules-section[style*="f8f9fa"] .formule-card {
            background: white;
            border: 2px solid #e0e0e0;
        }

        .formules-section[style*="f8f9fa"] .formule-card.popular {
            border-color: var(--primary);
            background: rgba(197, 166, 99, 0.1);
        }

        .formules-section[style*="f8f9fa"] .formule-card h3 {
            color: var(--dark);
        }

        .formules-section[style*="f8f9fa"] .formule-card .price {
            color: var(--primary);
        }

        .formules-section[style*="f8f9fa"] .formule-card .duration {
            color: #666;
        }

        .formules-section[style*="f8f9fa"] .formule-card ul li {
            color: #555;
        }

        .formule-card .badge {
            background: var(--primary);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }

        .formule-card h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .formule-card .price {
            color: var(--primary);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .formule-card .duration {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 25px;
        }

        .formule-card ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .formule-card ul li {
            color: #555;
            font-size: 0.95rem;
            line-height: 2.2;
        }

        .btn-gold {
            display: inline-block;
            background: var(--primary);
            color: var(--dark);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 2px solid var(--primary);
        }

        .btn-gold:hover {
            background: transparent;
            color: var(--primary);
        }

        /* ==================== CTA ==================== */
        .cta-section {
            background: #f8f9fa;
            padding: 100px 20px;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .cta-section h2 em {
            color: var(--primary);
            font-style: normal;
        }

        .cta-section p {
            color: #666;
            font-size: 1.15rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: #0d0d1a;
            padding: 60px 20px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-col p,
        .footer-col a {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
            line-height: 1.8;
            display: block;
        }

        .footer-col a:hover {
            color: var(--primary);
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary);
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
            fill: var(--white);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1100px) {
            .header-inner { padding: 0 20px; }
            .nav { gap: 25px; }
            .nav-link { font-size: 0.9rem; }
            .formules-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 900px) {
            .nav { 
                position: fixed; 
                top: 0; left: 0; right: 0; bottom: 0; 
                background: var(--primary); 
                flex-direction: column; 
                justify-content: center; 
                align-items: center; 
                gap: 0;
                transform: translateX(100%); 
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000; 
            }
            .nav.active { transform: translateX(0); }
            .nav-link { font-size: 1.5rem; padding: 15px 0; }
            .nav-link-mobile {
                display: block;
                margin-top: 30px;
                background: white;
                color: var(--primary);
                padding: 15px 40px;
                border-radius: 30px;
                font-weight: 600;
                transition: all 0.3s ease;
            }
            .nav-link-mobile:hover {
                transform: scale(1.05);
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }
            .btn-contact-header { display: none; }
            .burger { display: flex; }

            .service-detail .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .service-detail:nth-child(even) .container {
                direction: ltr;
            }

            .service-image-wrapper img {
                height: 300px;
            }

            .formules-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
            .footer-social { justify-content: center; }
        }

        @media (max-width: 768px) {
            .hero-services { min-height: 50vh; padding: 100px 20px 60px; }
            .hero-content h1 { font-size: 2rem; }
            .hero-content .subtitle { font-size: 1.1rem; }

            .service-detail { padding: 60px 20px; }
            .service-text h2 { font-size: 1.8rem; }
            .service-text p { font-size: 1rem; }

            .formules-section { padding: 60px 20px; }
            .formules-section .section-header h2 { font-size: 1.8rem; }

            .cta-section { padding: 60px 20px; }
            .cta-section h2 { font-size: 1.8rem; }
        }

        @media (max-width: 480px) {
            .hero-content h1 { font-size: 1.6rem; }
            .service-text h2 { font-size: 1.5rem; }
            .formule-card .price { font-size: 1.6rem; }
            .cta-section h2 { font-size: 1.5rem; }
        }
    
        .btn-email-cta { display: inline-block; background: var(--gold); color: var(--dark); padding: 12px 30px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; box-shadow: 0 4px 15px rgba(197,166,99,0.3); text-decoration: none; }
        .btn-email-cta:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
        