:root{
    --primary:#3563ff;
    --secondary:#6c4dff;
    --gold:#f5b942;

    --dark:#071120;
    --dark2:#0d1729;

    --card:#111827;
    --text:#f8fafc;
    --muted:#94a3b8;

    --border:rgba(255,255,255,0.08);
}

/* =========================================
BODY
========================================= */

body{
    margin:0;
    padding:0;
    font-family:'Inter',sans-serif;
    background:#071120;
    color:#fff;
    overflow-x:hidden;
}

/* =========================================
NAVBAR
========================================= */

.main-navbar,
#topnav{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:rgba(7,17,32,0.82);
    backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

#topnav .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}



.navigation-menu{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
}

.navigation-menu li a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.navigation-menu li a:hover{
    color:var(--primary);
}

.buy-button{
    display:flex;
    gap:12px;
}

.buy-button a{
    height:46px;
    padding:0 22px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:700;
}

.btn-success{
    background:#0f172a;
    color:#fff;
}

.btn-primary{
    background:linear-gradient(135deg,#3563ff,#6c4dff);
    color:#fff;
}

/* =========================================
HERO
========================================= */

.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    padding-top:120px;

    background:
    radial-gradient(circle at top right,#3563ff33,transparent 30%),
    radial-gradient(circle at bottom left,#6c4dff22,transparent 30%),
    #071120;
}

.hero-title{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.hero-title span{
    background:linear-gradient(90deg,#3563ff,#6c4dff,#f5b942);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-subtitle{
    color:#94a3b8;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* =========================================
BUTTONS
========================================= */

.primary-btn,
.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:58px;
    padding:0 34px;
    border-radius:16px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.primary-btn{
    background:linear-gradient(135deg,#3563ff,#6c4dff);
    color:#fff;
}

.primary-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(53,99,255,0.3);
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.03);
    color:#fff;
}

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

.section-padding{
    padding:100px 0;
}

.section-heading{
    margin-bottom:60px;
}

.section-heading.center{
    text-align:center;
}

.section-heading span{
    color:#3563ff;
    font-weight:700;
}

.section-heading h2{
    font-size:52px;
    margin:15px 0;
}

.section-heading p{
    color:#94a3b8;
}

/* =========================================
STATS
========================================= */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stats-card{
    background:#0d1729;
    border-radius:28px;
    padding:35px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.05);
    transition:.3s;
}

.stats-card:hover{
    transform:translateY(-5px);
    border-color:#3563ff;
}

.stats-card h2{
    font-size:42px;
    margin-bottom:10px;
}

/* =========================================
PLANS
========================================= */
/* =========================================
   PLAN SLIDER
========================================= */





.plans-slider::-webkit-scrollbar{
    display:none;
}



/* =========================================
   SLIDER BUTTONS
========================================= */

.plan-nav{
    position:absolute;
    top:45%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:10;
    transition:0.3s;
}

.plan-nav:hover{
    background:#4f46e5;
}

.plan-prev{
    left:-10px;
}

.plan-next{
    right:-10px;
}

/* MOBILE */

/*@media(max-width:768px){

    .plan-card{
        min-width:280px;
        max-width:280px;
    }

    .plan-nav{
        display:none;
    }

}


.plan-card{
    background:#0d1729;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:40px 30px;
    position:relative;
    transition:.4s;
}

.plan-card:hover{
    transform:translateY(-8px);
    border-color:#3563ff;
    box-shadow:0 25px 60px rgba(53,99,255,0.18);
}

.plan-card.featured{
    border:2px solid #f5b942;
    transform:scale(1.03);
}

.plan-badge{
    position:absolute;
    top:20px;
    right:20px;
    background:#f5b942;
    color:#071120;
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.plan-price{
    font-size:48px;
    font-weight:800;
    margin:25px 0;
}

.plan-card ul{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.plan-card ul li{
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,0.05);
    color:#cbd5e1;
}*/

/* =========================================
FEATURES
========================================= */

.feature-grid,
.how-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.feature-card,
.how-card{
    background:#0d1729;
    border-radius:26px;
    padding:35px;
    border:1px solid rgba(255,255,255,0.05);
}

.how-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#3563ff,#6c4dff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.feature-card p,
.how-card p{
    color:#94a3b8;
    line-height:1.7;
}

/* =========================================
CTA
========================================= */

.cta-box{
    background:linear-gradient(135deg,#3563ff,#6c4dff);
    border-radius:40px;
    padding:80px;
    text-align:center;
}

.cta-box h2{
    font-size:54px;
    margin-bottom:20px;
}

.cta-box p{
    font-size:18px;
    color:#e2e8f0;
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

/* =========================================
FOOTER
========================================= */

.main-footer{
    background:#050b16;
    padding:80px 0 30px;
    border-top:1px solid rgba(255,255,255,0.05);
}

.footer-logo{
    margin-bottom:25px;
}

.footer-text{
    color:#94a3b8;
    line-height:1.8;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links li a{
    color:#94a3b8;
    text-decoration:none;
}

.footer-links li a:hover{
    color:#fff;
}

.copyright{
    text-align:center;
    margin-top:50px;
    color:#64748b;
}



/* =========================================
PLANS SLIDER FIXED
========================================= */

.plans-wrapper{
    position:relative;
    width:100%;
    padding:0 70px;
    overflow:hidden;
}

.plans-slider{
    display:flex;
    align-items:stretch;
    gap:24px;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;

    padding:10px 0 20px;

    scrollbar-width:none;
}

.plans-slider::-webkit-scrollbar{
    display:none;
}

/* =========================================
PLAN CARD
========================================= */

.plans-slider .plan-card{

    flex:0 0 calc((100% - 72px) / 4);

    min-width:calc((100% - 72px) / 4);

    max-width:calc((100% - 72px) / 4);

    scroll-snap-align:start;

}

/* =========================================
FEATURED CARD
========================================= */

.plan-card.featured{
    border:2px solid #f5b942;
    box-shadow:0 0 30px rgba(245,185,66,0.15);
}

/* =========================================
ARROWS
========================================= */

.plan-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:52px;
    height:52px;

    border:none;
    border-radius:50%;

    background:linear-gradient(135deg,#3563ff,#6c4dff);

    color:#fff;
    font-size:22px;

    cursor:pointer;
    z-index:50;

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

    transition:.3s;

    box-shadow:0 12px 30px rgba(53,99,255,0.25);
}

.plan-nav:hover{
    transform:translateY(-50%) scale(1.08);
}

.plan-prev{
    left:0;
}

.plan-next{
    right:0;
}

/* =========================================
LAPTOP
========================================= */

@media(max-width:1200px){

    .plans-slider .plan-card{

        flex:0 0 calc((100% - 48px) / 3);

        min-width:calc((100% - 48px) / 3);

        max-width:calc((100% - 48px) / 3);

    }

}

/* =========================================
TABLET
========================================= */

@media(max-width:992px){

    .plans-wrapper{
        padding:0 55px;
    }

    .plans-slider .plan-card{

        flex:0 0 calc((100% - 24px) / 2);

        min-width:calc((100% - 24px) / 2);

        max-width:calc((100% - 24px) / 2);

    }

}

/* =========================================
MOBILE
========================================= */

/*@media(max-width:768px){

    .plans-wrapper{
        padding:0 45px;
    }

    .plans-slider{
        gap:16px;
    }

    .plans-slider .plan-card{

        flex:0 0 100%;

        min-width:100%;

        max-width:100%;

    }

    .plan-nav{
        width:42px;
        height:42px;
        font-size:18px;
    }

}*/

/* =========================================
HEADER MODERN
========================================= */

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

.header-right{
    display:flex;
    align-items:center;
    gap:24px;
}

.accepted-coins{
    display:flex;
    align-items:center;
    gap:10px;
}

.accepted-coins span{
    color:#fff;
    font-size:14px;
    font-weight:600;
}

.accepted-coins img{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#111827;
    padding:6px;
    border:1px solid rgba(255,255,255,0.08);
}

.btn-login,
.btn-signup{
    height:46px;
    padding:0 26px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-login{
    border:1px solid #f5b942;
    color:#fff;
    background:transparent;
}

.btn-signup{
    background:#f5b942;
    color:#071120;
}

.btn-login:hover,
.btn-signup:hover{
    transform:translateY(-2px);
}

/* =========================================
HERO COINS
========================================= */

.hero-coins{
    margin-top:40px;
}

.hero-coins span{
    display:block;
    margin-bottom:18px;
    color:#fff;
    font-weight:700;
}

.coin-list{
    display:flex;
    gap:16px;
}

.coin-list img{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#111827;
    padding:10px;
    border:1px solid rgba(255,255,255,0.08);
}

/* =========================================
HERO IMAGE
========================================= */

.hero-dashboard-img{
    width:100%;
    max-width:620px;
    margin:auto;
    display:block;
    filter:drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}

/* =========================================
FEATURE CARD
========================================= */

.feature-card{
    min-height:260px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

/* =========================================
FOOTER MODERN
========================================= */

.main-footer{
    background:#050b16;
    border-top:1px solid rgba(255,255,255,0.05);
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:50px;
}



.footer-socials{
    display:flex;
    gap:14px;
    margin-top:25px;
}

.footer-socials a{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111827;
    color:#fff;
    text-decoration:none;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:14px;
    color:#94a3b8;
}

.footer-links li a{
    color:#94a3b8;
    text-decoration:none;
}

.footer-links li a:hover{
    color:#fff;
}

.copyright{
    border-top:1px solid rgba(255,255,255,0.05);
    margin-top:50px;
    padding-top:30px;
    text-align:center;
    color:#64748b;
}

/* =========================================
MOBILE
========================================= */

/*@media(max-width:992px){

    .accepted-coins{
        display:none;
    }

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

}

@media(max-width:768px){

    .hero-title{
        font-size:46px;
    }

    .navigation-menu{
        gap:16px;
    }

}*/


/* =====================================================
HEADER
===================================================== */

#topnav{
    padding:0;
}

#topnav .container{
    height:90px;
    max-width:1280px;
}



#navigation{
    margin-left:auto;
    margin-right:40px;
}

.navigation-menu{
    gap:38px;
}

.navigation-menu li a{
    font-size:15px;
    font-weight:600;
}

.buy-button{
    gap:14px;
}

.btn-login,
.btn-signup{
    height:48px;
    padding:0 28px;
    min-width:110px;
    border-radius:14px;
}

/* =====================================================
HERO
===================================================== */

.hero-section{
    min-height:auto;
    padding-top:180px;
    padding-bottom:120px;
}

.hero-section .row{
    align-items:center;
}

.hero-title{
    font-size:74px;
    line-height:1.05;
    max-width:620px;
    margin-bottom:28px;
}

.hero-subtitle{
    max-width:560px;
    font-size:18px;
    line-height:1.9;
    margin-bottom:38px;
}

.hero-buttons{
    margin-bottom:40px;
}

.hero-dashboard-img{
    max-width:720px;
    transform:translateX(30px);
}

/* =====================================================
WE ACCEPT
===================================================== */

.hero-coins{
    margin-top:10px;
}

.hero-coins span{
    font-size:16px;
    margin-bottom:18px;
}

.coin-list{
    gap:14px;
}

.coin-list img{
    width:58px;
    height:58px;
    padding:11px;
    border-radius:50%;
    background:#111827;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
}

/* =====================================================
STATS
===================================================== */

.stats-grid{
    gap:28px;
}

.stats-card{
    border-radius:24px;
    padding:38px 25px;
}

.stats-card h2{
    font-size:46px;
    margin-bottom:12px;
}

.stats-card p{
    margin:0;
    font-size:15px;
}

/* =====================================================
SECTION SPACING
===================================================== */

.section-padding{
    padding:120px 0;
}

.section-heading{
    margin-bottom:70px;
}

.section-heading h2{
    font-size:58px;
    line-height:1.1;
    margin-top:16px;
}

.section-heading p{
    font-size:17px;
}

/* =====================================================
PLAN SECTION
===================================================== */

#plans{
    padding-top:40px;
}

.plans-wrapper{
    margin-top:50px;
}

.plans-slider{
    gap:28px;
    padding:10px 0 30px;
}

.plans-slider .plan-card{
    flex:0 0 calc((100% - 84px) / 4);
    min-width:calc((100% - 84px) / 4);
    max-width:calc((100% - 84px) / 4);
}

.plan-card{
    border-radius:28px;
    padding:42px 32px;
    min-height:540px;
}

.plan-card h3{
    font-size:26px;
    margin-bottom:20px;
}

.plan-price{
    font-size:54px;
    margin:24px 0;
}

.plan-card ul li{
    padding:15px 0;
    font-size:15px;
}

.plan-btn{
    margin-top:20px;
    width:100%;
}

.plan-nav{
    width:58px;
    height:58px;
    top:50%;
}

.plan-prev{
    left:-18px;
}

.plan-next{
    right:-18px;
}

/* =====================================================
HOW IT WORKS
===================================================== */

.how-grid{
    gap:28px;
}

.how-card{
    border-radius:26px;
    padding:40px 32px;
    min-height:280px;
}

.how-card h3{
    font-size:28px;
    margin-bottom:16px;
}

.how-card p{
    font-size:15px;
    line-height:1.8;
}

/* =====================================================
FEATURES
===================================================== */

.feature-section{
    padding-top:20px;
}

.feature-grid{
    gap:28px;
}

.feature-card{
    border-radius:26px;
    padding:42px 34px;
    min-height:290px;
}

.feature-card h3{
    font-size:28px;
    line-height:1.2;
    margin-bottom:18px;
}

.feature-card p{
    font-size:16px;
    line-height:1.9;
}

/* =====================================================
CTA
===================================================== */

.cta-box{
    border-radius:40px;
    padding:90px 80px;
}

.cta-box h2{
    font-size:64px;
    line-height:1.1;
    margin-bottom:22px;
}

.cta-box p{
    font-size:20px;
    margin-bottom:40px;
}

/* =====================================================
FOOTER
===================================================== */

.main-footer{
    margin-top:80px;
    padding-top:90px;
}

.footer-grid{
    gap:80px;
    align-items:flex-start;
}



.footer-text{
    max-width:340px;
    font-size:16px;
    line-height:1.9;
}

.footer-grid h4{
    font-size:24px;
    margin-bottom:26px;
}

.footer-links li{
    margin-bottom:16px;
    font-size:16px;
}

.footer-socials{
    margin-top:30px;
}

.footer-socials a{
    width:46px;
    height:46px;
}

.copyright{
    margin-top:70px;
    padding-top:34px;
    font-size:15px;
}

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

/*@media(max-width:1200px){

    .hero-title{
        font-size:60px;
    }

    .plans-slider .plan-card{
        flex:0 0 calc((100% - 28px) / 2);
        min-width:calc((100% - 28px) / 2);
        max-width:calc((100% - 28px) / 2);
    }

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

}

@media(max-width:768px){

    .hero-section{
        padding-top:140px;
        text-align:center;
    }

    .hero-title{
        font-size:48px;
        max-width:100%;
    }

    .hero-subtitle{
        max-width:100%;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-coins{
        text-align:center;
    }

    .coin-list{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-dashboard-img{
        margin-top:60px;
        transform:none;
    }

    .stats-grid,
    .feature-grid,
    .how-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .plans-slider .plan-card{
        flex:0 0 100%;
        min-width:100%;
        max-width:100%;
    }

    .section-heading h2{
        font-size:40px;
    }

    .cta-box{
        padding:60px 30px;
    }

    .cta-box h2{
        font-size:42px;
    }

}*/

/* =====================================================
PREMIUM CTA
===================================================== */

.premium-cta-section{
    padding-top:40px;
    padding-bottom:40px;
}

.premium-cta-box{
    position:relative;
    overflow:hidden;

    padding:55px 80px;

    border-radius:34px;

    background:
    radial-gradient(circle at top,#f5b94222,transparent 30%),
    linear-gradient(135deg,#0c1322,#071120);

    border:1px solid rgba(245,185,66,0.12);

    box-shadow:
    0 25px 70px rgba(0,0,0,0.45);
}

.premium-cta-box::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(245,185,66,0.04),
        transparent
    );
}

.premium-cta-content{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.premium-cta-content h2{
    font-size:56px;
    line-height:1.15;
    margin-bottom:14px;
    font-weight:800;
}

.premium-cta-content h2 span{
    color:#f5b942;
}

.premium-cta-content p{
    font-size:18px;
    color:#d1d5db;
    margin:0;
}

.premium-cta-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    flex-shrink:0;
}

.premium-btn-primary,
.premium-btn-outline{
    min-width:210px;
    height:62px;

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

    border-radius:16px;

    font-size:17px;
    font-weight:700;
    text-decoration:none;

    transition:.3s;
}

.premium-btn-primary{
    background:#f5b942;
    color:#071120;
}

.premium-btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 40px rgba(245,185,66,0.35);
}

.premium-btn-outline{
    border:1px solid rgba(245,185,66,0.4);
    color:#fff;
    background:transparent;
}

.premium-btn-outline:hover{
    background:#f5b942;
    color:#071120;
}

.cta-coin-left,
.cta-coin-right{
    position:absolute;
    width:180px;
    z-index:1;
    opacity:.95;
}

.cta-coin-left{
    left:-25px;
    bottom:-20px;
}

.cta-coin-right{
    right:-20px;
    top:-15px;
}

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

/*@media(max-width:1200px){

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

    .premium-cta-content{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:768px){

    .stats-modern-grid{
        grid-template-columns:1fr;
    }

    .stats-modern-card{
        padding:28px 22px;
    }

    .stats-content h3{
        font-size:30px;
    }

    .premium-cta-box{
        padding:50px 28px;
    }

    .premium-cta-content h2{
        font-size:38px;
    }

    .premium-cta-buttons{
        width:100%;
        flex-direction:column;
    }

    .premium-btn-primary,
    .premium-btn-outline{
        width:100%;
        min-width:100%;
    }

    .cta-coin-left,
    .cta-coin-right{
        width:110px;
    }

}*/



/* =====================================================
SECTION HEADINGS
===================================================== */

.section-padding{
    padding:90px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:55px;
}

.section-heading span{
    display:block;
    color:#3563ff;
    font-size:14px;
    font-weight:700;
    margin-bottom:12px;
}

.section-heading h2{
    font-size:58px;
    line-height:1.15;
    font-weight:800;
    margin:0;
    color:#fff;
}

/* =====================================================
STATS SECTION
===================================================== */

.stats-modern-section{
    padding:20px 0 70px;
}

.stats-modern-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stats-modern-card{
    display:flex;
    align-items:center;
    gap:22px;

    padding:32px 26px;

    border-radius:26px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.03),
        rgba(255,255,255,0.01)
    );

    border:1px solid rgba(245,185,66,0.12);

    transition:.35s ease;

    overflow:hidden;
}

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

    border-color:rgba(245,185,66,0.35);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.35);
}

.stats-icon{
    width:74px;
    height:74px;
    min-width:74px;

    border-radius:22px;

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

    background:
    linear-gradient(
        135deg,
        rgba(245,185,66,0.20),
        rgba(245,185,66,0.06)
    );

    border:1px solid rgba(245,185,66,0.22);
}

.stats-icon i{
    font-size:28px !important;
    color:#f5b942 !important;

    display:block !important;
    visibility:visible !important;
    opacity:1 !important;

    font-family:"Font Awesome 6 Free","Font Awesome 5 Free" !important;
    font-weight:900 !important;
}

.stats-content h3{
    margin:0 0 6px;

    font-size:42px;
    line-height:1;

    font-weight:800;
    color:#fff;

    white-space:nowrap;
}

.stats-content p{
    margin:0;
    color:#d1d5db;
    font-size:16px;
}

/* =====================================================
PLANS
===================================================== */

#plans{
    padding-top:20px;
    padding-bottom:90px;
}

.plans-wrapper{
    position:relative;
    padding:0 60px;
}

.plans-slider{
    display:flex;
    gap:26px;

    overflow-x:auto;
    overflow-y:hidden;

    scrollbar-width:none;

    padding:10px 0 25px;

    scroll-behavior:smooth;
}

.plans-slider::-webkit-scrollbar{
    display:none;
}

.plans-slider .plan-card{
    flex:0 0 calc((100% - 78px) / 4);
    min-width:calc((100% - 78px) / 4);
}

.plan-card{
    background:#0d1729;

    border:1px solid rgba(255,255,255,0.08);

    border-radius:30px;

    padding:42px 30px;

    min-height:520px;

    transition:.35s ease;
}

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

.plan-card.featured{
    border:2px solid #f5b942;

    box-shadow:
    0 0 35px rgba(245,185,66,0.12);
}

.plan-price{
    font-size:56px;
    font-weight:800;
}

.plan-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:54px;
    height:54px;

    border:none;
    border-radius:50%;

    background:linear-gradient(135deg,#3563ff,#6c4dff);

    color:#fff;
    font-size:22px;

    z-index:30;
}

.plan-prev{
    left:0;
}

.plan-next{
    right:0;
}

/* =====================================================
HOW IT WORKS
===================================================== */

.how-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.how-card{
    background:#0d1729;

    border-radius:26px;

    padding:38px 30px;

    border:1px solid rgba(255,255,255,0.05);

    min-height:250px;
}

.how-card h3{
    font-size:28px;
    margin:18px 0 16px;
}

.how-card p{
    color:#94a3b8;
    line-height:1.8;
}

/* =====================================================
FEATURE SECTION
===================================================== */

.feature-section{
    padding-top:10px;
    padding-bottom:70px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.feature-card{
    background:#0d1729;

    border:1px solid rgba(255,255,255,0.06);

    border-radius:28px;

    padding:38px 30px;

    min-height:250px;

    transition:.35s ease;
}

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

    border-color:rgba(245,185,66,0.18);
}

.feature-card h3{
    font-size:24px;
    line-height:1.3;
    margin-bottom:18px;
}

.feature-card p{
    color:#94a3b8;
    line-height:1.8;
    font-size:16px;
}

/* =====================================================
PREMIUM CTA
===================================================== */

.premium-cta-section{
    padding-top:20px;
    padding-bottom:20px;
}

.premium-cta-box{
    position:relative;

    overflow:hidden;

    border-radius:34px;

    padding:55px 70px;

    background:
    radial-gradient(circle at top,#f5b94222,transparent 30%),
    linear-gradient(135deg,#0c1322,#071120);

    border:1px solid rgba(245,185,66,0.12);
}

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

    position:relative;
    z-index:2;
}

.premium-cta-content h2{
    font-size:56px;
    line-height:1.12;
    margin-bottom:14px;
    font-weight:800;
}

.premium-cta-content h2 span{
    color:#f5b942;
}

.premium-cta-content p{
    color:#d1d5db;
    font-size:18px;
    margin:0;
}

.premium-cta-buttons{
    display:flex;
    gap:18px;
}

.premium-btn-primary,
.premium-btn-outline{
    min-width:190px;
    height:58px;

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

    border-radius:16px;

    text-decoration:none;
    font-weight:700;
}

.premium-btn-primary{
    background:#f5b942;
    color:#071120;
}

.premium-btn-outline{
    border:1px solid rgba(245,185,66,0.4);
    color:#fff;
}

.cta-coin-left{
    position:absolute;
    left:-20px;
    bottom:-20px;
    width:170px;
}

.cta-coin-right{
    position:absolute;
    right:-15px;
    top:-10px;
    width:160px;
}

/* =====================================================
FOOTER
===================================================== */

.main-footer{
    background:#050b16;

    padding:80px 0 30px;

    border-top:1px solid rgba(255,255,255,0.05);
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:55px;
}



.footer-text{
    color:#94a3b8;
    line-height:1.9;
    max-width:320px;
}

.footer-grid h4{
    font-size:22px;
    margin-bottom:24px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:15px;
    color:#94a3b8;
}

.footer-links li a{
    color:#94a3b8;
    text-decoration:none;
}

.footer-links li a:hover{
    color:#fff;
}

/* ---------- SOCIAL ICONS ---------- */

.footer-socials{
    display:flex !important;
    gap:14px;
    margin-top:28px;
}

.footer-socials a{
    width:44px;
    height:44px;

    border-radius:12px;

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

    background:#111827;

    border:1px solid rgba(255,255,255,0.06);

    text-decoration:none;

    transition:.3s;
}

.footer-socials a:hover{
    background:#3563ff;
    transform:translateY(-4px);
}

.footer-socials i{
    color:#fff !important;

    font-size:18px !important;

    display:block !important;
    visibility:visible !important;
    opacity:1 !important;

    font-family:"Font Awesome 6 Brands","Font Awesome 5 Brands" !important;
    font-weight:400 !important;
}

/* ---------- COPYRIGHT ---------- */

.copyright{
    margin-top:60px;
    padding-top:26px;

    border-top:1px solid rgba(255,255,255,0.05);

    text-align:center;

    color:#64748b;
}

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

/*@media(max-width:1200px){

    .stats-modern-grid,
    .feature-grid,
    .how-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .plans-slider .plan-card{
        flex:0 0 calc((100% - 26px) / 2);
        min-width:calc((100% - 26px) / 2);
    }

}

@media(max-width:768px){

    .section-heading h2{
        font-size:38px;
    }

    .stats-modern-grid,
    .feature-grid,
    .how-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .stats-content h3{
        font-size:34px;
    }

    .plans-wrapper{
        padding:0 40px;
    }

    .plans-slider .plan-card{
        flex:0 0 100%;
        min-width:100%;
    }

    .premium-cta-content{
        flex-direction:column;
        text-align:center;
    }

    .premium-cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .premium-btn-primary,
    .premium-btn-outline{
        width:100%;
    }

    .premium-cta-content h2{
        font-size:40px;
    }

    .footer-grid{
        gap:40px;
    }

}*/
/* =====================================================
ABOUT PAGE MODERN UI
===================================================== */

/* HERO */

.bg-half{
    padding-top:180px;
    padding-bottom:110px;

    background:
    radial-gradient(circle at top right,#3563ff22,transparent 30%),
    radial-gradient(circle at bottom left,#6c4dff22,transparent 30%),
    #071120 !important;

    position:relative;
}

.bg-half .title{
    font-size:64px;
    font-weight:800;
    color:#fff;
    margin-bottom:0;
}

.page-next-level{
    position:relative;
    z-index:2;
}

.shape{
    display:none;
}

/* MAIN SECTION */

.section{
    background:#071120;
    padding:100px 0;
}

.section-title h4{
    font-size:48px;
    font-weight:800;
    color:#fff;
    margin-bottom:30px;
}

.section-title p{
    color:#94a3b8 !important;
    line-height:1.9;
    font-size:16px;
}

/* ABOUT IMAGE */

.section img.rounded{
    border-radius:32px !important;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.45);
}

/* FEATURES TITLE */

.section-title.mb-4.pb-2{
    margin-bottom:60px !important;
}

.section-title.mb-4.pb-2 h4{
    font-size:56px;
    margin-bottom:18px;
}

/* FEATURE CARDS */

.key-feature{
    background:#0d1729 !important;

    border:1px solid rgba(255,255,255,0.06);

    border-radius:24px !important;

    padding:30px 24px !important;

    min-height:120px;

    transition:.35s ease;

    box-shadow:none !important;
}

.key-feature:hover{
    transform:translateY(-6px);

    border-color:rgba(245,185,66,0.18);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.35);
}

/* FEATURE ICON */

.key-feature .icon{
    width:68px;
    height:68px;

    min-width:68px;

    border-radius:20px !important;

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

    background:
    linear-gradient(
        135deg,
        rgba(53,99,255,0.18),
        rgba(108,77,255,0.12)
    );

    border:1px solid rgba(53,99,255,0.20);
}

.key-feature .icon svg{
    width:28px;
    height:28px;

    stroke:#f5b942 !important;
}

/* FEATURE TEXT */

.key-feature .content h4{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin:0;
    line-height:1.5;
}

/* REMOVE WHITE BG */

.bg-light{
    background:#071120 !important;
}

.bg-white{
    background:#0d1729 !important;
}

/* TEXT COLORS */

.text-dark{
    color:#fff !important;
}

.text-muted{
    color:#94a3b8 !important;
}

.text-primary{
    color:#f5b942 !important;
}

/* SPACING */

.mt-100{
    margin-top:100px !important;
}

/* RESPONSIVE */

/*@media(max-width:991px){

    .bg-half{
        padding-top:150px;
        padding-bottom:90px;
    }

    .bg-half .title{
        font-size:48px;
    }

    .section-title h4{
        font-size:38px;
    }

    .section-title.mb-4.pb-2 h4{
        font-size:42px;
    }

}

@media(max-width:768px){

    .bg-half{
        padding-top:140px;
        padding-bottom:70px;
    }

    .bg-half .title{
        font-size:40px;
    }

    .section{
        padding:70px 0;
    }

    .section-title{
        margin-top:40px;
    }

    .section-title h4{
        font-size:34px;
    }

    .section-title.mb-4.pb-2 h4{
        font-size:36px;
    }

    .key-feature{
        min-height:auto;
    }

}*/
/* =====================================================
SERVICES / BUSINESS PAGE UI
===================================================== */

/* HERO */

.bg-half{
    padding-top:180px;
    padding-bottom:110px;

    background:
    radial-gradient(circle at top right,#3563ff22,transparent 30%),
    radial-gradient(circle at bottom left,#6c4dff22,transparent 30%),
    #071120 !important;
}

.bg-half .title{
    font-size:64px;
    font-weight:800;
    color:#fff;
    margin-bottom:0;
}

.shape{
    display:none;
}

/* SECTION */

.section{
    background:#071120;
    padding:100px 0;
}

/* SERVICES BOX */

.services-plan{
    margin-bottom:32px;
}

.services-plan h1{
    margin:0;

    padding:24px 30px !important;

    border-radius:26px;

    font-size:34px !important;
    font-weight:800;

    color:#fff !important;

    background:
    linear-gradient(
        135deg,
        rgba(53,99,255,0.18),
        rgba(108,77,255,0.12)
    ) !important;

    border:1px solid rgba(53,99,255,0.20);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.35);

    backdrop-filter:blur(20px);

    text-align:left !important;
}

/* TABLE */

.table-responsive{
    margin-top:24px;

    background:#0d1729 !important;

    border-radius:28px !important;

    border:1px solid rgba(255,255,255,0.06);

    overflow:hidden;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.35) !important;
}

.table{
    margin:0 !important;
    color:#fff;
}

.table tr{
    border:none !important;
}

.table th{
    background:
    linear-gradient(
        135deg,
        rgba(53,99,255,0.22),
        rgba(108,77,255,0.12)
    ) !important;

    color:#fff !important;

    font-size:18px;
    font-weight:700;

    padding:22px 20px !important;

    border:none !important;

    text-transform:uppercase;

    letter-spacing:.5px;

    text-align:center;
}

.table td{
    padding:20px !important;

    border-top:1px solid rgba(255,255,255,0.05) !important;

    color:#dbe4ff;

    font-size:17px;

    background:transparent !important;

    text-align:center;
}

.table tbody tr:hover td{
    background:rgba(255,255,255,0.02) !important;
}

.table td:last-child{
    color:#f5b942;
    font-weight:700;
}

/* REMOVE OLD BOOTSTRAP */

.bg-info{
    background:transparent !important;
}

.bg-white{
    background:#0d1729 !important;
}

.shadow{
    box-shadow:none !important;
}

.mt-2{
    margin-top:30px !important;
}

/* RESPONSIVE */

/*@media(max-width:991px){

    .bg-half{
        padding-top:150px;
        padding-bottom:90px;
    }

    .bg-half .title{
        font-size:48px;
    }

    .services-plan h1{
        font-size:28px !important;
    }

}

@media(max-width:768px){

    .bg-half{
        padding-top:140px;
        padding-bottom:70px;
    }

    .bg-half .title{
        font-size:40px;
    }

    .section{
        padding:70px 0;
    }

    .services-plan h1{
        font-size:22px !important;
        padding:20px !important;
        border-radius:22px;
    }

    .table th,
    .table td{
        padding:16px 12px !important;
        font-size:15px;
    }

    .table-responsive{
        border-radius:22px !important;
    }

}*/

/* =====================================================
CONTACT PAGE PREMIUM UI
===================================================== */

/* CONTACT WRAPPER */

.contact-modern-section{
    position:relative;
}

/* CONTACT CARD */

.contact-modern-section .card.shadow.rounded{
    background:
    linear-gradient(
        135deg,
        rgba(13,23,41,0.95),
        rgba(7,17,32,0.96)
    ) !important;

    border:1px solid rgba(255,255,255,0.06) !important;

    border-radius:34px !important;

    overflow:hidden;

    box-shadow:
    0 25px 70px rgba(0,0,0,0.45) !important;

    backdrop-filter:blur(20px);

    padding:10px;
}

.contact-modern-section .card-body{
    padding:45px !important;
}

/* TITLE */

.contact-modern-section .card-title{
    font-size:42px;
    font-weight:800;
    color:#fff;
    margin-bottom:10px;
}

/* FORM */

.contact-modern-section .form-group{
    margin-bottom:24px;
}

.contact-modern-section label{
    color:#dbe4ff;
    font-weight:600;
    margin-bottom:10px;
    display:block;
}

.contact-modern-section .form-control{
    height:60px;

    border-radius:18px !important;

    border:1px solid rgba(255,255,255,0.08) !important;

    background:#111827 !important;

    color:#fff !important;

    padding-left:56px !important;

    font-size:15px;

    transition:.3s;
}

.contact-modern-section textarea.form-control{
    height:160px !important;
    padding-top:18px;
    resize:none;
}

.contact-modern-section .form-control:focus{
    border-color:#3563ff !important;

    box-shadow:
    0 0 0 4px rgba(53,99,255,0.12) !important;
}

/* ICONS */

.contact-modern-section .icons{
    position:absolute;

    top:50%;
    left:18px;

    transform:translateY(-50%);

    width:18px;
    height:18px;

    color:#f5b942;
}

.contact-modern-section textarea + .icons{
    top:26px;
    transform:none;
}

/* BUTTON */

.contact-modern-section .submitBnt{
    height:58px;

    border:none !important;

    border-radius:16px !important;

    background:
    linear-gradient(
        135deg,
        #3563ff,
        #6c4dff
    ) !important;

    color:#fff !important;

    font-size:16px;
    font-weight:700;

    transition:.3s;
}

.contact-modern-section .submitBnt:hover{
    transform:translateY(-3px);

    box-shadow:
    0 20px 40px rgba(53,99,255,0.35);
}

/* ALERTS */

.contact-modern-section .alert-success,
.contact-modern-section .alert-danger,
.contact-modern-section .notice{
    border:none !important;

    border-radius:16px;

    padding:16px 18px;

    margin-bottom:22px;
}

.contact-modern-section .alert-success{
    background:#0f2f24 !important;
    color:#6ee7b7 !important;
}

.contact-modern-section .alert-danger{
    background:#3b1117 !important;
    color:#fca5a5 !important;
}

.contact-modern-section .notice{
    background:#172554 !important;
    color:#bfdbfe !important;
}

/* IMAGE */

.contact-modern-section img.img-fluid{
    width:100%;
    max-width:650px;

    margin:auto;

    filter:
    drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}

/* MAP */

.contact-modern-section .map iframe{
    width:100%;
    height:500px;

    border:none !important;

    filter:grayscale(1) invert(.92) contrast(1.1);
}

/* REMOVE OLD BOOTSTRAP */

.contact-modern-section .border-0{
    border:none !important;
}

.contact-modern-section .shadow{
    box-shadow:none !important;
}

.contact-modern-section .bg-white{
    background:transparent !important;
}

/* RESPONSIVE */

/*@media(max-width:991px){

    .contact-modern-section .card-body{
        padding:35px !important;
    }

    .contact-modern-section .card-title{
        font-size:34px;
    }

}

@media(max-width:768px){

    .contact-modern-section .card-body{
        padding:28px !important;
    }

    .contact-modern-section .card-title{
        font-size:28px;
    }

    .contact-modern-section .form-control{
        height:56px;
    }

    .contact-modern-section .map iframe{
        height:340px;
    }

}*/
/* =========================================
FOOTER ICON FINAL FIX
========================================= */

.footer-socials{
    display:flex !important;
    align-items:center;
    gap:14px;
}

.footer-socials a{
    width:46px;
    height:46px;

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

    border-radius:14px;

    background:#111827 !important;

    color:#fff !important;

    text-decoration:none;

    border:1px solid rgba(255,255,255,0.08);

    transition:.3s;
}

.footer-socials a:hover{
    background:#3563ff !important;
    transform:translateY(-4px);
}

.footer-socials i{
    display:block !important;

    font-size:18px !important;

    line-height:1 !important;

    color:#fff !important;

    opacity:1 !important;

    visibility:visible !important;

    font-style:normal !important;

    font-family:"Font Awesome 6 Brands" !important;

    font-weight:400 !important;
}


/* =========================================================
GLOBAL SECTION SPACING
========================================================= */

.section-padding{
    padding:70px 0 !important;
}

.section-heading{
    margin-bottom:40px !important;
}

.section-heading span{
    font-size:13px !important;
    letter-spacing:1px;
    margin-bottom:8px !important;
}

.section-heading h2{
    font-size:52px !important;
    line-height:1.1 !important;
    margin:0 !important;
}

/* =========================================================
HERO
========================================================= */

.hero-section{
    padding-top:130px !important;
    padding-bottom:50px !important;
    min-height:auto !important;
}

.hero-title{
    font-size:78px !important;
    line-height:1.02 !important;
    max-width:650px;
    margin-bottom:24px !important;
}

.hero-subtitle{
    font-size:18px !important;
    line-height:1.8 !important;
    max-width:580px;
    margin-bottom:32px !important;
}

.hero-buttons{
    margin-bottom:34px !important;
}

.hero-dashboard-img{
    max-width:880px !important;
    transform:translateX(20px);
}

/* =========================================================
WE ACCEPT
========================================================= */

.hero-coins{
    margin-top:0 !important;
}

.hero-coins span{
    font-size:16px;
    margin-bottom:14px !important;
}

.coin-list{
    gap:12px !important;
}

.coin-list img{
    width:50px !important;
    height:50px !important;
    padding:9px !important;
}

/* =========================================================
STATS
========================================================= */

.stats-modern-section{
    padding-top:0 !important;
    padding-bottom:40px !important;
}

.stats-modern-grid{
    gap:20px !important;
}

.stats-modern-card{
    min-height:120px !important;

    padding:24px 24px !important;

    border-radius:22px !important;

    gap:18px !important;
}

.stats-icon{
    width:62px !important;
    height:62px !important;
    min-width:62px !important;

    border-radius:18px !important;
}

.stats-icon i{
    font-size:24px !important;
}

.stats-content h3{
    font-size:34px !important;
    margin-bottom:5px !important;
}

.stats-content p{
    font-size:15px !important;
}

/* =========================================================
PLANS
========================================================= */

#plans{
    padding-top:10px !important;
    padding-bottom:65px !important;
}

.plans-wrapper{
    padding:0 48px !important;
}

.plans-slider{
    gap:22px !important;
    padding-bottom:10px !important;
}

.plans-slider .plan-card{
    flex:0 0 calc((100% - 88px) / 5) !important;
    min-width:calc((100% - 88px) / 5) !important;
    max-width:calc((100% - 88px) / 5) !important;
}

.plan-card{
    min-height:420px !important;

    padding:28px 24px !important;

    border-radius:22px !important;
}

.plan-card h3{
    font-size:22px !important;
    margin-bottom:12px !important;
}

.plan-price{
    font-size:58px !important;
    margin:12px 0 14px !important;
}

.plan-card ul{
    margin-bottom:20px !important;
}

.plan-card ul li{
    padding:10px 0 !important;
    font-size:14px !important;
}

.plan-btn,
.plan-card .btn{
    height:46px !important;
    border-radius:12px !important;
    font-size:15px !important;
}

.plan-nav{
    width:48px !important;
    height:48px !important;
    font-size:18px !important;
}




/* =========================================================
HOW IT WORKS
========================================================= */

.how-grid{
    gap:22px !important;
}

.how-card{
    min-height:220px !important;

    padding:28px 24px !important;

    border-radius:22px !important;
}

.how-icon{
    width:58px !important;
    height:58px !important;

    border-radius:16px !important;

    margin-bottom:18px !important;

    font-size:22px !important;
}

.how-card h3{
    font-size:24px !important;
    margin-bottom:12px !important;
}

.how-card p{
    font-size:14px !important;
    line-height:1.7 !important;
}

/* =========================================================
FEATURES
========================================================= */

.feature-section{
    padding-top:0 !important;
    padding-bottom:55px !important;
}

.feature-grid{
    gap:22px !important;
}

.feature-card{
    min-height:220px !important;

    padding:28px 24px !important;

    border-radius:22px !important;
}

.feature-card h3{
    font-size:24px !important;
    margin-bottom:12px !important;
}

.feature-card p{
    font-size:14px !important;
    line-height:1.7 !important;
}

/* =========================================================
CTA
========================================================= */

.premium-cta-section{
    padding-top:10px !important;
    padding-bottom:10px !important;
}

.premium-cta-box{
    border-radius:28px !important;

    padding:42px 60px !important;
}

.premium-cta-content h2{
    font-size:54px !important;
    line-height:1.08 !important;
    margin-bottom:10px !important;
}

.premium-cta-content p{
    font-size:16px !important;
}

.premium-btn-primary,
.premium-btn-outline{
    height:52px !important;

    min-width:180px !important;

    border-radius:14px !important;
}

/* =========================================================
FOOTER
========================================================= */

.main-footer{
    margin-top:40px !important;
    padding-top:60px !important;
}

.footer-grid{
    gap:45px !important;
}



.footer-grid h4{
    font-size:20px !important;
    margin-bottom:18px !important;
}

.footer-links li{
    margin-bottom:12px !important;
    font-size:15px !important;
}

.footer-text{
    font-size:15px !important;
    line-height:1.8 !important;
}

.footer-socials{
    margin-top:20px !important;
}

.footer-socials a{
    width:40px !important;
    height:40px !important;
}

.copyright{
    margin-top:45px !important;
    padding-top:22px !important;
    font-size:14px !important;
}

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

/*@media(max-width:1200px){

    .plans-slider .plan-card{
        flex:0 0 calc((100% - 44px) / 3) !important;
        min-width:calc((100% - 44px) / 3) !important;
        max-width:calc((100% - 44px) / 3) !important;
    }

}

@media(max-width:768px){

    .hero-title{
        font-size:48px !important;
    }

    .section-heading h2{
        font-size:38px !important;
    }

    .stats-modern-grid,
    .feature-grid,
    .how-grid,
    .footer-grid{
        grid-template-columns:1fr !important;
    }

    .plans-slider .plan-card{
        flex:0 0 100% !important;
        min-width:100% !important;
        max-width:100% !important;
    }

    .premium-cta-content{
        flex-direction:column !important;
        text-align:center !important;
    }

    .premium-cta-buttons{
        width:100%;
        flex-direction:column;
    }

    .premium-btn-primary,
    .premium-btn-outline{
        width:100%;
    }

}*/
/* =========================================================
FINAL CLEAN UI SYSTEM
========================================================= */

.container{
    max-width:1380px;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* =========================================================
HEADER
========================================================= */

#topnav{
    height:90px;
    display:flex;
    align-items:center;
    background:rgba(7,17,32,.88);
    backdrop-filter:blur(20px);
}

#topnav .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:90px;
}

.site-logo,
.logo{
    display:flex;
    align-items:center;
    height:90px;
}



.navigation-menu{
    gap:34px;
}

.navigation-menu li a{
    font-size:15px;
    font-weight:600;
}

/* =========================================================
HERO
========================================================= */

.hero-section{
    padding-top:135px;
    padding-bottom:55px;
    min-height:auto;
}

.hero-title{
    font-size:78px;
    line-height:1.02;
    font-weight:800;
    margin-bottom:24px;
}

.hero-subtitle{
    max-width:580px;
    font-size:18px;
    line-height:1.8;
    margin-bottom:32px;
}

.hero-dashboard-img{
    max-width:880px;
    margin:auto;
}

.coin-list{
    gap:12px;
}

.coin-list img{
    width:50px;
    height:50px;
    padding:9px;
}

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

.section-padding{
    padding:70px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:42px;
}

.section-heading span{
    display:block;
    color:#3563ff;
    font-size:13px;
    font-weight:700;
    margin-bottom:8px;
}

.section-heading h2{
    font-size:52px;
    line-height:1.1;
    font-weight:800;
    margin:0;
}

/* =========================================================
STATS
========================================================= */

.stats-modern-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stats-modern-card{
    display:flex;
    align-items:center;
    gap:18px;

    padding:24px;

    min-height:120px;

    border-radius:22px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.03),
        rgba(255,255,255,.01)
    );

    border:1px solid rgba(245,185,66,.12);

    transition:.35s;
}

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

.stats-icon{
    width:62px;
    height:62px;
    min-width:62px;

    border-radius:18px;

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

    background:
    linear-gradient(
        135deg,
        rgba(245,185,66,.18),
        rgba(245,185,66,.06)
    );
}

.stats-icon i{
    color:#f5b942;
    font-size:24px;
}

.stats-content h3{
    margin:0 0 5px;
    font-size:34px;
    font-weight:800;
}

.stats-content p{
    margin:0;
    font-size:15px;
    color:#d1d5db;
}

/* =========================================================
PLANS
========================================================= */

.plans-wrapper{
    position:relative;
    padding:0 48px;
}

.plans-slider{
    display:flex;
    gap:22px;

    overflow-x:auto;

    scrollbar-width:none;

    padding-bottom:10px;
}

.plans-slider::-webkit-scrollbar{
    display:none;
}

.plans-slider .plan-card{
    flex:0 0 calc((100% - 88px) / 5);
    min-width:calc((100% - 88px) / 5);
}

.plan-card{
    min-height:420px;

    padding:28px 24px;

    border-radius:22px;

    background:#0d1729;

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

    transition:.35s;
}

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

.plan-card.featured{
    border:2px solid #f5b942;
}

.plan-price{
    font-size:58px;
    font-weight:800;
}

.plan-nav{
    width:48px;
    height:48px;

    border-radius:50%;

    background:linear-gradient(135deg,#3563ff,#6c4dff);

    color:#fff;
}

/* =========================================================
FEATURES + HOW
========================================================= */

.feature-grid,
.how-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.feature-card,
.how-card{
    background:#0d1729;

    border-radius:22px;

    padding:28px 24px;

    min-height:220px;

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

    transition:.35s;
}

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

.feature-card h3,
.how-card h3{
    font-size:24px;
    margin-bottom:12px;
}

.feature-card p,
.how-card p{
    font-size:14px;
    line-height:1.7;
    color:#94a3b8;
}

/* =========================================================
CTA
========================================================= */

.premium-cta-box{
    position:relative;

    overflow:hidden;

    padding:42px 60px;

    border-radius:28px;

    background:
    radial-gradient(circle at top,#f5b94222,transparent 30%),
    linear-gradient(135deg,#0c1322,#071120);

    border:1px solid rgba(245,185,66,.12);
}

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

.premium-cta-content h2{
    font-size:54px;
    line-height:1.08;
    margin-bottom:10px;
    font-weight:800;
}

.premium-cta-content h2 span{
    color:#f5b942;
}

.premium-btn-primary,
.premium-btn-outline{
    height:52px;
    min-width:180px;

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

    border-radius:14px;

    font-weight:700;

    text-decoration:none;
}

.premium-btn-primary{
    background:#f5b942;
    color:#071120;
}

.premium-btn-outline{
    border:1px solid rgba(245,185,66,.4);
    color:#fff;
}

/* =========================================================
FOOTER
========================================================= */

.main-footer{
    padding:60px 0 25px;
    margin-top:40px;

    background:#050b16;

    border-top:1px solid rgba(255,255,255,.05);
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:45px;
}



.footer-text{
    max-width:320px;
    font-size:15px;
    line-height:1.8;
    color:#94a3b8;
}

.footer-grid h4{
    font-size:20px;
    margin-bottom:18px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links li a{
    color:#94a3b8;
    text-decoration:none;
}

.footer-links li a:hover{
    color:#fff;
}

/* SOCIAL */

.footer-socials{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:20px;
}

.footer-socials a{
    width:40px;
    height:40px;

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

    border-radius:12px;

    background:#111827;

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

    transition:.3s;
}

.footer-socials a:hover{
    background:#3563ff;
    transform:translateY(-4px);
}

.footer-socials i{
    font-size:17px;
    color:#fff;
}

.copyright{
    text-align:center;

    margin-top:45px;
    padding-top:22px;

    border-top:1px solid rgba(255,255,255,.05);

    color:#64748b;
}

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

/*@media(max-width:1200px){

    .plans-slider .plan-card{
        flex:0 0 calc((100% - 44px) / 3);
        min-width:calc((100% - 44px) / 3);
    }

    .stats-modern-grid,
    .feature-grid,
    .how-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    #topnav{
        height:76px;
    }

    #topnav .container{
        height:76px;
    }

    .site-logo img,
    .logo img{
        height:40px;
    }

    .hero-title{
        font-size:48px;
    }

    .section-heading h2{
        font-size:38px;
    }

    .stats-modern-grid,
    .feature-grid,
    .how-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .plans-slider .plan-card{
        flex:0 0 100%;
        min-width:100%;
    }

    .premium-cta-content{
        flex-direction:column;
        text-align:center;
    }

}*/
/* =========================================================
LOGO FINAL SIZE
========================================================= */

.site-logo,
.logo{
    display:flex !important;
    align-items:center !important;
    height:120px !important;
}

.site-logo img,
.logo img{
    height:150px !important;
    width:auto !important;
    max-width:none !important;
    object-fit:contain !important;
    display:block !important;
}

/* FOOTER LOGO */

.footer-logo-img{
    height:150px !important;
    width:auto !important;
    max-width:none !important;
    object-fit:contain !important;
    display:block !important;
    margin-bottom:20px !important;
}

/* MOBILE */
/*
@media(max-width:768px){

    #topnav{
        height:88px !important;
    }

    #topnav .container{
        height:88px !important;
    }

    .site-logo,
    .logo{
        height:88px !important;
    }

    .site-logo img,
    .logo img{
        height:64px !important;
    }

    .footer-logo-img{
        height:64px !important;
    }

}*/

/* =====================================================
FINAL MOBILE FIX
===================================================== */

@media only screen and (max-width:768px){

    .container{
        padding-left:15px !important;
        padding-right:15px !important;
    }

    /* HEADER */

    #topnav{
        height:auto !important;
        padding:10px 0 !important;
    }

    #topnav .container{
        flex-wrap:wrap !important;
        height:auto !important;
    }

    .logo img{
        max-width:100px !important;
        width:100px !important;
        height:auto !important;
    }

    .navigation-menu{
        gap:12px !important;
        justify-content:center !important;
        flex-wrap:wrap !important;
    }

    .navigation-menu li a{
        font-size:12px !important;
    }

    .btn-login,
    .btn-signup{
        min-width:85px !important;
        height:38px !important;
        font-size:12px !important;
        padding:0 12px !important;
    }

    /* HERO */

    .hero-section{
        padding-top:120px !important;
        padding-bottom:30px !important;
        text-align:center !important;
    }

    .hero-title{
        font-size:54px !important;
        line-height:1.1 !important;
        max-width:100% !important;
    }

    .hero-subtitle{
        font-size:14px !important;
        line-height:1.7 !important;
        max-width:100% !important;
    }

    .hero-buttons{
        flex-direction:column !important;
        gap:12px !important;
    }

    .primary-btn,
    .secondary-btn{
        width:100% !important;
        max-width:260px !important;
        margin:auto !important;
    }

    .hero-dashboard-img{
        margin-top:25px !important;
        max-width:100% !important;
        transform:none !important;
    }

    .coin-list{
        justify-content:center !important;
        flex-wrap:wrap !important;
    }

    /* STATS */

    .stats-modern-grid{
        grid-template-columns:1fr !important;
        gap:15px !important;
    }

    .stats-modern-card{
        min-height:auto !important;
    }

    /* PLANS */

    .plans-wrapper{
        padding:0 40px !important;
    }

    .plans-slider .plan-card{
        flex:0 0 100% !important;
        min-width:100% !important;
        max-width:100% !important;
    }

    .plan-card{
        min-height:auto !important;
    }

    .plan-prev{
        left:0 !important;
    }

    .plan-next{
        right:0 !important;
    }

    /* HOW IT WORKS */

    .how-grid{
        grid-template-columns:1fr !important;
        gap:15px !important;
    }

    .how-card{
        min-height:auto !important;
    }

    /* FEATURES */

    .feature-grid{
        grid-template-columns:1fr !important;
        gap:15px !important;
    }

    .feature-card{
        min-height:auto !important;
    }

    /* CTA */

    .premium-cta-box{
        padding:35px 20px !important;
    }

    .premium-cta-content{
        flex-direction:column !important;
        text-align:center !important;
    }

    .premium-cta-content h2{
        font-size:42px !important;
        line-height:1.1 !important;
    }

    .premium-cta-buttons{
        width:100% !important;
        flex-direction:column !important;
    }

    .premium-btn-primary,
    .premium-btn-outline{
        width:100% !important;
        min-width:100% !important;
    }

    .cta-coin-left,
    .cta-coin-right{
        display:none !important;
    }

    /* FOOTER */

    .footer-grid{
        grid-template-columns:1fr !important;
        gap:25px !important;
        text-align:left !important;
    }

    .footer-logo img{
        width:100px !important;
        max-width:100px !important;
    }

    .footer-socials{
        justify-content:flex-start !important;
    }

}