/* ========================= */
/* RESET */
/* ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#050505;
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.section{
    padding:120px 0;
    position:relative;
}

.container{
    position:relative;
    z-index:2;
}

/* ========================= */
/* LOADER */
/* ========================= */

.page-loader{
    position:fixed;
    inset:0;
    background:#000;
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.8s ease;
}

.page-loader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-logo{
    width:120px;
    height:120px;
    border-radius:50%;
    border:2px solid #ff9800;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    font-weight:900;
    animation:spin 2s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

/* ========================= */
/* CURSOR */
/* ========================= */

.cursor-dot,
.cursor-ring{
    position:fixed;
    top:0;
    left:0;
    transform:translate(-50%,-50%);
    pointer-events:none;
    z-index:99999;
}

.cursor-dot{
    width:8px;
    height:8px;
    background:#ff9800;
    border-radius:50%;
}

.cursor-ring{
    width:40px;
    height:40px;
    border:1px solid rgba(255,255,255,.5);
    border-radius:50%;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.main-nav{
    padding:20px 0;
    transition:.4s ease;
    background:rgba(0,0,0,.2);
    backdrop-filter:blur(15px);
}

.main-nav.scrolled{
    background:#000;
    padding:14px 0;
}

.navbar-brand{
    color:#fff;
    font-size:26px;
    font-weight:900;
}

.navbar-brand span{
    color:#ff9800;
}

.nav-link{
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.nav-link:hover{
    color:#ff9800;
}

.nav-cta{
    background:linear-gradient(135deg,#ff7a00,#ffb300);
    color:#fff;
    padding:14px 28px;
    border-radius:100px;
    font-weight:700;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero-section{
    min-height:100vh;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom,rgba(0,0,0,.6),#050505);
}

.hero-glow{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    filter:blur(140px);
    opacity:.25;
}

.hero-glow-1{
    background:#ff7a00;
    top:-150px;
    left:-100px;
}

.hero-glow-2{
    background:#ff006a;
    bottom:-200px;
    right:-100px;
}

.hero-content{
    position:relative;
    z-index:3;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 24px;
    border-radius:100px;
    background:rgba(255,255,255,.08);
    margin-bottom:25px;
    backdrop-filter:blur(15px);
}

.hero-content h1{
    font-size:55px;
    font-weight:900;
    line-height:1;
    margin-bottom:30px;
}

.hero-content h1 span{
    color:#ff9800;
}

.hero-content p{
    font-size:20px;
    color:#bbb;
    line-height:1.8;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn-main{
    height:65px;
    padding:0 35px;
    border-radius:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ff7a00,#ffb300);
    color:#fff;
    font-weight:800;
    transition:.4s ease;
}

.btn-main:hover{
    transform:translateY(-6px);
    color:#fff;
}

.btn-outline-custom{
    height:65px;
    padding:0 35px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.hero-stats{
    margin-top:50px;
    display:flex;
    gap:50px;
}

.hero-stats h3{
    font-size:48px;
    font-weight:900;
    color:#ff9800;
}

.hero-stats span{
    color:#bbb;
}

.hero-image{
    position:relative;
}

.hero-image img{
    width:100%;
    border-radius:40px;
    object-fit:cover;
    border:1px solid rgba(255,255,255,.08);
}

.floating-card{
    position:absolute;
    padding:16px 25px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    font-weight:700;
    animation:float 4s ease-in-out infinite;
}

.floating-1{
    top:10%;
    left:-50px;
}

.floating-2{
    bottom:20%;
    right:-40px;
}

.floating-3{
    bottom:-30px;
    left:50px;
}

@keyframes float{
    50%{
        transform:translateY(-15px);
    }
}

/* ========================= */
/* LOGO STRIP */
/* ========================= */

.logo-strip{
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:25px 0;
}

.marquee{
    overflow:hidden;
}

.marquee-track{
    display:flex;
    gap:80px;
    width:max-content;
    animation:marquee 20s linear infinite;
}

.marquee-track span{
    font-size:32px;
    font-weight:900;
    color:rgba(255,255,255,.1);
}

@keyframes marquee{
    100%{
        transform:translateX(-50%);
    }
}

/* ========================= */
/* SECTION HEAD */
/* ========================= */

.section-head{
    margin-bottom:70px;
}

.eyebrow{
    display:inline-block;
    padding:10px 22px;
    border-radius:100px;
    background:rgba(255,255,255,.08);
    margin-bottom:20px;
    font-weight:700;
    color:#ff9800;
}

.section-head h2{
    font-size:65px;
    font-weight:900;
    margin-bottom:20px;
}

.section-head p{
    color:#aaa;
    font-size:18px;
}

/* ========================= */
/* PRICING */
/* ========================= */

.pricing-section{
    overflow:hidden;
}

.pricing-blur{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    filter:blur(140px);
    opacity:.2;
}

.pricing-blur-1{
    background:#ff9800;
    top:-150px;
    left:-100px;
}

.pricing-blur-2{
    background:#ff006a;
    bottom:-150px;
    right:-100px;
}

.pricing-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:35px;
    padding:50px;
    height:100%;
    transition:.5s ease;
    position:relative;
    overflow:hidden;
    backdrop-filter:blur(20px);
}

.pricing-card:hover{
    transform:translateY(-15px);
    border-color:#ff9800;
}

.premium-card{
    border:2px solid #ff9800;
    transform:scale(1.05);
}

.popular-badge{
    position:absolute;
    top:30px;
    right:-45px;
    transform:rotate(45deg);
    background:#ff9800;
    color:#000;
    padding:12px 60px;
    font-weight:900;
    font-size:13px;
}

.plan-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:100px;
    background:rgba(255,255,255,.08);
    margin-bottom:20px;
    font-weight:700;
}

.pricing-top h3{
    font-size:70px;
    font-weight:900;
}

.pricing-features{
    margin-top:30px;
}

.pricing-features div{
    display:flex;
    gap:15px;
    margin-bottom:18px;
}

.pricing-features i{
    color:#ff9800;
}

.pricing-btn{
    margin-top:35px;
    width:100%;
    height:60px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ff7a00,#ffb300);
    color:#fff;
    font-weight:800;
}

/* ========================= */
/* ABOUT */
/* ========================= */

.about-images{
    position:relative;
}

.img-main{
    border-radius:35px;
}

.img-small{
    width:260px;
    position:absolute;
    bottom:-50px;
    right:-50px;
    border-radius:30px;
    border:10px solid #050505;
}

.experience-box{
    position:absolute;
    top:40px;
    left:-40px;
    background:#ff9800;
    color:#000;
    padding:30px;
    border-radius:25px;
    font-weight:900;
}

.experience-box h2{
    font-size:50px;
}

.section-copy h2{
    font-size:60px;
    font-weight:900;
    margin-bottom:30px;
}

.section-copy p{
    color:#bbb;
    line-height:1.8;
}

.about-list{
    margin-top:35px;
}

.about-list div{
    margin-bottom:18px;
    display:flex;
    gap:15px;
    font-weight:600;
}

.about-list i{
    color:#ff9800;
}

/* ========================= */
/* RESULTS */
/* ========================= */

.results-section{
    padding-top:90px!important;
    padding-bottom:90px!important;
    overflow:hidden;
}

.results-heading-fixed{
    margin-bottom:35px!important;
}

.results-swiper-smaller{
    padding:20px 60px 90px!important;
}

.results-swiper-smaller .swiper-wrapper{
    align-items:center;
}

.results-swiper-smaller .swiper-slide{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 22px!important;
    transition:.5s ease;
    opacity:.55;
    transform:scale(.88);
}

.results-swiper-smaller .swiper-slide-active{
    opacity:1;
    transform:scale(1);
}

.result-image-shell{
    width:100%;
    max-width:280px;
    height:380px;
    background:#0b0b0b;
    border-radius:28px;
    overflow:hidden;
    padding:18px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 60px rgba(0,0,0,.4);
    display:flex;
    align-items:center;
    justify-content:center;
}

.result-image-shell img{
    width:100%!important;
    height:100%!important;
    object-fit:contain!important;
    object-position:center!important;
    background:#000;
    border-radius:18px;
}

.results-swiper-smaller .swiper-button-next,
.results-swiper-smaller .swiper-button-prev{
    width:55px;
    height:55px;
}

.results-swiper-smaller .swiper-pagination{
    bottom:10px!important;
}

/* ========================= */
/* FEEDBACK */
/* ========================= */

.feedback-swiper{
    padding-bottom:80px;
}

.feedback-card{
    border-radius:35px;
    overflow:hidden;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    transition:.4s ease;
}

.feedback-card:hover{
    transform:translateY(-10px);
}

.feedback-card img{
    width:100%;
    height:500px!important;
    object-fit:contain!important;
    background:#000;
}

/* ========================= */
/* SWIPER */
/* ========================= */

.swiper-button-next,
.swiper-button-prev{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#ff7a00,#ffb300);
    color:#fff;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:20px;
    font-weight:900;
}

.swiper-pagination-bullet{
    width:14px;
    height:14px;
    background:rgba(255,255,255,.4);
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#ff9800;
    width:40px;
    border-radius:50px;
}

/* ========================= */
/* FAQ */
/* ========================= */

.custom-accordion .accordion-item{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    margin-bottom:20px;
    border-radius:25px;
    overflow:hidden;
}

.custom-accordion .accordion-button{
    background:transparent;
    color:#fff;
    font-weight:700;
    padding:25px;
    box-shadow:none;
}

.custom-accordion .accordion-body{
    color:#bbb;
    padding:25px;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
    padding:80px 0 30px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer h3{
    font-size:35px;
    font-weight:900;
}

.footer h3 span{
    color:#ff9800;
}

.footer p{
    color:#aaa;
}

.footer h5{
    margin-bottom:20px;
}

.footer a{
    display:block;
    margin-bottom:12px;
    color:#aaa;
}

.footer-bottom{
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#777;
}

/* ========================= */
/* TOP BUTTON */
/* ========================= */

#topBtn{
    position:fixed;
    right:30px;
    bottom:30px;
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#ff7a00,#ffb300);
    color:#fff;
    z-index:999;
}

/* ========================= */
/* REVEAL */
/* ========================= */

.reveal{
    opacity:0;
    transform:translateY(80px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ========================= */
/* WHATSAPP */
/* ========================= */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:110px;
    width:70px;
    height:70px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    z-index:99999;
    box-shadow:0 15px 45px rgba(37,211,102,.4);
    animation:whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:991px){

    .hero-content h1{
        font-size:60px;
    }

    .section-head h2{
        font-size:45px;
    }

    .section-copy h2{
        font-size:45px;
    }

    .premium-card{
        transform:scale(1);
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hero-content h1{
        font-size:45px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-stats{
        gap:25px;
    }

    .pricing-card{
        padding:35px;
    }

    .section{
        padding:90px 0;
    }

    .floating-card{
        display:none;
    }

    .img-small{
        display:none;
    }

    .result-image-shell{
        max-width:240px;
        height:320px;
        padding:12px;
    }

    .results-swiper-smaller{
        padding:15px 10px 70px!important;
    }

    .results-swiper-smaller .swiper-slide{
        padding:0 10px!important;
    }

    .feedback-card img{
        height:320px!important;
    }

    .whatsapp-float{
        width:60px;
        height:60px;
        font-size:28px;
        right:18px;
        bottom:95px;
    }

}