/* --- VARIABLES --- */
        :root {
            /* Orange brand aligné sur index.html */
            --color-brand-orange: #FA8334;
            --color-brand-orange-safe: #C2410C;

            --color-brand-orange-bg: #FFF7ED;
            --color-brand-yellow-bg: #FEFCE8;
            --color-brand-yellow-text: #854D0E;
            --color-brand-blue: #02008D;
            --color-brand-blue-bg: #F0FDFA;

            --color-green-dark: #8CD7AC;
            --color-green-bg: #F0FDF4;
            --color-red-dark: #991B1B;
            --color-red-bg: #FEF2F2;

            --color-gray-50: #f9fafb;
            --color-gray-100: #f3f4f6;
            --color-gray-200: #e5e7eb;
            --color-gray-600: #4b5563;
            --color-gray-700: #374151;
            --color-gray-800: #1f2937;
            --color-gray-900: #030712;

            --font-inter: 'Inter', sans-serif;
        }

        /* --- UTILITIES --- */
        .w-4 { width: 1rem; height: 1rem; }
        .w-5 { width: 1.25rem; height: 1.25rem; }
        .w-6 { width: 1.5rem; height: 1.5rem; }
        .w-8 { width: 2rem; height: 2rem; }
        .mr-1 { margin-right: 0.25rem; }
        .mr-1-5 { margin-right: 0.375rem; }
        .mr-2 { margin-right: 0.5rem; }
        .icon-blue { color: var(--color-brand-blue); }
        .icon-orange { color: var(--color-brand-orange); }
        .icon-md { width: 1.5rem; height: 1.5rem; }
        .icon-sm { width: 1.25rem; height: 1.25rem; }
        .icon-lg { width: 2rem; height: 2rem; }
        .flex-shrink-0 { flex-shrink: 0; }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-inter);
            background-color: var(--color-gray-50);
            color: var(--color-gray-800);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: opacity 0.2s;
        }

        a:hover {
            opacity: 0.8;
        }

        /* --- LAYOUT --- */
        .container {
            width: 100%;
            max-width: 1024px;
            margin-left: auto;
            margin-right: auto;
            padding: 1.5rem;
        }

        @media (min-width: 768px) {
            .container {
                padding: 3rem;
            }
        }

        .grid-2 {
            display: grid;
            gap: 2rem;
        }

        .grid-3 {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .grid-2 {
                grid-template-columns: 1fr 1fr;
            }

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

        /* --- NAV (alignée sur index + cas-clients) --- */
        .site-nav {
            border-bottom: 1px solid var(--color-gray-200);
            background: white;
            position: sticky;
            top: 0;
            z-index: 50;
            margin-bottom: 3rem;
        }

        .nav-inner {
            max-width: 1024px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        @media (min-width: 768px) {
            .nav-inner {
                padding: 1rem 3rem;
            }
        }

        .nav-name {
            font-size: 1.125rem;
            font-weight: 800;
            color: var(--color-gray-900);
            letter-spacing: -0.025em;
        }

        .nav-back {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--color-gray-600);
            transition: color 0.2s;
        }

        .nav-back:hover {
            color: var(--color-brand-orange);
            opacity: 1;
        }

        /* --- HEADER --- */
        header {
            margin-bottom: 3rem;
            border-bottom: 1px solid var(--color-gray-200);
            padding-bottom: 2rem;
        }

        h1 {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--color-gray-900);
            margin-bottom: 1rem;
            letter-spacing: -0.025em;
        }

        @media (min-width: 768px) {
            h1 {
                font-size: 3rem;
            }
        }

        /* Application de l'orange sécurisé partout */
        .text-logo {
            color: var(--color-brand-orange-safe);
        }

        .text-orange-accessible {
            color: var(--color-brand-orange-safe);
        }

        .tags-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 1.5rem;
            font-size: 1.125rem;
            color: var(--color-gray-600);
            margin-bottom: 1.5rem;
        }

        .tag-item {
            display: flex;
            align-items: center;
            font-weight: 500;
        }

        .badge-yellow {
            display: inline-flex;
            align-items: center;
            background-color: var(--color-brand-yellow-bg);
            color: var(--color-brand-yellow-text);
            font-size: 0.875rem;
            font-weight: 700;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            border: 1px solid #FEF08A;
        }

        /* --- HERO SECTION --- */
        .hero-layout {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        @media (min-width: 768px) {
            .hero-layout {
                flex-direction: row;
            }
        }

        .hero-text {
            flex: 1.5;
        }

        .hero-visual {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        h1.hero-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--color-gray-900);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            h1.hero-title {
                font-size: 2.25rem;
            }
        }

        .highlight-box {
            border-left: 4px solid #F4B648;
            background-color: #fffbeb;
            padding: 1rem;
            font-weight: 500;
            margin-bottom: 2rem;
            color: var(--color-gray-800);
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--color-green-dark);
            color: white;
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            width: 100%;
            min-height: 56px;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }

        .btn-cta:hover {
            background-color: #7BC19A;
            transform: translateY(-1px);
        }

        @media (min-width: 768px) {
            .btn-cta {
                width: auto;
            }
        }

        .btn-whatsapp-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            color: var(--color-green-dark);
            border: 2px solid var(--color-green-dark);
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            width: 100%;
            max-width: 24rem;
            min-height: 56px;
            margin-top: 0.75rem;
        }

        .btn-whatsapp-outline:hover {
            background-color: var(--color-green-bg);
        }

        .why-me-card {
            position: relative;
            background: white;
            padding: 1.5rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--color-gray-200);
            margin-bottom: 1.5rem;
            width: 100%;
        }

        .why-me-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--color-brand-blue);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .check-list {
            list-style: none;
            margin-top: 1rem;
        }

        .check-list li {
            display: flex;
            gap: 0.75rem;
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
            align-items: flex-start;
            color: var(--color-gray-700);
        }

        .profile-img {
            border-radius: 1rem;
            width: 100%;
            max-width: 20rem;
            height: auto;
            background-color: #e2e8f0;
            object-fit: cover;
        }

        /* --- SECTIONS COMMUNES --- */
        section {
            margin-bottom: 5rem;
        }

        .section-box {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--color-gray-200);
        }

        h3.section-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-gray-900);
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .problem-list {
            list-style: none;
        }

        .problem-list li {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1rem;
            align-items: flex-start;
            color: var(--color-gray-700);
            font-weight: 500;
        }

        .good-news {
            background-color: var(--color-gray-50);
            padding: 2rem;
            border-radius: 0.75rem;
            border: 1px solid var(--color-gray-200);
        }

        .stat-badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--color-brand-orange-safe);
            font-weight: 800;
            font-size: 1.125rem;
            background: white;
            padding: 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            margin-top: 1.5rem;
            border: 1px solid var(--color-gray-100);
        }

        /* --- QUALIFICATION --- */
        .qualif-box {
            padding: 2rem;
            border-radius: 1rem;
            border-width: 1px;
            border-style: solid;
        }

        .qualif-green {
            background-color: var(--color-green-bg);
            border-color: #bbf7d0;
        }

        .qualif-red {
            background-color: var(--color-red-bg);
            border-color: #fecaca;
        }

        .qualif-title {
            font-weight: 800;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .text-blue-dark {
            color: var(--color-green-dark);
        }

        .text-red-dark {
            color: var(--color-red-dark);
        }

        /* --- PILIERS --- */
        .pillar-card {
            background: white;
            padding: 2rem;
            border-radius: 0.75rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--color-gray-200);
            transition: transform 0.2s;
        }

        .pillar-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .pillar-icon {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .bg-orange-soft {
            background-color: var(--color-brand-orange-bg);
            color: var(--color-brand-orange-safe);
        }

        .bg-teal-soft {
            background-color: var(--color-brand-blue-bg);
            color: var(--color-brand-blue);
        }

        .bg-yellow-soft {
            background-color: var(--color-brand-yellow-bg);
            color: var(--color-brand-yellow-text);
        }

        /* --- CAROUSEL --- */
        #testimonial-carousel {
            position: relative;
            width: 100%;
            max-width: 48rem;
            margin: 0 auto;
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            min-height: 300px;
            transform: translateZ(0);
            border: 1px solid var(--color-gray-100);
        }

        #testimonial-track {
            display: flex;
            will-change: transform;
            transition: transform 0.4s ease;
        }

        .testimonial-slide {
            flex-shrink: 0;
            width: 100%;
            padding: 2rem;
            display: flex;
            align-items: center;
        }

        @media (min-width: 768px) {
            .testimonial-slide {
                padding: 3.5rem;
            }
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: 1px solid var(--color-gray-200);
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--color-gray-600);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            z-index: 10;
        }

        .carousel-btn:hover {
            background-color: var(--color-gray-50);
            color: var(--color-gray-900);
        }

        .btn-prev {
            left: 1rem;
        }

        .btn-next {
            right: 1rem;
        }

        #carousel-dots {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.75rem;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background 0.3s;
        }

        .dot-active {
            background: var(--color-gray-900);
        }

        .dot-inactive {
            background: #d1d5db;
        }

        .dot-inactive:hover {
            background: #9ca3af;
        }

        /* --- BOOKING --- */
        .booking-section {
            background-color: #FFF7ED;
            border-radius: 1.5rem;
            padding: 2rem;
            border: 1px solid #FFEDD5;
            text-align: center;
        }

        @media (min-width: 768px) {
            .booking-section {
                padding: 4rem;
            }
        }

        .step-card {
            background: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            text-align: left;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .step-num {
            color: var(--color-brand-orange-safe);
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .iframe-container {
            width: 100%;
            background: white;
            border-radius: 0.75rem;
            margin-top: 2rem;
            overflow: hidden;
            min-height: 800px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        iframe {
            width: 100%;
            height: 800px;
            border: none;
        }

        /* --- FOOTER (aligné sur index.html) --- */
        footer {
            border-top: 1px solid var(--color-gray-200);
            padding-top: 2rem;
            margin-top: 4rem;
            color: var(--color-gray-600);
            font-size: 0.95rem;
            padding-bottom: 2rem;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-link {
            color: #02008D;
            font-weight: 700;
        }

        /* SVG Utilities */
        .icon-sm {
            width: 1.25rem;
            height: 1.25rem;
        }

        .icon-md {
            width: 1.5rem;
            height: 1.5rem;
        }

        .icon-lg {
            width: 2rem;
            height: 2rem;
        }

        .mr-2 {
            margin-right: 0.75rem;
        }

        .flex-shrink-0 {
            flex-shrink: 0;
        }
