.about-hero{
    position:relative;

    height:60vh;

    min-height:380px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    background:
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1920&q=80')
        center/cover no-repeat;

    color:#fff;
}

/* overlay bleu SHW */
.about-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(7,27,52,.92),
            rgba(7,27,52,.65)
        );
}

/* contenu */
.about-content{
    position:relative;
    z-index:2;

    max-width:750px;

    margin:auto;
}

.about-content h1{
    font-size:42px;
    font-weight:800;

    margin-bottom:15px;

    line-height:1.2;
}

.about-content p{
    font-size:16px;

    color:rgba(255,255,255,.85);

    line-height:1.8;
}

/* responsive */
@media(max-width:768px){

    .about-content h1{
        font-size:28px;
    }

    .about-hero{
        height:50vh;
    }
}

.promoteur-section{
    padding:80px 0;
    background:#ffffff;
}

/* badge minimal */
.section-badge{
    display:inline-block;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;

    color:#2DC7FF;

    margin-bottom:20px;
}

/* TITRE */
.promoteur-content h2{
    font-size:42px;
    font-weight:300;

    color:#071B34;

    line-height:1.3;

    margin-bottom:25px;
}

/* PARAGRAPHES */
.promoteur-content p{
    font-size:16px;

    line-height:2;

    color:#6b7280;

    margin-bottom:18px;
}

/* IMAGE STYLE MAGAZINE */
.promoteur-image{
    position:relative;
}

.promoteur-image img{
    width:100%;
    height:520px;

    object-fit:cover;

    border-radius:0px;

    filter:contrast(1.05) saturate(1.05);

    box-shadow:0 40px 80px rgba(0,0,0,.08);
}

/* SIGNATURE STYLE MINIMAL */
.signature-card{
    margin-top:40px;

    display:flex;
    align-items:center;
    gap:20px;
}

.signature-line{
    width:80px;
    height:1px;
    background:#2DC7FF;
}

.promoteur-name{
    font-size:18px;
    font-weight:500;
    color:#071B34;
    margin:0;
}

.promoteur-role{
    font-size:13px;
    color:#9ca3af;
    margin:0;
}

/* RESPONSIVE */
@media(max-width:768px){

    .promoteur-content h2{
        font-size:28px;
    }

    .promoteur-image img{
        height:350px;
    }
}

.engagement-wrapper{
    padding:70px 0;
    background:#d6e7fe;
}

/* HEADER */
.engagement-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.engagement-header h2{
    font-size:38px;
    font-weight:800;
    color:#071B34;
    margin:15px 0;
}

.engagement-header p{
    font-size:16px;
    color:#64748b;
    line-height:1.8;
}

/* LAYOUT */
.engagement-layout{
    display:flex;
    gap:50px;
}

/* SIDEBAR */
.engagement-sidebar{
    width:300px;
}

.engagement-sidebar ul{
    list-style:none;
    padding:0;
    margin:0;
}

.engagement-sidebar li{
    display:flex;
    align-items:center;
    gap:12px;

    padding:16px 18px;

    margin-bottom:12px;

    border-radius:14px;

    cursor:pointer;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.04);

    transition:.3s;

    color:#64748b;

    font-weight:600;
}

.engagement-sidebar li i{
    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;

    background:rgba(45,199,255,.1);

    color:#2DC7FF;

    font-size:16px;
}

.engagement-sidebar li:hover{
    transform:translateX(6px);
    color:#2DC7FF;
}

.engagement-sidebar li.active{
    background:linear-gradient(135deg,#2DC7FF,#0095D9);
    color:#fff;
}

.engagement-sidebar li.active i{
    background:rgba(255,255,255,.2);
    color:#fff;
}

/* CONTENT */
.engagement-content{
    flex:1;

    background:#fff;

    padding:50px;

    border-radius:25px;

    box-shadow:0 25px 70px rgba(0,0,0,.06);
}

/* CONTENT TEXT */
.tab-content h2{
    font-size:32px;
    font-weight:800;
    color:#071B34;
    margin-bottom:20px;
}

.tab-content p{
    font-size:16px;
    line-height:2;
    color:#64748b;
    margin-bottom:18px;
}

/* animation */
.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
    animation:fadeIn .4s ease;
}

@keyframes fadeIn{
    from{opacity:0; transform:translateY(10px);}
    to{opacity:1; transform:translateY(0);}
}

/* RESPONSIVE */
@media(max-width:992px){

    .engagement-layout{
        flex-direction:column;
    }

    .engagement-sidebar{
        width:100%;
    }

}

.why-shw-cta{
    position:relative;

    padding:140px 0;

    background:url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=2000&q=80')
    center center/cover no-repeat;

    overflow:hidden;
}

.why-shw-cta .overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(7,27,52,.93),
        rgba(7,27,52,.82)
    );
}

.cta-content{
    position:relative;
    z-index:2;

    max-width:900px;
    margin:auto;

    text-align:center;

    color:#fff;
}

.cta-badge{
    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    font-size:13px;
    font-weight:600;
    letter-spacing:2px;

    margin-bottom:25px;
}

.cta-content h2{
    font-size:54px;
    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;
}

.cta-description{
    max-width:750px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.85);
}

.cta-features{
    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;
}

.feature-item{
    backdrop-filter:blur(15px);

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.1);

    border-radius:18px;

    padding:25px 15px;

    transition:.4s;
}

.feature-item:hover{
    transform:translateY(-8px);

    background:rgba(45,199,255,.18);
}

.feature-item i{
    font-size:28px;

    color:#2DC7FF;

    margin-bottom:15px;

    display:block;
}

.feature-item span{
    font-weight:600;
}

.cta-buttons{
    margin-top:50px;

    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-primary-shw{
    padding:18px 35px;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        #2DC7FF,
        #0095D9
    );

    color:#fff;

    font-weight:700;

    text-decoration:none;

    transition:.3s;
}

.btn-primary-shw:hover{
    transform:translateY(-4px);
    color:#fff;
}

.btn-outline-shw{
    padding:18px 35px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,.3);

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.btn-outline-shw:hover{
    background:#fff;
    color:#071B34;
}

@media(max-width:992px){

    .cta-content h2{
        font-size:38px;
    }

    .cta-features{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-shw-cta{
        padding:100px 0;
    }

    .cta-content h2{
        font-size:30px;
    }

    .cta-features{
        grid-template-columns:1fr;
    }

    .cta-buttons{
        flex-direction:column;
    }
}

.org-section{
    padding-top: 80px;
    background:#fff;
}

.org-section .section-header{
    max-width:850px;
    margin:auto auto 80px;
}

.org-section .section-header h2{
    font-size:42px;
    font-weight:800;
    color:#071B34;
    margin:15px 0;
}

.org-section .section-header p{
    color:#64748b;
    line-height:1.9;
}

/* directeur */
.org-top{
    display:flex;
    justify-content:center;
}

.org-line{
    width:2px;
    height:80px;

    background:#2DC7FF;

    margin:0 auto;
}

/* équipe */
.org-team{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* card */
.org-card{
    position:relative;

    background:#fff;

    padding:35px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

    transition:.4s;
}

.org-card:hover{
    transform:translateY(-10px);

    box-shadow:0 30px 80px rgba(45,199,255,.18);
}

.org-card::before{
    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #2DC7FF,
        #0095D9
    );
}

/* directeur */
.directeur{
    width:340px;
    margin-bottom:0;
}

/* photo */
.org-photo{
    width:120px;
    height:120px;

    margin:auto auto 20px;

    border-radius:50%;

    padding:5px;

    background:linear-gradient(
        135deg,
        #2DC7FF,
        #0095D9
    );
}

.org-photo img{
    width:100%;
    height:100%;

    border-radius:50%;

    object-fit:cover;
}

.org-card h4{
    margin-bottom:8px;

    font-size:20px;
    font-weight:700;

    color:#071B34;
}

.org-card span{
    color:#2DC7FF;
    font-weight:600;
}

/* responsive */
@media(max-width:992px){

    .org-team{
        grid-template-columns:1fr;
    }

    .directeur{
        width:100%;
        max-width:350px;
    }

}