    /* SOPARLI SAS */
:root {

    /* ---- Brand --- */
    --primary: #0F4C81;
    --primary-hover: #003D73;
    --primary-light: #4F8FCF;
    --accent: #2E8B57;

    /* --- Background --- */
    --white: #FFFFFF;
    --background: #FFFFFF;
    --section: #F5F7FA;
    --surface: #FFFFFF;

    /* --- Text --- */
    --text: #2E3A46;
    --text-light: #6B7280;
    --heading: #1F2937;

    /* --- Border --- */
    --border: #D8E1EA;

    /* --- States --- */
    --success: #2E8B57;
    --warning: #F59E0B;
    --danger: #DC2626;
    --info: #2563EB;

    /* --- Typography --- */
    --font-family: "Inter", sans-serif;

    /* --- Radius --- */
    --radius: 12px;

    /* --- Shadows --- */
    --shadow-sm: 0 2px 8px rgba(15, 76, 129, .06);
    --shadow: 0 6px 20px rgba(15, 76, 129, .08);
    --shadow-lg: 0 12px 32px rgba(15, 76, 129, .12);

    /* --- Transition --- */
    --transition: .3s ease;

    /* --- Container --- */
    --container: 1200px;

}

/* *********HEADER*********** */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--font-family);
    background:var(--background);
    color:var(--text);
    padding-top:116px;
}

.container{
    width:min(92%, var(--container));
    margin:auto;
}


                /* TOP BAR */

.topbar{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:36px;

    background:var(--accent);

    color:#fff;

    z-index:1000;

}

.topbar .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:100%;

}

.topbar-left{

    font-size:.90rem;
    font-weight:500;

}

.topbar-right{

    display:flex;
    align-items:center;
    gap:22px;

}

.topbar-right a{

    color:#fff;

    text-decoration:none;

    display:flex;
    align-items:center;

    gap:8px;

    transition:var(--transition);

}

.topbar-right a:hover{

    opacity:.8;

}
   /* ACTIVE MENU LINK */

.nav-menu a.active {
    color: #0F4C81;
    font-weight: 700;
    position: relative;
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

   /* MOBILE ACTIVE LINK */

.mobile-menu a.active {
    color: var(--accent);
    font-weight: 700;
}

   /* ACTIVE BUTTON CTA MOBILE */

.mobile-btn.active-btn {
    background: #0F4C81;
    color: #fff;
    border-radius: 8px;
}
/*==================================================
                HEADER
==================================================*/

#header{

    position:fixed;

    top:36px;
    left:0;

    width:100%;
    height:80px;

    background:#fff;

    border-bottom:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    z-index:999;

}

.navbar{

    height:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*==================================================
                LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    height:100%;

    text-decoration:none;

}

.logo img{

    width:115px;
    height:115px;

    object-fit:contain;

    display:block;

    flex-shrink:0;

}

.logo-text{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.logo-text span{

    font-size:1.45rem;

    font-weight:700;

    color:var(--primary);

    letter-spacing:.5px;

    line-height:1.1;

}

.logo-text small{

    color:var(--text-light);

    font-size:.80rem;

    letter-spacing:3px;

    line-height:1.1;

}

/*==================================================
                DESKTOP MENU
==================================================*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:34px;

}

.nav-menu a{

    text-decoration:none;

    color:var(--text);

    font-weight:500;

    transition:.3s;

    position:relative;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-menu a:hover{

    color:var(--primary);

}

.nav-menu a:hover::after{

    width:100%;

}

/*==================================================
                BUTTON
==================================================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    background:#005AA7;

    color:#fff;

    border-radius:var(--radius);

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    background:#003D73;

}

/*==================================================
            HAMBURGER
==================================================*/

.menu-toggle{

    display:none;

    width:46px;

    height:46px;

    border:none;

    background:none;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:28px;

    height:3px;

    background:var(--primary);

    margin:6px auto;

    border-radius:50px;

}

/*==================================================
            MOBILE MENU
==================================================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:320px;

    max-width:100%;

    height:100vh;

    background:#fff;

    z-index:1200;

    transition:.35s;

    box-shadow:-10px 0 30px rgba(0,0,0,.08);

    padding:35px;

    overflow:auto;

}

.mobile-menu.active{

    right:0;

}

.mobile-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;

}

.mobile-top img{

    width:60px;

    height:60px;

    object-fit:contain;

}

.close-menu{

    border:none;

    background:none;

    font-size:1.6rem;

    cursor:pointer;

    color:var(--primary);

}

.mobile-menu a{

    display:block;

    padding:16px 0;

    text-decoration:none;

    color:var(--text);

    border-bottom:1px solid var(--border);

    font-weight:500;

}

.mobile-btn{

    margin-top:30px;

    text-align:center;

}

/*==================================================
                OVERLAY
==================================================*/

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.35);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:1100;

}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;

}

/*==================================================
                RESPONSIVE
==================================================*/

@media (max-width:1100px){

    .nav-menu{

        gap:20px;

    }

}

@media (max-width:992px){

    .nav-menu{

        display:none;

    }

    .nav-right{

        display:none;

    }

    .menu-toggle{

        display:block;

    }

    .mobile-menu .mobile-btn{

        display:flex;

        justify-content:center;

        align-items:center;

        width:100%;

        margin-top:30px;

        padding:15px 20px;

        background:#005AA7;

        color:#FFFFFF !important;

        border-radius:var(--radius);

        font-weight:600;

        text-decoration:none;

        transition:var(--transition);

    }

    .mobile-menu .mobile-btn:hover{

        background:#003D73;

        color:#FFFFFF !important;

    }

}

@media (max-width:768px){

    body{

        padding-top:106px;

    }

    #header{

        height:70px;

    }

    .logo img{

        width:56px;

        height:56px;

    }

    .logo-text span{

        font-size:1.25rem;

    }

    .logo-text small{

        font-size:.75rem;

    }

}

@media (max-width:600px){

    .topbar{

        height:40px;

    }

    .topbar-left{

        display:none;

    }

    .topbar .container{

        justify-content:center;

    }

    .topbar-right{

        gap:20px;

    }

    #header{

        top:40px;

    }

}

@media (max-width:420px){

    .mobile-menu{

        width:100%;

    }

    .container{

        width:94%;

    }

    .logo img{

        width:52px;

        height:52px;

    }

    .logo-text span{

        font-size:1.15rem;

    }

    .logo-text small{

        font-size:.70rem;

        letter-spacing:2px;

    }

    .mobile-menu .mobile-btn{

        font-size:.95rem;

        padding:14px 20px;

        color:#FFFFFF !important;

    }

}


/* **********HERO SECTION*********** */

.hero{

    position:relative;

    min-height:90vh;

    display:flex;
    align-items:center;

    overflow:hidden;

}

/* IMAGE LAYER (ANIMÉE) */
.hero::before{

    content:"";

    position:absolute;
    inset:0;

    background:url("images/soparlisas.jpg") center/cover no-repeat;

    transform:scale(1.08);

    animation: heroZoom 12s ease-in-out infinite;

    z-index:0;

}

/* DARK OVERLAY */
.hero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(15,76,129,0.88),
        rgba(15,76,129,0.55),
        rgba(0,0,0,0.35)
    );

    z-index:1;

}

/* CONTENT */
.hero-container{

    position:relative;
    z-index:2;

    display:flex;
    align-items:center;

}

.hero-content{

    max-width:650px;
    color:#fff;

}

/* BADGE */
.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:8px 14px;

    border-radius:999px;

    background:var(--accent);

    color:#fff;

    font-size:.85rem;

    margin-bottom:18px;

}

/* TITLES */

.hero h1{
    font-size:3rem;
    line-height:1.2;
    margin-bottom:15px;
    color:#fff;
}

.hero h2{
    font-size:1.25rem;
    font-weight:500;
    margin-bottom:15px;
    color:rgba(255,255,255,0.9);
}

.hero p{
    font-size:1rem;
    line-height:1.7;
    color:rgba(255,255,255,0.85);
    margin-bottom:25px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* OUTLINE */

.btn-outline{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 24px;

    border:1px solid rgba(255,255,255,0.6);

    color:#fff;

    border-radius:var(--radius);

    text-decoration:none;

    font-weight:600;

    transition:0.3s;

}

.btn-outline:hover{
    background:#fff;
    color:var(--primary);
}

/* PRIMARY */

.hero .btn-primary{
    background:#fff;
    color:var(--primary);
}

.hero .btn-primary:hover{
    background:rgba(255,255,255,0.85);
}

/*==================================
            ANIMATION ZOOM
===================================*/

@keyframes heroZoom{

    0%{
        transform:scale(1.08);
    }

    50%{
        transform:scale(1.15);
    }

    100%{
        transform:scale(1.08);
    }

}

/*==================================
            RESPONSIVE
===================================*/

@media(max-width:992px){

    .hero{
        text-align:center;
        justify-content:center;
    }

    .hero-content{
        margin:auto;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .hero h2{
        font-size:1.1rem;
    }

    .hero-buttons{
        justify-content:center;
    }

}

@media(max-width:600px){

    .hero{

        min-height:70vh;
        padding:50px 0;

    }

    .hero h1{
        font-size:1.6rem;
        line-height:1.25;
    }

    .hero h2{
        font-size:0.95rem;
    }

    .hero p{
        display:none;
    }

    .hero-badge{
        display:none;
    }

}

/* *******************SECTION POURQUOIR CHOISIR **************** */

.about-values{

    position:relative;

    overflow:hidden;

    padding:55px 0;

    background:
        radial-gradient(circle at top left, rgba(0,168,150,.12), transparent 35%),
        radial-gradient(circle at bottom right, rgba(15,76,129,.12), transparent 40%),
        linear-gradient(135deg,#EEF6FF 0%,#F9FCFF 50%,#F2FFF9 100%);

}

/* Decorative shapes */

.about-values::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    top:-220px;

    left:-180px;

    border-radius:50%;

    background:rgba(15,76,129,.08);

    filter:blur(10px);

}

.about-values::after{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    bottom:-190px;

    right:-170px;

    border-radius:50%;

    background:rgba(0,168,150,.08);

    filter:blur(10px);

}

/*====================*/

.about-values .container{

    position:relative;

    z-index:2;

}

/*====================*/

.about-values .section-title{

    max-width:700px;

    margin:0 auto 30px;

    text-align:center;

}

.about-values .section-title h2{

    color:var(--primary);

    font-size:2rem;

    margin-bottom:10px;

}

.about-values .section-title p{

    color:var(--text-light);

    font-size:1rem;

    line-height:1.7;

}

/*====================*/

.values-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

/*====================*/

.value-card{

    position:relative;

    overflow:hidden;

    padding:22px;

    text-align:center;

    border-radius:20px;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.45);

    box-shadow:0 15px 35px rgba(15,76,129,.08);

    transition:.35s ease;

}

.value-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

}

.value-card:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(15,76,129,.14);

}

/*====================*/

.value-icon{

    width:62px;

    height:62px;

    margin:0 auto 16px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        #2A77B8
    );

    color:#fff;

    box-shadow:0 12px 25px rgba(15,76,129,.18);

}

.value-icon i{

    font-size:1.5rem;

}

/*====================*/

.value-card h3{

    color:var(--primary);

    font-size:1.1rem;

    margin-bottom:10px;

    font-weight:700;

}

.value-card p{

    color:var(--text-light);

    font-size:.96rem;

    line-height:1.65;

    margin:0;

}

/*====================
TABLET
====================*/

@media(max-width:992px){

    .values-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/*====================
MOBILE
====================*/

@media(max-width:768px){

    .about-values{

        padding:40px 0;

    }

    .about-values .section-title{

        margin-bottom:24px;

    }

    .about-values .section-title h2{

        font-size:1.7rem;

    }

    .about-values .section-title p{

        font-size:.95rem;

    }

    .values-grid{

        grid-template-columns:1fr;

        gap:14px;

    }

    .value-card{

        padding:18px;

    }

    .value-icon{

        width:56px;

        height:56px;

        margin-bottom:14px;

    }

    .value-icon i{

        font-size:1.3rem;

    }

    .value-card h3{

        font-size:1.02rem;

    }

}

/* **********SECTION COUNTER********** */

.stats{

    padding:70px 0;

    background:#103458bf;

    text-align:center;

}

.stats h2{

    color:#fff;

    font-size:2rem;

    margin-bottom:10px;

}

.stats-intro{

    max-width:650px;

    margin:0 auto 45px;

    color:rgba(255,255,255,.85);

    line-height:1.6;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.stat-card{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    border-radius:14px;

    padding:28px 20px;

    backdrop-filter:blur(6px);

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.12);

}

.stat-card h3{

    font-size:2.5rem;

    color:#fff;

    margin-bottom:8px;

    font-weight:700;

}

.stat-card p{

    color:rgba(255,255,255,.85);

    font-size:.95rem;

}

/*====================
Responsive
====================*/

@media(max-width:992px){

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:600px){

    .stats{

        padding:55px 0;

    }

    .stats h2{

        font-size:1.7rem;

    }

    .stats-intro{

        margin-bottom:30px;

        font-size:.95rem;

    }

    .stats-grid{

        grid-template-columns:1fr;

        gap:15px;

    }

    .stat-card{

        padding:22px 18px;

    }

    .stat-card h3{

        font-size:2.1rem;

    }

}

/* **********SECTION PRESENTATION SERVICES INDEX******************* */

.services{

    padding:80px 0;

    background:#fff;

}

.services-container{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    align-items:center;

    gap:60px;

}

/* CONTENT */

.services-content h2{

    font-size:2.2rem;

    color:var(--primary);

    line-height:1.2;

    margin-bottom:18px;

}

.services-intro{

    color:var(--text);

    line-height:1.8;

    font-size:1rem;

    margin-bottom:30px;

}

.rate-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:5px;

    margin-left:10px;

    padding:7px 14px;

    border-radius:999px;

    background:rgba(46,139,87,.10);

    border:1px solid rgba(46,139,87,.20);

    color:var(--accent);

    font-size:.90rem;

    font-weight:600;

    white-space:nowrap;

}

.rate-badge strong{

    font-size:1.15rem;

    color:var(--primary);

}

/* LIST */

.services-list{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-bottom:35px;

}

.service-item{

    display:flex;

    align-items:center;

    gap:14px;

}

.service-item i{

    color:var(--accent);

    font-size:1.1rem;

}

.service-item span{

    color:var(--text);

    font-size:1rem;

    font-weight:500;

}

/* IMAGE */

.services-image{

    overflow:hidden;

    border-radius:18px;

}

.services-image img{

    width:100%;

    display:block;

    border-radius:18px;

    transition:.6s;

    box-shadow:0 25px 50px rgba(15,76,129,.10);

}

.services-image:hover img{

    transform:scale(1.04);

}

/* RESPONSIVE */

@media(max-width:992px){

    .services{

        padding:65px 0;

    }

    .services-container{

        grid-template-columns:1fr;

        gap:35px;

    }

    .services-image{

        order:1;

        max-width:650px;

        margin:auto;

    }

    .services-content{

        order:2;

        text-align:center;

    }

    .services-intro{

        max-width:650px;

        margin:0 auto 28px;

    }

    .services-list{

        align-items:flex-start;

        max-width:450px;

        margin:0 auto 30px;

    }

    .services .btn-primary{

        margin:auto;

    }

}

@media(max-width:600px){

    .services{

        padding:50px 0;

    }

    .services-content h2{

        font-size:1.7rem;

    }

    .services-intro{

        font-size:.95rem;

    }

    .rate-badge{

        display:flex;

        width:max-content;

        margin:15px auto 0;

    }

    .services-list{

        gap:14px;

    }

    .service-item{

        align-items:flex-start;

        text-align:left;

    }

    .service-item span{

        font-size:.93rem;

    }

}

/* ******************SECTION SIMULATION************************ */

.simulation{

    padding:70px 0;

    background:linear-gradient(135deg,#0F4C81,#2E8B57);

    position:relative;

    overflow:hidden;

}

.simulation::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.18);

}

/* HEADER */


.simulation-header{

    text-align:center;

    margin-bottom:35px;

    position:relative;

    z-index:2;

}

.simulation-header h2{

    font-size:2rem;

    color:#fff;

    margin-bottom:6px;

}

.simulation-header p{

    color:rgba(255,255,255,.85);

    font-size:.95rem;

    max-width:650px;

    margin:auto;

    line-height:1.6;

}


/* GRID */


.simulation-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

    position:relative;

    z-index:2;

}


/* FORM GLASS */


.sim-form{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.25);

    border-radius:14px;

    padding:18px;

    color:#fff;

}

.sim-form h3{

    margin-bottom:12px;

    font-size:1.1rem;

    color:#fff;

}

.sim-form label{

    display:block;

    margin-top:10px;

    margin-bottom:4px;

    font-size:.85rem;

    color:rgba(255,255,255,.85);

}

/* INPUTS */

.sim-form input{

    width:100%;

    padding:10px 12px;

    border-radius:10px;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.08);

    color:#fff;

    outline:none;

    font-size:.95rem;

    transition:.3s;

}

.sim-form input:focus{

    border-color:#fff;

    background:rgba(255,255,255,.12);

}

/* PLACEHOLDER FIX */

.sim-form input::placeholder{

    color:rgba(255,255,255,.75);

    opacity:1;

}

.sim-form input::-webkit-input-placeholder{
    color:rgba(255,255,255,.75);
}

.sim-form input::-moz-placeholder{
    color:rgba(255,255,255,.75);
}

.sim-form input:-ms-input-placeholder{
    color:rgba(255,255,255,.75);
}

/* FORM BUTTON */

.sim-form .btn-primary{

    width:100%;

    margin-top:15px;

    background:#F5F7FA;

    color: var(--primary-hover);

    padding:10px;

    border:1px solid rgba(255,255,255,.25);

    border-radius:10px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.sim-form .btn-primary:hover{

    background:#b9babc;

}

/* RESULT GLASS CARD */

.sim-result{

    background:rgba(255,255,255,.14);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.25);

    border-radius:14px;

    padding:18px;

    color:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.2);

}

.sim-result h3{

    font-size:1.1rem;

    margin-bottom:12px;

    color:#fff;

}

/* RESULT LINES */

.result-line{

    display:flex;

    justify-content:space-between;

    margin-bottom:10px;

    font-size:.9rem;

    color:rgba(255,255,255,.9);

}

.result-line strong{

    color:#fff;

}

/* APPLY BUTTON */

.btn-apply{

    display:none;

    margin-top:14px;

    text-align:center;

    padding:10px;

    border-radius:10px;

    background:#F5F7FA;

    color: var(--primary-hover);

    text-decoration:none;

    font-weight:600;

    font-size:.9rem;

    transition:.3s;

}

.btn-apply:hover{

    background:#b9babc;

}

/* NOTE */

.sim-note{

    display:none;

    margin-top:8px;

    font-size:.72rem;

    color:rgba(255,255,255,.75);

    line-height:1.4;

}

/* RESPONSIVE */


@media(max-width:992px){

    .simulation-grid{

        grid-template-columns:1fr;

    }

    .sim-form{

        order:1;

    }

    .sim-result{

        order:2;

    }

}

@media(max-width:600px){

    .simulation{

        padding:55px 0;

    }

    .simulation-header h2{

        font-size:1.6rem;

    }

}

/* ****************POURQOI FAIRE CONFIANCE ?*************** */

.trust{

    padding:70px 0;

    background:linear-gradient(135deg,#F5F7FA,#EAF2F8);

    overflow:hidden;

}

.trust-container{

    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:40px;

    align-items:center;

}


/* IMAGE HEXAGONE */

.trust-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.trust-image::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(46,139,87,.10) 0%,
        rgba(15,76,129,.05) 60%,
        transparent 78%);

    z-index:0;

}

.trust-image img{

    position:relative;

    z-index:1;

    width:100%;

    max-width:520px;

    aspect-ratio:1/1;

    object-fit:cover;

    display:block;

    clip-path:polygon(
        25% 6%,
        75% 6%,
        100% 50%,
        75% 94%,
        25% 94%,
        0% 50%
    );

    border:7px solid rgba(255,255,255,.96);

    background:#fff;

    box-shadow:
        0 30px 70px rgba(15,76,129,.16),
        0 12px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}

.trust-image img:hover{

    transform:scale(1.03) rotate(-2deg);

}


/* CONTENT */


.trust-content h2{

    font-size:2rem;

    color:var(--primary);

    margin-bottom:12px;

    line-height:1.2;

}

.trust-content p{

    font-size:.96rem;

    color:var(--text);

    line-height:1.7;

    margin-bottom:22px;

}

.trust-list{

    display:flex;

    flex-direction:column;

    gap:14px;

    margin-bottom:28px;

}

.trust-item{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--text);

    font-size:.95rem;

}

.trust-item i{

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(46,139,87,.12);

    color:var(--accent);

    font-size:1rem;

    flex-shrink:0;

}

.trust-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:13px 26px;

    background:var(--primary);

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

    box-shadow:0 15px 30px rgba(15,76,129,.18);

}

.trust-btn:hover{

    background:var(--primary-hover);

    transform:translateY(-2px);

    box-shadow:0 20px 35px rgba(15,76,129,.24);

}

/* TABLET */

@media(max-width:992px){

    .trust{

        padding:60px 0;

    }

    .trust-container{

        grid-template-columns:1fr;

        gap:35px;

        text-align:center;

    }

    .trust-image{

        order:1;

    }

    .trust-image::before{

        width:420px;

        height:420px;

    }

    .trust-image img{

        max-width:380px;

    }

    .trust-content{

        order:2;

    }

    .trust-content h2{

        font-size:1.8rem;

    }

    .trust-list{

        align-items:center;

    }

    .trust-item{

        justify-content:center;

        text-align:left;

    }

}

/* MOBILE */

@media(max-width:600px){

    .trust{

        padding:50px 0;

    }

    .trust-container{

        gap:28px;

    }

    .trust-image::before{

        width:320px;

        height:320px;

    }

    .trust-image img{

        max-width:280px;

        border-width:6px;

    }

    .trust-content h2{

        font-size:1.55rem;

    }

    .trust-content p{

        font-size:.92rem;

    }

    .trust-list{

        gap:12px;

        align-items:center;

    }

    .trust-item{

        justify-content:center;

        font-size:.9rem;

    }

    .trust-item i{

        width:36px;

        height:36px;

        font-size:.9rem;

    }

    .trust-btn{

        width:100%;

        max-width:260px;

        margin:auto;

    }

}

/* ****************SECTION AVIS CLIENTS************************ */

.reviews{

    padding:80px 0;

    background:#fff;

}

/* HEADER */

.reviews-header{

    text-align:center;

    margin-bottom:40px;

}

.reviews-header h2{

    font-size:2rem;

    color:var(--primary);

    margin-bottom:8px;

}

.reviews-header p{

    color:var(--text);

    font-size:.95rem;

    max-width:600px;

    margin:auto;

    line-height:1.6;

}

/* GRID */

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

/* CARD */

.review-card{

    background:var(--section);

    border:1px solid var(--border);

    border-radius:14px;

    padding:18px;

    transition:.3s;

}

.review-card:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(15,76,129,.08);

}

/* STARS */

.stars{

    color:#F5B301;

    font-size:1rem;

    margin-bottom:10px;

}

/* TEXT */

.review-card p{

    font-size:.95rem;

    color:var(--text);

    line-height:1.6;

    margin-bottom:15px;

}

/* USER */

.review-user{

    display:flex;

    flex-direction:column;

    gap:2px;

}

.review-user strong{

    color:var(--primary);

    font-size:.95rem;

}

.review-user span{

    font-size:.8rem;

    color:#6B7C8F;

}

/* RESPONSIVE */

@media(max-width:992px){

    .reviews-grid{

        grid-template-columns:1fr;

    }

    .review-card{

        max-width:500px;

        margin:auto;

    }

}

/* MOBILE SCROLL PREMIUM */

@media(max-width:600px){

    .reviews-grid{

        display:flex;

        overflow-x:auto;

        gap:15px;

        padding-bottom:10px;

        scroll-snap-type:x mandatory;

    }

    .review-card{

        min-width:85%;

        scroll-snap-align:center;

    }

}

/* ****************SECTION CTA FINAL************** */

.cta{

    padding:50px 0;

    background:linear-gradient(
        120deg,
        rgba(15, 76, 129, 0.389) 0%,
        rgba(255,255,255,1) 45%,
        rgba(46, 139, 86, 0.364) 100%
    );

}

.cta-card{

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,var(--primary),#0A3C67);

    border-radius:26px;

    padding:38px 40px;

    text-align:center;

    color:#fff;

    box-shadow:0 35px 70px rgba(15,76,129,.18);

}

.cta-decoration{

    position:absolute;

    border-radius:50%;

    opacity:.15;

}

.cta-decoration-1{

    width:240px;

    height:240px;

    background:var(--accent);

    top:-120px;

    left:-80px;

}

.cta-decoration-2{

    width:180px;

    height:180px;

    background:#fff;

    bottom:-80px;

    right:-60px;

}

/* Titres */

.cta-card h2{

    position:relative;

    z-index:2;

    font-size:2.4rem;

    margin-bottom:10px;

    line-height:1.2;

}

.cta-card p{

    position:relative;

    z-index:2;

    max-width:700px;

    margin:0 auto 22px;

    line-height:1.6;

    color:rgba(255,255,255,.90);

}

/* Boutons */

.cta-buttons{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:center;

    gap:14px;

    flex-wrap:wrap;

    margin-bottom:24px;

}

.cta .btn-primary{

    background:#fff;

    color:var(--primary);

    padding:13px 26px;

    border-radius:12px;

}

.cta .btn-primary:hover{

    transform:translateY(-3px);
    color: var(--primary-hover);
    background-color: var(--white);

}

.btnp-secondary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:13px 26px;

    border-radius:12px;

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btnp-secondary:hover{

    background:rgba(255,255,255,.10);
    transform:translateY(-3px);

}

/* Infos */

.cta-infos{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:center;

    gap:24px;

    flex-wrap:wrap;

}

.cta-infos div{

    display:flex;

    align-items:center;

    gap:8px;

    color:#fff;

}

.cta-infos i{

    color:var(--accent);

    font-size:1.05rem;

}

/* Responsive */

@media(max-width:768px){

    .cta{

        padding:35px 0;

    }

    .cta-card{

        padding:26px 20px;

        border-radius:20px;

    }

    .cta-card h2{

        font-size:1.6rem;

        margin-bottom:8px;

    }

    .cta-card p{

        margin:0 auto 18px;

        line-height:1.55;

    }

    .cta-buttons{

        flex-direction:column;

        align-items:center;

        gap:10px;

        margin-bottom:18px;

    }

    .cta .btn-primary,
    .btn-secondary{

        width:100%;

        max-width:260px;

        padding:12px 20px;

    }

    .cta-infos{

        flex-direction:column;

        gap:12px;

    }

}
/* ---------MINI HERO---------- */

.page-hero{

    padding:38px 0;

    text-align:center;

    background:linear-gradient(
        135deg,
        var(--primary) 0%,
        #0B5A90 55%,
        var(--accent) 100%
    );

    position:relative;

    overflow:hidden;

}

.page-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(255,255,255,.10),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(255,255,255,.08),
    transparent 30%);

}

.page-hero .container{

    position:relative;

    z-index:2;

}

.page-hero h1{

    color:#fff;

    font-size:2rem;

    font-weight:800;

    margin-bottom:8px;

    line-height:1.15;

}

.page-hero p{

    color:rgba(255,255,255,.90);

    font-size:.95rem;

    margin:0;

}

/*====================
Responsive
====================*/

@media(max-width:768px){

    .page-hero{

        padding:28px 0;

    }

    .page-hero h1{

        font-size:1.5rem;

        margin:0;

    }

    .page-hero p{

        display:none;

    }

}

/* -----------------------SECTION SERVICES------------------------ */

.loan-services{

    position:relative;

    overflow:hidden;

    padding:45px 0;

    background:
    radial-gradient(circle at top left,
    rgba(15,76,129,.18) 0%,
    transparent 28%),

    radial-gradient(circle at bottom right,
    rgba(0,168,150,.16) 0%,
    transparent 30%),

    linear-gradient(
        180deg,
        #F8FBFE 0%,
        #EEF5FC 100%
    );

}

/* Decorative background */

.loan-services::before{

    content:"";

    position:absolute;

    width:430px;
    height:430px;

    top:-180px;
    left:-130px;

    border-radius:50%;

    background:rgba(15,76,129,.09);

}

.loan-services::after{

    content:"";

    position:absolute;

    width:360px;
    height:360px;

    right:-130px;
    bottom:-150px;

    border-radius:50%;

    background:rgba(0,168,150,.09);

}

/*====================
TITLE
====================*/

.section-title2{

    position:relative;

    z-index:2;

    text-align:center;

    margin-bottom:26px;

}

.section-title2 h2{

    color:var(--primary);

    font-size:2rem;

    margin-bottom:8px;

}

.section-title2 p{

    color:var(--text-light);

    font-size:1rem;

    line-height:1.7;

}

/*====================
CARD
====================*/

.loan-card{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:220px 1fr auto;

    align-items:center;

    gap:20px;

    padding:12px;

    margin-bottom:15px;

    background:rgba(255,255,255,.95);

    border:1px solid rgba(15,76,129,.08);

    border-radius:18px;

    overflow:hidden;

    box-shadow:
    0 8px 22px rgba(15,76,129,.06);

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

}

/* Gradient */

.loan-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:linear-gradient(
        180deg,
        var(--primary),
        var(--accent)
    );

}

/* Decorative circle */

.loan-card::after{

    content:"";

    position:absolute;

    width:110px;

    height:110px;

    top:-50px;

    right:-50px;

    border-radius:50%;

    background:rgba(15,76,129,.045);

}

/* Hover */

.loan-card:hover{

    transform:scale(1.015);

    border-color:rgba(15,76,129,.15);

    box-shadow:
    0 18px 38px rgba(15,76,129,.12);

}

/*====================
IMAGE
====================*/

.loan-image{

    overflow:hidden;

    border-radius:14px;

}

.loan-image img{

    width:100%;

    height:140px;

    object-fit:cover;

    display:block;

    transition:transform .45s ease;

}

.loan-card:hover .loan-image img{

    transform:scale(1.04);

}

/*====================
CONTENT
====================*/

.loan-content{

    position:relative;

    z-index:2;

}

.loan-content h3{

    color:var(--primary);

    font-size:1.35rem;

    margin-bottom:8px;

}

.loan-content p{

    color:var(--text-light);

    font-size:1rem;

    line-height:1.7;

}

/*====================
BUTTON
====================*/

.loan-action{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:center;

    align-items:center;

}

.loan-action .btn-primary{

    padding:12px 24px;

    border-radius:12px;

    white-space:nowrap;

    transition:
    transform .35s ease,
    box-shadow .35s ease;

}

.loan-card:hover .btn-primary{

    transform:translateX(4px);

    box-shadow:0 12px 24px rgba(15,76,129,.16);

}

/*====================
TABLET
====================*/

@media(max-width:992px){

    .loan-card{

        grid-template-columns:180px 1fr;

        gap:18px;

    }

    .loan-image img{

        height:130px;

    }

    .loan-content h3{

        font-size:1.3rem;

    }

    .loan-content p{

        font-size:1rem;

    }

    .loan-action{

        grid-column:1/-1;

        justify-content:flex-start;

        margin-top:4px;

    }

}

/*====================
MOBILE
====================*/

@media(max-width:768px){

    .loan-services{

        padding:38px 0;

    }

    .loan-services::before{

        width:230px;

        height:230px;

        top:-100px;

        left:-100px;

    }

    .loan-services::after{

        width:180px;

        height:180px;

        bottom:-80px;

        right:-80px;

    }

    .section-title{

        margin-bottom:20px;

    }

    .section-title h2{

        font-size:1.7rem;

    }

    .section-title p{

        font-size:1rem;

    }

    .loan-card{

        grid-template-columns:1fr;

        text-align:center;

        gap:15px;

        padding:15px;

        margin-bottom:15px;

    }

    .loan-card::before{

        width:100%;

        height:4px;

    }

    .loan-card::after{

        width:85px;

        height:85px;

        top:-40px;

        right:-40px;

    }

    .loan-image img{

        height:190px;

    }

    .loan-content h3{

        font-size:1.3rem;

    }

    .loan-content p{

        font-size:1rem;

        line-height:1.7;

    }

    .loan-action{

        justify-content:center;

        width:100%;

    }

    .loan-action .btn-primary{

        width:220px;

    }

}

/* -----------SECTION TIMELINES--------------- */

.timeline-section {
    padding: 80px 20px;
}

.timeline-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: var(--primary);
}

   /* DESKTOP  */

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 20px;
}

/* ligne desktop */

.timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #0F4C81;
    z-index: 0;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 10px;
}

.circle {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.content {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

   /* TABLET */

@media (max-width: 900px) {

    .content {
        font-size: 15px;
    }

    .circle {
        width: 55px;
        height: 55px;
    }
}

   /* MOBILE  */

@media (max-width: 768px) {

    .timeline {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    /* on enlève la ligne */
    .timeline::before {
        display: none;
    }

    /* card step mobile */
    .timeline-item {
        width: 100%;
        max-width: 360px;
        background: #fff;
        border-radius: 16px;
        padding: 22px 18px;
        box-shadow: 0 12px 35px rgba(0,0,0,0.08);

        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .circle {
        width: 52px;
        height: 52px;
        font-size: 15px;
        margin-bottom: 12px;
    }

    .content {
        font-size: 15px;
        color: #333;
        margin: 0;
    }
}


   /* MOBILE SMALL */

@media (max-width: 480px) {

    .timeline-section h2 {
        font-size: 24px;
    }

    .timeline-item {
        max-width: 100%;
        padding: 18px 14px;
    }

    .circle {
        width: 48px;
        height: 48px;
    }

    .content {
        font-size: 14px;
    }
}

/* ------------SECTION COMPARAISON------------ */

.loan-table-section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;

    /* BLANC CASSÉ + ACCENT VERT */
    background: linear-gradient(135deg, #f7f7f2, #ffffff);
}

/* décor fond */
.loan-table-section::before,
.loan-table-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(34, 139, 34, 0.12); /* vert accent */
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
}

.loan-table-section::before {
    top: -100px;
    left: -100px;
}

.loan-table-section::after {
    bottom: -120px;
    right: -120px;
}

/* HEADER */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 34px;
    margin-bottom: 12px;
    color: var(--primary);
}

.section-header p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* TABLE WRAPPER */
.table-wrapper {
    overflow-x: auto;
    position: relative;
    z-index: 1;
}

/* TABLE GLASS */
.loan-table {
    width: 100%;
    border-collapse: collapse;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* HEADER TABLE */
.loan-table th {
    background: var(--primary-hover);
    color: white;
    padding: 18px;
    text-align: left;
    font-weight: 600;
}

/* CELLS */
.loan-table td {
    padding: 16px;
    color: #333;
}

.loan-table tr:nth-child(even) {
    background: #12891a39;
}

.loan-table tr:hover {
    background: rgba(19, 40, 94, 0.242);
    transition: 0.3s;
}

   /* RESPONSIVE MOBILE */

@media (max-width: 768px) {

    .loan-table-section {
        padding: 70px 15px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 14px;
    }

    .loan-table th,
    .loan-table td {
        padding: 12px;
        font-size: 13px;
    }

    /* améliore scroll mobile */
    .table-wrapper {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {

    .section-header h2 {
        font-size: 22px;
    }

    .loan-table {
        font-size: 12px;
    }

    .loan-table th,
    .loan-table td {
        padding: 10px;
    }
}

/* -------------SECTION FAQ----------- */
.faq-section {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1f6f3f, #0f4c81);
}

/* overlay lisibilité */

.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
}

   /* WRAPPER */

.faq-wrapper {
    position: relative;
    z-index: 1;

    display: flex;
    justify-content: center;
}

   /* LEFT (FAQ CENTRÉE) */

.faq-left {
    width: 100%;
    max-width: 850px; /* lecture confortable */
}

/* TITRE */
.faq-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

/* PARAGRAPHE */
.faq-left p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    line-height: 1.6;
    text-align: center;
}

   /* FAQ ITEMS */

.faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 16px 18px;
    background: #ffffff;
    color: #0f4c81;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* ANSWER (smooth accordion) */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 18px;
    background: #f7f7f7;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 16px 18px;
}

   /* TABLET */

@media (max-width: 900px) {

    .faq-left h2 {
        font-size: 26px;
    }
}

   /* MOBILE */

@media (max-width: 480px) {

    .faq-section {
        padding: 80px 15px;
    }

    .faq-left h2 {
        font-size: 22px;
    }

    .faq-left p {
        font-size: 14px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* -----------------CTA SECTION SERVICES---- */
.cta-section-final {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;

    /* ===== FOND NEUTRE PREMIUM ===== */
    background: linear-gradient(135deg, #f7f9f8, #eef2f5);
}

   /* OVERLAY LÉGER */

.cta-section-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(31, 111, 63, 0.08),
        transparent 60%
    );
    z-index: 0;
}

   /* LUMIÈRE / PROFONDEUR */

.cta-section-final::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -220px;
    right: -220px;

    background: radial-gradient(
        circle,
        rgba(15, 76, 129, 0.06),
        transparent 70%
    );

    filter: blur(40px);
    z-index: 0;
}

   /* CONTAINER */

.cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

   /* TITRE */

.cta-title {
    font-size: 34px;
    font-weight: 700;
    color:var(--primary);
    margin-bottom: 15px;
}

   /* TEXTE */

.cta-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

   /* BOUTON CTA */

.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #1f6f3f;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    background: #165632;
}

   /* RESPONSIVE */

@media (max-width: 768px) {

    .cta-title {
        font-size: 26px;
    }

    .cta-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .cta-section-final {
        padding: 80px 15px;
    }

    .cta-title {
        font-size: 22px;
    }
}

/* **********************SECTION HISTOIRE********************* */

.about-company{

    position:relative;

    overflow:hidden;

    padding:70px 0;

    background:
    radial-gradient(circle at top left,
    rgba(15,76,129,.08) 0%,
    transparent 28%),

    radial-gradient(circle at bottom right,
    rgba(0,168,150,.08) 0%,
    transparent 30%),

    linear-gradient(
        180deg,
        var(--white) 0%,
        #F7FAFD 100%
    );

}

.about-company::before{

    content:"";

    position:absolute;

    width:380px;
    height:380px;

    top:-180px;
    left:-120px;

    border-radius:50%;

    background:rgba(15,76,129,.06);

}

.about-company::after{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    bottom:-160px;
    right:-120px;

    border-radius:50%;

    background:rgba(0,168,150,.06);

}

/*==================================
        CONTAINER
==================================*/

.about-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

/*==================================
        CONTENT
==================================*/

.about-content h2{

    color:var(--primary);

    font-size:2.25rem;

    line-height:1.2;

    margin-bottom:18px;

}

.about-content p{

    color:var(--text-light);

    font: size 16px;;

    line-height:1.8;

    margin-bottom:18px;

}

/*==================================
        INFOS
==================================*/

.about-infos{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin:35px 0;

}

.about-info{

    flex:1;

    min-width:170px;

    padding:18px;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(14px);

    border:1px solid rgba(15,76,129,.08);

    border-radius:18px;

    box-shadow:0 12px 30px rgba(15,76,129,.05);

    transition:
    transform .35s ease,
    box-shadow .35s ease;

}

.about-info:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(15,76,129,.12);

}

.about-info strong{

    display:block;

    color:var(--primary);

    font-size:.9rem;

    margin-bottom:8px;

}

.about-info span{

    color:var(--text);

    font-size:1rem;

    font-weight:600;

}

/*==================================
        BUTTON
==================================*/

.about-content .btn-primary{

    margin-top:8px;

}

/*==================================
        IMAGE
==================================*/

.about-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.about-image::before{

    content:"";

    position:absolute;

    width:88%;

    height:88%;

    top:25px;

    left:-25px;

    border-radius:34px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    opacity:.12;

    z-index:0;

}

.about-image img{

    position:relative;

    z-index:2;

    width:100%;

    max-width:470px;

    height:520px;

    object-fit:cover;

    border-radius:34px;

    border:8px solid rgba(255,255,255,.95);

    box-shadow:
    0 30px 70px rgba(15,76,129,.18);

    transition:
    transform .45s ease,
    box-shadow .45s ease;

}

.about-image img:hover{

    transform:translateY(-8px);

    box-shadow:
    0 40px 80px rgba(15,76,129,.22);

}

/*==================================
        TABLET
==================================*/

@media(max-width:992px){

    .about-container{

        grid-template-columns:1fr;

        gap:45px;

    }

    .about-image{

        order:-1;

    }

    .about-image::before{

        left:-15px;

        top:20px;

    }

    .about-image img{

        max-width:420px;

        height:470px;

    }

}

/*==================================
        MOBILE
==================================*/

@media(max-width:768px){

    .about-company{

        padding:45px 0;

    }

    .about-container{

        gap:28px;

    }

    .about-content{

        text-align:center;

    }

    .about-content h2{

        font-size:1.8rem;

    }

    .about-content p{

        font-size:1rem;

        line-height:1.7;

    }

    .about-infos{

        margin:28px 0;

        gap:14px;

    }

    .about-info{

        min-width:100%;

        padding:16px;

    }

    .about-image::before{

        width:90%;

        height:90%;

        top:16px;

        left:-10px;

    }

    .about-image img{

        width:100%;

        max-width:320px;

        height:380px;

        border-radius:26px;

    }

    .about-content .btn-primary{

        width:100%;

        max-width:260px;

    }

}

/* **********SECTION NOTRE MISSION*************** */

.mission{

    position:relative;

    overflow:hidden;

    padding:45px 0;

    background:
    linear-gradient(135deg,#0A3358 0%,#0f4c81c9 100%);

}

.mission::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    top:-130px;

    right:-80px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

}

.mission::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    bottom:-120px;

    left:-70px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

}

.mission .container{

    position:relative;

    z-index:2;

}

/*======================
SECTION TITLE
=======================*/

.section-title{

    max-width:620px;

    margin:0 auto 24px;

    text-align:center;

}

.section-title h2{

    color:#fff;

    font: size 32px;;

    margin-bottom:8px;

    font-weight:700;

}

.section-title p{

    color:rgba(255,255,255,.82);

    font: size 16px;;

    line-height:1.6;

}


/* GRID */

.mission-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:16px;

}


/* CARD */

.mission-card{

    position:relative;

    overflow:hidden;

    padding:18px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:18px;

    transition:.35s ease;

    min-height:210px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

}

.mission-card::before{

    content:"";

    position:absolute;

    width:90px;

    height:90px;

    top:-40px;

    right:-40px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

}

.mission-card:hover{

    transform:translateY(-4px);

    background:rgba(255,255,255,.13);

    border-color:rgba(255,255,255,.18);

    box-shadow:0 14px 30px rgba(0,0,0,.15);

}

/* ICON */

.mission-icon{

    width:52px;

    height:52px;

    border-radius:14px;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:14px;

    box-shadow:0 8px 18px rgba(0,0,0,.10);

}

.mission-icon i{

    color:var(--primary);

    font-size:1.3rem;

}

/* TEXT */

.mission-card h3{

    color:#fff;

    font-size:1.08rem;

    margin-bottom:8px;

    font-weight:700;

}

.mission-card p{

    color:rgba(255,255,255,.84);

    font: size 16px;;

    line-height:1.55;

    margin:0;

}

/* TABLET */

@media(max-width:991px){

    .mission-grid{

        grid-template-columns:1fr;

        gap:14px;

    }

    .mission-card{

        min-height:auto;

    }

}


/* MOBILE */


@media(max-width:768px){

    .mission{

        padding:35px 0;

    }

    .section-title{

        margin-bottom:20px;

    }

    .section-title h2{

        font-size:1.6rem;

    }

    .section-title p{

        font-size:.95rem;

        line-height:1.5;

    }

    .mission-card{

        padding:16px;

        text-align:center;

        align-items:center;

    }

    .mission-icon{

        width:48px;

        height:48px;

        margin-bottom:12px;

    }

    .mission-icon i{

        font-size:1.2rem;

    }

    .mission-card h3{

        font-size:1rem;

    }

    .mission-card p{

        font-size:.93rem;

    }

}

/* ***********SECTION COUNTER A PROPOS***************** */

.about-stats{

    position:relative;

    overflow:hidden;

    padding:60px 0;

    background:
    linear-gradient(135deg,#F8FBFE 0%,#EEF5FC 100%);

}

/* Decorative shapes */

.about-stats::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    top:-230px;

    left:-180px;

    border-radius:50%;

    background:rgba(15,76,129,.05);

}

.about-stats::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    bottom:-170px;

    right:-120px;

    border-radius:40%;

    transform:rotate(20deg);

    background:rgba(0,168,150,.06);

}

/*========================*/

.about-stats .container{

    position:relative;

    z-index:2;

}

/*========================
CONTENT
========================*/

.stats-content{

    text-align:center;

    max-width:760px;

    margin:0 auto 35px;

}

.stats-content .subtitle{

    display:inline-block;

    padding:8px 18px;

    margin-bottom:16px;

    border-radius:50px;

    background:var(--accent);

    color:#F4F8FC;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.stats-content h2{

    color:var(--primary);

    font-size: 32px;

    margin-bottom:15px;

    line-height:1.2;

}

.stats-content p{

    color:var(--text-light);

    font: size 16px;;

    line-height:1.8;

}

/*========================
GRID
========================*/

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}

/*========================
CARD
========================*/

.stat-box{

    position:relative;

    overflow:hidden;

    text-align:center;

    padding:28px 18px;

    border-radius:22px;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(15px);

    border:1px solid rgba(15,76,129,.08);

    box-shadow:
    0 15px 35px rgba(15,76,129,.06);

    transition:
    transform .35s ease,
    box-shadow .35s ease;

}

.stat-box::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

}

.stat-box:hover{

    transform:translateY(-6px);

    box-shadow:
    0 22px 45px rgba(15,76,129,.12);

}

/*========================*/

.stat-box h3{

    margin:0 0 8px;

    font-size:2.6rem;

    font-weight:800;

    line-height:1;

    color:var(--primary);

}

.stat-box span{

    display:block;

    color:var(--text-light);

    font-size:1rem;

    font-weight:500;

    line-height:1.5;

}

/*========================
TABLET
========================*/

@media(max-width:991px){

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

        gap:18px;

    }

}

/*========================
MOBILE
========================*/

@media(max-width:768px){

    .about-stats{

        padding:45px 0;

    }

    .stats-content{

        margin-bottom:25px;

    }

    .stats-content h2{

        font-size:1.8rem;

    }

    .stats-content p{

        font-size:1rem;

    }

    .stats-grid{

        grid-template-columns:1fr;

        gap:15px;

    }

    .stat-box{

        padding:22px 16px;

    }

    .stat-box h3{

        font-size:2.2rem;

    }

    .stat-box span{

        font-size:.95rem;

    }

}

/* ***************SECTION ENGAGEMENT******************* */

.engagements-section{
  padding: 80px 20px;
  font-family: var(--font-family);
  color: var(--text);

  background: linear-gradient(
    135deg,
    #2068cd07 0%,
    #F8FAFC 40%,
    #428de9 100%
  );
}

/* CONTAINER */
.engagements-container{
  max-width: var(--container);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
}

/* IMAGE */
.engagements-image{
  flex: 1;
  display: flex;
  justify-content: center;
}

.engagements-image img{
  width: 100%;
  max-width: 520px;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* CONTENT */
.engagements-content{
  flex: 1.2;
}

/* TITLE PRIMARY */
.engagements-content h2{
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 18px;
  position: relative;
  font-weight: 700;
}

.engagements-content h2::after{
  content: "";
  width: 60px;
  height: 3px;
  background: var(--primary);
  display: block;
  margin-top: 8px;
  border-radius: 6px;
}

/* GRID */
.cards-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* CARD */
.card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

/* CARD TITLE */
.card h3{
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 600;
}

/* CARD TEXT */
.card p{
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.4;
}

/* =========================
   RESPONSIVE TABLET
========================= */
@media (max-width: 992px){
  .engagements-container{
    gap: 30px;
  }

  .engagements-image img{
    height: 380px;
  }
}

/* =========================
   RESPONSIVE MOBILE (CLEAN + CENTERED)
========================= */
@media (max-width: 768px){

  .engagements-container{
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .engagements-image img{
    height: 240px;
    width: 100%;
  }

  .engagements-content h2{
    font-size: 22px;
  }

  .engagements-content h2::after{
    margin-left: auto;
    margin-right: auto;
  }

  .cards-grid{
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .card{
    width: 100%;
    max-width: 420px;
    text-align: center;
  }
}

/* =========================
   VERY SMALL DEVICES
========================= */
@media (max-width: 480px){

  .engagements-section{
    padding: 60px 15px;
  }

  .card{
    padding: 12px;
  }

  .card h3{
    font-size: 14px;
  }

  .card p{
    font-size: 12.5px;
  }
}

/* ***********METHODE DE TRAVAIL************** */

.method-section{
  padding: 50px 15px;
  background: var(--section);
  font-family: var(--font-family);
  color: var(--text);
}

.method-container{
  max-width: var(--container);
  margin: auto;
  text-align: center;
}

/* =========================
   TITLE
========================= */

.method-section h2{
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 700;
}

/* =========================
   FLOW
========================= */

.method-flow{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* LINE CENTRAL */
.method-flow::before{
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--border);
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

/* =========================
   STEP CARD
========================= */

.step{
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  width: 210px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

/* ZIGZAG POSITION */
.step.left{
  align-self: flex-start;
  margin-left: calc(50% - 230px);
}

.step.right{
  align-self: flex-end;
  margin-right: calc(50% - 230px);
}

/* =========================
   ICON
========================= */

.icon{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

/* TEXT */
.label{
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
}

/* =========================
   RESPONSIVE TABLET
========================= */

@media (max-width: 992px){
  .method-section h2{
    font-size: 24px;
  }

  .step{
    width: 200px;
  }

  .step.left{
    margin-left: calc(50% - 220px);
  }

  .step.right{
    margin-right: calc(50% - 220px);
  }
}

/* =========================
   MOBILE (FULL CENTER)
========================= */

@media (max-width: 768px){

  .method-section h2{
    font-size: 22px;
  }

  .method-flow::before{
    left: 15px;
    transform: none;
  }

  .step{
    width: 100%;
    max-width: 280px;
    margin: 0 !important;
    align-self: center !important;
  }

  .method-flow{
    gap: 10px;
  }
}

/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 480px){

  .method-section{
    padding: 40px 12px;
  }

  .method-section h2{
    font-size: 20px;
  }

  .label{
    font-size: 13px;
  }

  .icon{
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}

/* *************CTA A PROPOS************** */

.cta-about-soparli{
  padding: 70px 20px;
  font-family: var(--font-family);
  color: var(--text);

  background: linear-gradient(
    135deg,
    #F5F7FA 0%,
    #E9F1FB 50%,
    #F8FAFC 100%
  );

  position: relative;
  overflow: hidden;
}

/* effet léger */
.cta-about-soparli::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(15, 76, 129, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

/* CONTAINER */
.cta-about-soparli-container{
  max-width: var(--container);
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* CONTENT */
.cta-about-soparli-content h2{
  font-size: 32px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-about-soparli-content p{
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 25px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ACTIONS */
.cta-about-soparli-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.cta-about-soparli-btn-primary{
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.cta-about-soparli-btn-primary:hover{
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* SECONDARY BUTTON */
.cta-about-soparli-btn-secondary{
  border: 1px solid var(--border);
  color: var(--primary);
  background: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.cta-about-soparli-btn-secondary:hover{
  background: var(--section);
}

/* MOBILE */
@media (max-width: 768px){

  .cta-about-soparli-content h2{
    font-size: 24px;
  }

  .cta-about-soparli-content p{
    font-size: 14px;
  }

  .cta-about-soparli-actions{
    flex-direction: column;
    align-items: center;
  }

  .cta-about-soparli-btn-primary,
  .cta-about-soparli-btn-secondary{
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/* ********************************************
            PAGE CONTACT
******************************************** */

/*==================================
        CONTACT SECTION
==================================*/

.contact-section{

    position:relative;

    overflow:hidden;

    padding:35px 0;

    background:
    radial-gradient(circle at top left,rgba(15,76,129,.08),transparent 35%),
    radial-gradient(circle at bottom right,rgba(0,168,150,.08),transparent 35%),
    linear-gradient(180deg,#F8FBFF 0%,#EEF5FC 100%);

}

.contact-section::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    top:-150px;

    left:-120px;

    border-radius:50%;

    background:rgba(15,76,129,.05);

}

.contact-section::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    right:-100px;

    bottom:-120px;

    border-radius:40%;

    transform:rotate(25deg);

    background:rgba(0,168,150,.06);

}

/*==================================
        GRID
==================================*/

.contact-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.7fr 1fr;

    gap:20px;

    align-items:start;

}

/*==================================
        FORM
==================================*/

.contact-form{

    padding:22px;

    background:#fff;

    border-radius:18px;

    border:1px solid rgba(15,76,129,.08);

    box-shadow:0 15px 35px rgba(15,76,129,.07);

}

.contact-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:6px 15px;

    margin-bottom:10px;

    border-radius:40px;

    background:var(--accent);

    color:#F5F7FA;

    font-size:.82rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

}
.honeypot {
    display: none !important;
}

.contact-form h2{

    color:var(--primary);

    font-size:1.85rem;

    line-height:1.2;

    margin-bottom:8px;

}

.contact-form > p{

    color:var(--text-light);

    font-size:16px;

    line-height:1.6;

    margin-bottom:18px;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.form-group{

    display:flex;

    flex-direction:column;

    gap:5px;

}

.form-group label{

    color:var(--primary);

    font-size:.94rem;

    font-weight:600;

}

.form-group input,

.form-group textarea{

    width:100%;

    padding:12px 15px;

    border:1px solid rgba(15,76,129,.12);

    border-radius:12px;

    background:#fff;

    font-size:16px;

    font-family:inherit;

    color:var(--text);

    transition:.3s;

}

.form-group input::placeholder,

.form-group textarea::placeholder{

    color:#9BA8B8;

}

.form-group textarea{

    resize:none;

    min-height:110px;

}

.form-group input:focus,

.form-group textarea:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(15,76,129,.08);

}

.contact-form .btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin-top:2px;

    padding:13px 20px;

}

/*==================================
        CONTACT INFO
==================================*/

.contact-info{

    padding:20px;

    border-radius:18px;

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.75);

    box-shadow:0 15px 35px rgba(15,76,129,.07);

}

.contact-info-header{

    margin-bottom:16px;

}

.contact-info-header span{

    display:inline-block;

    margin-bottom:6px;

    color:var(--accent);

    font-size:.82rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.contact-info-header h3{

    color:var(--primary);

    font-size:1.45rem;

    line-height:1.25;

}

/*==================================
        INFO CARD
==================================*/

.info-card{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px;

    margin-bottom:10px;

    border-radius:14px;

    background:rgba(255,255,255,.82);

    border:1px solid rgba(15,76,129,.08);

    transition:.25s;

}

.info-card:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 24px rgba(15,76,129,.08);

}

.info-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    width:42px;

    height:42px;

    border-radius:12px;

    background:linear-gradient(135deg,var(--accent),#2A72B8);

    color:#fff;

    font-size:1rem;

}

.info-card h4{

    color:var(--primary);

    font-size:1rem;

    margin-bottom:3px;

}

.info-card p{

    color:var(--text-light);

    font-size:16px;

    line-height:1.45;

    margin:0;

}

/*==================================
        NOTE
==================================*/

.contact-note{

    display:flex;

    align-items:center;

    gap:10px;

    margin-top:14px;

    padding:14px;

    border-radius:14px;

    background:linear-gradient(135deg,var(--accent),#2A72B8);

    color:#fff;

}

.contact-note i{

    flex-shrink:0;

    font-size:1rem;

}

.contact-note span{

    font-size:16px;

    line-height:1.5;

}

/*==================================
        TABLET
==================================*/

@media (max-width:991px){

    .contact-container{

        grid-template-columns:1fr;

        gap:18px;

    }

}

/*==================================
        MOBILE
==================================*/

@media (max-width:768px){

    .contact-section{

        padding:28px 0;

    }

    .contact-container{

        gap:16px;

    }

    .contact-form,

    .contact-info{

        padding:18px;

        border-radius:16px;

        text-align:center;

    }

    .contact-badge{

        margin:0 auto 10px;

    }

    .contact-form h2,

    .contact-info-header h3{

        font-size:1.55rem;

    }

    .contact-form > p,

    .info-card p,

    .contact-note span{

        font-size:16px;

    }

    .form-group{

        text-align:left;

    }

    .form-group textarea{

        min-height:100px;

    }

    .info-card{

        flex-direction:column;

        text-align:center;

        padding:16px 14px;

        gap:10px;

    }

    .info-icon{

        margin:0 auto;

    }

    .contact-note{

        flex-direction:column;

        text-align:center;

        padding:16px;

    }

    .contact-note i{

        margin-bottom:2px;

    }

}

/* ************************************************
                  PAGE DEMANDE
************************************************ */
.loan-form-section {
    position: relative;
    padding: 55px 20px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #0b2f4f);
}

/* Overlay */
.loan-form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 60%),
        radial-gradient(circle at bottom right, rgba(0,0,0,0.35), transparent 55%);
    z-index: 1;
}

/* CONTAINER */
.loan-form-section .container {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
}

/* HEADER */
.form-header {
    text-align: center;
    margin-bottom: 22px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.form-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* FORM CARD */
.loan-form {
    width: 100%;
    box-sizing: border-box;

    background: #ffffff; /* IMPORTANT: fond clair pour lisibilité */
    border-radius: var(--radius);
    padding: 22px;

    box-shadow: var(--shadow-lg);
    border: 1px solid #e6eaf0;
}

/* GRID */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

/* GROUP */
.form-group {
    display: flex;
    flex-direction: column;
}

/* LABEL */
.form-group label {
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text);
    font-weight: 600;
}

/* INPUTS */
.form-group input,
.form-group select {
    width: 100%;
    box-sizing: border-box;

    padding: 11px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);

    background: #f9fafc;
    color: var(--text); /* IMPORTANT : texte visible */
    font-size: 14px;

    outline: none;
    transition: var(--transition);
}

/* PLACEHOLDER (VISIBLE MAIS DISCRET) */
.form-group input::placeholder {
    color: #9aa6b2;
    opacity: 1;
}

/* FOCUS */
.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.15);
}

/* SELECT FLÈCHE VISIBILE */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E3A46' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 35px;
}

/* FULL WIDTH */
.form-group.full {
    grid-column: 1 / -1;
}

/* BUTTON */
.btn-submit {
    width: 100%;
    margin-top: 16px;
    padding: 12px;

    border: none;
    border-radius: var(--radius);

    background: var(--primary);
    color: #ffffff;

    font-weight: 700;
    font-size: 15px;

    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* SECURITY NOTE */
.security-note {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
    color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-header h2 {
        font-size: 22px;
    }

    .loan-form-section {
        padding: 40px 15px;
    }
}

/* **********************SECTION POLITIQUE****************** */
/*==================================
        PRIVACY POLICY
==================================*/

.privacy-section{

    position:relative;

    overflow:hidden;

    padding:50px 0;

    background:
    radial-gradient(circle at top left,rgba(15,76,129,.07),transparent 35%),
    radial-gradient(circle at bottom right,rgba(0,168,150,.08),transparent 35%),
    linear-gradient(180deg,#F8FBFF 0%,#EEF5FC 100%);

}

.privacy-section::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    top:-180px;

    left:-150px;

    border-radius:50%;

    background:rgba(15,76,129,.05);

}

.privacy-section::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    bottom:-140px;

    right:-120px;

    border-radius:35%;

    transform:rotate(25deg);

    background:rgba(0,168,150,.08);

}

/*==================================
CARD
==================================*/

.privacy-card{

    position:relative;

    z-index:2;

    max-width:1180px;

    margin:auto;

    padding:35px;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(14px);

    border:1px solid rgba(15,76,129,.08);

    border-radius:24px;

    box-shadow:0 18px 45px rgba(15,76,129,.08);

}

.privacy-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:40px;

    background:var(--accent);

    color:var(--white);

    font-size:.85rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.privacy-card h2{

    margin:16px 0 10px;

    color:var(--primary);

    font-size:2rem;

    line-height:1.2;

}

.privacy-intro{

    max-width:850px;

    font-size:16px;

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:28px;

}

.privacy-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.privacy-item{

    display:flex;

    align-items:flex-start;

    gap:16px;

    padding:18px;

    background:#fff;

    border:1px solid rgba(15,76,129,.08);

    border-radius:18px;

    transition:.3s;

}

.privacy-item:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(15,76,129,.08);

}

.privacy-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    width:52px;

    height:52px;

    border-radius:14px;

    background:linear-gradient(135deg,var(--accent),#2A72B8);

    color:#fff;

    font-size:1.15rem;

}

.privacy-item h3{

    color:var(--primary);

    font-size:1.1rem;

    margin-bottom:6px;

}

.privacy-item p{

    color:var(--text-light);

    font-size:16px;

    line-height:1.7;

}

/* BOTTOM NOTE */

.privacy-note{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:25px;

    padding:18px 20px;

    border-radius:18px;

    background:linear-gradient(135deg,var(--primary),#2A72B8);

    color:#fff;

}

.privacy-note i{

    flex-shrink:0;

    font-size:1.3rem;

}

.privacy-note p{

    margin:0;

    font-size:16px;

    line-height:1.7;

}


/* TABLET */

@media(max-width:991px){

    .privacy-card{

        padding:28px;

    }

    .privacy-grid{

        grid-template-columns:1fr;

    }

}


/* MOBILE */

@media(max-width:768px){

    .privacy-section{

        padding:35px 0;

    }

    .privacy-card{

        padding:22px;

        border-radius:18px;

        text-align:center;

    }

    .privacy-badge{

        margin:0 auto;

    }

    .privacy-card h2{

        font-size:1.6rem;

    }

    .privacy-intro{

        font-size:16px;

        margin-bottom:20px;

    }

    .privacy-grid{

        gap:14px;

    }

    .privacy-item{

        flex-direction:column;

        align-items:center;

        text-align:center;

        padding:18px 16px;

    }

    .privacy-icon{

        margin-bottom:2px;

    }

    .privacy-item h3{

        font-size:1.05rem;

    }

    .privacy-item p{

        font-size:16px;

    }

    .privacy-note{

        flex-direction:column;

        text-align:center;

        padding:18px;

    }

}

/* ******************SECTION MENTION LEGALE******************** */

.legal-section{

    padding:70px 0;

    background:
    linear-gradient(180deg,#eef3f8 0%,#f8fbfd 100%);

    position:relative;

}

.legal-section::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    radial-gradient(rgba(15,76,129,.04) 1px,transparent 1px);

    background-size:26px 26px;

    opacity:.6;

}

.legal-section .container{

    position:relative;

    z-index:2;

    max-width:920px;

}

.legal-paper{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:
    0 20px 60px rgba(0,0,0,.06);

}

.legal-paper::before{

    content:"";

    display:block;

    height:6px;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

}

/*==============================
HEADER
==============================*/

.legal-header{

    padding:45px 45px 35px;

    text-align:center;

    border-bottom:1px solid rgba(15,76,129,.08);

}

.legal-badge{

    display:inline-block;

    padding:8px 18px;

    background:var(--accent);

    color:var(--white);

    border-radius:50px;

    font-size:.82rem;

    font-weight:700;

    text-transform:uppercase;

}

.legal-header h2{

    margin:18px 0 12px;

    font-size:2rem;

    color:var(--primary);

}

.legal-header p{

    max-width:680px;

    margin:auto;

    font-size:16px;

    line-height:1.9;

    color:var(--text-light);

}

.legal-box{

    padding:35px 45px;

    border-bottom:1px solid rgba(15,76,129,.08);

}

.legal-box:last-of-type{

    border-bottom:none;

}

.legal-title{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:25px;

}

.legal-title i{

    font-size:1.4rem;

    color:var(--primary);

}

.legal-title h3{

    margin:0;

    font-size:1.25rem;

    color:var(--primary);

}

/* TABLE */

.legal-table{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.legal-row{

    display:flex;

    justify-content:space-between;

    gap:25px;

    padding-bottom:12px;

    border-bottom:1px dashed rgba(15,76,129,.10);

}

.legal-row:last-child{

    border:none;

}

.legal-row span{

    color:var(--text-light);

    font-size:16px;

}

.legal-row strong{

    color:var(--primary);

    font-size:16px;

    text-align:right;

    font-weight:700;

}

.legal-box p{

    margin:0;

    color:var(--text-light);

    line-height:1.9;

    font-size:16px;

}

.legal-footer{

    padding:28px 45px;

    background:#f7fbff;

    border-top:1px solid rgba(15,76,129,.08);

    display:flex;

    align-items:center;

    gap:18px;

}

.legal-footer i{

    color:var(--primary);

    font-size:1.4rem;

}

.legal-footer p{

    margin:0;

    font-size:16px;

    color:var(--text-light);

    line-height:1.8;

}

/* RESPONSIVE */

@media(max-width:768px){

    .legal-section{

        padding:40px 0;

    }

    .legal-header,

    .legal-box,

    .legal-footer{

        padding:25px 20px;

    }

    .legal-header h2{

        font-size:1.65rem;

    }

    .legal-title{

        justify-content:center;

        text-align:center;

    }

    .legal-row{

        flex-direction:column;

        text-align:center;

        gap:6px;

    }

    .legal-row strong{

        text-align:center;

    }

    .legal-box p{

        text-align:center;

    }

    .legal-footer{

        flex-direction:column;

        text-align:center;

    }

}

/* ******************SECTION MERCI****************** */

.thank-section {
    position: relative;
    padding: 35px 0; /* compact */
    overflow: hidden;
    color: var(--white);

    /* IMAGE DE FOND */
    background: url("images/dank-soparli.jpg") center/cover no-repeat;
}

/* OVERLAY PRINCIPAL */
.thank-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(5, 18, 99, 0.558),
        rgba(11, 47, 79, 0.299)
    );

    z-index: 1;
}

/* LIGHT EFFECT PREMIUM */
.thank-section::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at top left,
        rgba(255,255,255,0.10),
        transparent 60%
    );

    z-index: 1;
}

/* CONTAINER */
.thank-section .container {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
}

/* CARD */
.thank-card {
    width: 100%;
    max-width: 560px;

    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: var(--radius);

    padding: 22px;
    box-shadow: var(--shadow-lg);

    text-align: center;
    backdrop-filter: blur(10px);
}

/* ICON */
.thank-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(46, 139, 87, 0.12);
    color: var(--success);
    border-radius: 50%;

    font-size: 26px;
}

/* BADGE */
.thank-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;

    background: var(--accent);
    color: var(--white);

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 10px;
}

/* TITLE */
.thank-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
}

/* TEXT */
.thank-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 14px;
}

/* DELAY BOX */
.thank-delay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    font-size: 13px;
    color: var(--text);

    padding: 10px;
    border-radius: var(--radius);

    background: var(--section);
    border: 1px solid var(--border);

    margin-bottom: 16px;
}

.thank-delay strong {
    color: var(--primary);
}

/* BUTTONS */
.thank-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* PRIMARY BTN */
/* .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 10px 14px;
    border-radius: var(--radius);

    background: var(--primary);
    color: var(--white);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
    transition: var(--transition);
} */

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* SECONDARY BTN */

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 10px 14px;
    border-radius: var(--radius);

    background: transparent;
    border: 1px solid var(--border);

    color: var(--text);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--section);
    transform: translateY(-2px);
}

   /* MOBILE RESPONSIVE */

@media (max-width: 768px) {

    .thank-section {
        padding: 25px 0;
    }

    .thank-card {
        padding: 18px;
        border-radius: 10px;
    }

    .thank-card h2 {
        font-size: 18px;
    }

    .thank-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* *******SCROLL*********** */

.scroll-controls {
    position: fixed;
    right: 15px;
    bottom: 15px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    z-index: 9999;
}

.scroll-btn {
    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: var(--primary);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;

    box-shadow: var(--shadow);
    cursor: pointer;

    transition: var(--transition);
}

.scroll-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* petit effet mobile clean */
@media (max-width: 768px) {
    .scroll-controls {
        right: 10px;
        bottom: 10px;
    }

    .scroll-btn {
        width: 40px;
        height: 40px;
    }
}











/* **********FOOTER************** */

.footer{

    background:var(--primary);

    color:#fff;
}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.4fr;

    gap:35px;

    padding:30px 0;

}

/*====================
Brand
====================*/

.footer-logo{

    display:flex;

    align-items:flex-start;

    gap:12px;

    text-decoration:none;

    color:#fff;

}

.footer-logo img{

    width:46px;

}

.footer-logo h3{

    font-size:1.15rem;

    margin-bottom:4px;

}

.footer-logo p{

    font-size:.85rem;

    color:rgba(255,255,255,.80);

    line-height:1.5;

}

/*====================
Columns
====================*/

.footer-column h4{

    font-size:.95rem;

    margin-bottom:12px;

    color:#fff;

}

.footer-column a,

.footer-column span{

    display:flex;

    align-items:center;

    gap:8px;

    margin-bottom:8px;

    color:rgba(255,255,255,.82);

    text-decoration:none;

    font-size:.88rem;

    transition:.25s;

}

.footer-column a:hover{

    color:#fff;

    transform:translateX(3px);

}

.footer-column i{

    width:16px;

    color:#BFD9F4;

    font-size:.9rem;

}

/*====================
Bottom
====================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.10);

    text-align:center;

    padding:12px 0;

    font-size:.82rem;

    color:rgba(255,255,255,.65);

}

/*====================
Responsive
====================*/

@media(max-width:992px){

    .footer-container{

        grid-template-columns:repeat(2,1fr);

        gap:25px;

        padding:28px 0;

    }

}

@media(max-width:650px){

    .footer-container{

        grid-template-columns:1fr;

        gap:20px;

        text-align:center;

        padding:25px 0;

    }

    .footer-logo{

        justify-content:center;

    }

    .footer-column{

        display:flex;

        flex-direction:column;

        align-items:center;

    }

    .footer-column a,

    .footer-column span{

        justify-content:center;

    }

}