*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#0b0f19;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    border:none;
    outline:none;
    cursor:pointer;
    font-family:inherit;
}

ul{
    list-style:none;
}

/* ==================================
   VARIABLES
================================== */

:root{

    --primary:#4F46E5;
    --primary-light:#6D63FF;

    --dark:#0b0f19;
    --dark-2:#111827;
    --dark-3:#1f2937;

    --text:#ffffff;
    --text-soft:#b5bfd1;

    --border:rgba(255,255,255,.08);

    --shadow:
            0 20px 40px rgba(0,0,0,.35);

    --glow:
            0 0 20px rgba(79,70,229,.45);

}

/* ==================================
   CONTAINER
================================== */

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.section{
    padding:120px 0;
}

/* ==================================
   HEADER
================================== */

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:999;

    backdrop-filter:blur(25px);
    background:rgba(10,15,25,.75);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.header .container{

    height:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;

}

.logo{

    display:flex;
    align-items:center;
    gap:12px;

    font-size:24px;
    font-weight:800;

}

.logo img{
    width:84px;
    height:42px;
}

.nav{

    display:flex;
    align-items:center;
    gap:40px;

}

.nav a{

    color:#d7def0;
    font-size:15px;
    font-weight:500;

    transition:.3s;

}

.nav a:hover{
    color:#ffffff;
}

.header-download-btn{

    padding:12px 24px;

    background:var(--primary);

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.header-download-btn:hover{

    transform:translateY(-2px);

    box-shadow:var(--glow);

}

/* ==================================
   MOBILE MENU
================================== */

.mobile-menu-btn{

    display:none;

    width:42px;
    height:42px;

    background:none;

    flex-direction:column;
    justify-content:center;
    gap:5px;

}

.mobile-menu-btn span{

    width:24px;
    height:2px;

    background:#fff;

    transition:.3s;

}

.mobile-menu{

    display:none;

    position:fixed;
    top:80px;
    left:0;

    width:100%;

    background:#111827;

    z-index:998;

}

.mobile-menu a{

    display:block;

    padding:16px 24px;

    border-bottom:1px solid rgba(255,255,255,.05);

}

/* ==================================
   HERO
================================== */

.hero{

    position:relative;

    min-height:calc(100vh - 80px);

    margin-top:80px;

    display:flex;
    align-items:center;

    overflow:hidden;

}

.hero-bg{

    position:absolute;
    inset:0;

    background:
            radial-gradient(circle at top right,
                    rgba(79,70,229,.35),
                    transparent 40%),

            radial-gradient(circle at bottom left,
                    rgba(99,102,241,.25),
                    transparent 40%);

    z-index:-1;

}

.hero-container{

    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;

    align-items:center;

}

.hero-badge{

    display:inline-flex;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(79,70,229,.15);

    border:1px solid rgba(79,70,229,.3);

    margin-bottom:25px;

    color:#d9dcff;

    font-size:14px;

}

.hero h1{

    font-size:72px;
    line-height:1.05;
    font-weight:800;

    margin-bottom:25px;

}

.hero h1 span{

    color:var(--primary-light);

}

.hero-description{

    font-size:20px;

    color:var(--text-soft);

    max-width:650px;

    margin-bottom:40px;

}

.hero-stats{

    display:flex;
    gap:40px;

    margin-bottom:40px;

}

.stat strong{

    display:block;

    font-size:30px;
    font-weight:800;

}

.stat span{

    color:var(--text-soft);
    font-size:14px;

}

.hero-buttons{

    display:flex;
    gap:18px;

    margin-bottom:35px;

}

.btn-primary{

    padding:18px 34px;

    border-radius:14px;

    background:var(--primary);

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
            0 10px 35px rgba(79,70,229,.5);

}

.btn-secondary{

    padding:18px 34px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.1);

    background:rgba(255,255,255,.04);

}

.hero-features{

    display:flex;
    flex-wrap:wrap;
    gap:18px;

    color:#9ca3af;

}

.hero-image{

    display:flex;
    justify-content:center;

}

.hero-image img{

    max-height:720px;

    animation:float 5s ease-in-out infinite;

    filter:drop-shadow(0 20px 50px rgba(79,70,229,.4));

}

@keyframes float{

    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

}

/* ==================================
   SECTION TITLE
================================== */

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading h2{

    font-size:48px;
    font-weight:800;

    margin-bottom:16px;

}

.section-heading p{

    color:var(--text-soft);

    max-width:700px;

    margin:auto;

}

/* ==================================
   SCREENSHOTS
================================== */

.screenshotSwiper{

    padding-bottom:60px;

}

.swiper-slide{

    display:flex;
    justify-content:center;

}

.swiper-slide img{

    width:280px;

    border-radius:28px;

    box-shadow:
            0 25px 60px rgba(0,0,0,.5);

}

.swiper-pagination-bullet{

    background:#fff !important;

}

/* ==================================
   FEATURES
================================== */

.features-grid{

    display:grid;

    grid-template-columns:
            repeat(auto-fit,minmax(280px,1fr));

    gap:24px;

}

.feature-card{

    background:rgba(255,255,255,.03);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:rgba(79,70,229,.4);

    box-shadow:
            0 20px 40px rgba(79,70,229,.15);

}

.feature-icon{

    font-size:48px;

    margin-bottom:20px;

}

.feature-card h3{

    font-size:24px;

    margin-bottom:12px;

}

.feature-card p{

    color:var(--text-soft);

}

/* ==================================
   REVIEWS
================================== */

.reviews-grid{

    display:grid;

    grid-template-columns:
            repeat(auto-fit,minmax(320px,1fr));

    gap:24px;

}

.review-card{

    background:rgba(255,255,255,.03);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

}

.stars{

    color:#FFD700;

    margin-bottom:15px;

    font-size:22px;

}

.review-card p{

    margin-bottom:20px;

    color:#dbe2f1;

}

.review-card span{

    color:#9ca3af;

}

/* ==================================
   DOWNLOAD
================================== */

.download-section{

    padding:120px 0;

}

.download-box{

    background:
            linear-gradient(
                    135deg,
                    rgba(79,70,229,.25),
                    rgba(79,70,229,.08)
            );

    border:1px solid rgba(79,70,229,.25);

    border-radius:30px;

    text-align:center;

    padding:70px 40px;

}

.download-box h2{

    font-size:52px;

    margin-bottom:20px;

}

.download-box p{

    color:#c9d2e4;

    margin-bottom:40px;

}

.download-info{

    display:flex;
    justify-content:center;
    gap:60px;

    margin-bottom:50px;

}

.download-info div{

    display:flex;
    flex-direction:column;
    gap:6px;

}

.download-info strong{

    font-size:20px;

}

.download-info span{

    color:#bfc8d8;

}

.btn-download{

    display:inline-block;

    padding:22px 60px;

    border-radius:18px;

    background:var(--primary);

    font-size:22px;
    font-weight:700;

    margin-bottom:20px;

    transition:.3s;

}

.btn-download:hover{

    transform:translateY(-4px);

    box-shadow:
            0 0 40px rgba(79,70,229,.6);

}

/* ==================================
   FAQ
================================== */

.faq-list{

    max-width:900px;
    margin:auto;

}

.faq-item{

    margin-bottom:16px;

    border:1px solid var(--border);

    border-radius:16px;

    overflow:hidden;

}

.faq-question{

    width:100%;

    padding:24px;

    background:#111827;

    color:#fff;

    text-align:left;

    font-size:18px;

}

.faq-answer{

    display:none;

    padding:24px;

    background:#0f172a;

    color:#bfc8d8;

}

.faq-item.active .faq-answer{

    display:block;

}

/* ==================================
   FOOTER
================================== */

.footer{

    padding:60px 0;

    border-top:1px solid rgba(255,255,255,.05);

    text-align:center;

}

.footer img{

    width:70px;

    margin:auto auto 20px;

}

.footer p{

    color:#9ca3af;

    margin-bottom:20px;

}

.footer-links{

    display:flex;
    justify-content:center;
    gap:25px;

}

.footer-links a{

    color:#cfd5e1;

}

/* ==================================
   TABLET
================================== */

@media (max-width: 992px){

    .hero{
        padding-top:10px;
        min-height:auto;
    }

    .hero-container{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .hero-content{
        order:1;
    }

    .hero-image{
        order:2;
    }

    .hero-image img{
        max-height:520px;
    }

    .hero-stats{
        justify-content:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-features{
        justify-content:center;
    }

    .hero h1{
        font-size:56px;
    }
}


/* ==================================
   MOBILE
================================== */

@media (max-width:768px){

    .nav,
    .header-download-btn{
        display:none;
    }

    .mobile-menu-btn{
        display:flex;
    }

    .section{
        padding:70px 0;
    }

    .container{
        padding:0 18px;
    }

    .hero{
        padding-bottom:50px;
    }

    .hero-badge{
        font-size:13px;
    }

    .hero h1{
        font-size:42px;
        line-height:1.15;
    }

    .hero-description{
        font-size:16px;
        margin-bottom:30px;
    }

    .hero-image img{
        max-height:420px;
        width:auto;
    }

    .hero-stats{
        gap:20px;
        flex-wrap:wrap;
    }

    .stat{
        min-width:90px;
    }

    .stat strong{
        font-size:24px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:12px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .hero-features{
        gap:12px;
        font-size:14px;
    }

    .section-heading{
        margin-bottom:40px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .section-heading p{
        font-size:15px;
    }

    .swiper-slide img{
        width:220px;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

    .feature-card{
        padding:28px;
    }

    .reviews-grid{
        grid-template-columns:1fr;
    }

    .download-box{
        padding:40px 24px;
    }

    .download-box h2{
        font-size:34px;
    }

    .download-info{
        flex-direction:column;
        gap:20px;
    }

    .btn-download{
        width:100%;
        padding:18px;
        font-size:18px;
    }

    .faq-question{
        padding:18px;
        font-size:16px;
    }

    .faq-answer{
        padding:18px;
    }

    .footer-links{
        flex-wrap:wrap;
        gap:15px;
    }
}


/* ==================================
   SMALL PHONE
================================== */

@media (max-width:480px){

    .logo span{
        font-size:20px;
    }
    .hero h1{
        font-size:34px;
    }

    .hero-description{
        font-size:15px;
    }

    .hero-image img{
        max-height:340px;
    }

    .hero-stats{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .stat strong{
        font-size:20px;
    }

    .stat span{
        font-size:12px;
    }

    .feature-card{
        padding:22px;
    }

    .feature-card h3{
        font-size:20px;
    }

    .download-box h2{
        font-size:28px;
    }

    .download-box{
        padding:30px 20px;
    }
}