/*Landing Page*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#060816;
    color:#fff;
    overflow-x:hidden;
}

body::before{
    content:'';
    position:fixed;
    width:500px;
    height:500px;
    background:linear-gradient(135deg,#7f5cff,#00d4ff);
    filter:blur(180px);
    top:-150px;
    left:-150px;
    opacity:0.4;
    z-index:-1;
}

body::after{
    content:'';
    position:fixed;
    width:400px;
    height:400px;
    background:#ff2e93;
    filter:blur(170px);
    bottom:-100px;
    right:-100px;
    opacity:0.25;
    z-index:-1;
}

.container{
    width:90%;
    max-width:1250px;
    margin:auto;
}

header{
    padding:25px 0;
    position:sticky;
    top:0;
    backdrop-filter:blur(15px);
    background:rgba(6,8,22,0.75);
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:800;
    background:linear-gradient(90deg,#fff,#7f5cff,#00d4ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

nav ul li a:hover{
    color:#00d4ff;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 30px;
    border-radius:50px;
    background:linear-gradient(135deg,#7f5cff,#00d4ff);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border:none;
    cursor:pointer;
    transition:0.4s;
    box-shadow:0 15px 40px rgba(127,92,255,0.35);
}

.btn:hover{
    transform:translateY(-4px) scale(1.02);
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:70px 0;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-text h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-text h1 span{
    background:linear-gradient(90deg,#7f5cff,#00d4ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-text p{
    color:#cfd4ff;
    line-height:1.9;
    margin-bottom:35px;
    font-size:17px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.secondary-btn{
    background:transparent;
    border:1px solid rgba(255,255,255,0.2);
    box-shadow:none;
}

.hero-card{
    position:relative;
}

.glass-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:30px;
    padding:35px;
    backdrop-filter:blur(20px);
    box-shadow:0 25px 60px rgba(0,0,0,0.4);
}

.stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:25px;
}

.stat-box{
    padding:25px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
}

.stat-box h3{
    font-size:34px;
    margin-bottom:8px;
}

.stat-box p{
    color:#d6d6d6;
    font-size:14px;
}

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:48px;
    margin-bottom:15px;
}

.section-title p{
    color:#bfc5ff;
    max-width:750px;
    margin:auto;
    line-height:1.8;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.feature-card{
    padding:35px;
    border-radius:25px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    transition:0.4s;
}

.feature-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.08);
}

.feature-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
    background:linear-gradient(135deg,#7f5cff,#00d4ff);
}

.feature-card h3{
    margin-bottom:12px;
    font-size:24px;
}

.feature-card p{
    line-height:1.8;
    color:#d2d6ff;
}

.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.step-card{
    position:relative;
    padding:40px 30px;
    border-radius:25px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
}

.step-number{
    position:absolute;
    top:-20px;
    left:30px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:linear-gradient(135deg,#7f5cff,#00d4ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
}

.step-card h3{
    margin-top:25px;
    margin-bottom:15px;
    font-size:25px;
}

.step-card p{
    color:#d6d6d6;
    line-height:1.8;
}

.pricing{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,380px));
    justify-content:center;
    gap:30px;
    margin-top:50px;
}

.price-card{
    position:relative;
    overflow:hidden;

    padding:35px;

    border-radius:30px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    transition:0.5s;
}

.price-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(127,92,255,0.25);
}

.product-animation{
    animation:fadeUp 0.7s ease;
}

.product-badge{
    display:inline-block;

    padding:8px 16px;

    border-radius:50px;

    background:linear-gradient(135deg,#7f5cff,#00d4ff);

    font-size:12px;
    font-weight:700;

    margin-bottom:20px;
}

.product-title{
    font-size:32px;
    margin-bottom:12px;
}

.product-tagline{
    color:#00d4ff;
    font-size:15px;
    margin-bottom:15px;
}

.product-description{
    color:#d6d6d6;
    line-height:1.8;
    margin-bottom:25px;
}

.price-wrapper{
    margin-bottom:20px;
}

.price{
    font-size:54px;
    font-weight:800;
}

.old-price{
    color:#999;
    text-decoration:line-through;
    margin-top:5px;
}

.discount-box{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(0,255,170,0.12);

    color:#67ffcf;

    margin-bottom:30px;

    font-size:14px;
    font-weight:600;
}

.product-btn{
    width:100%;
}

.loading-box,
.empty-box,
.error-box{
    grid-column:1/-1;

    text-align:center;

    padding:50px 30px;

    border-radius:30px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);
}

.error-icon,
.empty-icon{
    font-size:55px;
    margin-bottom:20px;
}

.retry-btn{
    margin-top:20px;

    padding:14px 28px;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,#7f5cff,#00d4ff);

    color:#fff;

    cursor:pointer;

    font-weight:600;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@media(max-width:768px){

    .pricing{
        grid-template-columns:1fr;
    }

    .product-title{
        font-size:28px;
    }

    .price{
        font-size:44px;
    }

}

.price-card h3{
    font-size:32px;
    margin-bottom:15px;
}

.price{
    font-size:70px;
    font-weight:800;
    margin:20px 0;
}

.price span{
    font-size:18px;
    color:#cfd4ff;
}

.price-features{
    list-style:none;
    margin:35px 0;
    text-align:left;
}

.price-features li{
    margin-bottom:18px;
    color:#dfe4ff;
}

.testimonials{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.testimonial-card{
    padding:35px;
    border-radius:25px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
}

.testimonial-card p{
    line-height:1.9;
    color:#d9ddff;
    margin-bottom:25px;
}

.user{
    display:flex;
    align-items:center;
    gap:15px;
}

.avatar{
    width:55px;
    height:55px;
    border-radius:50%;
    background:linear-gradient(135deg,#7f5cff,#00d4ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.cta{
    text-align:center;
    padding:100px 25px;
    border-radius:40px;
    background:linear-gradient(135deg,rgba(127,92,255,0.2),rgba(0,212,255,0.12));
    border:1px solid rgba(255,255,255,0.08);
}

.cta h2{
    font-size:55px;
    margin-bottom:20px;
}

.cta p{
    max-width:850px;
    margin:auto;
    color:#d7dbff;
    line-height:1.9;
    margin-bottom:35px;
}

footer{
    padding:40px 0;
    text-align:center;
    color:#cfd4ff;
    border-top:1px solid rgba(255,255,255,0.08);
    margin-top:80px;
}

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.mobile-menu{
    display:none;
    font-size:30px;
    cursor:pointer;
}

@media(max-width:992px){
    .hero-content{
        grid-template-columns:1fr;
    }

    .hero-text h1{
        font-size:52px;
    }

    .section-title h2{
        font-size:40px;
    }

    .cta h2{
        font-size:42px;
    }
}

@media(max-width:768px){
    nav ul{
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        flex-direction:column;
        background:#0c1025;
        padding:25px;
        display:none;
        border-bottom:1px solid rgba(255,255,255,0.08);
    }

    nav ul.active{
        display:flex;
    }

    .mobile-menu{
        display:block;
    }

    .hero-text h1{
        font-size:42px;
    }

    .section-title h2{
        font-size:34px;
    }

    .cta h2{
        font-size:34px;
    }

    .price{
        font-size:55px;
    }
}

@media(max-width:500px){
    .hero-text h1{
        font-size:34px;
    }

    .btn{
        width:100%;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .stats{
        grid-template-columns:1fr;
    }
}
/*Landing Page End*/

/*F&Q*/
.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    margin-bottom:20px;
    padding:25px;
    transition:0.4s;
}

.faq-item summary{
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    list-style:none;
}

.faq-item p{
    margin-top:18px;
    color:#d7dbff;
    line-height:1.9;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    padding-bottom:40px;
}

.footer-box h4{
    margin-bottom:18px;
    font-size:20px;
}

.footer-box p{
    color:#cfd4ff;
    line-height:1.9;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#cfd4ff;
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#00d4ff;
}

.footer-logo{
    font-size:30px;
    margin-bottom:18px;
    background:linear-gradient(90deg,#fff,#7f5cff,#00d4ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.footer-bottom{
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    color:#cfd4ff;
}

.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.7);
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    z-index:99999;
    backdrop-filter:blur(10px);
}

.modal-content{
    width:100%;
    max-width:700px;
    background:#0c1025;
    border-radius:25px;
    padding:35px;
    position:relative;
    border:1px solid rgba(255,255,255,0.08);
    max-height:90vh;
    overflow-y:auto;
}

.modal-content h2{
    margin-bottom:20px;
}

.modal-content p{
    color:#d7dbff;
    line-height:1.9;
    margin-bottom:18px;
}

.close-modal{
    position:absolute;
    top:18px;
    right:22px;
    font-size:30px;
    cursor:pointer;
}

@media(max-width:768px){

    .footer-grid{
        gap:30px;
    }

    .modal-content{
        padding:25px;
    }

}
/*F&Q End*/

/*Mini Footer*/

.footer-mini{
    padding:30px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-mini p{
    color:#cfd4ff;
    font-size:14px;
}

.footer-mini a{
    text-decoration:none;
    background:linear-gradient(90deg,#7f5cff,#00d4ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    font-weight:600;
}

