/* =========================================================
   SOLUTIONS PAGE  —  assets/css/solutions.css
========================================================= */
:root {
    --breadcrumb-bg : #EDF2F5;
    --blue-mkba     : #005FAC;
    --blue-light    : #E6F0FA;
    --orange-mkba   : #ED6A18;
    --dark-mkba     : #111827;
    --muted-mkba    : #6b7280;
    --grey-bg       : #F3F4F6;
}

/* =========================================================
   HERO — FOND BLEU
========================================================= */
.sol-hero {
    background-color: var(--blue-mkba);
    padding: 60px 0 52px;
    position: relative;
    overflow: hidden;
}

.sol-hero-title {
    color: #ffffff;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.sol-hero-text {
    color: rgba(255,255,255,0.88);
    font-size: 0.94rem;
    line-height: 1.85;
    margin: 0;
}

/* =========================================================
   ILLUSTRATION HERO
========================================================= */
.sol-hero-images {
    position: relative;
    width: 420px;
    height: 320px;
}

/* ---------------------------------------------------------
   Bloc principal : navigateur + carte + globes
--------------------------------------------------------- */
.sol-hero-front {
    position: absolute;
    inset: 0;
    z-index: 2;

    /* effet posé au-dessus */
    transform: translateY(-10px) scale(.92);
    transform-origin: center;
}

/* Fenêtre navigateur */
.sol-browser {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

/* Carte du monde */
.sol-world {
    position: absolute;
    top: 52px;
    left: 45px;
    width: 78%;
    height: auto;
    z-index: 2;
}

/* ---------------------------------------------------------
   Les 6 globes
--------------------------------------------------------- */

.sol-globes {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.sol-globes img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    opacity: .75;
    transition: transform .3s ease;
}

/* Rotation légère pour varier l'apparence */

.sol-globes img:nth-child(1) {
    transform: rotate(0deg) scale(.95);
}

.sol-globes img:nth-child(2) {
    transform: rotate(20deg) scale(1);
}

.sol-globes img:nth-child(3) {
    transform: rotate(40deg) scale(.97);
}

.sol-globes img:nth-child(4) {
    transform: rotate(60deg) scale(1.02);
}

.sol-globes img:nth-child(5) {
    transform: rotate(80deg) scale(.98);
}

.sol-globes img:nth-child(6) {
    transform: rotate(100deg) scale(.95);
}

/* =========================================================
   INTRO TEXT
========================================================= */
.sol-intro {
    background: #ffffff;
}

.sol-intro-text {
    color: var(--muted-mkba);
    font-size: 0.93rem;
    line-height: 1.9;
}

/* =========================================================
   LISTE DE PRODUITS PAR INDUSTRIE
========================================================= */
.sol-industries {
    background: #ffffff;
}

.sol-industry-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sol-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px 24px 26px;
    background: #ffffff;
    transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.sol-card:hover {
    box-shadow: 0 10px 32px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}

.sol-card-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark-mkba);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.45;
    margin-bottom: 8px;
}

.sol-card-divider {
    width: 90px;
    height: 3px;
    background: var(--blue-mkba);
    border-radius: 2px;
    margin-bottom: 16px;
}

.sol-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.sol-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.55;
}

.sol-check-icon {
    color: #16a34a;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* =========================================================
   MODELES DE DEPLOIEMENT & LICENCES
========================================================= */
.sol-deployment {
    background: var(--grey-bg);
    border-radius: 12px;
    padding: 44px 40px;
}

.sol-deployment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-mkba);
    margin-bottom: 32px;
}

.sol-deployment-title .highlight {
    background: rgba(237,106,24,0.18);
    padding: 0 4px;
    border-radius: 3px;
}

.sol-deployment-heading {
    font-size: 1.05rem;
    font-weight: 450;
    color: var(--dark-mkba);
    margin-bottom: 16px;
}

.sol-deployment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sol-deployment-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #374151;
}

.sol-square-icon {
    width: 8px;
    height: 8px;
    background: var(--blue-mkba);
    display: inline-block;
    margin-top: 6px;
    flex-shrink: 0;
    border-radius: 1px;
}

/* =========================================================
   NOTRE APPROCHE
========================================================= */
.sol-approach {
    background: #ffffff;
}

.sol-approach-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-mkba);
    margin-bottom: 24px;
}

.sol-approach-title .highlight {
    background: rgba(237,106,24,0.18);
    padding: 0 4px;
    border-radius: 3px;
}

.sol-approach-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sol-approach-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.6;
}

/* =========================================================
   FEATURE TABS BOX
========================================================= */
.sol-feature-box{
    display:flex;
    border:1px solid #d8e4ef;
    background:#fff;
    padding-bottom: 8px;
    margin: 10px;
}

/* ==========================
   COLONNE GAUCHE
========================== */
.sol-feature-tabs{
    width:40%;
    background:#edf3fa;
    list-style:none;
    margin:-15px 0 0 -15px;
}

/* ==========================
   ONGLET
========================== */
.sol-feature-tab{
    padding:8px 18px;
    margin:0;
    font-size:13px;
    font-weight:500;
    color:#333;
    cursor:pointer;
    transition:.2s;
}

.sol-feature-tab.active{
    background:#005da8;
    color:#fff;
    margin-right:-8px;
    position:relative;
    z-index:2;
    width:calc(100% + 8px);
}

/* ==========================
   CONTENU
========================== */
.sol-feature-content{
    width:60%;
    display:flex;
    align-items:center;
    padding:25px 40px;
}

.sol-feature-content-list{
    display:none;
    list-style:none;
    margin:0;
    padding:0;
}

.sol-feature-content-list.active{
    display:block;
}

.sol-feature-content-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:14px;
    font-size:13px;
    line-height:1.5;
    color:#555;
}

.sol-square-icon{
    width:5px;
    height:5px;
    background:#005da8;
    margin-top:7px;
    flex-shrink:0;
}

@media(max-width:991px){
    .sol-feature-box{
        flex-direction:column;
    }
    .sol-feature-tabs{
        width:100%;
        min-width:100%;
    }
    .sol-feature-content{
        padding:35px 25px;
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991px) {
    .sol-hero {
        padding: 44px 0 40px;
    }
    .sol-hero-title {
        font-size: 1.9rem;
    }
    .sol-deployment {
        padding: 36px 28px;
    }
}

@media (max-width: 767px) {
    .sol-hero {
        padding: 36px 0 32px;
    }
    .sol-hero-title {
        font-size: 1.6rem;
    }
    .sol-hero-text {
        font-size: 0.88rem;
    }
    .sol-card {
        padding: 20px 18px 22px;
    }
    .sol-feature-tabs {
        flex: 1 1 100%;
        display: flex;
        overflow-x: auto;
    }
    .sol-feature-tab {
        white-space: nowrap;
    }
    .sol-feature-content {
        padding: 24px 20px;
    }
}
