

        /* NAV */
        :root { --transition: 0.3s ease; --orange: #EF4A00; --orange-light: #FF6B2B; --orange-subtle: rgba(239, 74, 0, 0.08); --white: #FFFFFF; --anthracite: #4A4A4A; --brand-orange: var(--orange, #EF4A00); --cream: #FAFAF8; --dark: #1A1A1A; --warm-gray: #6B6B6B; }

        .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/photos-site/photo-1592859600972-1b0834d83747.jpg') center/cover no-repeat;
        }


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


        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }


        .hero .subtitle {
            font-family: 'Cormorant Garamond', serif;
            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(--brand-orange);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }


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


        .btn-secondary {
            background-color: var(--white);
            color: var(--brand-orange);
        }


        .btn-secondary:hover {
            background-color: var(--cream);
            transform: translateY(-2px);
        }


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


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


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


        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.2;
            color: var(--dark);
        }


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


        .bloc-problème p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--warm-gray);
            margin-bottom: 1.5rem;
        }


        .bloc-problème p:last-child {
            margin-bottom: 0;
        }


        /* Bloc Solution */
        .bloc-solution {
            background-color: var(--white);
        }


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


        .solution-image {
            width: 100%;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }


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


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


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


        .cards-grid {
            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: 20px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeIn 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(--brand-orange), #ff6a2a);
            border-radius: 50%;
        }


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


        .card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark);
        }


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


        .méthode-cta {
            text-align: center;
            margin-top: 2rem;
        }


        /* 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(--warm-gray);
        }

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


        /* Bloc À Qui S'Adresse */
        .bloc-à-qui {
            background-color: var(--white);
        }


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


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


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


        .closing-para {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--warm-gray);
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(74, 74, 74, 0.1);
        }


        /* Bloc Témoignages */
        .bloc-témoignages {
            background-color: var(--dark);
            color: var(--white);
        }


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


        .bloc-témoignages .section-title {
            color: var(--white);
        }


        .testimonials-placeholder {
            padding: 3rem;
            background-color: rgba(255, 107, 43, 0.1);
            border-radius: 20px;
            border: 2px dashed var(--orange-light);
            text-align: center;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
        }


        /* Bloc Bio */
        .bloc-bio {
            background-color: var(--white);
        }


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


        .bio-portrait {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: var(--cream);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }


        .bio-portrait img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }


        .bio-portrait p {
            color: var(--warm-gray);
            font-style: italic;
        }


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


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


        .credential-badge {
            background-color: var(--cream);
            padding: 0.5rem 1rem;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--brand-orange);
        }


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


        .tarif-card {
            background-color: var(--white);
            padding: 3rem;
            border-radius: 20px;
            max-width: 700px;
            margin: 0 auto;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            text-align: left;
        }


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


        .tarif-price {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--brand-orange);
            text-align: center;
            margin-bottom: 0.5rem;
        }


        .tarif-subtitle {
            font-size: 1rem;
            color: var(--warm-gray);
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }


        .tarif-highlight {
            font-weight: 500;
            color: var(--color-dark, #1a1a2e);
            background: linear-gradient(135deg, rgba(239, 74, 0, 0.06) 0%, rgba(255, 107, 43, 0.03) 100%);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border-left: 3px solid var(--brand-orange);
            margin: 1.5rem 0;
        }


        .tarif-footer {
            text-align: center;
            font-size: 0.9rem;
            color: var(--warm-gray);
            opacity: 0.85;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0,0,0,0.08);
        }


        /* Bloc Passerelle */
        .bloc-passerelle {
            background: linear-gradient(135deg, rgba(239, 74, 0, 0.1) 0%, rgba(255, 107, 43, 0.05) 100%);
            border-left: 5px solid var(--brand-orange);
        }


        .bloc-passerelle p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--warm-gray);
            margin-bottom: 1.5rem;
        }


        .passerelle-link {
            color: var(--brand-orange);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }


        .passerelle-link:hover {
            color: var(--orange-light);
        }


        /* Bloc CTA Final */
        .bloc-cta-final {
            background: linear-gradient(135deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.45) 50%, rgba(26,26,26,0.30) 100%),
                        url('../images/cta-montagne-neige.jpg') center/cover no-repeat;
            text-align: center;
            color: var(--white);
        }


        .bloc-cta-final .section-title {
            margin-bottom: 1.5rem;
            color: var(--white);
        }


        .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;
        }


        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }


        .cta-email {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
        }


        .cta-email a {
            color: var(--brand-orange);
            text-decoration: none;
            font-weight: 600;
        }


        .cta-email a:hover {
            text-decoration: underline;
        }


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


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


        .footer-section h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }


        .footer-section ul {
            list-style: none;
        }


        .footer-section ul li {
            margin-bottom: 0.5rem;
        }


        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }


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


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


        .footer-logo img {
            height: 40px;
            width: auto;
        }


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


        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }


        [data-animate] {
            opacity: 0;
            animation: fadeIn 0.8s ease-out forwards;
        }


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

            .nav-toggle {
                display: flex;
            }

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

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

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

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

            section {
                padding: 4rem 1.5rem;
            }

            .solution-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .solution-image {
                height: 300px;
            }

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

            .bio-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .bio-portrait {
                width: 200px;
                height: 200px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }


        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }

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

            .hero-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

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

            section {
                padding: 3rem 1rem;
            }

            .card {
                padding: 1.5rem;
            }

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

            .cta-buttons {
                flex-direction: column;
            }

            .cta-buttons .btn {
                width: 100%;
            }
        }

    
        /* 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;
        }


.btn-primary, .btn.btn-primary {
    display: inline-block;
    background: var(--brand-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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