/**
 * CSS pour la page tarif
 * @file home.css
 * @author GN
 * @date 13/08/2026
 */
.tarif-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tarif-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #0B1D5B;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    list-style: none;
}
.tarif-list li::before {
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    border: 1.5px solid;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    box-sizing: border-box;
}
.tarif-list-green li::before {
    content: "✓";
    color: #FFFFFF;
    background:#15945B;
    border-color: #15945B;
}
.tarif-list-blue li::before {
    content: "✓";
    color: #FFFFFF;
    background:#1367d8;
    border-color: #1367d8;
}

.tarif-link {
    font-size:28px;
    line-height:40px;
    color:#1367d8;
}
.tarif-link:hover {
    color:#FC660F;
}

.tarif-link-2 {
    font-size:20px;
    line-height:30px;
    color:#1367d8;
}
.tarif-link-2:hover {
    color:#FC660F;
}



.tarifs-comparatif {
    width: 100%;
}
.tarifs-table {
    display: grid;
    grid-template-columns: 1fr 1.08fr 1.18fr;

    border: 1px solid #dce8f5;
    border-radius: 18px;
    overflow: hidden;

    background: #fff;
}
.tarifs-cell {
    padding: 13px 25px;

    font-size: 15px;
    font-weight: 400;
    color: #53627a;

    border-right: 1px solid #e3ebf5;
    border-bottom: 1px solid #e3ebf5;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}
.tarifs-cell:nth-child(3n) {
    border-right: none;
}
/* Suppression bordure dernière ligne */
.tarifs-cell:nth-last-child(-n+3) {
    border-bottom: none;
}
/* Colonne critères */
.tarifs-critere,
.tarifs-title:first-child {
    justify-content: flex-start;
    text-align: left;

    font-weight: 600;
    color: #153778;
}
/* Entêtes */
.tarifs-title {
    font-size: 17px;
    font-weight: 700;
    color: #153778;
}
.tarifs-saas {
    color: #079553;
}
.tarifs-licence {
    color: #0872d1;
}
@media (max-width: 767px) {

    .tarifs-comparatif {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;

        padding-bottom: 8px;
    }

    .tarifs-table {
        min-width: 720px;

        grid-template-columns: 220px 230px 270px;

        border-radius: 14px;
    }

    .tarifs-cell {
        padding: 12px 16px;

        font-size: 13px;
        line-height: 1.35;
    }

    .tarifs-title {
        font-size: 15px;
    }

    .tarifs-critere,
    .tarifs-title:first-child {
        padding-left: 18px;
    }

    /* Scrollbar discrète */
    .tarifs-comparatif::-webkit-scrollbar {
        height: 5px;
    }

    .tarifs-comparatif::-webkit-scrollbar-track {
        background: transparent;
    }

    .tarifs-comparatif::-webkit-scrollbar-thumb {
        background: #d7e3f0;
        border-radius: 10px;
    }

}