/* =====================================================
   RESET GLOBAL
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Segoe UI", Roboto, Arial, sans-serif;
    background:#ffffff;
    color:#0f172a;
    line-height:1.6;
    overflow-x:hidden;
}

/* =====================================================
   VARIABLES
===================================================== */

:root{
    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --orange:#ff7a00;

    --dark:#0f172a;
    --dark-light:#1e293b;

    --text:#334155;
    --text-light:#64748b;

    --border:#e2e8f0;

    --white:#ffffff;

    --section:#f8fafc;

    --shadow:0 10px 30px rgba(15,23,42,0.08);
}

/* =====================================================
   LOADER
===================================================== */

#loader{
    position:fixed;
    inset:0;
    background:#ffffff;
    z-index:99999;

    display:flex;
    align-items:center;
    justify-content:center;
}

.loader-logo{
    font-size:34px;
    font-weight:700;
    color:var(--dark);
    letter-spacing:1px;
}

/* =====================================================
   HEADER
===================================================== */

.header-top{
    position:fixed;
    top:0;
    left:0;

    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0px 5%;

    background:rgba(255,255,255,0.85);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(15,23,42,0.06);

    z-index:1000;
}

/* =====================================================
   LOGO
===================================================== */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:100px;
    width:auto;
    object-fit:contain;

}

/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

/* =====================================================
   LOGIN BUTTON
===================================================== */

.login-btn{
    text-decoration:none;

    background:var(--primary);
    color:white;

    padding:11px 18px;

    border-radius:10px;

    font-size:14px;
    font-weight:600;

    transition:0.3s ease;
}

.login-btn:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}

/* =====================================================
   SEARCH ICON
===================================================== */

.search-icon{
    width:44px;
    height:44px;

    border:none;
    background:transparent;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    color:var(--dark);

    cursor:pointer;

    font-size:18px;

    transition:0.3s ease;
}

.search-icon:hover{
    background:rgba(15,23,42,0.06);
}

/* =====================================================
   SEARCH OVERLAY
===================================================== */

.search-box{
    position:fixed;

    top:92px;
    left:0;

    width:100%;
    height:0;

    overflow:hidden;

    background:rgba(255,255,255,0.96);

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    display:flex;
    align-items:flex-start;
    justify-content:center;

    transition:0.4s ease;

    z-index:1500;
}

.search-box.active{
    height:120px;
    padding:22px 0;
}

/* =====================================================
   SEARCH CONTAINER
===================================================== */

.search-container{
    width:100%;
    max-width:650px;

    display:flex;
    align-items:center;
    gap:12px;

    padding:0 20px;
}

.search-container input{
    flex:1;

    padding:15px 18px;

    border-radius:14px;
    border:1px solid var(--border);

    background:#ffffff;

    font-size:15px;

    outline:none;

    transition:0.3s ease;
}

.search-container input:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(37,99,235,0.08);
}

.close-search{
    width:46px;
    height:46px;

    border:none;

    background:var(--dark);
    color:white;

    border-radius:12px;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.3s ease;
}

.close-search:hover{
    background:var(--dark-light);
}

/* =====================================================
   HAMBURGER
===================================================== */

.hamburger{
    background:transparent;
    border:none;

    display:flex;
    flex-direction:column;
    justify-content:center;

    cursor:pointer;

    padding:6px;
}

.hamburger span{
    width:26px;
    height:3px;

    background:var(--dark);

    margin:3px 0;

    border-radius:20px;
}

/* =====================================================
   MOBILE MENU
===================================================== */

.main-menu{
    position:fixed;

    top:0;
    right:-340px;

    width:320px;
    height:100vh;

    background:rgba(255,255,255,0.92);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border-left:1px solid rgba(15,23,42,0.08);

    display:flex;
    flex-direction:column;

    padding:25px;

    z-index:2000;

    transition:0.4s ease;
}

.main-menu.active{
    right:0;
}

/* =====================================================
   MENU CLOSE
===================================================== */

.menu-close{
    align-self:flex-end;

    background:none;
    border:none;

    font-size:24px;

    color:var(--dark);

    cursor:pointer;
}

/* =====================================================
   MENU LINKS
===================================================== */

.main-menu ul{
    list-style:none;

    margin-top:50px;

    flex:1;
}

.main-menu ul li{
    margin-bottom:22px;
}

.main-menu ul li a{
    text-decoration:none;

    color:var(--dark);

    font-size:18px;
    font-weight:500;

    transition:0.3s ease;
}

.main-menu ul li a:hover,
.main-menu ul li a.active{
    color:var(--orange);
    padding-left:6px;
}

/* =====================================================
   MENU FOOTER
===================================================== */

.menu-footer{
    border-top:1px solid rgba(15,23,42,0.08);

    padding-top:18px;

    text-align:center;

    color:var(--text-light);

    font-size:13px;
}

/* =========================
   HERO
========================= */

.hero{
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* =========================
   BACKGROUND ANIMATION
========================= */

.bg-animation::before,
.bg-animation::after{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(90px);
    animation: float 8s infinite ease-in-out;
}

.bg-animation::before{
    background: rgba(37,99,235,0.15);
    top: -150px;
    left: -150px;
}

.bg-animation::after{
    background: rgba(59,130,246,0.12);
    bottom: -150px;
    right: -150px;
}

@keyframes float{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(30px); }
}

/* =========================
   LAYOUT
========================= */

.hero-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

/* TEXT */

.hero-content{
    flex: 1;
}

.hero-content h1{
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

/* =========================
   TYPING EFFECT
========================= */

.typing{
    border-right: 3px solid #2563eb;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: typing 3.5s steps(30,end), blink 0.8s infinite;
}

@keyframes typing{
    from{ width: 0; }
    to{ width: 100%; }
}

@keyframes blink{
    50%{ border-color: transparent; }
}

/* TEXT */

.hero-content p{
    font-size: 18px;
    color: #64748b;
    margin-top: 20px;
    line-height: 1.6;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons{
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn{
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

/* PRIMARY */
.btn.primary{
    background: #2563eb;
    color: white;
    box-shadow: 0 10px 25px rgba(37,99,235,0.25);
}

/* PULSE EFFECT */
.pulse{
    animation: pulse 2s infinite;
}

@keyframes pulse{
    0%{ box-shadow: 0 0 0 0 rgba(37,99,235,0.4); }
    70%{ box-shadow: 0 0 0 15px rgba(37,99,235,0); }
    100%{ box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

/* SECONDARY */
.btn.secondary{
    border: 1px solid #cbd5e1;
    color: #0f172a;
}

/* =========================
   PHONE MOCKUP
========================= */

.hero-image{
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img{
    width: 320px;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.15));
    animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-20px); }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    .hero-container{
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1{
        font-size: 34px;
    }

    .hero-image img{
        width: 250px;
    }

    .hero-buttons{
        justify-content: center;
    }
}

/* =========================
   WHO WE ARE CLASSIC
========================= */

.who-classic{
    width: 100%;
    padding: 110px 8%;
    background: #ffffff;
}

.who-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1250px;
    margin: auto;
}

/* IMAGES */

.who-images{
    flex: 1;
    position: relative;
    min-height: 520px;
}

.img-main{
    width: 90%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.img-small{
    position: absolute;
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
    border: 6px solid white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
}

.top-img{
    top: -20px;
    right: 20px;
}

.bottom-img{
    bottom: -20px;
    right: 20px;
}

/* CONTENT */

.who-content{
    flex: 1;
}

.mini-title{
    color: #0ea5e9;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.who-content h2{
    font-size: 48px;
    line-height: 1.2;
    margin: 18px 0 25px;
    color: #0f172a;
}

.who-content p{
    color: #64748b;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 35px;
}

/* FEATURES */

.who-features{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.feature{
    background: #f8fafc;
    padding: 18px;
    border-radius: 14px;
    font-weight: 600;
    color: #1e293b;
}

/* BUTTON */

.who-btn{
    display: inline-block;
    padding: 16px 34px;
    background: #0f172a;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.who-btn:hover{
    transform: translateY(-3px);
    background: #1e293b;
}

/* RESPONSIVE */

@media(max-width:950px){

    .who-wrapper{
        flex-direction: column;
    }

    .who-images{
        width: 90%;
        min-height: 500px;
    }

    .img-main{
        width: 100%;
    }

    .img-small{
        width: 180px;
        height: 180px;
    }

    .who-content h2{
        font-size: 38px;
    }

}
/* =========================
   STATS SECTION
========================= */
.stats-section {
    background: linear-gradient(135deg, #0d1b2a, #1b2a41);
    color: #fff;
    padding: 70px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.stat-box {
    padding: 25px 15px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 122, 0, 0.08);
}

.stat-box h2 {
    font-size: 32px;
}

.stat-box p {
    font-size: 14px;
    opacity: 0.8;
}

/* =========================
   SERVICES
========================= */
.services-preview {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 26px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card i {
    font-size: 28px;
    color: var(--primary-orange);
}

/* =========================
   NOS PRODUITS
========================= */

.nos-produits{
    width: 100%;
    padding: 10px 2%;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* TITLE */

.produits-title{
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 70px;
    letter-spacing: 0.5px;
}

/* CONTAINER */

.produits-container{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* =========================
   CARD STYLE
========================= */

.produit-box{
    position: relative;
    width: 380px;
    padding: 45px 35px;
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(15, 23, 42, 0.08);

    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);

    transition: all 0.35s ease;

    overflow: hidden;
}

/* HOVER LIFT */

.produit-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.25);
}

/* =========================
   SHINE EFFECT CARD
========================= */

.produit-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transform: skewX(-20deg);
}

.produit-box:hover::before{
    animation: shineMove 0.9s ease;
}

@keyframes shineMove{
    0%{
        left: -75%;
    }
    100%{
        left: 130%;
    }
}

/* =========================
   ICON STYLE (Font Awesome)
========================= */

.icon{
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: linear-gradient(135deg, #2563eb, #60a5fa);

    margin-bottom: 25px;

    box-shadow: 0 10px 25px rgba(37,99,235,0.18);
}

.icon i{
    font-size: 26px;
    color: white;
}

/* TITLE */

.produit-box h3{
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 18px;
}

/* TEXT */

.produit-box p{
    color: #475569;
    line-height: 1.7;
    font-size: 15.5px;
    margin-bottom: 25px;
}

/* LIST */

.produit-box ul{
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.produit-box ul li{
    color: #334155;
    margin-bottom: 12px;
    font-size: 14.5px;
}

/* =========================
   BUTTON FINTECH UX
========================= */

.produit-btn{
    display: inline-block;
    padding: 14px 32px;

    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;

    border-radius: 50px;

    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 10px 20px rgba(59,130,246,0.18);

    transition: all 0.25s ease;

    position: relative;
    overflow: hidden;
}

/* HOVER */
.produit-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(59,130,246,0.30);
}

/* CLICK */
.produit-btn:active{
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 15px rgba(59,130,246,0.20);
}

/* BUTTON SHINE */
.produit-btn::after{
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,0.35);
    transform: skewX(-20deg);
}

.produit-btn:hover::after{
    animation: btnShine 0.7s ease;
}

@keyframes btnShine{
    0%{
        left: -80%;
    }
    100%{
        left: 140%;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    .produits-title{
        font-size: 34px;
    }

    .produit-box{
        width: 100%;
    }

}

/* =========================
   STATS / IMPACT SECTION
   Xpress Kapital
========================= */

.stats-section{
    width: 100%;
    padding: 120px 8%;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    text-align: center;
}

/* TITLE */

.stats-title{
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

/* SUBTITLE */

.stats-subtitle{
    font-size: 16px;
    color: #64748b;
    margin-bottom: 60px;
}

/* CONTAINER */

.stats-container{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD */

.stat-box{
    width: 260px;
    padding: 35px 25px;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 22px;

    border: 1px solid rgba(15, 23, 42, 0.08);

    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);

    transition: all 0.35s ease;

    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */

.stat-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.25);
}

/* ICON */

.stat-icon{
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: linear-gradient(135deg, #2563eb, #60a5fa);

    box-shadow: 0 10px 25px rgba(37,99,235,0.18);
}

.stat-icon i{
    color: white;
    font-size: 24px;
}

/* NUMBER */

.stat-number{
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

/* TEXT */

.stat-text{
    font-size: 15px;
    color: #64748b;
}

/* =========================
   SHINE EFFECT (OPTIONAL PREMIUM TOUCH)
========================= */

.stat-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transform: skewX(-20deg);
}

.stat-box:hover::before{
    animation: shineStats 0.9s ease;
}

@keyframes shineStats{
    0%{
        left: -75%;
    }
    100%{
        left: 130%;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    .stats-title{
        font-size: 32px;
    }

    .stat-box{
        width: 100%;
        max-width: 320px;
    }

}

/* =========================
   TESTIMONIALS PREMIUM
========================= */

.testimonials{
    padding: 50px 8%;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    text-align: center;
}

/* TITLE */

.section-title{
	font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
	margin-top: 1px;
}

.section-subtitle{
    color: #64748b;
    margin-bottom: 60px;
    font-size: 16px;
}

/* GRID */

.testimonial-slider{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */

.testimonial-card{
    display: none;

    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);

    border-radius: 24px;

    padding: 28px;

    border: 1px solid rgba(15,23,42,0.08);

    box-shadow: 0 15px 35px rgba(0,0,0,0.08);

    transition: all 0.35s ease;

    text-align: left;
}

/* SHOW ACTIVE */

.testimonial-card.active{
    display: block;
}

/* HOVER GLASS ORANGE */

.testimonial-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.25);
}

/* TOP */

.chat-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

/* USER */

.user-info{
    display: flex;
    align-items: center;
    gap: 12px;
}

/* AVATAR */

.avatar-img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* NAME */

.user-info h4{
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 3px;
}

/* VERIFIED */

.verified{
    color: #22c55e;
    font-size: 12px;
    margin-left: 5px;
}

/* DATE */

.date{
    font-size: 12px;
    color: #94a3b8;
}

/* STARS */

.stars{
    color: #f59e0b;
    font-size: 15px;
}

/* CHAT BUBBLE */

.chat-bubble{
    background: #eff6ff;
    padding: 18px;
    border-radius: 18px;

    color: #334155;
    line-height: 1.7;
    font-size: 15px;
}

/* =========================
   SHINE EFFECT TESTIMONIALS
========================= */

.testimonial-card{
    position: relative;
    overflow: hidden;
}

/* SHINE */

.testimonial-card::before{
    content: "";

    position: absolute;

    top: 0;
    left: -75%;

    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.55),
        transparent
    );

    transform: skewX(-20deg);
}

/* HOVER ANIMATION */

.testimonial-card:hover::before{
    animation: shineTestimonials 0.9s ease;
}

/* KEYFRAMES */

@keyframes shineTestimonials{

    0%{
        left: -75%;
    }

    100%{
        left: 130%;
    }

}

/* =========================
   WHY US PREMIUM FINTECH
========================= */

.why-us{
    padding: 120px 8%;

    background:
    linear-gradient(180deg,#ffffff,#f8fafc);

    position: relative;
    overflow: hidden;
}

/* =========================
   HEADER
========================= */

.why-header{
    text-align: center;
    max-width: 760px;
    margin: auto;
    margin-bottom: 70px;
}


/* TITLE */

.section-title{
	font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

/* SUBTITLE */

.section-subtitle{
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

/* =========================
   GRID
========================= */

.why-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

/* =========================
   CARD
========================= */

.why-card{
    position: relative;

    background: rgba(255,255,255,0.75);

    backdrop-filter: blur(14px);

    border-radius: 28px;

    padding: 24px;

    border: 1px solid rgba(15,23,42,0.06);

    overflow: hidden;

    transition: all 0.35s ease;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.05);
}

/* FEATURED */

.featured{
    border: 1px solid rgba(37,99,235,0.2);

    transform: translateY(-10px);

    box-shadow:
    0 25px 50px rgba(37,99,235,0.12);
}

/* HOVER */

.why-card:hover{
    transform: translateY(-10px);

    border: 1px solid rgba(251,146,60,0.25);

    box-shadow:
    0 25px 60px rgba(251,146,60,0.14);
}

/* =========================
   IMAGE SLIDER
========================= */

.why-image-slider{
    position: relative;

    width: 100%;
    height: 180px;

    border-radius: 24px;

    overflow: hidden;

    margin-bottom: 24px;

    background: #f1f5f9;
}

/* OVERLAY */

.why-image-slider::after{
    content: "";

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to top,
        rgba(15,23,42,0.12),
        transparent
    );
}

/* IMAGES */

.why-image-slider img{
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transition:
    opacity 1s ease,
    transform 0.7s ease;
}

/* ACTIVE */

.why-image-slider img.active{
    opacity: 1;
}

/* HOVER ZOOM */

.why-card:hover .why-image-slider img.active{
    transform: scale(1.04);
}

/* =========================
   ICON
========================= */

.why-icon{
    width: 64px;
    height: 64px;

    border-radius: 20px;

    background:
    linear-gradient(135deg,#2563eb,#3b82f6);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    box-shadow:
    0 12px 30px rgba(37,99,235,0.25);
}

/* ICON */

.why-icon i{
    color: white;
    font-size: 24px;
}

/* =========================
   TEXT
========================= */

.why-card h3{
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 14px;
}

.why-card p{
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

/* =========================
   SHINE EFFECT
========================= */

.why-card::before{
    content: "";

    position: absolute;

    top: 0;
    left: -75%;

    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );

    transform: skewX(-20deg);
}

.why-card:hover::before{
    animation: shineWhy 0.9s ease;
}

@keyframes shineWhy{

    0%{
        left: -75%;
    }

    100%{
        left: 130%;
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .why-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:700px){

    .why-grid{
        grid-template-columns: 1fr;
    }

    .section-title{
        font-size: 34px;
    }

}

/* =========================
   FINTECH CTA PREMIUM
========================= */

.fintech-cta{
    position: relative;

    padding: 110px 8%;

    overflow: hidden;

    background:
    linear-gradient(135deg,#0f172a,#1e293b);

    border-radius: 40px;

    margin: 80px 5%;
}

/* =========================
   GLOW EFFECTS
========================= */

.cta-glow{
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    opacity: 0.25;
}

.cta-glow-1{
    width: 300px;
    height: 300px;

    background: #2563eb;

    top: -100px;
    left: -100px;
}

.cta-glow-2{
    width: 250px;
    height: 250px;

    background: #fb923c;

    bottom: -100px;
    right: -80px;
}

/* =========================
   CONTAINER
========================= */

.cta-container{
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* =========================
   LEFT CONTENT
========================= */

.cta-content{
    max-width: 520px;
}

/* BADGE */

.cta-badge{
    display: inline-block;

    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.12);

    color: #cbd5e1;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 24px;
}

/* TITLE */

.cta-content h2{
    font-size: 58px;
    line-height: 1.1;

    color: white;

    margin-bottom: 18px;

    font-weight: 800;
}

/* TEXT */

.cta-content p{
    color: #cbd5e1;

    font-size: 18px;

    margin-bottom: 35px;
}

/* =========================
   BUTTONS
========================= */

.cta-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* PRIMARY */

.cta-primary{
    padding: 16px 32px;

    background:
    linear-gradient(135deg,#2563eb,#3b82f6);

    color: white;
    text-decoration: none;

    border-radius: 16px;

    font-weight: 700;

    transition: all 0.3s ease;

    box-shadow:
    0 12px 30px rgba(37,99,235,0.35);
}

/* SECONDARY */

.cta-secondary{
    padding: 16px 32px;

    border-radius: 16px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.12);

    color: white;

    text-decoration: none;

    font-weight: 700;

    transition: all 0.3s ease;
}

/* HOVER */

.cta-primary:hover,
.cta-secondary:hover{
    transform: translateY(-4px);
}

/* =========================
   RIGHT MINI CARDS
========================= */

.cta-card{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* MINI CARD */

.mini-card{
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 24px;

    min-width: 300px;

    border-radius: 24px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(14px);

    transition: all 0.35s ease;
}

/* HOVER */

.mini-card:hover{
    transform: translateY(-6px);

    background: rgba(255,255,255,0.12);
}

/* ICON */

.mini-icon{
    width: 60px;
    height: 60px;

    border-radius: 18px;

    background:
    linear-gradient(135deg,#fb923c,#fdba74);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 22px;
}

/* LABEL */

.mini-label{
    color: #94a3b8;

    font-size: 13px;
}

/* TITLE */

.mini-card h3{
    color: white;

    margin-top: 4px;

    font-size: 20px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:950px){

    .cta-container{
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-content h2{
        font-size: 42px;
    }

}

@media(max-width:600px){

    .fintech-cta{
        border-radius: 28px;
        padding: 80px 8%;
    }

    .cta-content h2{
        font-size: 34px;
    }

    .mini-card{
        min-width: 100%;
    }

}

/* =========================
   FOOTER FINTECH LIGHT
========================= */

.footer{
    position: relative;

    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);

    color: #0f172a;

    padding: 90px 8% 35px;

    border-top: 1px solid rgba(15,23,42,0.08);

    overflow: hidden;
}

/* =========================
   CONTAINER
========================= */

.footer-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
}

/* =========================
   TITLE
========================= */

.footer-box h3{
    font-size: 20px;
    margin-bottom: 18px;

    color: #0f172a;

    font-weight: 700;
}

/* TEXT */

.footer-box p{
    color: #475569;

    line-height: 1.7;

    margin-bottom: 12px;

    font-size: 14px;
}

/* ICONS */

.footer-box i{
    margin-right: 10px;

    color: #2563eb;

    font-size: 15px;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icons{
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.social-icons a{
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(37,99,235,0.08);

    color: #2563eb;

    transition: all 0.3s ease;

    border: 1px solid rgba(37,99,235,0.15);
}

/* HOVER */

.social-icons a:hover{
    background: #2563eb;
    color: white;

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(37,99,235,0.25);
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
    margin-top: 60px;

    text-align: center;

    border-top: 1px solid rgba(15,23,42,0.08);

    padding-top: 22px;

    color: #64748b;

    font-size: 13px;
}

/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float{
    position: fixed;

    bottom: 22px;
    right: 22px;

    width: 60px;
    height: 60px;

    background: #25d366;

    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.18);

    z-index: 999;

    transition: all 0.3s ease;
}

/* HOVER */

.whatsapp-float:hover{
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37,211,102,0.35);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:800px){

    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons{
        justify-content: center;
    }
}


/* =========================================
   MOBILE RESPONSIVE FIX
========================================= */

@media screen and (max-width: 768px){

    /* BODY */
    body{
        overflow-x:hidden;
    }

    /* HEADER */
    .header-top{
        padding: 10px 15px;
        height: 90px;
    }

    .logo img{
        height: 65px;
    }

    .header-actions{
        gap: 6px;
    }

    .login-btn{
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 12px;
    }

    .search-icon{
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* HERO */
    .hero{
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-container{
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-content h1{
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-content p{
        font-size: 17px;
        padding: 0 5px;
    }

    .hero-buttons{
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn{
        padding: 13px 24px;
        font-size: 15px;
    }

    .hero-image img{
        width: 230px;
    }

    /* WHO WE ARE */
    .who-classic{
        padding: 70px 20px;
    }

    .who-wrapper{
        flex-direction: column;
        gap: 50px;
    }

    .who-images{
        width: 100%;
        min-height: auto;
    }

    .img-main{
        height: 350px;
    }

    .img-small{
        width: 120px;
        height: 120px;
    }

    .top-img{
        top: -10px;
        right: 0;
    }

    .bottom-img{
        bottom: -10px;
        right: 0;
    }

    .who-content{
        text-align: center;
    }

    .who-content h2{
        font-size: 30px;
    }

    .who-features{
        grid-template-columns: 1fr;
    }

    /* PRODUCTS */
    .nos-produits{
        padding: 70px 20px;
    }

    .produits-title{
        font-size: 30px;
        margin-bottom: 40px;
    }

    .produit-box{
        width: 100%;
        padding: 30px 25px;
    }

    /* STATS */
    .stats-section{
        padding: 70px 20px;
    }

    .stats-container{
        flex-direction: column;
        align-items: center;
    }

    .stat-box{
        width: 100%;
        max-width: 320px;
    }

    /* TESTIMONIALS */
    .testimonial-slider{
        grid-template-columns: 1fr;
    }

    .testimonial-card{
        width: 100%;
    }

    .chat-top{
        align-items: flex-start;
        gap: 10px;
    }

    .chat-bubble{
        font-size: 14px;
    }

    /* WHY US */
    .why-us{
        padding: 70px 20px;
    }

    .why-grid{
        grid-template-columns: 1fr;
    }

    /* CTA */
    .fintech-cta{
        margin: 40px 15px;
        padding: 60px 25px;
    }

    .cta-container{
        flex-direction: column;
    }

    .cta-content{
        text-align: center;
    }

    .cta-content h2{
        font-size: 34px;
    }

    .cta-buttons{
        justify-content: center;
    }

    .mini-card{
        min-width: 100%;
    }

    /* FOOTER */
    .footer{
        padding: 70px 20px 30px;
    }

    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .social-icons{
        justify-content: center;
    }

    /* MENU */
    .main-menu{
        width: 85%;
    }

}



/* =========================================
   FIX MOBILE HERO + LOGO
========================================= */

@media screen and (max-width:768px){

    /* HEADER */
    .header-top{
        height: 95px;
        padding: 0 15px;
    }

    /* LOGO */
    .logo img{
        height: 75px !important;
        width: auto;
        display: block;
    }

    /* HERO */
    .hero{
        padding-top: 140px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-container{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        text-align:center;
        gap:30px;
    }

    /* HERO TEXT */
    .hero-content{
        width:100%;
        z-index:2;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.2;
        white-space:normal;
    }

    .hero-content p{
        font-size:18px;
        line-height:1.6;
    }

    /* TYPING EFFECT FIX */
    .typing{
        white-space:normal !important;
        overflow:visible !important;
        border-right:none !important;
        animation:none !important;
    }

    /* HERO IMAGE */
    .hero-image{
        width:100%;
        display:flex;
        justify-content:center;
        align-items:center;
    }

    .hero-image img{
        width:240px !important;
        max-width:90%;
        display:block;
        opacity:1 !important;
        visibility:visible !important;
    }

    /* BUTTONS */
    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

}


