
        /* Variable aliases — map page-pro names to global :root values */
        :root {
            --color-primary: var(--orange, #EF4A00);
            --color-primary-light: var(--orange-light, #FF6B2B);
            --color-cream: var(--cream, #FAFAF8);
            --color-dark: var(--dark, #1A1A1A);
            --color-warm-gray: var(--warm-gray, #6B6B6B);
            --font-heading: var(--serif, 'Cormorant Garamond', Georgia, serif);
            --radius-button: 12px;
            --radius-card: 20px;
        }

        /* NAV */
        .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 clamp(24px, 4vw, 80px); background: transparent; transition: var(--transition); }

        .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.15); }

        .nav.scrolled .nav-links a.active { color: var(--orange); background: var(--orange-subtle); }

        .nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }


        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.70) 50%, rgba(26,26,26,0.55) 100%),
                        url('../images/hero-foret-brume.jpg') center/cover no-repeat;
        }


        .hero-content {
            max-width: 700px;
            padding: 2rem;
            animation: fadeInUp 1s ease-out;
        }


        .hero h1 {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }


        .hero .subtitle {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 400;
            color: #FFC9B0;
            margin-bottom: 1.5rem;
        }


        .hero p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            font-weight: 300;
        }


        .hero-button {
            display: inline-block;
            background: var(--color-primary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: var(--radius-button);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }


        .hero-button:hover {
            background: var(--color-primary-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(239, 74, 0, 0.3);
        }


        /* Sections */
        section {
            padding: 6rem 2rem;
        }


        .section-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }


        .section-title {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 2rem;
            line-height: 1.2;
        }


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


        /* Problème Section */
        .problème {
            background: var(--color-cream);
        }


        .problème-content {
            max-width: 700px;
            margin: 0 auto;
        }


        .problème p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--color-warm-gray);
        }


        /* Solution Section */
        .solution {
            background: white;
        }


        .solution-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }


        .solution-image {
            width: 100%;
            height: 400px;
            border-radius: var(--radius-card);
            overflow: hidden;
            opacity: 0;
            animation: fadeInLeft 0.8s ease-out forwards;
        }


        .solution-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .solution-content {
            opacity: 0;
            animation: fadeInRight 0.8s ease-out forwards;
        }


        .solution-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--color-warm-gray);
            margin-bottom: 1.5rem;
        }


        /* Méthode Section */
        .méthode {
            background: var(--color-cream);
        }


        .méthode-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }


        .card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: var(--radius-card);
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards;
        }


        .card:nth-child(1) { animation-delay: 0.1s; }

        .card:nth-child(2) { animation-delay: 0.2s; }

        .card:nth-child(3) { animation-delay: 0.3s; }


        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(239, 74, 0, 0.15);
        }


        .card-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
            border-radius: 50%;
        }


        .card-icon svg {
            width: 32px;
            height: 32px;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }


        .card h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }


        .card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--color-warm-gray);
        }


        .méthode-button {
            display: inline-block;
            background: var(--color-primary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: var(--radius-button);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            margin-top: 2rem;
        }


        .méthode-button:hover {
            background: var(--color-primary-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(239, 74, 0, 0.3);
        }


        /* Témoignages Section */
        .témoignages {
            background: #2A2A2A;
            color: white;
        }


        .témoignages .section-title,
        .témoignages .section-label {
            color: white;
        }


        .témoignages .section-label {
            color: var(--color-primary-light);
        }


        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }


        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2rem;
            border-radius: var(--radius-card);
            opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards;
        }


        .testimonial-card:nth-child(1) { animation-delay: 0.1s; }

        .testimonial-card:nth-child(2) { animation-delay: 0.2s; }

        .testimonial-card:nth-child(3) { animation-delay: 0.3s; }


        .testimonial-card p {
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.7;
        }


        .testimonial-author {
            font-weight: 600;
            color: var(--color-primary-light);
        }


        /* Bio Section */
        .bio {
            background: white;
        }


        .bio-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }


        .portrait-frame {
            width: 100%;
            max-width: 400px;
            aspect-ratio: 1;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-cream), #E8E8E6);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            opacity: 0;
            animation: fadeInLeft 0.8s ease-out forwards;
            color: var(--color-warm-gray);
            font-size: 1.1rem;
            font-weight: 500;
        }


        .bio-content {
            opacity: 0;
            animation: fadeInRight 0.8s ease-out forwards;
        }


        .bio-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--color-warm-gray);
            margin-bottom: 1.5rem;
        }


        .credentials {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }


        .credential-badge {
            background: var(--color-cream);
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-primary);
            border: 1px solid var(--color-primary);
        }


        /* Tarif Section */
        .tarif {
            background: var(--color-cream);
        }


        .tarif-card {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: var(--radius-card);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }


        .tarif-card p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--color-warm-gray);
        }


        /* CTA Final Section */
        .cta-final {
            background: linear-gradient(135deg, rgba(26,26,26,0.68) 0%, rgba(26,26,26,0.40) 50%, rgba(26,26,26,0.25) 100%),
                        url('../images/photos-site/photo-1682672735213-67607ef26a38.jpg') center 75%/cover no-repeat;
            color: white;
            text-align: center;
            padding: 5rem 2rem;
        }


        .cta-final h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }


        .cta-final-button {
            display: inline-block;
            background: white;
            color: var(--color-primary);
            padding: 1rem 2.5rem;
            border-radius: var(--radius-button);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }


        .cta-final-button:hover {
            background: var(--color-cream);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }


        .cta-email {
            margin-top: 2rem;
            font-size: 1.05rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
        }


        .cta-email a {
            color: white;
            text-decoration: underline;
            transition: var(--transition);
        }


        .cta-email a:hover {
            opacity: 0.8;
        }


        /* CTA Final Text */
        .cta-final-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            max-width: 700px;
            margin: 0 auto 2rem;
        }


        /* Bloc À Qui — Pour Qui / Checklist */
        .bloc-à-qui {
            background-color: white;
        }

        .checklist {
            list-style: none;
            margin: 2rem 0;
            padding: 0;
        }

        .checklist li {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
            color: var(--color-warm-gray);
        }

        .checklist svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            stroke: var(--color-primary);
            stroke-width: 2;
            fill: none;
        }


        /* Méthode Conclusion */
        .méthode-conclusion {
            max-width: 700px;
            margin: 2rem auto 0;
            text-align: center;
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--color-warm-gray);
        }

        .méthode-conclusion p {
            margin-bottom: 1rem;
        }


        /* Footer */
        footer {
            background: var(--color-dark);
            color: white;
            padding: 3rem 2rem 2rem;
        }


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


        .footer-section h3 {
            font-family: var(--font-heading);
            margin-bottom: 1rem;
            color: white;
        }


        .footer-logo {
            height: 50px;
            margin-bottom: 1rem;
        }


        .footer-section p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #BDBDBD;
        }


        .footer-section a {
            display: block;
            color: #BDBDBD;
            text-decoration: none;
            margin: 0.5rem 0;
            font-size: 0.9rem;
            transition: var(--transition);
        }


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


        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }


        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }


        /* Responsive */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-toggle { display: flex; }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .subtitle {
                font-size: 1.3rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .solution-wrapper,
            .bio-wrapper {
                grid-template-columns: 1fr;
            }

            .méthode-cards {
                grid-template-columns: 1fr;
            }

            .cta-final h2 {
                font-size: 1.8rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

    
        /* Scroll indicator arrow */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .scroll-indicator:hover {
            opacity: 1;
        }

        .scroll-indicator span {
            font-size: 0.75rem;
            color: white;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 300;
        }

        .scroll-indicator svg {
            width: 28px;
            height: 28px;
            stroke: white;
            fill: none;
            stroke-width: 2;
            animation: scrollBounce 2s ease-in-out infinite;
        }