

        /* =============================================
           STYLES CONSOLIDÉS POUR APPROCHE HOLISTIQUE
           Tous les styles inline convertis en CSS propre
           ============================================= */

        /* Variables CSS harmonisées avec l'existant */
        :root {
            --orange-primary: #ffbd1b;
            --orange-secondary: #e6a818;
            --fushia-primary: #e91e63;
            --fushia-secondary: #d11952;
            --cyan-primary: #00bcd4;
            --cyan-secondary: #00a9be;
        }

        /* === MATRICE DES TROIS MONDES === */
        .matrice-container-principale {
            margin: 2rem 0;
            padding: 2rem;
            background: rgba(248, 250, 252, 0.8);
            border-radius: 16px;
            overflow-x: auto;
        }

        .matrice-grid-principale {
            display: grid;
            grid-template-columns: 200px repeat(3, 200px);
            grid-template-rows: 100px repeat(3, 200px);
            gap: 16px;
            justify-content: center;
            min-width: 800px;
        }

        .grid-empty {
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: #4a5568;
        }

        /* Headers de colonnes */
        .header-col {
            writing-mode: horizontal-tb;
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            padding: 50px 30px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .header-col-soi {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
        }

        .header-col-autre {
            background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-secondary));
        }

        .header-col-idee {
            background: linear-gradient(135deg, var(--fushia-primary), var(--fushia-secondary));
        }

        .header-title {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .header-subtitle {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* Headers de lignes */
        .header-row {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            padding: 30px 20px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            writing-mode: horizontal-tb;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .header-row-etre {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
        }

        .header-row-devenir {
            background: linear-gradient(135deg, var(--fushia-primary), var(--fushia-secondary));
        }

        .header-row-exister {
            background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-secondary));
        }

        .header-row-title {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .header-row-subtitle {
            font-size: 0.85rem;
            opacity: 0.9;
            font-weight: 500;
        }

        .header-row-details {
            font-size: 0.8rem;
            opacity: 0.8;
            font-weight: 400;
            margin-top: 4px;
        }

        /* Cellules de concept */
        .concept-cell {
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 3px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .concept-cell:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .concept-cell::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            border-radius: 16px 16px 0 0;
        }

        /* Bordures selon les cellules */
        .cell-1::before { background: linear-gradient(135deg, var(--orange-primary), var(--orange-primary)); }
        .cell-2::before { background: linear-gradient(135deg, var(--cyan-primary), var(--orange-primary)); }
        .cell-3::before { background: linear-gradient(135deg, var(--fushia-primary), var(--orange-primary)); }
        .cell-4::before { background: linear-gradient(135deg, var(--orange-primary), var(--fushia-primary)); }
        .cell-5::before { background: linear-gradient(135deg, var(--cyan-primary), var(--fushia-primary)); }
        .cell-6::before { background: linear-gradient(135deg, var(--fushia-primary), var(--fushia-primary)); }
        .cell-7::before { background: linear-gradient(135deg, var(--orange-primary), var(--cyan-primary)); }
        .cell-8::before { background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-primary)); }
        .cell-9::before { background: linear-gradient(135deg, var(--fushia-primary), var(--cyan-primary)); }

        .concept-number {
            position: absolute;
            top: 12px;
            right: 16px;
            width: 32px;
            height: 32px;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
        }

        .cell-1 .concept-number { background: linear-gradient(135deg, var(--orange-primary), var(--orange-primary)); }
        .cell-2 .concept-number { background: linear-gradient(135deg, var(--cyan-primary), var(--orange-primary)); }
        .cell-3 .concept-number { background: linear-gradient(135deg, var(--fushia-primary), var(--orange-primary)); }
        .cell-4 .concept-number { background: linear-gradient(135deg, var(--orange-primary), var(--fushia-primary)); }
        .cell-5 .concept-number { background: linear-gradient(135deg, var(--cyan-primary), var(--fushia-primary)); }
        .cell-6 .concept-number { background: linear-gradient(135deg, var(--fushia-primary), var(--fushia-primary)); }
        .cell-7 .concept-number { background: linear-gradient(135deg, var(--orange-primary), var(--cyan-primary)); }
        .cell-8 .concept-number { background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-primary)); }
        .cell-9 .concept-number { background: linear-gradient(135deg, var(--fushia-primary), var(--cyan-primary)); }

        .concept-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 8px;
            padding-right: 40px;
        }

        .concept-description {
            font-size: 0.85rem;
            color: #4a5568;
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .concept-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .concept-tag {
            background: rgba(0, 188, 212, 0.15);
            color: #0078a0;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .concept-tag:hover {
            background: rgba(0, 188, 212, 0.25);
            transform: translateY(-1px);
        }

        /* Architecture */
        .orientation-item, .niveau-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }

        .color-indicator {
            width: 20px;
            height: 20px;
            border-radius: 6px;
            margin-right: 10px;
        }

        .color-orange { background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary)); }
        .color-cyan { background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-secondary)); }
        .color-fushia { background: linear-gradient(135deg, var(--fushia-primary), var(--fushia-secondary)); }

        /* === PROFILS DÉSÉQUILIBRÉS === */
        .profil-pastilles {
            display: flex;
            justify-content: center;
            margin: 1.5rem 0;
            gap: 8px;
        }

        .pastille-monde {
            width: 80px;
            height: 40px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .pastille-soi {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
            color: white;
        }

        .pastille-moi {
            background: linear-gradient(135deg, var(--fushia-primary), var(--fushia-secondary));
            color: white;
        }

        .pastille-je {
            background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-secondary));
            color: white;
        }

        .pastille-vide {
            background: linear-gradient(135deg, #e2e8f0, #cbd5e0) !important;
            color: #a0aec0 !important;
            border: 2px dashed #cbd5e0;
            text-shadow: none;
        }

        .pastille-normal {
            opacity: 0.5;
        }

        .pastille-excess {
            opacity: 1;
        }

        .symptomes-box {
            background: rgba(255, 193, 7, 0.1);
            border-left: 3px solid #ffc107;
            padding: 1rem;
            margin: 1rem 0 0.5rem 0;
            border-radius: 4px;
        }

        .potentiel-box {
            background: rgba(76, 175, 80, 0.1);
            border-left: 3px solid #4caf50;
            padding: 1rem;
            border-radius: 4px;
        }

        /* === FLÈCHES D'EXPRESSION === */
        .fleche-info {
            background: rgba(139, 92, 246, 0.05);
            border-radius: 16px;
            padding: 1.5rem;
            margin: 2rem 0;
            border: 2px solid rgba(139, 92, 246, 0.1);
            text-align: center;
        }

        .fleche-numero {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ef4444;
            margin-bottom: 0.5rem;
        }

        .fleche-titre {
            font-size: 1.3rem;
            color: #8b5cf6;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .fleche-description {
            font-size: 1rem;
            color: #64748b;
            margin-bottom: 0.3rem;
        }

        .fleche-mission {
            font-size: 0.9rem;
            color: #059669;
            font-style: italic;
            font-weight: 500;
        }

        .matrice-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 15px;
            width: 280px;
            height: 280px;
            padding: 20px;
            background: white;
            border-radius: 20px;
            margin: 2rem auto;
            position: relative;
            transition: all 0.6s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .matrice-container::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, var(--orange-primary), var(--fushia-primary), var(--cyan-primary));
            border-radius: 23px;
            z-index: -1;
            transition: opacity 0.6s ease;
            opacity: 0;
        }

        .matrice-container.active-path::before {
            opacity: 1;
        }

        .nombre {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 12px;
            font-weight: bold;
            font-size: 1.5rem;
            transition: all 0.5s ease;
            cursor: pointer;
            position: relative;
            margin: auto;
        }

        .nombre-1, .nombre-2, .nombre-3 { 
            background: linear-gradient(135deg, var(--orange-primary), #ff8c00);
            color: white; 
            box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
        }
        
        .nombre-4, .nombre-5, .nombre-6 { 
            background: linear-gradient(135deg, var(--fushia-primary), #e91e63);
            color: white; 
            box-shadow: 0 4px 12px rgba(255, 0, 128, 0.4);
        }
        
        .nombre-7, .nombre-8, .nombre-9 { 
            background: linear-gradient(135deg, var(--cyan-primary), #00bcd4);
            color: white; 
            box-shadow: 0 4px 12px rgba(0, 206, 209, 0.4);
        }

        .nombre-empty {
            background: #f8fafc !important;
            color: #cbd5e1 !important;
            border: 2px dashed #e2e8f0 !important;
            box-shadow: none !important;
        }

        .nombre.active-fleche {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.9);
            z-index: 10;
            animation: pulseFleche 2s ease-in-out infinite;
        }

        @keyframes pulseFleche {
            0%, 100% { 
                transform: scale(1.1);
                filter: brightness(1) saturate(1);
            }
            50% { 
                transform: scale(1.3);
                filter: brightness(1.2) saturate(1.3);
            }
        }

        .controles {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary {
            background: #e2e8f0;
            color: #64748b;
        }

        .btn-secondary:hover {
            background: #cbd5e1;
            transform: translateY(-2px);
        }

        .btn-primary {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
        }

        .btn-primary.active {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }

        .progress-container {
            margin: 2rem 0;
            text-align: center;
        }

        .progress-bar {
            width: 100%;
            max-width: 300px;
            height: 8px;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 4px;
            margin: 1rem auto;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--orange-primary), var(--fushia-primary), var(--cyan-primary));
            border-radius: 4px;
            transition: width 0.8s ease;
        }

        .progress-text {
            font-size: 0.9rem;
            color: #64748b;
            margin-top: 0.5rem;
            font-weight: 500;
        }

        .content-column {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .animation-column {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 1rem;
        }

        /* === RESPONSIVE === */
        @media (max-width: 1024px) {
            .matrice-grid-principale {
                grid-template-columns: 150px repeat(3, 150px);
                grid-template-rows: 80px repeat(3, 150px);
                gap: 12px;
                min-width: 600px;
            }

            .header-col, .header-row {
                padding: 20px 15px;
            }

            .concept-cell {
                padding: 15px;
            }
        }

        @media (max-width: 768px) {
            .matrice-grid-principale {
                display: block;
            }

            .concept-cell {
                margin-bottom: 1rem;
                width: 100%;
            }

            .matrice-container {
                width: 240px;
                height: 240px;
            }
            
            .nombre {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .controles {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 200px;
            }

            .content-column {
                order: 2;
            }
            
            .animation-column {
                order: 1;
                margin-bottom: 2rem;
            }

            .pastille-monde {
                width: 70px;
                height: 35px;
                font-size: 0.75rem;
            }
            
            .profil-pastilles {
                gap: 6px;
            }
        }
