/* --- VARIABLES --- */
        :root {
            --color-brand-orange: #FA8334;
            --color-brand-yellow: #F4B648;
            --color-brand-blue: #02008D;
            --color-brand-blue-teal: #02008D;
            /* Icônes seulement */
            --color-gray-50: #f9fafb;
            --color-gray-200: #e5e7eb;
            --color-gray-600: #374151;
            --color-gray-700: #1f2937;
            --color-gray-800: #111827;
            --color-gray-900: #030712;
            --font-inter: 'Inter', sans-serif;
        }

        * {
            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.5;
            -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;
            }
        }

        /* --- HEADER --- */
        header {
            margin-bottom: 3rem;
            position: relative;
        }

        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: 3.5rem;
            }
        }

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

        .icon-blue {
            color: var(--color-brand-blue);
        }

        .icon-orange {
            color: var(--color-brand-orange);
        }

        .btn-agency {
            display: inline-flex;
            align-items: center;
            background-color: #fef9c3;
            color: #713f12;
            font-size: 0.95rem;
            font-weight: 700;
            padding: 0.75rem 1.25rem;
            border-radius: 9999px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            min-height: 48px;
        }

        /* --- MAIN --- */
        main {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin-bottom: 4rem;
            position: relative;
        }

        @media (min-width: 768px) {
            main {
                flex-direction: row;
                align-items: flex-start;
            }
        }

        .intro-text {
            flex: 1.5;
            font-size: 1.125rem;
            color: var(--color-gray-700);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .intro-highlight {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-gray-900);
            line-height: 1.3;
        }

        .font-medium {
            font-weight: 600;
            color: var(--color-gray-900);
        }

        .profile-col {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .profile-img {
            border-radius: 1.5rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            width: 100%;
            max-width: 20rem;
            height: auto;
            background-color: #e2e8f0;
            object-fit: cover;
        }

        /* --- CORRECTION CONTRASTE DEFINITIVE : VERT SAPIN --- */
        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            /* Couleur beaucoup plus foncée pour garantir le score 100% */
            background-color: #8CD7AC;
            color: #02008D;
            font-weight: 700;
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            font-size: 1.125rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-top: 1.5rem;
            width: 100%;
            max-width: 20rem;
            min-height: 56px;
        }

        .btn-whatsapp:hover {
            background-color: #7BC19A;
            /* Encore plus foncé au survol */
            transform: translateY(-1px);
        }

        /* --- CAROUSEL --- */
        .section-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-gray-900);
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            letter-spacing: -0.025em;
        }

        #testimonial-carousel {
            position: relative;
            width: 100%;
            max-width: 56rem;
            margin: 0 auto;
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            min-height: 320px;
            transform: translateZ(0);
        }

        #testimonial-track {
            display: flex;
            will-change: transform;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

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

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

        .user-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-content {
            display: flex;
            gap: 1rem;
        }

        .user-name {
            font-weight: 700;
            color: var(--color-gray-900);
            font-size: 1.1rem;
        }

        .user-tag {
            font-size: 0.7rem;
            color: #ffffff;
            background-color: var(--color-gray-800);
            padding: 2px 6px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-left: 0.5rem;
            vertical-align: middle;
        }

        .user-comment {
            color: var(--color-gray-600);
            margin-top: 0.5rem;
            font-style: italic;
        }

        .user-date {
            font-size: 0.85rem;
            color: #6b7280;
            margin-top: 1rem;
            display: block;
            font-weight: 500;
        }

        /* Buttons */
        .carousel-btn {
            position: absolute;
            bottom: 1.15rem;
            background-color: transparent;
            border: none;
            padding: 0.5rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            cursor: pointer;
            z-index: 10;
            transition: color 0.2s, transform 0.2s;
            color: var(--color-gray-400);
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .carousel-btn:hover {
            color: var(--color-brand-orange);
            transform: translateY(-1px);
        }

        .btn-prev {
            left: 1.5rem;
        }

        .btn-next {
            right: 1.5rem;
        }

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

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

        .dot::after {
            content: '';
            position: absolute;
            top: -10px;
            bottom: -10px;
            left: -10px;
            right: -10px;
        }

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

        .dot-inactive {
            background-color: #d1d5db;
        }

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

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

        /* --- CORRECTION CONTRASTE DEFINITIVE : LIEN FOOTER --- */
        .footer-link {
            color: #02008D;
            /* Teal très foncé */
            font-weight: 700;
            padding: 0.5rem 0;
        }

        .cgv-link {
            display: inline-flex;
            align-items: center;
            font-weight: 500;
            padding: 0.5rem 0;
        }

        /* SVG Utilities */
        .w-5 {
            width: 1.25rem;
            height: 1.25rem;
        }

        .w-6 {
            width: 1.5rem;
            height: 1.5rem;
        }

        /* --- SECTION INTERVENTIONS --- */
        .interventions-section {
            margin-bottom: 3rem;
            position: relative;
        }

        .interventions-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
            margin-top: 1.5rem;
        }

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

        .intervention-card {
            background-color: white;
            border: 1px solid var(--color-gray-200);
            border-radius: 0.75rem;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            transition: box-shadow 0.2s, border-color 0.2s;
        }

        .intervention-card:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
            border-color: #9ca3af;
        }

        .intervention-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--color-brand-orange);
        }

        .intervention-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-gray-900);
        }

        .intervention-desc {
            font-size: 0.9rem;
            color: var(--color-gray-600);
            line-height: 1.55;
        }

        /* === DECORATIVE SHAPES === */
        .deco {
            position: absolute;
            z-index: -1;
            pointer-events: none;
            opacity: 0.6;
        }
        @media (max-width: 767px) { .deco { display: none; } }
        .deco-pill { border-radius: 9999px; border: 2.5px solid rgba(0,0,0,0.10); }
        .deco-circle { border-radius: 50%; border: 2.5px solid rgba(0,0,0,0.08); }
        .deco-ring { border-radius: 50%; background: transparent !important; border-width: 3px; border-style: solid; opacity: 0.4; }
        .deco-diamond { border: 2.5px solid rgba(0,0,0,0.10); transform-origin: center; }
