/* styles spécifiques à la page "Nos Solutions" */
/* Les classes communes aux pages intérieures (.section, .wrap, .eyebrow, .sec-head, .ph,
   .split, .split-copy, .btn-link, .badge-soft, …) sont fournies par assets/css/inner-pages.css, chargé globalement. */

/* ─── LIGNES DE SOLUTIONS (split alterné) ─────────────── */
.sol-row {
    padding: 46px 0;
    border-bottom: 1px solid #e6ecf4;
}

.sol-row:last-of-type {
    border-bottom: 0;
}

.sol-bullets {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 20px;
}

.sol-bullets li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: #5b6b82;
    font-size: 15px;
    list-style: none;
}

.sol-bullets li svg {
    width: 19px;
    height: 19px;
    color: #2e5bff;
    flex: none;
    margin-top: 2px;
    stroke-width: 2.4;
}

.sol-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #2e5bff;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.sol-eyebrow .si {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #e7edff;
    display: grid;
    place-items: center;
}

.sol-eyebrow .si svg {
    width: 21px;
    height: 21px;
    stroke-width: 1.9;
}

/* ─── BOUTON CONTOUR (variante ghost) ─────────────────── */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: #142036;
    border: 1px solid #e6ecf4;
    border-radius: 12px;
    padding: 10px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
    background: #f2f5fa;
    border-color: #dde5f0;
}

/* ─── GRILLE 2 COLONNES (secteurs) ────────────────────── */
.grid.g2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

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

/* ─── CARTES SECTEUR (visuel + overlay) ───────────────── */
.sect-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    color: #ffffff;
    border: 1px solid #e6ecf4;
}

.sect-card .sbg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sect-card .sov {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.15), rgba(13, 27, 42, 0.86));
}

.sect-card > * {
    position: relative;
    z-index: 2;
}

.sect-card .snum {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    opacity: 0.8;
}

.sect-card h3 {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0 8px;
}

.sect-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    max-width: 440px;
}

.sect-card .sicn {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(4px);
    display: grid;
    place-items: center;
}

.sect-card .sicn svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    stroke-width: 1.9;
}
