/*=====================================================
                INTRODUCTION
======================================================*/

.philo-intro{
    padding:110px 0 0;
    background:linear-gradient(180deg,#f8fcff,#ffffff);
    text-align:center;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    border-radius:50px;
    background:#eaf9ff;
    color:#0095d9;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:25px;
}

.philo-intro h1{
    max-width:900px;
    margin:auto;
    font-size:56px;
    font-weight:800;
    color:#071B34;
    line-height:1.2;
}

.intro-line{
    width:90px;
    height:5px;
    border-radius:50px;
    margin:35px auto;
    background:linear-gradient(90deg,#2DC7FF,#0095D9);
}

.philo-intro p{
    max-width:900px;
    margin:auto;
    font-size:18px;
    color:#667085;
    line-height:2;
}

/*=====================================================
                PREMIER BLOC
======================================================*/

.philo-block{
    padding:50px 0;
}

.block-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    display:flex;
    align-items:flex-start;
    gap:50px;
    padding:60px;
    box-shadow:0 25px 60px rgba(10,55,90,.08);
    border:1px solid #eef5fb;
    transition:.4s;
}

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

.block-number{

    min-width:120px;
    width:120px;
    height:120px;

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

    border-radius:50%;

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

    color:#fff;

    font-size:42px;
    font-weight:800;
}

.block-content h2{
    font-size:38px;
    font-weight:800;
    color:#071B34;
    margin-bottom:25px;
}

.block-content p{
    color:#64748b;
    line-height:2;
    margin-bottom:20px;
}

/*=====================================================
                SECTION TITRE
======================================================*/

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:44px;
    font-weight:800;
    color:#071B34;
}

.section-title p{
    font-size:24px;
    margin:20px auto 0;
    color:#64748b;
    line-height:1.9;
}

.section-title.light h2,
.section-title.light p{
    color:#fff;
}

/*=====================================================
              TIMELINE
======================================================*/

.diagnostic-section{
    padding:110px 0;
    background:#f8fbff;
}

.timeline{
    position:relative;
    max-width:950px;
    margin:auto;
}

.timeline:before{

    content:'';

    position:absolute;

    left:40px;

    top:0;
    bottom:0;

    width:3px;

    background:#dbeafe;

}

.timeline-item{

    position:relative;

    display:flex;

    gap:35px;

    margin-bottom:60px;

}

.timeline-icon{

    width:80px;
    height:80px;

    min-width:80px;

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

    border-radius:50%;

    color:#fff;

    font-size:28px;

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

    box-shadow:0 15px 35px rgba(45,199,255,.35);

    position:relative;

    z-index:5;

}

.timeline-item h4{

    font-size:28px;

    font-weight:700;

    color:#071B34;

    margin-bottom:12px;

}

.timeline-item p{

    color:#64748b;

    line-height:2;

}

/*=====================================================
            ACTIONS
======================================================*/

.actions-section{

    padding:120px 0;

    background:

    linear-gradient(
    135deg,
    #071B34,
    #0E3B68
    );

}

.action-card{

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

    backdrop-filter:blur(10px);

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

    border-radius:25px;

    padding:40px;

    height:100%;

    transition:.45s;

}

.action-card:hover{

    transform:translateY(-12px);

    background:#fff;

}

.action-card i{

    width:70px;
    height:70px;

    border-radius:18px;

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

    margin-bottom:25px;

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

    color:#fff;

    font-size:28px;

}

.action-card h4{

    font-size:24px;

    font-weight:700;

    color:#fff;

    margin-bottom:15px;

    transition:.3s;

}

.action-card p{

    color:#d9e7f2;

    line-height:1.9;

    transition:.3s;

}

.action-card:hover h4{

    color:#071B34;

}

.action-card:hover p{

    color:#64748b;

}

/*=====================================================
            CONCLUSION
======================================================*/

.philo-closing{

    padding:120px 0;

    background:#fff;

}

.closing-card{

    max-width:950px;

    margin:auto;

    text-align:center;

    padding:80px;

    border-radius:35px;

    background:

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

    color:#fff;

    box-shadow:0 30px 70px rgba(0,149,217,.35);

}

.closing-card h2{

    font-size:44px;

    font-weight:800;

    margin-bottom:25px;

}

.closing-card p{

    line-height:2;

    font-size:18px;

    opacity:.96;

    max-width:800px;

    margin:0 auto 35px;

}

.closing-card h5{

    font-size:24px;

    letter-spacing:3px;

    font-weight:700;

}

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

@media(max-width:991px){

.philo-intro h1{
    font-size:42px;
}

.block-card{

    flex-direction:column;
    padding:40px;

}

.block-number{

    width:90px;
    height:90px;
    min-width:90px;

    font-size:30px;

}

.block-content h2{

    font-size:30px;

}

.timeline:before{

    left:30px;

}

.timeline-item{

    gap:20px;

}

.timeline-icon{

    width:60px;
    height:60px;
    min-width:60px;

    font-size:22px;

}

.section-title h2{

    font-size:34px;

}

.closing-card{

    padding:50px 30px;

}

.closing-card h2{

    font-size:32px;

}

}

@media(max-width:576px){

.philo-intro{

    padding:80px 0 60px;

}

.philo-intro h1{

    font-size:32px;

}

.block-card{

    padding:30px;

}

.block-content h2{

    font-size:25px;

}

.action-card{

    padding:30px;

}

}