/* ==================== SECTION PROCÉDURES ==================== */
    .proc-section {
        padding: 80px 20px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .proc-container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    /* Titre principal */
    .proc-title {
        font-family: 'Abril Fatface', serif;
        font-size: 72px;
        color: #222222;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .proc-title .highlight {
        color: #DD9933;
    }

    /* Intro */
    .proc-intro {
        font-size: 18px;
        color: #666666;
        max-width: 800px;
        margin-bottom: 50px;
        line-height: 1.8;
    }

    /* Barre de recherche */
    .proc-search-container {
        margin-bottom: 40px;
    }

    .proc-search-box {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
    }

    .proc-search-input {
        width: 100%;
        padding: 16px 50px 16px 20px;
        font-size: 16px;
        border: 2px solid #e8e8e8;
        border-radius: 50px;
        background: white;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    }

    .proc-search-input:focus {
        outline: none;
        border-color: #DD9933;
        box-shadow: 0 8px 25px rgba(221, 153, 51, 0.15);
    }

    .proc-search-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        fill: #999999;
    }

    .proc-search-results {
        margin-top: 20px;
        text-align: center;
        font-size: 14px;
        color: #666666;
    }

    /* Onglets */
    .proc-tabs-container {
        margin-bottom: 40px;
    }

    .proc-tabs-nav {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        margin-bottom: 30px;
        justify-content: center;
    }

    .proc-tab-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 28px;
        background: white;
        border: 2px solid #e8e8e8;
        border-radius: 16px;
        font-size: 16px;
        font-weight: 600;
        color: #666666;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    }

    .proc-tab-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .proc-tab-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .proc-tab-icon img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .proc-tab-count {
        background: #f6eedc;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        color: #999999;
    }

    /* Couleurs par thème */
    .proc-tab-btn[data-tab="cisco"] {
        --tab-color: #049fd9;
    }

    .proc-tab-btn[data-tab="windows"] {
        --tab-color: #0078D4;
    }

    .proc-tab-btn[data-tab="linux"] {
        --tab-color: #E95420;
    }

    .proc-tab-btn[data-tab="azure"] {
        --tab-color: #00BCF2;
    }

    .proc-tab-btn.active {
        border-color: var(--tab-color);
        color: var(--tab-color);
    }

    .proc-tab-btn.active .proc-tab-count {
        background: var(--tab-color);
        color: white;
    }

    /* Contenu des onglets */
    .proc-tab-content {
        display: none;
    }

    .proc-tab-content.active {
        display: block;
        animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Grille des procédures */
    .proc-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    /* Carte procédure */
    .proc-card {
        background: white;
        border-radius: 20px;
        padding: 30px 25px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .proc-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--card-color);
    }

    .proc-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .proc-card.hidden {
        display: none;
    }

    /* Couleurs des cartes */
    .proc-card.cisco {
        --card-color: #049fd9;
    }

    .proc-card.windows {
        --card-color: #0078D4;
    }

    .proc-card.linux {
        --card-color: #E95420;
    }

    .proc-card.azure {
        --card-color: #00BCF2;
    }

    /* Icône */
    .proc-icon {
        width: 55px;
        height: 55px;
        background: var(--card-color);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .proc-icon svg {
        width: 28px;
        height: 28px;
        fill: white;
    }

    /* Titre */
    .proc-card-title {
        font-size: 16px;
        font-weight: 600;
        color: #222222;
        line-height: 1.5;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    /* Bouton */
    .proc-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 24px;
        background: var(--card-color);
        color: white !important;
        border: none;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none !important;
        transition: all 0.3s ease;
        align-self: flex-start;
    }

    .proc-btn:hover {
        filter: brightness(0.9);
        transform: scale(1.05);
        color: white !important;
    }

    .proc-btn svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

    /* ==================== RESPONSIVE ==================== */

    /* Tablette moyenne (769px - 900px) */
    @media (min-width: 769px) and (max-width: 900px) {
        .proc-title {
            font-size: 56px;
        }

        .proc-intro {
            font-size: 16px;
        }

        .proc-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Tablette (601px - 768px) */
    @media (min-width: 601px) and (max-width: 768px) {
        .proc-section {
            padding: 60px 20px;
        }

        .proc-title {
            font-size: 48px;
        }

        .proc-intro {
            font-size: 16px;
            margin-bottom: 40px;
        }

        .proc-search-box {
            max-width: 100%;
        }

        .proc-search-input {
            padding: 14px 45px 14px 18px;
            font-size: 15px;
        }

        .proc-tabs-nav {
            gap: 12px;
        }

        .proc-tab-btn {
            padding: 14px 24px;
            font-size: 15px;
        }

        .proc-tab-icon {
            width: 28px;
            height: 28px;
        }

        .proc-tab-icon img {
            width: 20px;
            height: 20px;
        }

        .proc-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .proc-card {
            padding: 25px 20px;
        }

        .proc-icon {
            width: 50px;
            height: 50px;
        }

        .proc-icon svg {
            width: 24px;
            height: 24px;
        }

        .proc-card-title {
            font-size: 15px;
        }

        .proc-btn {
            padding: 10px 20px;
            font-size: 13px;
        }
    }

    /* Mobile (max 600px) */
    @media (max-width: 600px) {
        .proc-section {
            padding: 40px 15px;
        }

        .proc-title {
            font-size: 36px;
        }

        .proc-intro {
            font-size: 15px;
            margin-bottom: 30px;
        }

        .proc-search-container {
            margin-bottom: 30px;
        }

        .proc-search-input {
            padding: 12px 40px 12px 16px;
            font-size: 14px;
        }

        .proc-search-icon {
            width: 18px;
            height: 18px;
            right: 15px;
        }

        .proc-tabs-nav {
            flex-direction: column;
            gap: 10px;
        }

        .proc-tab-btn {
            width: 100%;
            justify-content: center;
            padding: 12px 20px;
            font-size: 14px;
        }

        .proc-tab-icon {
            width: 24px;
            height: 24px;
        }

        .proc-tab-icon img {
            width: 18px;
            height: 18px;
        }

        .proc-tab-count {
            padding: 3px 8px;
            font-size: 11px;
        }

        .proc-grid {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .proc-card {
            padding: 20px 18px;
        }

        .proc-icon {
            width: 45px;
            height: 45px;
        }

        .proc-icon svg {
            width: 22px;
            height: 22px;
        }

        .proc-card-title {
            font-size: 14px;
            margin-bottom: 15px;
        }

        .proc-btn {
            padding: 10px 18px;
            font-size: 13px;
        }

        .proc-btn svg {
            width: 14px;
            height: 14px;
        }
    }