﻿*{
    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 h2{

    font-size:50px;
    line-height:1.05;
    font-weight:600;

    margin-bottom:25px;

}

.hero h2 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-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    white-space:nowrap;

    padding:22px 60px;

    border-radius:18px;

    background:var(--primary);

    font-size:22px;
    font-weight:700;

    margin-bottom:20px;

    transition:.3s;

}

.download-icon{

    width:24px;
    height:24px;

    display:inline-block;

    flex-shrink:0;

    animation:downloadFloat 2s ease-in-out infinite;

}

@keyframes downloadBounce{

    0%{
        transform:translateY(0);
    }

    10%{
        transform:translateY(3px);
    }

    20%{
        transform:translateY(0);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes downloadFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(4px);
    }

}

.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;
    }
}


/* ==================================
   PROMO MODAL
================================== */

body.promo-modal-open{
    overflow:hidden;
}

body{
    padding-bottom:88px;
}

.promo-modal{
    position:fixed;
    inset:0;
    z-index:10000;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    transition:opacity .3s ease, visibility .3s ease;
}

.promo-modal.is-hidden{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

.promo-modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(5,8,16,.72);
    backdrop-filter:blur(8px);
}

.promo-modal-dialog{
    position:relative;
    width:100%;
    max-width:420px;
    background:
        linear-gradient(160deg, #1a2240 0%, #111827 55%, #0d1324 100%);
    border:1px solid rgba(109,99,255,.35);
    border-radius:24px;
    padding:36px 28px 28px;
    text-align:center;
    box-shadow:
        0 24px 60px rgba(0,0,0,.55),
        0 0 40px rgba(79,70,229,.25);
    animation:promoModalIn .35s ease;
}

@keyframes promoModalIn{
    from{
        opacity:0;
        transform:translateY(18px) scale(.96);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

.promo-modal-close{
    position:absolute;
    top:12px;
    right:14px;
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:24px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s;
}

.promo-modal-close:hover{
    background:rgba(255,255,255,.16);
}

.promo-modal-badge{
    display:inline-block;
    padding:4px 12px;
    border-radius:999px;
    background:rgba(79,70,229,.25);
    border:1px solid rgba(109,99,255,.45);
    color:#a5b4fc;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    margin-bottom:14px;
}

.promo-modal-dialog h3{
    font-size:28px;
    font-weight:800;
    margin-bottom:10px;
    letter-spacing:.02em;
    background:linear-gradient(90deg, #fbbf24, #f59e0b, #fcd34d);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.promo-modal-desc{
    color:var(--text-soft);
    font-size:15px;
    margin-bottom:18px;
}

.promo-modal-reward{
    display:flex;
    align-items:baseline;
    justify-content:center;
    gap:8px;
    margin-bottom:24px;
}

.promo-modal-amount{
    font-size:42px;
    font-weight:800;
    background:linear-gradient(90deg, #fbbf24, #f59e0b, #fcd34d);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    line-height:1.1;
}

.promo-modal-currency{
    font-size:20px;
    font-weight:700;
    color:#fbbf24;
}

.promo-modal-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:16px 24px;
    border-radius:14px;
    background:linear-gradient(135deg, var(--primary-light), var(--primary));
    font-size:17px;
    font-weight:700;
    transition:.25s;
    box-shadow:0 8px 28px rgba(79,70,229,.45);
}

.promo-modal-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 36px rgba(79,70,229,.55);
}

.promo-modal-hint{
    display:block;
    margin-top:14px;
    color:#8b95a8;
    font-size:12px;
}


/* ==================================
   STICKY BOTTOM DOWNLOAD
================================== */

.sticky-download{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:9990;
    padding:12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background:linear-gradient(180deg, transparent, rgba(11,15,25,.92) 28%, rgba(11,15,25,.98));
    pointer-events:none;
}

.sticky-download-btn{
    pointer-events:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    max-width:520px;
    margin:0 auto;
    padding:16px 28px;
    border-radius:16px;
    background:linear-gradient(135deg, var(--primary-light), var(--primary));
    font-size:18px;
    font-weight:700;
    box-shadow:
        0 8px 28px rgba(79,70,229,.5),
        0 0 0 1px rgba(255,255,255,.08);
    transition:.25s;
}

.sticky-download-btn:hover{
    transform:translateY(-2px);
    box-shadow:
        0 12px 36px rgba(79,70,229,.6),
        0 0 0 1px rgba(255,255,255,.1);
}

.sticky-download-btn .download-icon{
    width:22px;
    height:22px;
}


/* ==================================
   PROMO + STICKY RESPONSIVE
================================== */

@media (min-width:769px){
    body{
        padding-bottom:96px;
    }

    .promo-modal-dialog{
        max-width:460px;
        padding:42px 36px 32px;
    }

    .promo-modal-dialog h3{
        font-size:32px;
    }

    .promo-modal-amount{
        font-size:48px;
    }

    .sticky-download{
        padding:14px 24px calc(14px + env(safe-area-inset-bottom, 0px));
    }

    .sticky-download-btn{
        max-width:420px;
        padding:18px 36px;
        font-size:19px;
        border-radius:18px;
    }
}

@media (max-width:768px){
    body{
        padding-bottom:84px;
    }

    .promo-modal{
        padding:16px;
        align-items:center;
        padding-bottom:100px;
    }

    .promo-modal-dialog{
        max-width:100%;
        border-radius:22px;
        padding:32px 22px 24px;
        margin-bottom:0;
    }

    .promo-modal-dialog h3{
        font-size:24px;
    }

    .promo-modal-desc{
        font-size:14px;
    }

    .promo-modal-amount{
        font-size:36px;
    }

    .promo-modal-btn{
        padding:15px 20px;
        font-size:16px;
    }

    .sticky-download-btn{
        padding:15px 22px;
        font-size:17px;
        border-radius:14px;
    }
}

@media (max-width:480px){
    .promo-modal-dialog{
        padding:28px 18px 22px;
    }

    .promo-modal-amount{
        font-size:32px;
    }
}