    .tab-navigation {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 30px;
        gap: 40px; 
        border-bottom: 1px solid #e9ecef;
    }

    .tab-link {
        font-size: 1.1rem;
        font-weight: 600;
        color: #888;
        background-color: transparent;
        border: none;
        padding: 15px 5px; 
        border-bottom: 3px solid transparent; 
        margin-bottom: -2px; 
        cursor: pointer;
        transition: all 0.3s ease;
        outline: none;
    }

    .tab-link:not(.active):hover {
        color: #333;
    }

    .tab-link.active {
        color: #0d6efd;
        border-bottom-color: #0d6efd;
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
        animation: fadeIn 0.4s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .quote-container {
        text-align: center;
    }

    .quote-container .strategist-quote {
        text-align: left;
        transition: max-height 0.4s ease-out;
        overflow: hidden;
    }

    .quote-container .strategist-quote.collapsed {
        max-height: 60px;
    }

    .read-more-btn {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        font-size: 1.5rem;
        line-height: 1;
        color: #ababab;
    }

    .read-more-btn:hover {
        color: #6c757d;
    }

    .garanties-title {
        font-size: 2rem;
        font-weight: 900;
        color: #111827;
        margin-bottom: 5px;
        letter-spacing: -0.5px;
        display: inline-block;
        position: relative;
    }

    .garanties-section {
        text-align: center;
        padding: 44px 20px 56px;
    }

    .highlight {
        position: relative;
        z-index: 1;
    }

    .highlight::before {
        content: "";
        position: absolute;
        left: -8px;
        right: -8px;
        bottom: 0.22em;
        height: 0.48em;
        background: linear-gradient(90deg, rgba(255,170,100,0.9) 0%, rgba(255,210,150,0.85) 100%);




        border-radius: 8px;
        transform: rotate(-1deg);
        z-index: -1;
    }

    .garantie-v8-container {
        max-width: 900px;
        margin: 0px auto;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        overflow: hidden;
        margin-top: -30px;
    }

    .v8-nav {
        display: flex;
        background: #f9fafb;
        padding: 8px;
        border-bottom: 1px solid #e5e7eb;
    }

    .v8-nav-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 20px;
        font-size: 1rem;
        font-weight: 600;
        color: #4b5563;
        background: transparent;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .v8-nav-btn iconify-icon {
        font-size: 1.4rem;
        transition: all 0.2s ease;
    }

    .v8-nav-btn:hover:not(.active) {
        background: #f3f4f6;
        color: #1f2937;
    }

    .v8-nav-btn.active {
        background: #ffffff;
        color: #111827;
        font-weight: 700;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .v8-nav-btn.active[data-tab="qualifies"] iconify-icon { color: #16a34a; }
    .v8-nav-btn.active[data-tab="rentabilite"] iconify-icon { color: #2563eb; }

    .v8-content-area {
        padding: 32px 40px 40px 40px;
    }

    .v8-content {
        display: none;
        flex-direction: column;
    }

    .v8-content.active {
        display: flex;
    }

    .v8-item {
        display: grid;
        grid-template-columns: 44px 1fr;
        align-items: start;
        gap: 20px;
        padding: 24px 0;
        border-bottom: 1px solid #f0f1f3;
    }

    .v8-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .v8-item:first-child {
        padding-top: 8px;
    }

    .v8-icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: grid;
        place-items: center;
    }

    .v8-icon-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .v8-text-wrap h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #111827;
        margin: 0 0 4px 0;
    }

    .v8-text-wrap p {
        font-size: 0.95rem;
        color: #4b5563;
        margin: 0;
        line-height: 1.6;
    }

    @media (max-width: 600px) {
    .v8-nav { flex-direction: column; }
    .v8-content-area { padding: 24px; }
    .v8-item {
        grid-template-columns: 38px 1fr;
        gap: 16px;
        padding: 20px 0;
    }

    .v8-icon-wrap {
        width: 38px;
        height: 38px;
    }
    }


    .impact-highlight {
        position: relative;
        font-weight: 700;
        color: #111827;
        z-index: 1;
    }

    .impact-highlight::before {
        content: "";
        position: absolute;
        left: -4px;
        right: -4px;
        bottom: 0.15em;
        height: 0.45em;
        border-radius: 6px;
        background: linear-gradient(
            90deg,
            rgba(187, 247, 208, 0.8) 0%,
            rgba(220, 252, 231, 0.75) 100%
        );
        transform: rotate(-1deg);
        z-index: -1;
    }

    .impact-highlight {
        position: relative;
        font-weight: 700;
        color: #111827;
        z-index: 1;
    }

    .impact-highlight::before {
        content: "";
        position: absolute;
        left: -4px;
        right: -4px;
        bottom: 0.15em;
        height: 0.45em;
        border-radius: 6px;
        background: linear-gradient(
            90deg,
            rgba(187, 247, 208, 0.8) 0%,
            rgba(220, 252, 231, 0.75) 100%
        );
        transform: rotate(-1deg);
        z-index: -1;
    }


        .payment-column-flat {
            width: 100%;
            margin: 0 auto;
            padding: 0;
            margin-top: -40px;
        }

        .paliers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .palier-card {
            background: #fff;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            transition: all .25s ease;
            border: 1.5px solid transparent;
            overflow: hidden;
        }

        .palier-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        }

        .palier-top {
            text-align: center;
            padding: 28px 24px 10px 24px;
            width: 100%;
        }

        .palier-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 8px;
        }

        .palier-top h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0 0 2px 0;
        }

        /* ----------- SECTION ALIGNEMENT ----------- */
        .palier-info-line {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 90%;
            margin: 0 auto;
            padding: 12px 0;
            gap: 36px;
            margin-top: -10px;
        }

        .palier-left-inline,
        .palier-right {
            width: 150px;
            display: flex;
            align-items: center;
        }

        .palier-left-inline {
            justify-content: flex-end;
            gap: 8px;
        }

        .palier-right {
            justify-content: flex-start;
        }

        .separator {
            width: 1px;
            height: 32px;
            background: rgba(0, 0, 0, 0.1);
        }

        /* ----------- GAUCHE ----------- */
        .palier-number {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
            margin: 0;
            line-height: 1;
        }

        .palier-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .palier-label {
            font-size: 0.75rem;
            color: #374151;
            font-weight: 500;
        }

        .palier-label-second {
            font-size: 0.65rem;
            color: #6b7280;
            font-weight: 400;
        }

        /* ----------- DROITE ----------- */
        .prix-value {
            margin: 0;
            font-size: 1.15rem;
            font-weight: 600;
            color: #1f2937;
        }

        .prix-suffix {
            font-size: 0.75rem;
            color: #9ca3af;
            margin-left: 4px;
            font-weight: 500;
        }

        /* ----------- BAS ----------- */
        .prix-detail {
            text-align: center;
            margin: 6px 0 10px 0;
            font-size: 0.8rem;
            color: #4b5563;
            font-weight: 400;
            opacity: 0.9;
        }

        .palier-roi-zone {
            width: 100%;
            text-align: center;
            padding: 20px 24px 24px 24px;
        }

        .roi p { margin: 0; }
        .roi-title { font-size: 0.9rem; font-weight: 600; color: #374151; margin-bottom: 4px; }
        .roi-value { font-size: 1.6rem; font-weight: 700; line-height: 1.2; }
        .roi-value span { font-size: 1rem; font-weight: 600; }
        .roi-note { font-size: 0.8rem; color: #6b7280; margin-top: 6px; }
        .roi-ca { font-size: 0.85rem; color: #4b5563; margin-top: 10px; font-weight: 600; }

        .palier-btn {
            background: #111827;
            color: #fff;
            padding: 12px 18px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all .2s ease;
            width: calc(100% - 48px);
            text-align: center;
            margin: 22px 24px 28px 24px;
        }

        .palier-btn:hover { background: #333; }

        /* ----------- VARIANTS ----------- */
        .palier-card.bronze {
            border-color: #e2b97e;
            background: linear-gradient(180deg, #fffdf9 0%, #fff9f2 100%);
        }
        .palier-card.bronze .palier-roi-zone { background: linear-gradient(180deg, #fff4e8 0%, #fff9f2 100%); }
        .palier-card.bronze h4, .palier-card.bronze .prix-value, .palier-card.bronze .roi-value { color: #7a4d12; }
        .palier-card.bronze .roi-ca strong { color: #7a4d12; }

        .palier-card.silver {
            border-color: #cdd2d6;
            background: linear-gradient(180deg, #f9fafb 0%, #f8f9fa 100%);
        }
        .palier-card.silver .palier-roi-zone { background: linear-gradient(180deg, #f3f4f6 0%, #f8f9fa 100%); }
        .palier-card.silver h4, .palier-card.silver .prix-value, .palier-card.silver .roi-value { color: #384152; }
        .palier-card.silver .roi-ca strong { color: #384152; }

        .palier-card.gold {
            border-color: #f2d87d;
            background: linear-gradient(180deg, #fffef5 0%, #fffcf0 100%);
        }
        .palier-card.gold .palier-roi-zone { background: linear-gradient(180deg, #fff9e6 0%, #fffcf0 100%); }
        .palier-card.gold h4, .palier-card.gold .prix-value, .palier-card.gold .roi-value { color: #b45309; }
        .palier-card.gold .roi-ca strong { color: #b45309; }

        .prix-acompte {
            position: relative;
            text-align: center;
            font-size: 0.82rem;
            color: #111111;
            font-weight: 600;
            margin: 5px 0 12px 0;
            display: inline-block;
            z-index: 1;
            letter-spacing: 0.1px;
            text-shadow: 0 0 0.5px rgba(255,255,255,0.5);
        }

        .prix-acompte strong {
            font-weight: 700;
            color: #0d0d0d;
            position: relative;
            z-index: 2;
        }



        /* Bronze */
        .palier-card.bronze .prix-acompte::before {
            background-color: rgba(255, 215, 140, 0.65);
        }

        /* Argent */
        .palier-card.silver .prix-acompte::before {
            background-color: rgba(205, 225, 255, 0.55);
        }

        /* Or */
        .palier-card.gold .prix-acompte::before {
            background-color: rgba(255, 230, 130, 0.6);
        }

        /* --- MOBILE: CAROUSEL --- */
        @media (max-width: 768px) {

            .paliers-grid {
                display: flex !important;
                flex-wrap: nowrap !important;
                overflow-x: auto !important;
                scroll-snap-type: x mandatory;
                gap: 14px !important;
                padding: 0 12px !important;
                grid-template-columns: unset !important;
                max-width: 100% !important;
                width: 100% !important;
            }

            .palier-card {
                scroll-snap-align: center;
                min-width: 90% !important;
                max-width: 90% !important;
                flex-shrink: 0 !important;
            }

            .palier-card.silver { order: 2; }
            .palier-card.bronze { order: 1; }
            .palier-card.gold { order: 3; }
        }

        .palier-quote-link {
            width: 100%;
            text-align: center;
            margin: 8px 0 6px 0;
        }

        .palier-quote-link a {
            font-size: 0.82rem;
            color: #2563eb;
            font-weight: 600;
            text-decoration: underline;
            opacity: 0.9;
            transition: all .2s ease;
        }

        .palier-quote-link a:hover {
            opacity: 1;
        }

        .discount-line.under-unit {
            display:flex;
            align-items:center;
            justify-content:center;
            gap:6px;
            margin-top:-3px;
            margin-bottom:6px;
        }

        .discount-badge {
            background:#b91c1c;
            color:white;
            font-weight:600;
            padding:2px 6px;
            border-radius:4px;
            font-size:0.65rem;
        }

        .discount-timer {
            font-size:0.68rem;
            font-weight:500;
            color:#b91c1c;
        }


        .old-price {
            text-decoration: line-through;
            opacity: 0.45;
            font-size: 0.78rem;   /* plus petit */
            margin-right: 6px;    /* espace naturel */
            white-space: nowrap;  /* empêche la ligne de casser */
            color: #111;          /* noir, pas doré */
        }

        .new-price {
            font-weight: 700;
            white-space: nowrap;  /* empêche la ligne de casser */
        }

        .summary-column-flat {
            width: 100%;
        }

        .feature-grid-flat {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px 40px;
            width: 100%;
        }

        .feature-item-flat {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            width: 100%;
        }

        .feature-icon-flat {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
        }

        .feature-text-flat {
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex: 1;
        }

        @media (max-width: 768px) {
            .feature-grid-flat {
                grid-template-columns: 1fr;
            }
        }


    .nav-tabs .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        border: 1px solid transparent !important;
        border-bottom: none !important;
        padding: 0.4rem 0.9rem;
        line-height: 1;
        transition: color .15s, background-color .15s, border-color .15s;
        color: #6c757d;
        background-color: transparent;
        border-radius: 50rem;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .nav-tabs .nav-link.active {
        color: white !important;
        background-color: #0d6efd !important;
        border-color: #0d6efd !important;
        border-radius: 50rem !important;
        padding: 0.4rem 0.9rem;
        font-size: 0.9rem;
    }

    .nav-tabs .nav-link.active .badge {
        background-color: rgba(255, 255, 255, 0.25) !important;
        color: white !important;
        padding: 0.25em 0.5em;
        font-size: 0.75em;
        line-height: 1;
        vertical-align: middle;
    }

    .nav-tabs .nav-link:not(.active) .badge {
        padding: 0.25em 0.5em;
        font-size: 0.75em;
        vertical-align: middle;
    }

    .nav-tabs {
        border-bottom: none !important; 
    }

    .nav-tabs .nav-link:not(.active):hover {
        color: #0a58ca; 
        background-color: #f8f9fa; 
    }


    .icon-bg-info {
        background-color: #e6f7ff; /* Fond bleu clair */
        color: #00cfe8; /* Icône en bleu */
    }
    .icon-bg-indigo {
        background-color: #e8eaf6; /* Fond indigo très clair */
        color: #3f51b5; /* Icône indigo moyen */
    }
    @media (max-width: 991.98px) {
            #chat-app-container #chat-container {
                display: none;
            }
            
            #chat-app-container.view-chat #user-chat-box {
                display: none;
            }
            #chat-app-container.view-chat #chat-container {
                display: block;
            }
    }

    .seq-subject{
        display:flex; align-items:center; gap:10px;
        margin-bottom:14px; padding:10px 12px;
        background:#f8fafc; 
        border:1px solid #e5e7eb; 
        border-radius:10px;
        margin-left: 60px;
    }
    .seq-subject i{font-size:18px; line-height:1;}
    .seq-subject .label{
        font-size:12px; font-weight:700; color:#6b7280;
        text-transform:uppercase; letter-spacing:.04em;
    }
    .seq-subject .text{
        font-size:15px; font-weight:600; color:#111827; line-height:1.35;
        display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
    }

    .icon-bg-secondary {
        background-color: #f8f9fa; /* Fond gris très clair (style Bootstrap 'secondary') */
        color: #6c757d; /* Icône en gris moyen */
    }



    .table-admin-bubbles {
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .admin-bubble {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease, transform 0.2s ease;
        color: white;
        font-size: 16px;
    }

    .admin-bubble:hover {
        transform: scale(1.15);
    }

    .admin-bubble.viewed { 
        background-color: #28a745; 
    }
    .admin-bubble.not-viewed { 
        background-color: #6c757d; 
    }
    .admin-bubble.contacted { 
        background-color: #007bff; 
    }
    .admin-bubble.not-contacted { 
        background-color: #6c757d; 
    }
    .admin-bubble.dnd-active { 
        background-color: #dc3545; 
    }
    .admin-bubble.dnd-inactive { 
        background-color: #6c757d; 
    }


    .admin-bubble.message-vocal-active {
        background: #d0e7ff;
        color: #0b70ff;
    }

    .admin-bubble.message-vocal-inactive {
        background: #eee;
        color: #666;
    }


    .timeline-perfect {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
        position: relative;
    }

    .timeline-perfect::before {
        content: '';
        position: absolute;
        left: 6px;
        transform: translateX(-50%);
        width: 2px;
        background-color: #e9ecef;
        border-radius: 1px;
        z-index: 0;
        top: 18px;
        bottom: 38px;
    }

    .step-wrapper {
        position: relative;
        padding-left: 25px;
    }

    .step-dot-perfect {
        width: 12px;
        height: 12px;
        background: #0d6efd;
        border-radius: 50%;
        position: absolute;
        left: 6px;
        top: 18px;
        transform: translateX(-50%);
        border: 2px solid #fff;
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
        z-index: 1;
        background: #6f42c1;
        box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.15);
    }

    .step-card {
        background: #fff;
        padding: 10px 15px;
        border-radius: 8px;
        border: 1px solid #eee;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    }

    .step-title {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 2px;
        color: #333;
    }

    .step-sub {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
    }


    .booking-success-details,
    .booking-success-contact-info {
        color: var(--couleur-texte-secondaire, #555);
        font-weight: 400;
        font-size: 0.9rem;
        margin-bottom: 12px; 
        min-height: 1.1rem;
    }

    .booking-success-content {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-bottom: 25px;
        margin: 15px 0;
        border-bottom: 1px solid var(--couleur-bordure, #dee2e6);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .booking-success-icon-wrapper {
        background-color: var(--couleur-succes, #f0b429);
        color: var(--couleur-texte-inverse, white);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
    }

    .booking-success-icon-wrapper svg {
        width: 22px;
        height: 22px;
    }
    
    .booking-success-title {
        color: var(--couleur-texte-principal, #333);
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .booking-success-details {
        background-color: var(--couleur-rouge-subtile, #fde8e8);
        color: var(--couleur-rouge-sombre, #c93c3c);
        font-weight: 400;         
        font-size: 0.85rem;       
        padding: 4px 10px;       
        border-radius: 12px;
        display: inline-block;
        margin-bottom: 12px;
    }
    
    .booking-success-status {
        color: var(--couleur-texte-secondaire, #555);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
    }

    .badge-success {
        background-color: var(--couleur-succes-subtile, #fff5d7); 
        color: var(--couleur-succes-sombre, #7a5f0d); 
        padding: 3px 8px;
        border-radius: 11px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    #admin-dock {
        position: fixed;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px; 
        height: 200px; 
    }

    .dock-trigger {
        position: absolute;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .galaxy-icon {
        height: 45px;
        width: auto;
        animation: spinGalaxy 20s linear infinite;
        cursor: pointer;
    }

    .dock-menu {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 10px;
        background: white;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        opacity: 0;
        transform: scale(0);
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        right: 0;
    }

    #admin-dock:hover .dock-trigger {
        opacity: 0;
        transform: scale(0);
        pointer-events: none;
    }

    #admin-dock:hover .dock-menu {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .admin-dock-btn {
        background: #f3f4f6;
        border: none;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        color: #374151;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.2s;
        text-align: center;
    }

    .admin-dock-btn:hover {
        background: #e5e7eb;
        color: #111827;
    }

    @keyframes spinGalaxy {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }



    .filter-btn[data-tooltip] {
        position: relative;
    }

    .filter-btn[data-tooltip]::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 110%;
        left: 50%;
        transform: translateX(-50%);
        padding: 6px 10px;
        background: #1e293b;
        color: #fff;
        font-size: 0.75rem;
        border-radius: 6px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.15s ease;
    }

    .filter-btn[data-tooltip]:hover::after {
        opacity: 1;
    }



    .zen-container {
        padding: 10px 15px;
        max-width: 100%;
    }

    .zen-intro {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        font-size: 15px;
        color: #4b5563; /* Gris moyen */
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .zen-list {
        display: flex;
        flex-direction: column;
        gap: 18px; 
    }

    .zen-item {
        display: flex;
        align-items: flex-start;
    }

    .zen-icon {
        flex-shrink: 0;
        margin-right: 16px;
        margin-top: 2px;
    }

    .zen-text {
        font-size: 15px;
        color: #111827;
        line-height: 1.5;
        font-weight: 500;
        text-align: left; 
        flex: 1;
    }

    .zen-footer {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #e5e7eb;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .zen-label {
        font-size: 11px;
        font-weight: 700;
        color: #9ca3af;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .zen-result {
        font-size: 15px;
        color: #059669;
        font-weight: 600;
    }


    .floating-left-btn {
        position: fixed;
        bottom: 25px;
        left: 25px; /* GAUCHE */
        z-index: 9999;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: none;
        background: #444;
        color: white;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: .15s;
    }
    .floating-left-btn:hover { background:#000; transform: scale(1.08); }

    #guideChassePanel.hunt-modal {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.40);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 20000;
        backdrop-filter: blur(4px);
    }

    #guideChassePanel .hunt-modal-content {
        background: #fff;
        width: 850px;
        max-height: 90vh;
        padding: 35px;
        border-radius: 14px;
        box-shadow: 0 10px 35px rgba(0,0,0,0.25);
        display: flex;
        flex-direction: column;
        gap: 18px;
        position: relative;
    }

    #guideChassePanel textarea {
        width: 100%;
        min-height: 600px;
        border-radius: 8px;
        border: 1px solid #ddd;
        padding: 18px;
        font-size: 15px;
        line-height: 1.65;
        background: #fafafa;
        resize: vertical;
    }

    .hunt-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
    }

    .hunt-modal-content {
        background: white;
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        position: relative;
    }

    .hunt-close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 22px;
        cursor: pointer;
    }


    .floating-action-btn {
        position: fixed;
        right: 20px;
        z-index: 9999;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: none;
        background: #2c2c2c;
        color: white;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 8px rgba(0,0,0,0.25);
        cursor: pointer;
        transition: transform .15s ease, background .15s ease;
    }

    .floating-action-btn:hover {
        background: #000;
        transform: scale(1.08);
    }

    #viewTrackerFloatingBtn {
        bottom: 20px;
    }

    #adminEmailPreviewBtn {
        bottom: 64px;
    }
        
    .operator-slim-card {
        background: #1e293b;
        color: white;
        border-radius: 16px;
        padding: 1.25rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 2rem auto;
        box-shadow: 0 10px 25px -5px rgba(30, 41, 59, 0.3);
        font-family: 'Inter', sans-serif;
        gap: 2rem;
        border: 1px solid #334155;
        max-width: 850px;
        width: 100%;
    }

    .operator-slim-left {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .operator-slim-money-group {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .operator-slim-price {
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: -1px;
        line-height: 1;
        background: linear-gradient(to right, #ffffff, #cbd5e1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .operator-slim-status-badge {
        background: rgba(16, 185, 129, 0.2);
        color: #34d399;
        font-size: 11px;
        font-weight: 600;
        padding: 4px 8px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
        border: 1px solid rgba(16, 185, 129, 0.3);
        text-transform: uppercase;
    }

    .operator-slim-subtext {
        font-size: 12px;
        color: #94a3b8;
        display: flex;
        gap: 8px;
    }

    .operator-highlight-bonus {
        color: #fbbf24;
        font-weight: 600;
    }

    .operator-slim-divider {
        width: 1px;
        height: 40px;
        background: #334155;
        flex-shrink: 0;
    }

    .operator-slim-center {
        flex-grow: 1;
    }

    .operator-slim-date-box {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .operator-slim-date-box iconify-icon {
        font-size: 20px;
        padding: 8px;
        border-radius: 8px;
        background: rgba(255,255,255,0.05);
    }

    .operator-slim-date-box.success iconify-icon { color: #34d399; }
    .operator-slim-date-box.pending iconify-icon { color: #60a5fa; }

    .operator-slim-date-box div {
        display: flex;
        flex-direction: column;
    }

    .operator-label {
        font-size: 10px;
        text-transform: uppercase;
        color: #64748b;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .operator-value {
        font-size: 13px;
        color: #e2e8f0;
        font-weight: 500;
    }

    .operator-slim-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .operator-text-link {
        color: #94a3b8;
        font-size: 12px;
        text-decoration: underline;
        text-underline-offset: 3px;
        transition: color 0.2s;
    }

    .operator-text-link:hover { color: white; }

    .operator-compact-btn {
        background: white;
        color: #0f172a;
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: transform 0.1s;
    }

    .operator-compact-btn:hover {
        transform: translateY(-1px);
        background: #f1f5f9;
    }

    @media (max-width: 768px) {
        .operator-slim-card {
            flex-direction: column;
            align-items: flex-start;
            padding: 1.5rem;
            gap: 1.5rem;
        }
        .operator-slim-divider { display: none; }
        .operator-slim-right { width: 100%; justify-content: space-between; }
        .operator-compact-btn { width: 100%; justify-content: center; }
    }


    .badge-operator {
        background-color: #eef2ff; 
        color: #635bff;   
        font-size: 0.7rem;        
        font-weight: 700;         
        padding: 2px 8px;  
        border-radius: 12px;       
        text-transform: uppercase;
        letter-spacing: 0.5px;    
        border: 1px solid #c7d2fe;
        vertical-align: middle;   
    }

    .d-flex:hover .badge-operator {
        background-color: #635bff;
        color: white;
        transition: all 0.3s ease;
    }


    .upcoming-card {
        background-color: #F9FAFB;
        border: 1px solid transparent;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .upcoming-card:hover {
        background-color: #FFFFFF;
        border-color: #E5E7EB;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
        transform: translateY(-2px);
    }

    .upcoming-card:hover .arrow-indicator {
        transform: translateX(3px);
        color: #6366F1;
    }

    .arrow-indicator {
        transition: transform 0.3s ease, color 0.3s ease;
        color: #9CA3AF;
    }

    .icon-box-soft {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        background-color: #EEF2FF; 
        color: #4F46E5; 
    }

    :root {
        --dark-card-bg: #111827;
        --dark-text-main: #FFFFFF;
        --dark-text-muted: #9CA3AF;
        --accent-color: #6366F1;
    }

    .dashboard-header { display: flex; justify-content: space-between; align-items: end;}

    .kpi-card {
        background: #FFFFFF; border-radius: 20px; padding: 24px;
        border: 1px solid #F3F4F6; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        height: 100%; display: flex; flex-direction: column; justify-content: space-between;
        transition: transform 0.2s;
    }

    .kpi-black { background: var(--dark-card-bg); border: 1px solid #1F2937; color: var(--dark-text-main); position: relative; overflow: hidden; }
    .kpi-black .kpi-value { color: #FFFFFF !important; }
    .kpi-black .kpi-label { color: var(--dark-text-muted) !important; }
    .kpi-black .icon-circle { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
    .kpi-black::after { content: ''; position: absolute; top: 0; right: 0; width: 150px; height: 150px; background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, rgba(0,0,0,0) 70%); pointer-events: none; }

    .icon-circle { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1rem; }
    .icon-orange { background: #FFF7ED; color: #EA580C; }
    .icon-blue { background: #EFF6FF; color: #2563EB; }

    .kpi-value { font-size: 2rem; font-weight: 700; line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
    .kpi-label { font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: #6B7280; }

    .content-card { background: white; border-radius: 20px; padding: 24px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); height: 100%; }

    .transaction-row { display: flex; align-items: center; padding: 12px 0; border-bottom: 1px solid #F3F4F6; }
    .transaction-row:last-child { border-bottom: none; }
    
    .filter-select { background-color: #F3F4F6; border: none; border-radius: 50px; padding: 8px 16px; font-weight: 600; font-size: 0.9rem; cursor: pointer; }

    .table-custom th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: #6B7280; font-weight: 600; border-bottom: 1px solid #F3F4F6; padding-bottom: 1rem; }
    .table-custom td { vertical-align: middle; padding: 1rem 0.5rem; border-bottom: 1px dashed #F3F4F6; }
    .table-custom tr:last-child td { border-bottom: none; }
    .hover-bg-light:hover { background-color: #F9FAFB; }

    
    .admin-go-toggle {
        background: #e0e7ff; 
        padding: 6px;
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .2s;
        text-decoration: none; 
    }

    .admin-go-toggle:hover {
        background: #c7d2fe;
    }

    .admin-revert-toggle {
        background: #ffe6e6;
        padding: 6px;
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .2s;
    }

    .admin-revert-toggle:hover {
        background: #ffcccc;
    }

    .close-modal-btn {
        cursor: pointer;
        color: #9ca3af; 
        padding: 6px;
        border-radius: 50%; 
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

    .close-modal-btn:hover {
        background-color: #f3f4f6;
        color: #374151;
    }

    .admin-notes-open {
        background: #e7e7ff;
        color: #4b4bc7;
        padding: 6px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        transition: .2s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .admin-notes-open:hover {
        background: #d4d4ff;
    }

    .admin-contacted-toggle {
        background: #ffe4d2;
        color: #b23c00;
        padding: 6px;
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .2s;
    }

    .admin-contacted-toggle:hover {
        background: #ffbf8f;
    }

    .admin-dnd-toggle {
        background: #ffd0d0;
        color: #7a0000;
        padding: 6px;
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .2s;
    }

    .admin-dnd-toggle:hover {
        background: #ffb3b3;
    }

    .admin-view-toggle {
        background: #ffe4d2;
        color: #b23c00;
        padding: 6px;
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .2s;
    }

    .admin-view-toggle:hover {
        background: #ffbf8f;
    }

    .remind-btn {
        display: flex;
        align-items: center;
        gap: 4px;
        border: none;
        background: #f3f3f3;
        color: #555;
        padding: 6px 8px;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.2s;
        font-size: 14px;
    }

    .remind-btn svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

    .remind-btn:hover {
        background: #ffe48f;
        color: #a66b00;
    }

    .verify-btn {
        border: none;
        background: #e8f5e9;
        color: #43a047;
        padding: 6px 8px;
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .2s;
    }
    .verify-btn svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }
    .verify-btn:hover {
        background: #c8e6c9;
    }

    .contact-panel-dnd {
        background: #ffd0d0;
        color: #7a0000;
        padding: 6px 12px;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        font-size: 13px;
        transition: .2s;
    }

    .contact-panel-dnd:hover {
        background: #ffb3b3;
    }


    .modal-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(4px);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .pipeline-card {
        background: white;
        width: 100%;
        max-width: 480px;
        border-radius: 16px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        overflow: hidden;
        font-family: 'Inter', sans-serif;
        animation: slideUp 0.3s ease-out;
    }

    .pipeline-header {
        background: #f8fafc;
        padding: 20px;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .pipeline-header h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #0f172a;
    }

    .pipeline-icon-pulse {
        color: #6366f1;
        animation: pulse 2s infinite;
    }

    .pipeline-body {
        padding: 24px;
    }

    .progress-container {
        margin-bottom: 24px;
    }

    .progress-labels {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .status-badge {
        font-size: 13px;
        font-weight: 500;
        color: #6366f1;
        background: #eef2ff;
        padding: 4px 10px;
        border-radius: 20px;
    }

    .counter-text {
        font-size: 13px;
        color: #64748b;
        font-weight: 500;
    }

    .progress-track {
        height: 8px;
        background: #f1f5f9;
        border-radius: 4px;
        overflow: hidden;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #6366f1 0%, #a855f7 100%);
        border-radius: 4px;
        transition: width 0.5s ease;
    }

    .current-task-box {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 12px;
        margin-bottom: 20px;
    }

    .task-label {
        display: block;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #94a3b8;
        margin-bottom: 4px;
    }

    .task-name {
        margin: 0;
        font-size: 14px;
        color: #334155;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pipeline-footer {
        text-align: center;
    }

    .cancel-link {
        color: #ef4444;
        font-size: 13px;
        text-decoration: none;
        font-weight: 500;
        transition: opacity 0.2s;
    }

    .cancel-link:hover {
        opacity: 0.8;
    }

    @keyframes pulse {
        0% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.1); opacity: 0.8; }
        100% { transform: scale(1); opacity: 1; }
    }

    @keyframes slideUp {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .search-shadow {
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .search-shadow:hover, .search-shadow:focus-within {
        box-shadow: 0 6px 16px rgba(99, 102, 241, 0.15); 
        transform: translateY(-1px);
    }

    .search-shadow .form-control:focus {
        border-color: #dee2e6; 
    }

        .rtc-meeting-card {
        background: #f8fafc;
        border-radius: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid #f1f5f9;
        width: 100%;
        max-width: 580px;
        overflow: hidden;
    }

    .rtc-meeting-header {
        background: #ffffff;
        border-bottom: 1px solid #f1f5f9 !important;
        padding: 1rem 1.5rem;
    }

    .rtc-meeting-icon-box {
        width: 46px;
        height: 46px;
        background: #EEF2FF;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rtc-meeting-icon-img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .rtc-meeting-title {
        font-size: 1.15rem;
        letter-spacing: -0.01em;
        font-weight: 700;
        color: #212529;
        margin-bottom: 0;
    }

    .rtc-meeting-subtitle {
        font-size: 0.8rem;
        color: #6c757d;
    }

    .rtc-meeting-badge {
        background: #ecfdf5;
        color: #059669;
        font-weight: 600;
        border-radius: 8px;
        font-size: 0.8rem;
        border: 1px solid #d1fae5;
        padding: 0.5rem 1rem;
    }

    .rtc-meeting-dot {
        width: 6px;
        height: 6px;
        background-color: #059669;
        border-radius: 50%;
        display: inline-block;
    }

    .rtc-meeting-body {
        background: transparent !important;
        padding: 1rem 1.5rem;
    }

    .rtc-meeting-info-box {
        background: #ffffff;
        border: 1px solid #e2e8f0 !important;
        border-radius: 0.5rem;
        min-height: 60px;
        padding: 0.5rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .rtc-meeting-label {
        display: block;
        color: #6c757d;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 0.65rem;
        letter-spacing: 0.5px;
        margin-bottom: 0;
    }

    .rtc-meeting-value {
        font-weight: 700;
        color: #212529;
        font-size: 0.95rem;
    }

    .rtc-meeting-value-highlight {
        color: #4f46e5 !important;
    }

    .btn-report-trigger {
        background: none;
        border: none;
        color: #94a3b8;
        font-size: 0.8rem;
        text-decoration: underline;
        cursor: pointer;
        padding: 10px;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .btn-report-trigger:hover {
        color: #ef4444; 
    }

    .report-form-container {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: 10px;
        display: flex;
        justify-content: center;
    }

    .report-form-container.open {
        max-height: 300px;
        opacity: 1;
    }

    .card-report-content {
        background: #fff;
        border: 1px solid #fecaca; 
        border-left: 4px solid #ef4444; 
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        padding: 20px;
        width: 100%;
        max-width: 500px;
        text-align: left;
    }

    .admin-decision-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
        padding: 25px;
        max-width: 650px;
        position: relative;
        overflow: hidden;
    }

    .admin-decision-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: linear-gradient(90deg, #4f46e5, #818cf8);
    }

    .admin-badge {
        background: #0f172a;
        color: #fff;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        padding: 4px 8px;
        border-radius: 6px;
        letter-spacing: 0.5px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .pro-report-box {
        background: #fff7ed;
        border: 1px solid #ffedd5;
        border-radius: 12px;
        padding: 15px;
        position: relative;
    }

    .report-label {
        font-size: 0.7rem;
        font-weight: 700;
        color: #9a3412;
        text-transform: uppercase;
        margin-bottom: 8px;
        display: block;
    }

    .report-content {
        font-style: italic;
        color: #431407;
        font-size: 0.9rem;
        line-height: 1.5;
        position: relative;
        padding-left: 20px;
    }

    .report-icon {
        position: absolute;
        left: 0;
        top: 0;
        color: #fdba74;
        font-size: 0.8rem;
    }

    .admin-textarea {
        background: #f8fafc;
        border: 1px solid #cbd5e1;
        font-size: 0.9rem;
        color: #334155;
        border-radius: 10px;
    }
    .admin-textarea:focus {
        background: #fff;
        border-color: #4f46e5;
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    }

    /* BOUTONS D'ACTION */
    .btn-admin-action {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 12px 15px;
        border-radius: 12px;
        border: 1px solid transparent;
        background: #fff;
        cursor: pointer;
        transition: all 0.2s ease;
        text-align: left;
    }

    .btn-admin-action strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 2px;
    }

    .btn-admin-action span {
        display: block;
        font-size: 0.7rem;
        opacity: 0.8;
        font-weight: 500;
    }

    .btn-admin-action .icon-box {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }

    .btn-cancel {
        border-color: #fecaca;
        background: #fff;
        color: #dc2626;
    }
    .btn-cancel .icon-box { background: #fee2e2; }
    .btn-cancel:hover { background: #fef2f2; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1); }

    .btn-keep {
        border-color: #bbf7d0;
        background: #fff;
        color: #16a34a;
    }
    .btn-keep .icon-box { background: #dcfce7; }
    .btn-keep:hover { background: #f0fdf4; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(22, 163, 74, 0.1); }


    .rating-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        padding: 6px 14px;
        border-radius: 20px;
        color: #64748b;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.03);
        height: 32px; 
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    .rating-dot {
        width: 6px;
        height: 6px;
        background-color: #f59e0b;
        border-radius: 50%;
        display: inline-block;
    }

    .rating-star {
        width: 24px; 
        height: 24px;
        cursor: pointer;
        color: #cbd5e1;
        fill: transparent;
        transition: all 0.2s ease;
        margin-right: 2px;
    }

    .rating-star.hovered,
    .rating-star.active {
        color: #f59e0b; 
        fill: #f59e0b; 
        transform: scale(1.1); 
    }

    .rating-form-hidden {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: 0;
    }

    .rating-form-hidden.open {
        max-height: 200px; 
        opacity: 1;
        margin-top: 15px;
    }

    .rating-textarea {
        width: 100%;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 10px;
        font-size: 0.9rem;
        background: #f8fafc;
        resize: none;
        height: 80px;
        outline: none;
        color: #334155;
    }

    .rating-textarea:focus {
        border-color: #4f46e5;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    }

    .btn-save-rating {
        margin-top: 10px;
        background: #4f46e5;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        width: 100%;
        cursor: pointer;
        transition: background 0.2s;
    }

    .btn-save-rating:hover {
        background: #4338ca;
    }


    .btn-retour-flottant {
        position: fixed; 
        left: 10px; 
        top: 50%; 
        transform: translateY(-50%);
        z-index: 99999; 
        display: flex; 
        align-items: center;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-retour-flottant span {
        max-width: 0;
        overflow: hidden;
        white-space: nowrap;
        opacity: 0;
        transition: all 0.3s ease;
        color: #333;
        font-weight: bold;
        font-size: 14px;
        background: white;
        border-radius: 5px;
    }

    .btn-retour-flottant:hover {
        background: rgba(255, 255, 255, 0.9);
        padding: 5px 10px 5px 0;
        border-radius: 30px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .btn-retour-flottant:hover span {
        max-width: 200px; 
        opacity: 1;
        margin-left: 10px;
    }

    /* ===== CONVERSION PAGE – CONTACT ACTIONS ===== */

    .conversion-contact-btn {
        border-radius: 999px;
        padding: 6px 16px;
        font-size: 13px;
        font-weight: 500;
        border: 1px solid transparent;
        background: #f9fafb;
        cursor: pointer;
        transition: all .15s ease;
    }

    /* Sans suite */
    .conversion-action-danger {
        color: #991b1b;
        background: #fef2f2;
        border-color: #fecaca;
    }
    .conversion-action-danger:hover {
        background: #fee2e2;
    }

    /* Intéressé */
    .conversion-action-success {
        color: #065f46;
        background: #ecfdf5;
        border-color: #6ee7b7;
    }
    .conversion-action-success:hover {
        background: #d1fae5;
    }

    /* Rappel */
    .conversion-action-warning {
        color: #92400e;
        background: #fffbeb;
        border-color: #fde68a;
    }
    .conversion-action-warning:hover {
        background: #fef3c7;
    }

    /* État actif */
    .conversion-contact-btn.is-active {
        box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
        font-weight: 600;
    }
    
    .conversion-next-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 22px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 500;
        color: #1e40af;
        background: #eff6ff;
        border: 1px solid #bfdbfe;
        text-decoration: none;
        transition: all .15s ease;
    }

    .conversion-next-btn:hover {
        background: #dbeafe;
        color: #1e3a8a;
        transform: translateY(-1px);
    }

    .conversion-action-primary {
        color: #1e40af;
        background: #eff6ff;
        border: 1px solid #bfdbfe;
    }

    .conversion-action-primary:hover {
        background: #dbeafe;
    }

    .conversion-modal {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .conversion-modal-card {
        background: #fff;
        padding: 28px;
        border-radius: 14px;
        width: 420px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .conversion-modal-header {
        text-align: center;
        margin-bottom: 18px;
    }

    .conversion-modal-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 10px;
        opacity: .9;
    }

    .conversion-modal-header h3 {
        margin: 0;
        font-weight: 700;
    }

    .conversion-modal-header p {
        margin-top: 6px;
        font-size: 13px;
        color: #6b7280;
    }

    .conversion-info-box {
        background: #ecfdf5;
        border: 1px solid #6ee7b7;
        color: #065f46;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 13px;
        margin-bottom: 18px;
        text-align: center;
    }

    .conversion-modal-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    .glass-widget {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 360px;
        background: rgba(255, 255, 255, 0.65);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 24px;
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.5) inset;
        z-index: 9999;
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        overflow: hidden;
        transform: translateY(150%) scale(0.95);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        opacity: 0;
    }

    .glass-widget.active {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    .glass-glow {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.15), transparent 60%);
        pointer-events: none;
        z-index: -1;
    }

    .glass-body {
        padding: 24px;
        position: relative;
        z-index: 2;
    }

    .glass-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .glass-label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 800;
        color: #6366f1;
        opacity: 0.9;
    }

    .glass-close {
        cursor: pointer;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(0,0,0,0.04);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        font-size: 14px;
        color: #64748b;
    }
    .glass-close:hover { background: rgba(0,0,0,0.1); color: #000; }

    .glass-profile {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 24px;
    }

    .glass-avatar {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
        color: #4338ca;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 12px;
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
        border: 2px solid white;
    }

    .glass-name {
        font-size: 18px;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: -0.5px;
        margin-bottom: 4px;
    }

    .glass-meta {
        font-size: 13px;
        color: #64748b;
        font-weight: 500;
        background: rgba(255,255,255,0.5);
        padding: 4px 12px;
        border-radius: 12px;
        border: 1px solid rgba(0,0,0,0.05);
    }

    .glass-actions {
        display: grid;
        grid-template-columns: 1fr 1.8fr;
        gap: 12px;
    }

    .btn-glass {
        padding: 14px;
        border-radius: 16px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .btn-glass-secondary {
        background: rgba(255, 255, 255, 0.5);
        color: #475569;
        border: 1px solid rgba(0,0,0,0.05);
    }
    .btn-glass-secondary:hover { background: white; color: #1e293b; }

    .btn-glass-primary {
        background: #0f172a;
        color: white;
        box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
    }
    .btn-glass-primary:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.4);
        background: black;
    }

    .status-pulse {
        position: relative;
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
    }

    .pulse-circle {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        background: #10b981;
        position: absolute;
        opacity: 0.2;
        animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    }
    .pulse-icon {
        position: relative;
        z-index: 2;
        color: #059669;
        font-size: 24px;
    }

    @keyframes ping {
        75%, 100% { transform: scale(1.5); opacity: 0; }
    }

    :root {
    --call-action-color: #38c172; 
    --call-action-hover-color: #2fb365;
    --neutral-outline-color: #909090; 
    --neutral-text-color: #404040;
    }

    .minimal-actions-group {
        display: flex;
        gap: 10px;
        margin: 20px auto 0 auto; 
        width: fit-content;
        align-items: center;
    }

    .btn-action-filled, 
    .btn-action-outline-cohesive {
        display: flex;
        align-items: center;
        padding: 8px 18px; 
        font-size: 14.5px;
        font-weight: 600; 
        cursor: pointer;
        border: none;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.25s ease;
        box-shadow: none; 
    }

    .btn-action-filled {
        background-color: var(--call-action-color); 
        color: #ffffff;
        box-shadow: 0 3px 8px rgba(56, 193, 114, 0.5); 
    }

    .btn-action-filled:hover {
        background-color: var(--call-action-hover-color);
        transform: translateY(-1px);
        box-shadow: 0 5px 12px rgba(56, 193, 114, 0.6);
    }

    .btn-action-filled .fa-phone {
        transform: scaleX(-1);
        margin-right: 8px;
        transition: all 0.25s ease;
    }

    .btn-action-filled:hover .fa-phone {
        color: #fff; 
        transform: scale(1.05) scaleX(-1);
    }

    .btn-action-outline-cohesive {
        background-color: #ffffff; 
        color: #007bff; 
        border: 1px solid #c0d8ff; 
    }

    .btn-action-outline-cohesive:hover {
        background-color: #f0f8ff; 
        color: #0056b3;
        border-color: #007bff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    }

    .btn-action-outline-cohesive .fa-arrow-right {
        margin-left: 8px;
        transition: transform 0.25s ease-out;
        color: inherit; 
    }

    .btn-action-outline-cohesive:hover .fa-arrow-right {
        transform: translateX(3px);
    }

    #run_ai_analysis:hover, [data-bs-target="#audioTestModal"]:hover {
        color: #343a40 !important;
    }

    @keyframes pulse { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }
    @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

    .ai-loader {
        text-align: center;
        padding: 40px;
        animation: pulse 2s infinite ease-in-out;
    }
    .ai-loader-icon {
        font-size: 35px;
        margin-bottom: 10px;
        display: inline-block;
        animation: bounce 1s infinite;
    }
    .ai-loader-text {
        font-weight: 600;
        color: #4f46e5;
        margin-bottom: 20px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .skeleton-bar {
        height: 10px;
        background: #e0e7ff;
        margin: 8px auto;
        border-radius: 4px;
    }



    /**nv**/



    #requestPanel.hunt-modal {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.35);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 20000;
        backdrop-filter: blur(4px);
    }

    /* Contenant */
    #requestPanel .hunt-modal-content {
        background: #ffffff;
        border-radius: 14px;
        padding: 35px 45px;
        width: 880px;
        max-height: 85vh;
        overflow-y: auto;
        display: flex;
        gap: 60px;
        position: relative;
        border: 1px solid #e5e5e5;
    }

    /* Fermeture */
    #requestPanel .hunt-close {
        position: absolute;
        top: 14px;
        right: 18px;
        font-size: 22px;
        cursor: pointer;
        opacity: 0.55;
        transition: 0.25s;
    }
    #requestPanel .hunt-close:hover { opacity: 1; }

    #requestPanel h3,
    #requestPanel h4 {
        text-align: center;
        position: relative;
        width: 100%;
        display: inline-block;
    }

    #requestPanel h3,
    #requestPanel h4 {
        text-align: center;
        width: 100%;
        position: relative;
        display: inline-block;
    }

    /* Soulignement doux pour H3 */
    #requestPanel h3::after {
        content: "";
        position: absolute;
        width: 55%;
        height: 8px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -4px;
        background: rgba(255, 215, 60, 0.45); /* jaune doux transparent */
        border-radius: 50px;
    }

    /* Soulignement plus fin pour H4 */
    #requestPanel h4::after {
        content: "";
        position: absolute;
        width: 40%;
        height: 6px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -3px;
        background: rgba(90, 140, 255, 0.25); /* bleu léger transparent */
        border-radius: 50px;
    }



    /* Labels (Ce que vous proposez / Cible / etc) */
    #requestPanel h5 {
        font-size: 14px;
        font-weight: 600;
        margin-top: 24px;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: .4px;
        color: #4b4b4b;
    }

    /* Texte à lire */
    #requestPanel p {
        font-size: 15px;
        color: #222;
        line-height: 1.55;
        white-space: pre-line;
    }

    /* Colonne droite infos client */
    #requestPanel .client-info {
        width: 280px;
        background: #fafafa;
        border-left: 1px solid #e8e8e8;
        padding-left: 25px;
        padding-right: 10px;
        border-radius: 8px;
    }

    #requestPanel .client-info h4 {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    #requestPanel .client-info p {
        margin-bottom: 8px;
    }

    #requestPanel .client-info a {
        color: #007bff;
        text-decoration: none;
    }
    #requestPanel .client-info a:hover { text-decoration: underline; }

    #requestPanel .client-info {
        padding-top: 25px; /* ↓ ajoute de l’espace en haut */
    }

    #requestPanel .client-info h4 {
        margin-top: 15px; /* ↓ décale le titre aussi */
    }

    #checkout-panel-pay-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: rgba(0,0,0,.5);
        opacity: 0; pointer-events: none;
        transition: .3s;
        z-index: 999;
    }
    #checkout-panel-pay {
        position: fixed;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%) scale(.9);
        background: #fff;
        width: 600px; max-height: 90vh;
        overflow-y: auto;
        border-radius: 16px;
        opacity: 0; pointer-events: none;
        transition: .3s;
        z-index: 1000;
        padding: 20px;
    }
    #checkout-panel-pay.open, #checkout-panel-pay-overlay.open {
        opacity: 1; pointer-events: auto;
    }
    #checkout-panel-pay.open {
        transform: translate(-50%, -50%) scale(1);
    }
    .close-checkout {
        position: absolute;
        top: 12px; right: 16px;
        font-size: 1.8rem;
        cursor: pointer;
        opacity: .6;
    }


        .objective-compact-bar {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 12px 20px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
        display: flex;
        align-items: center;
    }

    .medal-icon-box {
        width: 42px;
        height: 42px;
        background: #f9fafb;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #f3f4f6;
    }
    .medal-icon-box img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .obj-title {
        font-size: 0.9rem;
        font-weight: 700;
        color: #111827;
        margin: 0;
        line-height: 1.2;
    }
    .obj-subtitle {
        font-size: 0.75rem;
        color: #6b7280;
        font-weight: 500;
    }

    .current-score {
        font-size: 0.9rem;
        font-weight: 800;
        color: #334155;
    }
    .score-separator {
        font-size: 0.9rem;
        color: #9ca3af;
        font-weight: 400;
    }

    .target-score {
        font-size: 0.9rem;
        color: #6b7280;
        font-weight: 600;
    }
    
    /* Badge pourcentage fond or pâle */
    .percent-badge {
        font-size: 0.7rem;
        background: #fffbeb; /* Amber 50 */
        color: #b45309; /* Amber 700 */
        padding: 2px 8px;
        border-radius: 20px;
        font-weight: 700;
        border: 1px solid #fef3c7;
    }

    .progress-slim-track {
        height: 6px;
        background-color: #f3f4f6;
        border-radius: 10px;
        width: 100%;
        overflow: hidden;
    }

    .progress-slim-fill {
        height: 100%;
        /* Dégradé Rouge doux (Red 500 vers Red 400) */
        background: linear-gradient(90deg, #ef4444, #f87171); 
        border-radius: 10px;
        transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        /* Ombre rouge légère pour le relief */
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3); 
    }


    .justifier-box {
        background-color: #f2f8f5;
        border: 1px dashed #9ccfc0;
        border-radius: 12px;
        padding: 20px;
        position: relative;
    }

    .justifier-label {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #ffffff;
        padding: 0 10px;
        color: #6b7280;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .justifier-text {
        font-size: 0.95em;
        color: #243d35;
        margin: 0;
        line-height: 1.55;
        font-style: italic;
        text-align: center;
    }


    .list-header {
        padding: 0 10px 10px 10px;
        border-bottom: 1px solid #f3f4f6;
        margin-bottom: 10px;
        font-size: 10px;
        font-weight: 700;
        color: #9ca3af;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .col-service { flex: 1; }
    .col-metric { width: 100px; }

    .clean-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 10px;
        border-bottom: 1px solid #f3f4f6; 
        background: transparent;
        transition: background 0.2s;
    }

    .clean-item:last-child {
        border-bottom: none;
    }

    .clean-item:hover {
        background-color: #f9fafb;
    }

    .item-main {
        flex: 1;
        padding-right: 30px;
    }

    .item-title {
        font-size: 15px;
        font-weight: 600;
        color: #1f2937;
    }

    .item-desc {
        font-size: 13px;
        color: #6b7280;
        line-height: 1.4;
        padding-left: 0;
    }

    .mini-badge {
        display: inline-block;
        padding: 3px 8px;
        border-radius: 6px;
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        line-height: 1;
    }
    .badge-blue { background-color: #eff6ff; color: #2563eb; }
    .badge-green { background-color: #f0fdf4; color: #16a34a; }
    .badge-purple { background-color: #faf5ff; color: #9333ea; }

    .metric-value {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #111827;
    }

    .closing-tag {
        font-size: 13px;
        font-weight: 700;
    }

    @media (max-width: 768px) {
        .clean-item {
            flex-direction: column;
            align-items: flex-start;
            padding: 20px 0;
        }
        .item-metrics {
            margin-top: 12px;
            width: 100%;
            justify-content: space-between;
        }
        .metric-group {
            text-align: left !important;
        }
        .item-main { padding-right: 0; }
        .list-header { display: none; }
    }

    .target-description {
        max-width: 700px;
        margin: 0 auto;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #1f2937;
        font-size: 15px;
        line-height: 1.6;
    }

    .hunt-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 30px;
    }

    .discreet-title {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #9ca3af;
        margin-bottom: 10px;
        display: block;
    }

    .discreet-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .discreet-list li {
        font-size: 14px;
        color: #374151;
        margin-bottom: 6px;
        line-height: 1.4;
    }

    @media (max-width: 600px) {
        .hunt-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
    }
    .section-title-badge { position: relative; }
    
    .custom-tooltip {
        position: absolute;
        bottom: 125%;
        left: 50%;
        transform: translateX(-50%);
        background: #374151;
        color: white;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 12px;
        line-height: 1.4;
        width: 220px;
        text-align: center;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.1s ease;
        z-index: 100;
        pointer-events: none;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .custom-tooltip::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #374151 transparent transparent transparent;
    }

    .section-title-badge:hover .custom-tooltip {
        visibility: visible;
        opacity: 1;
    }