/* ============================================================
   SMART SALARIÉ — Section application mobile Android
   Partagée par les pages produit (NeuroSirh, SoftyPaie…).
   Le châssis de la section suit le thème du site
   (#0d2d4a / #1a9c8c / #22c5b1) ; l'écran du téléphone reprend
   la palette réelle de l'application MAUI (#0D1E6B / #00C9A7).
   Aucune image : la maquette est entièrement en CSS.
   ============================================================ */

.ss-section {
    background: #f4f9f8;
}

/* ---------- Colonne argumentaire ---------- */
.ss-lead {
    color: #6b8f8a;
    font-size: .98rem;
    line-height: 1.75;
    margin-bottom: 1.6rem;
}

.ss-mods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
    margin-bottom: 1.6rem;
}

@media (max-width: 575px) {
    .ss-mods {
        grid-template-columns: 1fr;
    }
}

.ss-mod {
    background: #fff;
    border: 1px solid #e8f4f2;
    border-radius: 13px;
    padding: 1rem 1.1rem;
    box-shadow: 0 2px 10px rgba(26,156,140,.06);
    transition: transform .25s, box-shadow .25s;
}

    .ss-mod:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 22px rgba(26,156,140,.13);
    }

.ss-mod-h {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .45rem;
}

    .ss-mod-h i {
        width: 30px;
        height: 30px;
        border-radius: 9px;
        flex-shrink: 0;
        background: linear-gradient(135deg,#1a9c8c,#22c5b1);
        color: #fff;
        font-size: .8rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ss-mod-h b {
        font-family: 'Rajdhani',sans-serif;
        font-weight: 700;
        color: #0d2d4a;
        font-size: 1rem;
    }

.ss-mod p {
    margin: 0;
    color: #6b8f8a;
    font-size: .85rem;
    line-height: 1.55;
}

/* ---------- Bandeau technique ---------- */
.ss-specs {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 1.5rem;
}

.ss-spec {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: #fff;
    border: 1px solid #e8f4f2;
    border-radius: 50px;
    padding: .4rem .9rem;
    font-size: .78rem;
    color: #3d5166;
    font-weight: 600;
}

    .ss-spec i {
        color: #1a9c8c;
        font-size: .78rem;
    }

.ss-note {
    display: inline-flex;
    align-items: flex-start;
    gap: .6rem;
    background: #fff;
    border: 1px solid #e8f4f2;
    border-radius: 12px;
    padding: .7rem 1.1rem;
    color: #6b8f8a;
    font-size: .84rem;
    line-height: 1.5;
    box-shadow: 0 2px 10px rgba(26,156,140,.06);
}

    .ss-note i {
        color: #1a9c8c;
        margin-top: 2px;
    }

/* ============================================================
   MAQUETTE TÉLÉPHONE — 100 % CSS, aucune image
   Reproduit l'écran d'accueil réel de Smart Salarié.
   ============================================================ */

.ss-stage {
    display: flex;
    justify-content: center;
    position: relative;
}

    .ss-stage::before {
        content: '';
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(26,156,140,.15) 0%, transparent 70%);
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
    }

.ss-phone {
    position: relative;
    width: 278px;
    padding: 11px;
    background: linear-gradient(165deg,#0D1E6B,#132a80 50%,#1A3A9A);
    border-radius: 38px;
    box-shadow: 0 28px 64px rgba(13,30,107,.34), 0 0 0 1px rgba(0,201,167,.22);
}

.ss-notch {
    position: absolute;
    top: 19px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 5px;
    border-radius: 4px;
    background: rgba(255,255,255,.24);
    z-index: 3;
}

.ss-screen {
    background: #F0F4FF;
    border-radius: 28px;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

/* ---- En-tête salarié ---- */
.ss-head {
    background: linear-gradient(135deg,#0D1E6B,#1A3A9A 60%,#00BED4);
    padding: 1.9rem .9rem 1rem;
    color: #fff;
    display: flex;
    gap: .65rem;
    align-items: center;
}

.ss-ava {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255,255,255,.2);
    border: 1.5px solid rgba(255,255,255,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.ss-who {
    flex: 1;
    min-width: 0;
}

    .ss-who b {
        display: block;
        font-family: 'Rajdhani',sans-serif;
        font-size: .98rem;
        line-height: 1.2;
    }

    .ss-who span {
        font-size: .66rem;
        opacity: .85;
        display: block;
    }

.ss-bell {
    position: relative;
    font-size: .85rem;
    flex-shrink: 0;
}

    .ss-bell::after {
        content: '';
        position: absolute;
        top: -2px;
        right: -3px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #F39C12;
        border: 1.5px solid #1A3A9A;
    }

/* ---- Corps ---- */
.ss-body {
    padding: .8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.ss-lbl {
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #6B7A99;
    font-weight: 700;
}

/* Vue d'ensemble : 4 tuiles */
.ss-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.ss-stat {
    background: #fff;
    border: 1px solid #D0D9F0;
    border-radius: 12px;
    padding: .6rem .55rem;
    text-align: center;
}

    .ss-stat em {
        font-style: normal;
        font-size: 1rem;
        display: block;
        line-height: 1;
        margin-bottom: .2rem;
    }

    .ss-stat b {
        display: block;
        font-family: 'Rajdhani',sans-serif;
        font-weight: 700;
        font-size: 1.25rem;
        color: #0D1E6B;
        line-height: 1.1;
    }

    .ss-stat span {
        font-size: .58rem;
        color: #6B7A99;
        font-weight: 600;
    }

/* Actions rapides */
.ss-acts {
    display: flex;
    gap: .45rem;
}

.ss-act {
    flex: 1;
    border-radius: 10px;
    padding: .5rem .3rem;
    text-align: center;
    font-size: .6rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg,#0D1E6B,#1A3A9A);
    line-height: 1.25;
}

    .ss-act.alt {
        background: linear-gradient(135deg,#00C9A7,#00BED4);
    }

    .ss-act i {
        display: block;
        font-size: .72rem;
        margin-bottom: .18rem;
    }

/* Dernières demandes */
.ss-req {
    background: #fff;
    border: 1px solid #D0D9F0;
    border-radius: 12px;
    padding: .55rem .6rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

    .ss-req .ic {
        width: 26px;
        height: 26px;
        border-radius: 8px;
        flex-shrink: 0;
        background: #E8F0FE;
        color: #1A3A9A;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .65rem;
    }

    .ss-req .tx {
        flex: 1;
        min-width: 0;
    }

        .ss-req .tx b {
            display: block;
            font-size: .72rem;
            color: #0D1E6B;
            font-weight: 600;
            line-height: 1.25;
        }

        .ss-req .tx span {
            font-size: .6rem;
            color: #6B7A99;
        }

.ss-tag {
    font-size: .55rem;
    font-weight: 700;
    padding: .18rem .45rem;
    border-radius: 50px;
    flex-shrink: 0;
    white-space: nowrap;
}

    .ss-tag.ok {
        background: rgba(39,174,96,.12);
        color: #27AE60;
    }

    .ss-tag.wait {
        background: rgba(243,156,18,.14);
        color: #C87F0A;
    }

/* ---- Barre d'onglets (6 onglets réels) ---- */
.ss-nav {
    margin-top: auto;
    background: #fff;
    border-top: 1px solid #D0D9F0;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    padding: .45rem .15rem .5rem;
    text-align: center;
}

    .ss-nav div {
        font-size: .5rem;
        color: #A8B4CE;
        font-weight: 600;
        line-height: 1.15;
    }

        .ss-nav div i {
            display: block;
            font-size: .72rem;
            margin-bottom: .12rem;
        }

        .ss-nav div.on {
            color: #00C9A7;
        }

@media (max-width: 991px) {
    .ss-stage {
        margin-bottom: 2.6rem;
    }
}
