/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Vazirmatn',sans-serif;
    background:var(--background);
    color:var(--white);
    overflow-x:hidden;
    line-height:1.8;

}

a{

    text-decoration:none;

}

img{

    display:block;
    max-width:100%;

}

.container{

    width:min(var(--container),92%);
    margin:auto;

}


/* ==========================================
BACKGROUND
========================================== */

body::before{

    content:"";

    position:fixed;

    width:700px;
    height:700px;

    right:-250px;
    top:-220px;

    border-radius:50%;

    background:rgba(6,115,255,.18);

    filter:blur(130px);

    z-index:-2;

}

body::after{

    content:"";

    position:fixed;

    width:600px;
    height:600px;

    left:-220px;
    bottom:-180px;

    border-radius:50%;

    background:rgba(76,230,136,.15);

    filter:blur(140px);

    z-index:-2;

}


/* ==========================================
HEADER
========================================== */

header{

    position:fixed;

    width:100%;

    top:0;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(5,15,35,.45);

    border-bottom:1px solid rgba(255,255,255,.05);

}

nav{

    width:min(1200px,92%);

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;

}

.logo{

    font-size:28px;

    font-weight:900;

    color:white;

}

.nav-btn{

    background:var(--gradient);

    color:white;

    padding:13px 28px;

    border-radius:50px;

    transition:.35s;

    font-weight:700;

}

.nav-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 40px rgba(6,115,255,.35);

}


/* ==========================================
HERO
========================================== */

.hero{

    min-height:100vh;

    width:min(1200px,92%);

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

    padding-top:120px;

}

.hero-text{

    flex:1;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:430px;

    animation:float 5s ease-in-out infinite;

    filter:drop-shadow(0 40px 70px rgba(6,115,255,.45));

}

.badge{

    display:inline-block;

    padding:9px 20px;

    border-radius:40px;

    background:rgba(76,230,136,.15);

    color:#4CE688;

    margin-bottom:20px;

    font-weight:700;

    border:1px solid rgba(76,230,136,.3);

}

.hero h1{

    font-size:var(--title);

    line-height:1.2;

    margin-bottom:25px;

    font-weight:900;

}

.hero p{

    color:var(--text);

    font-size:1.15rem;

    margin-bottom:35px;

}


/* ==========================================
FEATURES
========================================== */

.features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:45px;

}

.features div{

    background:rgba(255,255,255,.05);

    padding:18px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.features div:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.08);

}


/* ==========================================
PRICE
========================================== */

.price-box{

    display:flex;

    align-items:end;

    gap:20px;

    margin-bottom:20px;

}

.old{

    font-size:25px;

    color:#9BA7C7;

    text-decoration:line-through;

}

.new{

    font-size:48px;

    color:#4CE688;

    font-weight:900;

}


/* ==========================================
COUNTDOWN
========================================== */

#timer{

    display:inline-flex;

    margin:20px 0 35px;

    background:rgba(255,255,255,.05);

    padding:15px 30px;

    border-radius:50px;

    color:#4CE688;

    font-size:22px;

    font-weight:800;

    letter-spacing:2px;

}


/* ==========================================
BUY BUTTON
========================================== */

.buy-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 45px;

    border-radius:60px;

    background:var(--gradient);

    color:white;

    font-size:20px;

    font-weight:800;

    transition:.35s;

    box-shadow:0 20px 50px rgba(6,115,255,.35);

}

.buy-btn:hover{

    transform:translateY(-6px) scale(1.04);

    box-shadow:0 30px 60px rgba(76,230,136,.35);

}
/* ==========================================
TRUST SECTION
========================================== */

.trust{

    width:min(1200px,92%);
    margin:120px auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.trust div{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    padding:28px;

    text-align:center;

    font-size:18px;

    font-weight:700;

    transition:.35s;

    backdrop-filter:blur(15px);

}

.trust div:hover{

    transform:translateY(-10px);

    border-color:#4CE688;

    box-shadow:0 20px 45px rgba(76,230,136,.18);

}

/* ==========================================
FEATURE CARDS
========================================== */

.cards{

    width:min(1200px,92%);
    margin:0 auto 140px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.card{

    position:relative;

    overflow:hidden;

    background:rgba(255,255,255,.05);

    border-radius:28px;

    padding:40px 30px;

    border:1px solid rgba(255,255,255,.07);

    transition:.4s;

    backdrop-filter:blur(18px);

}

.card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(6,115,255,.15),
        rgba(76,230,136,.12)
    );

    opacity:0;

    transition:.4s;

}

.card:hover::before{

    opacity:1;

}

.card:hover{

    transform:translateY(-15px);

    box-shadow:0 35px 70px rgba(6,115,255,.22);

}

.card h2{

    font-size:28px;

    margin-bottom:18px;

}

.card p{

    color:var(--text);

    line-height:2;

}

/* ==========================================
COMPARE TABLE
========================================== */

.compare{

    width:min(1000px,92%);

    margin:0 auto 140px;

}

.compare h2{

    text-align:center;

    margin-bottom:50px;

    font-size:42px;

}

.compare table{

    width:100%;

    border-collapse:collapse;

    overflow:hidden;

    border-radius:24px;

}

.compare th{

    background:var(--gradient);

    color:white;

    padding:24px;

    font-size:22px;

}

.compare td{

    background:rgba(255,255,255,.04);

    padding:25px;

    border-bottom:1px solid rgba(255,255,255,.06);

    text-align:center;

    color:var(--text);

    transition:.3s;

}

.compare tr:hover td{

    background:rgba(255,255,255,.08);

}

/* ==========================================
FAQ
========================================== */

.faq{

    width:min(900px,92%);

    margin:0 auto 140px;

}

.faq h2{

    text-align:center;

    margin-bottom:45px;

    font-size:42px;

}

.faq-item{

    margin-bottom:22px;

    border-radius:22px;

    overflow:hidden;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.07);

}

.faq-item button{

    width:100%;

    background:none;

    border:none;

    color:white;

    font-size:20px;

    text-align:right;

    padding:25px;

    cursor:pointer;

    font-family:inherit;

    font-weight:700;

}

.faq-item div{

    display:none;

    padding:0 25px 25px;

    color:var(--text);

    line-height:2;

}

/* ==========================================
FINAL CTA
========================================== */

.cta{

    width:min(1100px,92%);

    margin:0 auto 140px;

    text-align:center;

    padding:90px;

    border-radius:35px;

    background:linear-gradient(
        135deg,
        rgba(6,115,255,.22),
        rgba(76,230,136,.18)
    );

    border:1px solid rgba(255,255,255,.08);

}

.cta h2{

    font-size:50px;

    margin-bottom:25px;

}

.final-price{

    font-size:64px;

    color:#4CE688;

    font-weight:900;

    margin-bottom:35px;

}

.cta a{

    display:inline-block;

    padding:20px 60px;

    border-radius:60px;

    background:var(--gradient);

    color:white;

    font-size:22px;

    font-weight:800;

    transition:.35s;

}

.cta a:hover{

    transform:scale(1.05);

    box-shadow:0 25px 70px rgba(6,115,255,.3);

}

/* ==========================================
FOOTER
========================================== */

footer{

    padding:35px;

    text-align:center;

    color:#8AAAE5;

    border-top:1px solid rgba(255,255,255,.05);

}

/* ==========================================
SCROLL PROGRESS BAR
========================================== */

.progress{

    position:fixed;

    top:0;

    right:0;

    width:0;

    height:4px;

    background:var(--gradient);

    z-index:99999;

}
