/* styles spécifiques à la page "Qui sommes-nous" */
/* Les classes communes aux pages intérieures (.section, .wrap, .eyebrow, .sec-head, .ph, .check, …)
   sont fournies par assets/css/inner-pages.css, chargé globalement. */

/* floating stat badge over the visual */
.qv {
    position: relative;
}

.qv .badge-float {
    position: absolute;
    left: -14px;
    bottom: 28px;
    background: #ffffff;
    border: 1px solid #e6ecf4;
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(16, 38, 76, 0.10);
    padding: 18px 22px;
    text-align: center;
}

.qv .badge-float .n {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #2e5bff;
    line-height: 1;
}

.qv .badge-float .l {
    font-size: 12px;
    color: #5b6b82;
    font-weight: 600;
    margin-top: 6px;
}

@media (max-width: 480px) {
    .qv .badge-float {
        left: 14px;
    }
}

/* ─── VALEURS (val-grid) ──────────────────────── */
.val-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 900px) {
    .val-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .val-grid {
        grid-template-columns: 1fr;
    }
}

.val-item {
    background: #ffffff;
    border: 1px solid #e6ecf4;
    border-radius: 18px;
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.val-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(16, 38, 76, 0.10);
    border-color: transparent;
}

.val-item .vic {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: #e7edff;
    color: #2e5bff;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.val-item .vic svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
}

.val-item h3 {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #142036;
    margin-bottom: 9px;
}

.val-item p {
    color: #5b6b82;
    font-size: 14.5px;
    line-height: 1.6;
}
