
   /* SOLENFI DESIGN */
:root {

  /* Brand Colors */
  --primary: #0F4C81;
  --primary-dark: #0A3A61;
  --primary-light: #EAF2F8;

  --secondary: #2E8B57;
  --secondary-dark: #246B44;
  --secondary-light: #EAF7F0;

  /* Neutral Colors */
  --white: #FFFFFF;
  --background: #F8FAFC;
  --surface: #FFFFFF;

  --text: #1F2937;
  --text-light: #6B7280;

  --border: #E5E7EB;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.05);
  --shadow-md: 0 8px 25px rgba(0,0,0,.08);
  --shadow-lg: 0 15px 40px rgba(0,0,0,.12);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --transition: all .3s ease;
}

   /* RESET */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--text);
  line-height:1.6;
}

   /* CONTAINER */

.container{
  width:min(1200px, 90%);
  margin:auto;
}

   /* TYPOGRAPHY */

h1,h2,h3,h4{
  color:var(--primary);
  font-weight:700;
  line-height:1.2;
}

h1{
  font-size:clamp(2.5rem,5vw,4rem);
}

h2{
  font-size:clamp(2rem,4vw,3rem);
}

p{
  color: var(--text);
  font-size: 16px;
}

   /* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:14px 28px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  text-decoration:none;
  font-weight:600;
  transition:var(--transition);
}

.btn-primary{
  background:var(--secondary);
  color:var(--white);
}

.btn-primary:hover{
  background:var(--secondary-dark);
  transform:translateY(-2px);
}

.btn-outline{
  border:2px solid var(--primary);
  color:var(--primary);
  background:transparent;
}

.btn-outline:hover{
  background:var(--secondary) !important;
  color:var(--white);
}

   /* HEADER */

.header{
  background:var(--white);
  box-shadow:var(--shadow-sm);
  position:sticky;
  top:0;
  z-index:100;
}

.nav-link{
  color:var(--text);
  text-decoration:none;
  font-weight:500;
  transition:var(--transition);
}

.nav-link:hover{
  color:var(--secondary);
}

html, body{
    overflow-x: hidden;
}
/* -----------------HEADER---------------- */

   /* BODY OFFSET */

body{
    padding-top:120px;
}

   /* TOP BAR */

.top-bar{
    background:var(--primary-dark);
    color:var(--white);

    font-size:.875rem;

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:1001;
}

.top-bar-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:40px;
}

.top-bar-left,
.top-bar-right{
    display:flex;
    gap:1.5rem;
}

.top-bar a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
}

.top-bar a:hover{
    color:var(--white);
}
.top-bar-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-bar-right a{
    display:flex;
    align-items:center;
    gap:8px;

    color:#fff;
    text-decoration:none;

    font-size:14px;
    transition:.3s ease;
}

.top-bar-right a:hover{
    opacity:.85;
}

.top-bar-right .fa-whatsapp{
    color:#25D366;
    font-size:16px;
}

.top-bar-right .fa-envelope{
    color:#fff;
    font-size:15px;
}
   /* HEADER */


.header{
    background:var(--white);

    position:fixed;
    top:40px;
    left:0;

    width:100%;

    z-index:1000;

    box-shadow:var(--shadow-sm);
}

.header-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:80px;
}

   /* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:.75rem;
    text-decoration:none;
}

.logo-icon{
    width:42px;
    height:42px;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--white);
    font-weight:700;
    font-size:1.2rem;
}

.logo-text{
    font-size:1.7rem;
    font-weight:800;
    letter-spacing:.5px;
    color:var(--primary);
}

   /* NAVIGATION */

.nav{
    display:flex;
    align-items:center;
    gap:2rem;
}

.nav-link{
    position:relative;
    color:var(--text);
    text-decoration:none;
    font-weight:600;
    transition:var(--transition);
}

.nav-link:hover{
    color:var(--secondary);
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--secondary);
    transition:var(--transition);
}

.nav-link:hover::after{
    width:100%;
}

   /* MOBILE BUTTON */

.mobile-toggle{
    display:none;

    border:none;
    background:none;

    font-size:2rem;
    color:var(--primary);

    cursor:pointer;
}

   /* MOBILE MENU */

.mobile-nav{
    display:flex;
    flex-direction:column;
    gap:1rem;
}

.mobile-nav a{
    text-decoration:none;
    color:var(--text);
    font-weight:600;
}

   /* RESPONSIVE */

@media (max-width:991px){

    body{
        padding-top:80px;
    }

    .top-bar{
        display:none;
    }

    .header{
        top:0;
    }

    .nav{
        display:none;
    }

    .desktop-cta{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .logo-text{
        font-size:1.5rem;
    }
}

@media (max-width:576px){

    .header-container{
        min-height:70px;
    }

    .logo-icon{
        width:36px;
        height:36px;
        font-size:1rem;
    }

    .logo-text{
        font-size:1.2rem;
    }
}
.mobile-nav a.active {
    color: var(--secondary);
    font-weight: 700;
    position: relative;
}

.mobile-nav a.active::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}
.nav-link.active {
    color: var(--secondary);
    font-weight: 700;
    position: relative;
}

/* underline fixe pour actif */
.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    background: var(--secondary);
    border-radius: 10px;
}
.offcanvas .btn.btn-primary {
    background: var(--secondary) !important;
    color: #ffffff !important;
    border: none !important;
}

.offcanvas .btn.btn-primary:hover,
.offcanvas .btn.btn-primary:focus {
    background: var(--secondary-dark) !important;
    color: #ffffff !important;
}
/* -------------------PAGE INDEX------------------------- */

.hero{
    position:relative;
    height:85vh;
    overflow:hidden;
}

.hero-slider{
    position:relative;
    height:100%;
}

   /* SLIDES (ZOOM + FADE) */

.hero-slide{
    position:absolute;
    inset:0;

    opacity:0;
    visibility:hidden;

    transform:scale(1.08);

    transition:
        opacity 1.2s ease,
        transform 1.4s cubic-bezier(.22,.61,.36,1);
}

.hero-slide.active{
    opacity:1;
    visibility:visible;

    transform:scale(1);
}

   /* IMAGE */

.hero-slide img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.hero-slide.active img{
    animation:heroZoom 6s linear forwards;
}

@keyframes heroZoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }

}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.72) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

   /* CONTENT */

.hero-content{
    position:relative;
    z-index:3;

    height:100%;

    display:flex;
    align-items:center;

    padding-top:1vh;
    padding-bottom:2vh;
}

.hero-content .container{
    width:min(1200px,90%);
}

.hero-content h1{
    max-width:700px;
    color:var(--white);
    margin-bottom:1.5rem;
}

.hero-content p{
    max-width:650px;

    color:rgba(255,255,255,.9);

    font-size:1.1rem;

    margin-bottom:2rem;
}

.hero-content .btn{
    min-width:220px;
}

   /* DOTS */

.hero-dots{
    position:absolute;

    right:40px;
    top:50%;

    transform:translateY(-50%);

    display:flex;
    flex-direction:column;
    gap:14px;

    z-index:10;
}

.dot{
    width:8px;
    height:8px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.4);

    cursor:pointer;

    transition:var(--transition);
}

.dot.active{
    background:var(--secondary-dark);
    transform:scale(1.3);
}

   /* TABLET */

@media(max-width:992px){

    .hero-content{
        text-align:center;
    }

    .hero-content .container{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;

        transform:translateY(20%);
    }

    .hero-content p{
        margin-inline:auto;
    }

    .hero-dots{
        right:20px;
    }

}

   /* MOBILE */

@media(max-width:768px){

    html,
    body{
        margin:0;
        padding:0;
    }

    .hero{
        height:55vh;
        margin-top:0;
        padding-top:0;
    }

    .hero-content p{
        display:none;
    }

    .hero-content .btn{
        width:100%;
        max-width:260px;
    }

    .dot{
        display:none;
    }

}

/* -----------------------TRUST SCETION SOUS HERO---------------------------------------------- */

.trust-bar{
    background:var(--white);
    padding:70px 0;

    border-bottom:1px solid var(--border);
}

.trust-bar .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.trust-item{
    text-align:center;

    padding:0 30px;

    position:relative;
}

.trust-item:not(:last-child)::after{
    content:"";

    position:absolute;

    top:50%;
    right:0;

    width:1px;
    height:90px;

    background:var(--border);

    transform:translateY(-50%);
}

.trust-icon{
    width:72px;
    height:72px;

    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--primary-light);

    color:var(--primary);

    font-size:1.7rem;
}

.trust-item h3{
    font-size:1.05rem;

    margin-bottom:12px;

    color:var(--primary-dark);
}

.trust-item p{
    font-size:16px;

    color:var(--text-light);

    max-width:260px;

    margin:auto;
}


   /* RESPONSIVE */

@media(max-width:992px){

    .trust-bar .container{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

    .trust-item::after{
        display:none;
    }

}

@media(max-width:768px){

    .trust-bar{
        padding:50px 0;
    }

    .trust-bar .container{
        grid-template-columns:1fr;
        gap:35px;
    }

    .trust-icon{
        width:64px;
        height:64px;

        font-size:1.4rem;
    }
}

/* ----------------------------POURQUOI CHOISIR SOLENFI ? ----------------------- */
.why-solenfi {
  padding: 110px 20px;
  background: #f6f7fb;
  color: var(--primary-dark);
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--primary-dark);
}

.section-header p {
  font-size: 16px;
  color: #5b6b7f;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

/* TIMELINE STYLE */
.features-grid {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 25px;
}

.features-grid::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(11, 18, 32, 0.12);
  z-index: 0;
}

.feature-box {
  flex: 1;
  position: relative;
  padding-top: 60px;
}

.feature-box::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #2E8B57;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(46, 139, 87, 0.12);
}

.feature-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.feature-box p {
  font-size: 16px;
  color: #5b6b7f;
  line-height: 1.7;
}

/* CTA */
.section-cta {
  text-align: center;
  margin-top: 70px;
}

.cta-button {
  display: inline-block;
  background: #2E8B57;
  color: #ffffff;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 20px rgba(46, 139, 87, 0.25);
}

.cta-button:hover {
  background: #256f47 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(46, 139, 87, 0.35);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .features-grid {
    flex-direction: column;
    gap: 40px;
  }

  .features-grid::before {
    display: none;
  }

  .feature-box {
    padding-top: 0;
    padding-left: 30px;
  }

  .feature-box::before {
    left: 0;
    top: 5px;
  }
}

/* --------------------------DEMANDER UN CREDIT ------------------------------------------------ */

.loan-solenfi{
    padding:110px 20px;
    background:#ffffff;
    font-family:Arial, sans-serif;
    color:#0b1220;
}

/* CONTAINER */

.loan-solenfi .container{
    max-width:1100px;
    margin:0 auto;
}

/* LAYOUT */

.loan-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* LEFT */

.loan-text{
    flex:1;
}

.loan-header{
    text-align:left !important;
}

.loan-header h2{
    font-size:36px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:15px;
    color:var(--primary-dark);

    text-align:left !important;
}

.loan-header p{
    font-size:16px;
    color:#5b6b7f;
    line-height:1.7;
    margin-bottom:40px;

    text-align:left !important;
    max-width:650px;
}

/* ITEMS */

.loan-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.loan-item{
    border-left:3px solid #2E8B57;
    padding-left:15px;
}

.loan-item h3{
    font-size:18px;
    margin-bottom:6px;
    color:var(--primary-dark);
}

.loan-item p{
    font-size:16px;
    color:#5b6b7f;
    line-height:1.6;
}

/* RIGHT SIDE */

.loan-image{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;
}

/* IMAGE */

.pentagon-image{
    width:470px;
    height:470px;

    clip-path:polygon(
        50% 0%,
        100% 35%,
        82% 100%,
        18% 100%,
        0% 35%
    );

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.pentagon-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CTA */

.image-cta{
    text-align:center;
}

.cta-button{
    display:inline-block;
    background:#2E8B57;
    color:#ffffff;
    padding:14px 28px;
    font-size:15px;
    font-weight:600;
    border-radius:8px;
    text-decoration:none;
    transition:.25s ease;
    box-shadow:0 10px 20px rgba(46,139,87,.25);
}

.cta-button:hover{
    background:#256f47;
    transform:translateY(-2px);
    box-shadow:0 14px 28px rgba(46,139,87,.35);
}

/* TABLET */

@media (max-width:1100px){

    .pentagon-image{
        width:400px;
        height:400px;
    }

}

/* MOBILE */

@media (max-width:900px){

    .loan-wrapper{
        flex-direction:column;
    }

    .loan-text{
        text-align:center;
    }

    .loan-header{
        text-align:center !important;
    }

    .loan-header h2,
    .loan-header p{
        text-align:center !important;
        max-width:100%;
    }

    .loan-content{
        grid-template-columns:1fr;
    }

    .pentagon-image{
        width:320px;
        height:320px;
    }

}

/* <!-- --------------------SERVICES BREVE PRESENTATION SUR INDEX---------------------------- --> */

.services-solenfi {
  padding: 120px 20px;
  background: #f6f7fb;
  font-family: Arial, sans-serif;
  color: #0b1220;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* BADGE */
.solenfi-badge {
  display: inline-block;
  margin-bottom: 25px;
  background: var(--secondary);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
  text-transform: uppercase;
}

/* LAYOUT */
.services-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  text-align: left; /* IMPORTANT */
}

/* LEFT VISUAL */
.services-visual {
  flex: 1;
  position: relative;
  min-height: 500px;
  overflow: hidden; /* empêche débordement */
}

/* BIG CIRCLE IMAGE */
.shape-1 {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* SECOND IMAGE */
.shape-2 {
  width: 300px;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  position: absolute;
  top: 140px;
  left: 200px;
  transform: rotate(4deg);
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
  z-index: 1;
}

/* IMAGE FIT */
.shape-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXT */
.services-text {
  flex: 1;
  text-align: left;
}

/* HEADER */
.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--primary-dark);
  text-align: left;
}

.services-header p {
  font-size: 16px;
  color: #5b6b7f;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: left;
}

/* ITEMS */
.services-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ITEM */
.service-item {
  position: relative;
  transition: all 0.25s ease;
}

.service-item::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--secondary-dark);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: width 0.3s ease;
}

.service-item:hover::before {
  width: 65px;
}

.service-item h3 {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.service-item p {
  font-size: 16px;
  color: #5b6b7f;
  line-height: 1.6;
}

/* HOVER */
.service-item:hover {
  transform: translateX(6px);
}


   /* MOBILE / TABLET */


@media (max-width: 900px) {

  .services-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .services-text {
    text-align: left;
  }

  .solenfi-badge {
    display: block;
    margin: 0 0 25px 0;
  }

  /*  HIDE IMAGES MOBILE */
  .services-visual {
    display: none;
  }

}

/* GLOBAL SAFETY */
body {
  overflow-x: hidden;
}

/* ----------------SIMULATION SOLENFI------------------- */

.loan-simulator{
    padding:80px 0;
    background:#eef3f8;
}

.simulator-wrapper{
    display:grid;
    grid-template-columns:minmax(0,1fr) 420px;
    gap:40px;
    align-items:start;
}

   /* LEFT SIDE */

.simulator-form h2{
    font-size:32px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:15px;
    line-height:1.1;
}

.simulator-form p{
    max-width:700px;
    color:#66788a;
    line-height:1.8;
    margin-bottom:30px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.field label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:var(--text);
}

.field input[type="text"]{
    width:100%;
    height:60px;
    border:none;
    border-radius:14px;
    background:#fff;
    padding:0 18px;
    font-size:1.1rem;
    font-weight:700;
    color:var(--text);
}

.disabled-field{
    background:#dfe6ed !important;
    color:#8a97a5 !important;
}

.field input[type="range"]{
    width:100%;
    margin-top:12px;
    accent-color:var(--secondary);
}

.range-labels{
    display:flex;
    justify-content:space-between;
    margin-top:6px;
    font-size:.85rem;
    color:#768391;
}

/* BUTTON */

.calculate-btn{
    margin-top:30px;
    padding:16px 34px;
    border:none;
    border-radius:14px;
    background:var(--secondary);
    color:#fff;
    font-weight:700;
    transition:.3s;
}

.calculate-btn:hover{
    transform:translateY(-2px);
}

   /* RESULT CARD */

.simulator-result{
    background:#fff;
    border-radius:24px;
    padding:28px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    align-self:start;
}

.result-top{
    margin-bottom:20px;
}

.simulator-result h3{
    font-size:.95rem;
    font-weight:600;
    color:#6f7f8e;
    margin-bottom:10px;
}

.monthly-payment{
    font-size:2.6rem;
    font-weight:800;
    color:var(--secondary);
    line-height:1;
}

/* LIST */

.result-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:25px;
}

.result-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:10px;
    border-bottom:1px solid #edf1f5;
}

.result-item span{
    color:#6f7f8e;
    font-size:.95rem;
}

.result-item strong{
    color:var(--text);
    font-weight:700;
}

/* NOTE */

.result-note{
    margin-top:20px;
    font-size:.85rem;
    line-height:1.7;
    color:#7f8d9b;
}

   /* TABLET */

@media (max-width:991px){

    .simulator-wrapper{
        grid-template-columns:1fr;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .simulator-result{
        width:100%;
    }

}

   /* MOBILE */

@media (max-width:576px){

    .loan-simulator{
        padding:60px 0;
    }

    .simulator-form h2{
        font-size:2.2rem;
    }

    .monthly-payment{
        font-size:2rem;
    }

    .calculate-btn{
        width:100%;
    }

}

/* -----------------------SECTION COMMENT çA MARCHE ? ---------------------------------------- */

.how-it-works{

    padding:100px 0;

    background:#fff;

}

.section-header{

    text-align:center;

    max-width:700px;

    margin:0 auto 70px;

}

.section-header h2{

    font-size:32px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:15px;

}

.section-header p{

    color:#6b7b8d;

    line-height:1.8;

}

/* PROCESS */

.process-line{

    position:relative;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}

.process-line::before{

    content:"";

    position:absolute;

    top:45px;

    left:15%;

    width:70%;

    height:2px;

    background:#dfe7ef;

}

/* STEP */

.process-step{

    text-align:center;

    position:relative;

}

.step-number{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#fff;

    border:2px solid #e3ebf3;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.4rem;

    font-weight:800;

    color:var(--secondary);

    position:relative;

    z-index:2;

}

.process-step h3{

    font-size:1.25rem;

    color:var(--primary);

    margin-bottom:12px;

}

.process-step p{

    max-width:240px;

    margin:auto;

    color:#6b7b8d;

    line-height:1.7;

}

/* HOVER */

.process-step:hover .step-number{

    border-color:var(--secondary);

    transform:translateY(-4px);

    transition:.3s;

}

/* MOBILE */

@media(max-width:991px){

    .process-line{

        grid-template-columns:1fr;

        gap:50px;

    }

    .process-line::before{

        display:none;

    }

}

@media(max-width:576px){

    .section-header h2{

        font-size:2.2rem;

    }

}

/* ---------------------SECTION FAQ------------------------------ */
.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0b1f2a, #123b52);
}

/* CONTAINER */
.faq-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* IMAGE */
.faq-image {
  flex: 1;
}

.faq-image img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* CONTENT RIGHT */
.faq-content {
  flex: 1;
}

/* TITLE COMPACT */
.faq-content h2 {
  font-size: 30px;
  margin-bottom: 6px;
  color: #ffffff;
  font-weight: 700;
}

.subtitle {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
}

/* ITEM COMPACT */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 6px 0;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #ffffff;
  transition: 0.2s ease;
}

.faq-question:hover {
  color: #00ffc3;
}

/* ICON */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
  color: #00ffc3;
  transition: 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

/* ANSWER (WHITE CARD CLEAN) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.25s ease;

  background: #ffffff;
  color: #1b1b1b;

  font-size: 14px;
  line-height: 1.6;

  border-radius: 8px;
  margin-top: 6px;
  padding: 0 12px;
}

/* OPEN */
.faq-item.active .faq-answer {
  max-height: 180px;
  padding: 10px 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    gap: 25px;
  }

  .faq-content h2 {
    font-size: 24px;
  }
}

/* --------------------SECTION AVIS CLIENTS--------------- */

.reviews {
  padding: 100px 20px;
  background: #f6f7fb;
  font-family: Arial, sans-serif;
  color: #0b1220;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.reviews-header p {
  font-size: 16px;
  color: #5b6b7f;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* SLIDER WRAPPER */
.reviews-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.reviews-track {
  display: flex;
  gap: 20px;

  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  scroll-snap-type: x mandatory;

  padding-bottom: 10px;

  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.review-card {
  flex: 0 0 85%;
  scroll-snap-align: center;

  background: #fff;
  border-radius: 18px;
  padding: 25px;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* hover desktop */
@media (hover: hover) {
  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  }
}

/* STARS */
.review-stars {
  color: #fbbf24;
  margin-bottom: 12px;
}

/* TEXT */
.review-card p {
  font-size: 15px;
  color: #5b6b7f;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* FOOTER */
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-footer img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .review-card {
    flex: 0 0 45%;
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 30%;
  }
}

@media (max-width: 600px) {
  .review-card {
    flex: 0 0 85%;
  }
}
/* ------------------------CTA FINAL SECTION HERO-------------------------------------------- */
.cta-solenfi {
  padding: 80px 20px;
  font-family: Arial, sans-serif;
  color: #0b1220;

  /*  GRADIENT PREMIUM SOLENFI */
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    #2E8B57 40%,
    #0A3A61 100%
  );
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/*  CTA CARD GRADIENT */
.cta-box {
  text-align: center;
  padding: 50px 40px; /* compact */
  border-radius: 18px;

  /* premium gradient subtil */
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f3f7ff 40%,
    #eef4ff 100%
  );

  border: 1px solid rgba(59, 130, 246, 0.15);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

/* TITLE */
.cta-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-dark);
  line-height: 1.2;
}

/* TEXT */
.cta-box p {
  font-size: 16px;
  color: #5b6b7f;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 25px auto;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* PRIMARY */
.primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s ease;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.25);
}

.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* SECONDARY */
.btn-secondary {
  background: var(--secondary);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.15);
  transition: 0.25s ease;
}

.btn-secondary:hover {
  background: #ffffff;
  color:var(--primary);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .cta-box {
    padding: 35px 20px;
  }

  .cta-box h2 {
    font-size: 26px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* -------------------------------------------------------------------------
                       -PAGE SERVICES
--------------------------------------------------------------------------- */
.services-hero {
  position: relative;
  padding: 70px 20px;
  font-family: Arial, sans-serif;
  color: #ffffff;
  text-align: center;
  overflow: hidden;

  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--secondary) 100%
  );
}

/* overlay */
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  z-index: 1;
}

/* content */
.services-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* TITLE */
.services-hero h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

/* TEXT */
.services-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}


   /* MOBILE OPTIMISATION CLEAN */

@media (max-width: 600px) {

  .services-hero {
    padding: 35px 15px; /*  plus compact */
    margin-top: 70px;  /*  évite header overlap */
  }

  /*  on cache le paragraphe */
  .services-hero p {
    display: none;
  }

  /*  titre seul visible */
  .services-hero h2 {
    font-size: 24px;
    text-align: center;
    margin: 0;
  }
}

/* ---------------SECTION SOUS MINI HERO SERVICES------------------- */
.about-solenfi {
    padding: 100px 20px;
    background: #fff;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

.about-content {
    flex: 1;
}

.about-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary-light);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 35px 0;
    padding: 20px;
    border-radius: 16px;
    background: var(--primary-light);
}

.highlight-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--secondary);
    white-space: nowrap;
}

.highlight-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s ease;
}

.about-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 520px;
    height: 500px;
    object-fit: cover;

    border-radius:
        58% 42% 32% 68% /
        42% 58% 62% 38%;

    box-shadow:
        0 25px 60px rgba(15, 76, 129, 0.18);

    transition: .4s ease;
}

.about-image img:hover {
    transform: translateY(-8px);
}

/* Responsive */

@media (max-width: 991px) {

    .about-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .about-content {
        text-align: center;
    }

    .about-highlight {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 32px;
    }

}

@media (max-width: 576px) {

    .about-solenfi {
        padding: 70px 20px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .highlight-number {
        font-size: 34px;
    }

}
@media (max-width: 991px){

    .about-image{
        display: none;
    }

}

/* -----------------SECTION NOS SERVICES------------------------------ */

.nos-services {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #bbd3ec 100%);
  font-family: Arial, sans-serif;
  color: var(--text);
}

/* HEADER */
.services-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.services-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.services-title p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1300px;
  margin: 0 auto;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.service-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

/* CONTENT */
.service-content {
  padding: 18px 16px;
  text-align: center;
}

.service-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--primary);
}

.service-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

   /* CTA BUTTON */

.services-cta {
  text-align: center;
  margin-top: 45px;
}

.cta-btn {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(46, 139, 87, 0.25);
}

.cta-btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title h2 {
    font-size: 30px;
  }
}
/* ----------------------SECTION AVANTAGES-------------------------------------- */
.solenfi-benefits{
    padding:90px 20px;
    background:#fff;
}

/* HEADER */

.benefits-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.benefits-header h2{
    font-size:36px;
    font-weight: 700;
    color:var(--primary);
    margin-bottom:15px;
}

.benefits-header p{
    color:var(--text-light);
    line-height:1.7;
    font-size: 16px;
}

/* ROW */

.benefits-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
}

/* ITEM */

.benefit-item{
    text-align:center;
    flex:1;
}

.benefit-value{
    display:block;

    font-size:40px;
    font-weight:800;

    color:var(--secondary);

    margin-bottom:10px;
    line-height:1;
}

.benefit-item h3{
    font-size:15px;
    color:var(--primary);
    margin:0;
}

/* DIVIDER */

.benefit-divider{
    width:1px;
    height:90px;
    background:linear-gradient(
        to bottom,
        transparent,
        var(--border),
        transparent
    );
}

/* RESPONSIVE */

@media(max-width:991px){

    .benefits-row{
        flex-wrap:wrap;
        gap:30px;
    }

    .benefit-divider{
        display:none;
    }

    .benefit-item{
        width:45%;
        flex:none;
    }

}

@media(max-width:576px){

    .solenfi-benefits{
        padding:70px 20px;
    }

    .benefits-header h2{
        font-size:28px;
    }

    .benefit-item{
        width:100%;
    }

    .benefit-value{
        font-size:50px;
    }

}

/* ------------------CALL TO ACTION PAGE SERVICES-------------------------- */

.solenfi-cta-section{
    padding:80px 20px;

    background:
    linear-gradient(
        135deg,
        #0A3A61 0%,
        #0F4C81 40%,
        #1B6B70 75%,
        #2E8B57 100%
    );

    position:relative;
    overflow:hidden;
}

.solenfi-cta-section::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    repeating-linear-gradient(
        45deg,
        rgba(255,255,255,.02),
        rgba(255,255,255,.02) 2px,
        transparent 2px,
        transparent 20px
    );

    pointer-events:none;
}

.solenfi-cta-section .container{
    position:relative;
    z-index:2;
}

/* WRAPPER */

.solenfi-cta-wrapper{

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:35px;
}

/* ICON */

.solenfi-cta-icon{

    width:120px;
    height:120px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(10px);
}

.solenfi-cta-icon i{

    font-size:52px;
    color:#ffffff;
}

/* CONTENT */

.solenfi-cta-content{

    flex:1;
}

.solenfi-cta-content h2{

    color:#fff;

    font-size:36px;
    font-weight:700;

    margin-bottom:12px;
}

.solenfi-cta-content p{

    color:rgba(255,255,255,.92);
    font-size: 16px;

    line-height:1.7;
    margin:0;
}

/* BUTTONS */

.solenfi-cta-actions{

    display:flex;
    gap:12px;

    flex-shrink:0;
}

.solenfi-cta-btn-primary{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 26px;

    background: var(--secondary);
    color:#fff;

    text-decoration:none;
    font-weight:700;

    border-radius:10px;

    transition:.3s ease;
}

.solenfi-cta-btn-primary:hover{

    transform:translateY(-3px);
}

.solenfi-cta-btn-secondary{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 26px;

    color:#fff;

    text-decoration:none;
    font-weight:600;

    border-radius:10px;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.10);

    transition:.3s ease;
}

.solenfi-cta-btn-secondary:hover{

    background:rgba(255,255,255,.18);
}

/* RESPONSIVE */

@media(max-width:991px){

    .solenfi-cta-wrapper{

        flex-direction:column;
        text-align:center;
    }

    .solenfi-cta-content h2{

        font-size:30px;
    }

    .solenfi-cta-actions{

        justify-content:center;
        flex-wrap:wrap;
    }
}

@media(max-width:576px){

    .solenfi-cta-section{

        padding:60px 15px;
    }

    .solenfi-cta-icon{

        width:95px;
        height:95px;
    }

    .solenfi-cta-icon i{

        font-size:40px;
    }

    .solenfi-cta-content h2{

        font-size:24px;
    }

    .solenfi-cta-content p{

        display:none;
    }

    .solenfi-cta-actions{

        width:100%;
        flex-direction:column;
    }

    .solenfi-cta-btn-primary,
    .solenfi-cta-btn-secondary{

        width:100%;
    }
}

/* -------------------SECTION POSITIONNEMENT---------------------------------------- */
.about-position{
    padding:90px 20px;
    background:#FFFFFF;
}

.about-position-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 50px;
}

.about-position-header h2{
    font-size:36px;
    color:var(--primary-dark);
    margin-bottom:12px;
}

.about-position-header p{
    color:var(--text-light);
    line-height:1.7;
    font-size: 16px;
}

/* GRID CLEAN STYLE (NO CARDS) */

.about-position-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* ITEM STYLE SIMPLE & PREMIUM */

.about-position-item h3{
    font-size:18px;
    color:var(--primary-dark);
    margin-bottom:10px;
    position:relative;
}

/* TRAIT SOUS TITRE EN VERT */
.about-position-item h3::after{
    content:"";
    display:block;
    width:35px;
    height:2px;

    background:var(--secondary);

    margin:8px auto 0;
    border-radius:5px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about-position-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

}

@media(max-width:576px){

    .about-position{
        padding:70px 20px;
    }

    .about-position-header{
        margin-bottom:40px;
        text-align:center;
    }

    .about-position-header h2{
        font-size:28px;
    }

    .about-position-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .about-position-item{
        text-align:center;
    }

    .about-position-item h3{
        text-align:center;
    }

    .about-position-item p{
        text-align:center;
    }

}

/* --------------------QUI EST SOLENFI ?-------------------------------- */

/* SECTION BACKGROUND */
.about-who{
    padding:90px 20px;

    background: linear-gradient(
        135deg,
        #0A3A61 0%,
        #0F4C81 35%,
        #1B6F67 70%,
        #2E8B57 100%
    );

    position:relative;
    overflow:hidden;
}

/* LIGHT EFFECTS */
.about-who::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-200px;
    right:-150px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    filter:blur(40px);
}

.about-who::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    bottom:-180px;
    left:-120px;
    background:rgba(255,255,255,0.06);
    border-radius:50%;
    filter:blur(40px);
}

/* CONTAINER Z-INDEX */
.about-who .container{
    position:relative;
    z-index:2;
}

/* WRAPPER */
.about-who-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

/* IMAGE */
.about-who-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* HEXAGONE */
.about-who-image img{
    width:100%;
    max-width:420px;

    aspect-ratio:1 / 1;
    object-fit:cover;

    /* FORME HEXAGONE */
    clip-path: polygon(
        25% 5%,
        75% 5%,
        100% 50%,
        75% 95%,
        25% 95%,
        0% 50%
    );

    /* STYLE PREMIUM */
    box-shadow:0 25px 60px rgba(0,0,0,0.35);
    transition:transform .3s ease;
}

/* petit effet hover */
.about-who-image img:hover{
    transform:scale(1.03);
}

/* CONTENT */
.about-who-content{
    flex:1;
}

/* BADGE */
.about-tag{
    display:inline-block;
    padding:6px 14px;

    background:var(--secondary);
    color:#fff;

    border-radius:50px;
    font-size:13px;
    font-weight:600;

    margin-bottom:15px;

    box-shadow:0 6px 15px rgba(46,139,87,.25);
}

/* TITLE */
.about-who-content h2{
    font-size:36px;
    color:#ffffff;
    margin-bottom:18px;
    line-height:1.2;
}

/* TEXT */
.about-who-content p{
    font-size:15px;
    color:rgba(255,255,255,0.9);
    line-height:1.7;
    margin-bottom:14px;
}

/* RESPONSIVE */
@media(max-width:991px){
    .about-who-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .about-who-content h2{
        font-size:30px;
    }
}

@media(max-width:576px){
    .about-who{
        padding:70px 15px;
    }

    .about-who-content h2{
        font-size:26px;
    }
}

/* ------------SECTION MISSIONS ET VALEURS------------------------ */
.about-mv{
    padding:90px 20px;
    background:#fff;
}

/* GLOBAL HEADER */
.about-mv-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.about-mv-header h2{
    font-size:36px;
    color:var(--primary);
    margin-bottom:10px;
    font-weight: 700;
}

.about-mv-header p{
    color:var(--text-light);
    line-height:1.7;
    font-size: 16px;
}

/* WRAPPER */
.about-mv-wrapper{
    display:flex;
    gap:60px;
    align-items:flex-start;
}

/* LEFT */
.about-mv-left{
    flex:1;
}

.about-mv-left h3,
.about-mv-right h3{
    font-size:18px;
    color:var(--primary);
    margin-bottom:15px;
}

/* RIGHT */
.about-mv-right{
    flex:1;
}

/* VALUES */
.about-mv-right ul{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.about-mv-right li{
    padding-left:15px;
    border-left:3px solid var(--secondary);
}

.about-mv-right h4{
    font-size:12px;
    color:var(--primary);
    margin-bottom:4px;
}

.about-mv-left p,
.about-mv-right p{
    font-size:16px;
    color:var(--text-light);
    line-height:1.7;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about-mv{
        padding:70px 20px;
    }

    .about-mv-wrapper{
        flex-direction:column;
        gap:40px;
    }

    .about-mv-header{
        margin-bottom:40px;
        text-align:center;
    }

    .about-mv-header h2{
        font-size:28px;
    }

    .about-mv-left,
    .about-mv-right{
        text-align:center;
    }

    .about-mv-left h3,
    .about-mv-right h3{
        text-align:center;
    }

    .about-mv-left p,
    .about-mv-right p{
        text-align:center;
    }

    .about-mv-right ul{
        align-items:center;
    }

    .about-mv-right li{
        border-left:none;
        border-top:3px solid var(--secondary);

        padding-left:0;
        padding-top:15px;

        width:100%;
        max-width:450px;

        text-align:center;
    }

}
/* -------------------SECTION -PARTENAIRE------------------------------- */
.partner-section {
  padding: 80px 20px;
  background: #f7f9fc;
}

.partner-container {
  max-width: 1100px;
  margin: auto;
}

.partner-header {
  text-align: center;
  margin-bottom: 40px;
}

.partner-header h2 {
  font-size: 32px;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.partner-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* LOGO CARD */
.partner-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s ease;
}

/* IMAGE */
.partner-card img {
  max-width: 100%;
  height: 45px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

/* HOVER */
.partner-card:hover {
  transform: translateY(-4px);
}

.partner-card:hover img {
  filter: grayscale(0%);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .partner-header h2 {
    font-size: 26px;
  }
}

/* ---------------------------------------------------------
                    PAGE CONTACT
--------------------------------------------------------*/
.contact-section {
  padding: 90px 20px;
  background: #f5f7fa; /* blanc cassé */
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT */
.contact-info {
  flex: 1;
  color: #1b1b1b;
}

.contact-info h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.contact-info p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* CONTACT DETAILS */
.contact-details p {
  margin: 10px 0;
  font-size: 15px;
  color: #444;
}

.contact-details i {
  color: var(--secondary);
  margin-right: 10px;
}

/* FORM */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* INPUTS */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;

  /* bordure bleue 1px */
  border: 1px solid #000000;

  outline: none;
  font-size: 14px;
  background: #ffffff;
  transition: 0.2s ease;
}

/* focus */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #010b24;
  box-shadow: 0 0 0 3px rgba(30,102,255,0.15);
}

/* BUTTON */
.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: var(--secondary);
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: var(--secondary-dark);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .contact-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;  
  }

  /* LEFT SECTION */
  .contact-info {
    width: 100%;
    text-align: center;
  }

  .contact-info h2 {
    font-size: 26px;
  }

  .contact-info p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }

  /* DETAILS CENTRÉS */
  .contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-details p {
    text-align: center;
  }

  /* FORM */
  .contact-form {
    width: 100%;
    align-items: center;
  }

  .form-group {
    width: 100%;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    text-align: center; 
  }

  .contact-form button {
    width: 100%;
  }
}

/* --------------------------------------------------------------------
                   PAGE DEMANDE DE CREDIT
-------------------------------------------------------------------- */
.loan-form-section{
    padding:100px 20px;
    background:#f5f7fa;
}

.loan-container{
    max-width:900px;
    margin:auto;
}

/* HEADER */

.loan-header{
    text-align:center;
    margin-bottom:40px;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.loan-header h2{
    font-size:36px;
    color:var(--primary-dark);
    margin-bottom:10px;
    font-weight:700;

    text-align:center !important;
    width:100%;
}

.loan-header p{
    color:#555;
    font-size:16px;

    text-align:center !important;

    max-width:650px;
    margin:0 auto;
    line-height:1.7;
}

/* GRID */

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

/* FULL WIDTH FIELD */

.full{
    grid-column:1 / -1;
}

/* FORM GROUP */

.form-group{
    display:flex;
    flex-direction:column;
    gap:6px;
}

/* LABEL */

.form-group label{
    font-size:14px;
    color:var(--primary-dark);
    font-weight:600;
}

/* INPUTS */

.form-group input,
.form-group select{
    width:100%;
    padding:15px 14px;

    border-radius:10px;
    border:1px solid var(--primary-dark);

    font-size:16px;
    background:#ffffff;

    outline:none;
    transition:.25s ease;

    color:var(--primary-dark);
}

/* FOCUS */

.form-group input:focus,
.form-group select:focus{
    border-color:#000000;
    box-shadow:0 0 0 4px rgba(30,102,255,.15);
}

/* BUTTON */

.loan-form button{
    width:100%;
    margin-top:25px;
    padding:16px;

    border:none;
    border-radius:10px;

    background:var(--secondary);
    color:#fff;

    font-size:16px;
    font-weight:700;

    cursor:pointer;
    transition:.3s ease;
}

.loan-form button:hover{
    background:#008f5a;
    transform:translateY(-2px);
}

/* SECURITY TEXT */

.secure-text{
    text-align:center;
    font-size:13px;
    color:#666;
    margin-top:12px;
    line-height:1.6;
}

/* RESPONSIVE TABLET */

@media (max-width:768px){

    .loan-form-section{
        padding:80px 15px;
    }

    .grid-2{
        grid-template-columns:1fr;
    }

    .loan-header{
        margin-bottom:30px;
    }

    .loan-header h2{
        font-size:28px;
    }

    .loan-header p{
        font-size:15px;
        max-width:100%;
    }

}

/* SMALL MOBILE */

@media (max-width:480px){

    .loan-form-section{
        padding:70px 15px;
    }

    .loan-header h2{
        font-size:24px;
    }

    .loan-header p{
        font-size:14px;
    }

    .form-group input,
    .form-group select{
        padding:14px 12px;
        font-size:15px;
    }

    .loan-form button{
        padding:15px;
        font-size:15px;
    }

}
 /* --------------------------------------------------------------------------------
                           POLITIQUE DE CONFIDENTIALITE-
----------------------------------------------------------------------------------- */
.privacy-policy{
    padding:90px 20px;
    background:#fff;
}

.privacy-content{
    max-width:900px;
    margin:0 auto;
}

/* TITRE PRINCIPAL */

.privacy-content h2{
    color:var(--primary);
    font-size:38px;
    margin-bottom:25px;
    text-align:center;
    line-height:1.2;
}

/* SOUS-TITRES */

.privacy-content h3{
    color:var(--primary);
    font-size:22px;

    margin-top:40px;
    margin-bottom:15px;

    text-align:center;
    position:relative;
}

/* TRAIT VERT */

.privacy-content h3::after{
    content:"";
    display:block;

    width:50px;
    height:3px;

    background:var(--secondary);

    margin:10px auto 0;
    border-radius:10px;
}

/* PARAGRAPHES */

.privacy-content p{
    color:var(--text-light);
    line-height:1.9;
    margin-bottom:16px;
    font-size:15px;
}

/* DERNIÈRE MISE À JOUR */

.privacy-update{
    margin-top:40px;
    padding-top:20px;

    border-top:1px solid var(--border);

    text-align:center;

    color:var(--text);
    font-weight:600;
}

/* RESPONSIVE TABLETTE */

@media (max-width:768px){

    .privacy-policy{
        padding:70px 20px;
    }

    .privacy-content h2{
        font-size:30px;
    }

    .privacy-content h3{
        font-size:20px;
        margin-top:35px;
    }

    .privacy-content p{
        font-size:14px;
        line-height:1.8;
    }

}

/* RESPONSIVE MOBILE */

@media (max-width:576px){

    .privacy-policy{
        padding:60px 15px;
    }

    .privacy-content h2{
        font-size:26px;
    }

    .privacy-content h3{
        font-size:18px;
    }

    .privacy-content p{
        font-size:14px;
        line-height:1.8;
        text-align:left;
    }

    .privacy-update{
        font-size:14px;
    }
}

/* ---------------------------------------------------------------------------
                        PAGE TERMES ET CONDITIONS
----------------------------------------------------------------------- */
/* =========================
   TERMS PAGE
========================= */

.terms-page{
    padding:90px 20px;

    background:
    linear-gradient(
        135deg,
        rgba(15,76,129,.06),
        rgba(46,139,87,.06)
    );
}

/* CARD */

.terms-card{
    max-width:1000px;
    margin:auto;

    background:#fff;

    border-radius:24px;

    padding:50px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

/* HEADER */

.terms-intro{
    text-align:center;
    margin-bottom:50px;
}

.terms-badge{
    display:inline-block;

    background:var(--secondary);
    color:#fff;

    padding:8px 16px;

    border-radius:50px;

    font-size:13px;
    font-weight:600;

    margin-bottom:15px;
}

.terms-intro h2{
    color:var(--primary);
    font-size:42px;
    margin-bottom:15px;
}

.terms-intro p{
    color:var(--text-light);
    max-width:650px;
    margin:auto;
}

/* ITEMS */

.terms-sections{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.term-item{
    padding-left:25px;

    border-left:4px solid var(--secondary);
}

.term-item h3{
    display:flex;
    align-items:center;
    gap:12px;

    color:var(--primary);

    font-size:22px;

    margin-bottom:10px;
}

.term-item i{
    color:var(--secondary);
}

.term-item p{
    color:var(--text-light);
    line-height:1.8;
    margin:0;
}

/* FOOTER */

.terms-footer{
    margin-top:50px;

    padding-top:25px;

    border-top:1px solid var(--border);

    text-align:center;

    color:var(--text-light);
}

/* RESPONSIVE */

@media(max-width:768px){

    .terms-card{
        padding:30px 20px;
    }

    .terms-intro h2{
        font-size:30px;
    }

    .term-item h3{
        font-size:18px;
    }

}

/* --------------------------------------------------------------
                    PAGE INFOS LEGALES
-------------------------------------------------------------- */

.legal-company{
    padding:100px 20px;

    background:
    radial-gradient(
        circle at top right,
        rgba(46,139,87,.12),
        transparent 35%
    ),
    radial-gradient(
        circle at bottom left,
        rgba(4, 53, 96, 0.12),
        transparent 40%
    ),
    #f8fafc;
}

/* HEADER */

.legal-company-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.legal-label{
    display:inline-block;

    padding:8px 18px;

    background:var(--secondary);
    color:#fff;

    border-radius:50px;

    font-size:13px;
    font-weight:600;

    margin-bottom:18px;
}

.legal-company-header h2{
    color:var(--primary);
    font-size:42px;
    margin-bottom:15px;
}

.legal-company-header p{
    color:var(--text-light);
    line-height:1.8;
}

/* SHEET */

.legal-sheet{
    max-width:1000px;
    margin:auto;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 20px 60px rgba(15,76,129,.08);
}

/* ROW */

.legal-row{
    display:grid;
    grid-template-columns:280px 1fr;

    border-bottom:1px solid #eef2f6;
}

.legal-row:last-child{
    border-bottom:none;
}

.legal-title{
    background:var(--primary-light);

    color:var(--primary);

    font-weight:600;

    padding:22px 28px;
}

.legal-value{
    padding:22px 28px;

    color:var(--text);

    line-height:1.8;
}

/* NOTE */

.legal-note{
    max-width:1000px;
    margin:40px auto 0;

    background:#fff;

    padding:30px;

    border-radius:20px;

    border-top:4px solid var(--secondary);

    box-shadow:var(--shadow-sm);
}

.legal-note h3{
    color:var(--primary);
    margin-bottom:12px;
}

.legal-note p{
    color:var(--text-light);
    line-height:1.8;
    margin:0;
}

/* MOBILE */

@media(max-width:768px){

    .legal-company{
        padding:70px 15px;
    }

    .legal-company-header h2{
        font-size:30px;
    }

    .legal-row{
        grid-template-columns:1fr;
    }

    .legal-title{
        padding:16px 20px;
    }

    .legal-value{
        padding:16px 20px;
    }

}

/* ------------------------------------------------------------
                       PAGE MERCI
--------------------------------------------------------------- */

.thankyou-page{

    padding:90px 15px 80px;

    background:
    linear-gradient(
        135deg,
        var(--primary) 0%,
        #16639f 40%,
        var(--secondary) 100%
    );

    display:flex;
    align-items:center;
    justify-content:center;
}

/* CARD */

.thankyou-page .container{

    max-width:600px;

    background:rgba(255,255,255,.98);

    padding:35px 28px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

/* ICON */

.thankyou-icon{

    font-size:52px;

    color:var(--secondary);

    margin-bottom:12px;
}

/* TITLE */

.thankyou-page h2{

    color:var(--primary);
    font-size:32px;
    margin-bottom:12px;
    line-height:1.2;
}

/* TEXT */

.thankyou-page p{

    color:var(--text-light);

    line-height:1.7;

    margin-bottom:8px;

    font-size:16px;
}

/* NOTE */

.thankyou-note{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin:18px 0 24px;

    padding:12px 14px;

    background:var(--secondary-light);

    border-radius:12px;
}

.thankyou-note i{

    color:var(--secondary);

    font-size:18px;

    flex-shrink:0;
}

.thankyou-note p{

    margin:0;

    font-size:13px;

    color:var(--text);
}

/* BUTTON */

.thankyou-btn{

    display:inline-block;

    padding:12px 26px;

    background:var(--secondary);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    border-radius:10px;

    transition:var(--transition);
}

.thankyou-btn:hover{

    background:var(--secondary-dark);

    color:#fff;
}


   /* MOBILE */

@media (max-width:576px){

    .thankyou-page{

        padding-top:130px;
        padding-bottom:60px; /* équilibre bas */

    }

    .thankyou-page .container{

        padding:26px 20px;
    }

    .thankyou-icon{

        font-size:48px;
    }

    .thankyou-page h2{

        font-size:24px;
    }

    .thankyou-note{

        flex-direction:column;

        gap:6px;

        padding:10px;
    }

    .thankyou-btn{

        width:100%;
        max-width:240px;
    }
}

/* -----------------------------------------------
           SCROLL UP ET DOWN
-----------------------------------------------*/
.scroll-box{

    position:fixed;
    right:18px;
    bottom:18px;

    display:flex;
    flex-direction:column;
    gap:8px;

    z-index:999999;

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);

    transition:.3s ease;
}

.scroll-box.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* 🔲 BOUTONS PLUS PETITS + CARRÉ ARRONDI */
.scroll-btn{

    width:38px;
    height:38px;

    border:none;

    border-radius:10px; /* carré arrondi */

    background:#2e8b57;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:14px;

    cursor:pointer;

    box-shadow:0 8px 18px rgba(0,0,0,.2);

    transition:.2s ease;
}

.scroll-btn.down{
    background:#0f4c81;
}

.scroll-btn:hover{
    transform:scale(1.05);
}
@media (max-width: 576px){

    .scroll-box{
        right:12px;
        bottom:12px;
        gap:6px;
    }

    .scroll-btn{

        width:32px;
        height:32px;

        font-size:12px;

        border-radius:8px;
    }

}



  /* FOOTER */

.footer{
    background:linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    );

    color:#fff;

    padding:60px 20px 20px;
}

/* GRID */

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:35px;
}

/* TITRES */

.footer-column h3{
    color:#fff;
    font-size:18px;
    margin-bottom:15px;
}

.footer-column h3::after{
    content:"";
    display:block;
    width:35px;
    height:2px;
    background:var(--secondary);
    margin-top:8px;
}

/* LOGO */

.footer-logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    margin-bottom:15px;
}

.footer-logo .logo-text{
    color:#fff;
    font-size:24px;
    font-weight:800;
}

.footer-description{
    color:rgba(255,255,255,.8);
    font-size:14px;
    line-height:1.7;
}

/* LISTES */

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:10px;
}

.footer-column ul li a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#fff;
}

/* CONTACT */

.footer-contact li{
    margin-bottom:12px;
}

.footer-contact a,
.footer-contact span{
    display:flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.85);
    text-decoration:none;
}

.footer-contact i{
    color:var(--secondary);
    font-size:16px;
    width:18px;
}

/* COPYRIGHT */

.footer-bottom{
    margin-top:35px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
}

.footer-copyright{
    color:rgba(255,255,255,.75);
    font-size:13px;
    margin:0;
    line-height:1.6;
}

/* TABLETTE */

@media (max-width:991px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

}

/* MOBILE */

@media (max-width:768px){

    .footer{
        padding:45px 20px 20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:25px;
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .footer-column h3::after{
        margin:8px auto 0;
    }

    .footer-contact a,
    .footer-contact span{
        justify-content:center;
    }

    .footer-bottom{
        margin-top:25px;
    }

}