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

/* ─── CARTES DOMAINES D'EXPERTISE ─────────────────────── */
/* .grid / .grid.g3 sont fournis par inner-pages.css */
.fcard {
    position: relative;
    background: #ffffff;
    border: 1px solid #e6ecf4;
    border-radius: 18px;
    padding: 30px 26px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

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

.fcard .topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2e5bff, transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.fcard:hover .topline {
    opacity: 1;
}

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

.fcard .ic svg {
    width: 24px;
    height: 24px;
}

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

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

/* ─── CHIPS (badges technologiques) ───────────────────── */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: #f2f5fa;
    color: #5b6b82;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
}

.chip-soft {
    background: #e7edff;
    color: #2e5bff;
}

/* ─── MÉTHODE (étapes numérotées) ─────────────────────── */
.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

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

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

.step {
    background: #ffffff;
    border: 1px solid #e6ecf4;
    border-radius: 18px;
    padding: 28px 24px;
    position: relative;
}

.step .sn {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #2e5bff;
    background: #e7edff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

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

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

.step::after {
    content: '';
    position: absolute;
    top: 48px;
    right: -13px;
    width: 22px;
    height: 2px;
    background: #dde5f0;
    z-index: 1;
}

.method-grid .step:last-child::after {
    display: none;
}

@media (max-width: 900px) {
    .step::after {
        display: none;
    }
}

/* ─── BANDEAU CERTIFICATIONS ──────────────────────────── */
.cert-band {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e6ecf4;
    border-radius: 26px;
    padding: 46px 44px;
}

@media (max-width: 780px) {
    .cert-band {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
