/* 
    Created on : 21 avr. 2026, 14:09:04
    Author     : GRICOLAT D.
*/

/* ===================== RESET ===================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter', sans-serif;
    line-height:1.6;
    color:#0B1F3A;
}

/* ===================== GLOBAL ===================== */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.btn{
    display:inline-block;
    background:#2F6BFF;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(47,107,255,0.3);
}

.section{
    padding:80px 0;
}

h1,h2,h3{
    font-weight:700;
}

.strong-txt{
    font-size: 35px!important;
    color:white;
}

#section_sup_container{
    background-image:url("../images/prospecting/behind-side-section-2.png");
}

.highlight{
    color:#2F6BFF;
}

/* ===================== HERO ===================== */
.hero{
    background:linear-gradient(135deg,#0B1F3A,#0d2d5a);
    color:white;
    padding:80px 0;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.logo{
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-text h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero-text p{
    font-size:18px;
    margin-bottom:30px;
    opacity:0.9;
}

.hero-img-logo{
    width:435px!important;
}

.hero-img{
    width:100%;
    max-width:515px;
    /*    border-radius:12px;
        box-shadow:0 20px 40px rgba(0,0,0,0.3);*/
}

/* ===================== VALUE ===================== */
.value{
    text-align:center;
}

.value p{
    /*max-width:700px;*/
    margin:20px auto 40px;
    color:#2f2f2f;
    
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card-icon{
    /*                font-size:30px;
                    color:#2F6BFF;
                    margin-bottom:15px;*/
}


.card-icon img{
    width:65px!important;
}

/* ===================== BENEFITS ===================== */
.benefits{
    background:#f7f9fc;
}

.benefits-content{
    display:flex;
    align-items:center;
    gap:80px;
}

.benefits img{
    width:100%;
    max-width:500px;
}

.benefits ul{
    list-style:none;
    margin-top:20px;
}

.benefits li{
    margin-bottom:15px;
    font-weight:500;
}

.benefits li::before{
    content: "";
    display:inline-block;              /* ou inline-block */
    width: 40px;                 /* taille que tu veux */
    height: 40px;
    vertical-align:central;
    background-image: url("../images/prospecting/check-ico-for-leads-landscape-bg-rm-2026042114028.png");
    background-size: contain;    /* ou cover */
    background-repeat: no-repeat;
    background-position: center;
}

.benefits-content-li-div{
    display:inline-block!important;
    vertical-align:central;
}

.benefits-content-li-div div:first-child{
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 16px;
    color:#444;
}

.benefits-content-li-div div:last-child{
    letter-spacing: 2px;
    font-size: 15px;
    color: #5f5f5f;
}

/* ===================== CTA ===================== */
/*.cta{
    background:#0B1F3A;
    color:white;
    text-align:center;
    padding:60px 20px;
}*/

.cta{
    padding: 30px 20px;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #eef3ff, #f8fbff);
}

.cta-sub-container{
    max-width: 1200px;
    margin: auto;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    background:#0d2d5a;
    color:white!important;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05), inset 0 1px 1px rgba(255,255,255,0.6);
}

.cta-sub-container div:first-child{
    display:flex;
    align-items: center;
    gap:10px;
}

.cta-sub-container div:first-child img{
    width: 64px;
    padding: 4px;
    border-radius: 30px;
    background-color: white;
}


.cta h2{
    text-transform: uppercase;
}

/* ===================== FOOTER ===================== */
footer{
    background:#0B1F3A;
    color:#fff;
    padding:40px 0;
    text-align:center;
}

.footer-icons{
    display:flex;
    justify-content:center;
    gap:40px;
    margin:20px 0;
}

/* ===================== ANIMATIONS ===================== */
.fade-in{
    opacity:0;
    transform:translateY(20px);
    transition:0.6s ease;
}

.fade-in.visible{
    opacity:0.75;
    transform:translateY(0);
}

/* ===================== RESPONSIVE ===================== */

@media(max-width:1150px){
    .cta-sub-container{
        justify-content: center;
    }
}



@media(max-width:992px){
    
    
      .cta h2{
        font-size:24px;
    }
    
    
    
    .hero-content,
    .benefits-content{
        flex-direction:column;
        text-align:center;
    }

    .benefits ul li{
        flex-direction:column;
        text-align:left!important;
    }

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

    .cta-sub-container{
        justify-content: center;
    }

}

@media(max-width:600px){
    
    .cta h2{
        font-size:17px;
    }
    
    
        .hero-img-logo{
        width:335px!important;
    }
    
    
    .benefits li::before{
        width: 30px;
        height: 40px;
        transition: all ease 1s;
    }

    .hero-text h1{
        font-size:32px;
    }

    .cta-sub-container img{
        display:none;
    }

    .cards{
        grid-template-columns:1fr;
    }
}