
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root { --primary: #75C4E7; --dark: #1a1a2e; --white: #ffffff; --gold: #C5A663; --soft: #f8f9fa; }
        body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: var(--dark); }
        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; 
        }
        .logo .anima { color: var(--primary); 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%; 
        }

        .btn-contact-header { 
            background: var(--white); 
            color: var(--primary); 
            padding: 12px 28px; 
            border-radius: 30px; 
            font-weight: 600; 
            font-size: 0.95rem; 
            transition: all 0.3s ease; 
            border: 2px solid var(--white); 
        }
        
        .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;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        
        .burger span { 
            display: block; 
            width: 28px; 
            height: 3px; 
            background: var(--white); 
            border-radius: 3px; 
            transition: all 0.3s 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 ==================== */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--primary) 0%, #6AD5E7 100%);
            display: flex;
            align-items: center;
            padding: 120px 20px 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('maison-de-repos-hero.jpg') center/cover no-repeat;
            opacity: 0.2;
        }

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

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero h1 em {
            color: var(--gold);
            font-style: normal;
        }

        .hero .subtitle {
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 30px;
            max-width: 700px;
        }

        .hero-badges {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .badge {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 15px 25px;
            border-radius: 50px;
            color: var(--white);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .badge svg {
            width: 24px;
            height: 24px;
            fill: var(--white);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--white);
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--gold);
        }

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

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: 2px solid var(--white);
            transition: all 0.3s ease;
        }

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

        /* ==================== SECTION ==================== */
        .section {
            padding: 100px 20px;
        }

        .section.light {
            background: var(--soft);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .section-header span {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
        }

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

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        /* ==================== AVANTAGES ==================== */
        .avantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .avantage-card {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .avantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .avantage-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), #6AD5E7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .avantage-icon svg {
            width: 35px;
            height: 35px;
            fill: var(--white);
        }

        .avantage-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .avantage-card p {
            color: #666;
            line-height: 1.8;
        }

        /* ==================== FORMULES ==================== */
        .formules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .formule-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .formule-card:hover {
            transform: translateY(-10px);
        }

        .formule-header {
            background: linear-gradient(135deg, var(--primary), #6AD5E7);
            padding: 40px;
            text-align: center;
            color: var(--white);
        }

        .formule-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .formule-header .duration {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .formule-body {
            padding: 40px;
        }

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

        .formule-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .formule-features li:last-child {
            border-bottom: none;
        }

        .formule-features li svg {
            width: 20px;
            height: 20px;
            fill: var(--primary);
            flex-shrink: 0;
        }

        .formule-cta {
            text-align: center;
        }

        .btn-formule {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-formule:hover {
            background: var(--dark);
            transform: scale(1.05);
        }

        /* ==================== TÉMOIGNAGES ==================== */
        .temoignages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .temoignage-card {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.2;
        }

        .temoignage-text {
            font-style: italic;
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .temoignage-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-info h4 {
            font-weight: 700;
            color: var(--dark);
        }

        .author-info p {
            font-size: 0.9rem;
            color: #999;
        }

        /* ==================== CTA ==================== */
        .cta-section {
            background: linear-gradient(135deg, var(--dark) 0%, #2a2a4e 100%);
            padding: 100px 20px;
            text-align: center;
        }

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

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

        .cta-section p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 20px 30px;
        }

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

        .footer-col h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-col p,
        .footer-col a {
            color: rgba(255,255,255,0.7);
            line-height: 2;
            transition: color 0.3s ease;
        }

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

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

        .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: all 0.3s ease;
        }

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

        .footer-social svg {
            width: 20px;
            height: 20px;
            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);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .nav { 
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.4s ease;
                gap: 30px;
            }
            .nav.active { right: 0; }
            .nav-link { font-size: 1.5rem; }
            .btn-contact-header { display: none; }
            .burger { display: flex; }

            .hero h1 { font-size: 2.5rem; }
            .hero .subtitle { font-size: 1.2rem; }
            .section-header h2 { font-size: 2rem; }
            .hero-buttons { flex-direction: column; }
            .hero-buttons a { width: 100%; text-align: center; }
        }
    
        .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); }
        