@font-face{
    font-family:'vazir';
    src:url('../fonts/Vazirmatn-Regular.ttf');
    font-weight:400;
}

@font-face{
    font-family:'vazir';
    src:url('../fonts/Vazirmatn-Bold.ttf');
    font-weight:700;
}

:root{
    --bg:#070707;
    --card:#111111;
    --card2:#171717;
    --red:#e50914;
    --red2:#ff2d37;
    --text:#ffffff;
    --muted:#a1a1aa;
    --border:rgba(255,255,255,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    overflow-x:hidden;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:'vazir',sans-serif;
    line-height:1.8;
}

/* scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0c0c0c;
}

::-webkit-scrollbar-thumb{
    background:var(--red);
    border-radius:20px;
}

/* links */

a{
    text-decoration:none;
    transition:.3s;
}

a:hover{
    opacity:.9;
}

/* navbar */

.custom-navbar{
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.05);
    padding:14px 0;
    transition:.3s;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:22px;
    font-weight:900;
    color:#fff !important;
}

.logo-img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.nav-link{
    color:#fff !important;
    margin-right:18px;
    font-size:15px;
    position:relative;
}

.nav-link::after{
    content:'';
    position:absolute;
    bottom:-5px;
    right:0;
    width:0;
    height:2px;
    background:var(--red);
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

.btn-red{
    background:linear-gradient(135deg,var(--red),var(--red2));
    color:#fff;
    border:none;
    padding:12px 24px;
    border-radius:14px;
    font-weight:700;
    transition:.3s;
    box-shadow:0 10px 30px rgba(229,9,20,.25);
}

.btn-red:hover{
    transform:translateY(-2px);
    color:#fff;
}

.btn-dark2{
    background:#1b1b1b;
    color:#fff;
    border:1px solid rgba(255,255,255,.08);
    padding:12px 24px;
    border-radius:14px;
}

.btn-dark2:hover{
    background:#222;
    color:#fff;
}

/* hero */

.hero-section{
    min-height:100vh;
    background:
    linear-gradient(to bottom,rgba(0,0,0,.75),rgba(0,0,0,.9)),
    url('../images/bg1.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    position:relative;
    padding-top:100px;
}

.hero-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(229,9,20,.18);
    filter:blur(120px);
    top:50%;
    right:-120px;
    transform:translateY(-50%);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.hero-badge{
    display:inline-block;
    background:rgba(229,9,20,.15);
    color:#ff6b72;
    border:1px solid rgba(229,9,20,.25);
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:22px;
    font-size:14px;
}

.hero-title{
    font-size:68px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-title span{
    color:var(--red);
}

.hero-text{
    color:var(--muted);
    font-size:18px;
    max-width:620px;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hero-stats{
    margin-top:55px;
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

.stat-box h3{
    font-size:34px;
    font-weight:900;
    margin-bottom:5px;
}

.stat-box p{
    color:var(--muted);
    margin:0;
}

/* sections */

.section{
    padding:100px 0;
}

.section-title{
    font-size:42px;
    font-weight:900;
    margin-bottom:18px;
}

.section-subtitle{
    color:var(--muted);
    max-width:700px;
    margin:auto;
}

/* cards */

.feature-card{
    background:linear-gradient(145deg,#161616,#0d0d0d);
    border:1px solid var(--border);
    border-radius:24px;
    padding:35px;
    height:100%;
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:rgba(229,9,20,.3);
}

.feature-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:rgba(229,9,20,.12);
    color:var(--red);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
}

.feature-card h4{
    font-size:24px;
    font-weight:800;
    margin-bottom:14px;
}

.feature-card p{
    color:var(--muted);
}

/* plans */

.plan-card{
    background:linear-gradient(145deg,#171717,#0c0c0c);
    border:1px solid var(--border);
    border-radius:28px;
    padding:45px 35px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.35s;
    height:100%;
}

.plan-card:hover{
    transform:translateY(-12px);
    border-color:rgba(229,9,20,.35);
}

.plan-badge{
    position:absolute;
    top:18px;
    left:18px;
    background:var(--red);
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
}

.plan-title{
    font-size:28px;
    font-weight:900;
}

.plan-price{
    font-size:54px;
    font-weight:900;
    margin:20px 0;
    color:var(--red);
}

.plan-price span{
    font-size:16px;
    color:var(--muted);
}

.plan-features{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.plan-features li{
    margin-bottom:12px;
    color:#d4d4d8;
}

/* app box */

.app-box{
    background:linear-gradient(135deg,#171717,#0e0e0e);
    border:1px solid var(--border);
    border-radius:35px;
    padding:70px;
    position:relative;
    overflow:hidden;
}

.app-box::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(229,9,20,.15);
    border-radius:50%;
    filter:blur(100px);
    top:-100px;
    left:-100px;
}

.app-image{
    width:100%;
    max-width:340px;
}

/* faq */

.faq-item{
    background:#111;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding:25px;
    margin-bottom:18px;
}

.faq-item h5{
    font-weight:800;
    margin-bottom:10px;
}

.faq-item p{
    color:var(--muted);
    margin:0;
}

/* auth */

.auth-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:140px 0 100px;
}

.auth-box{
    max-width:460px;
    margin:auto;
    background:linear-gradient(145deg,#161616,#0d0d0d);
    border:1px solid rgba(255,255,255,.06);
    border-radius:30px;
    padding:50px;
}

.auth-title{
    font-size:36px;
    font-weight:900;
    margin-bottom:10px;
}

.auth-subtitle{
    color:var(--muted);
    margin-bottom:30px;
}

.auth-input{
    background:#0d0d0d !important;
    border:1px solid rgba(255,255,255,.08);
    color:#fff !important;
    border-radius:14px;
    height:52px;
}

.auth-input:focus{
    border-color:var(--red);
    box-shadow:none;
    background:#111 !important;
}

.form-label{
    margin-bottom:8px;
    font-weight:700;
}

.auth-footer-text{
    text-align:center;
    margin-top:25px;
    color:var(--muted);
}

.auth-footer-text a{
    color:var(--red);
}

/* footer */

.site-footer{
    background:#090909;
    border-top:1px solid rgba(255,255,255,.05);
    padding:70px 0 30px;
}

.footer-title{
    font-size:24px;
    font-weight:900;
    margin-bottom:20px;
}

.footer-text{
    color:var(--muted);
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#d4d4d8;
}

.footer-links a:hover{
    color:var(--red);
}

.copyright{
    border-top:1px solid rgba(255,255,255,.05);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    color:var(--muted);
}

/* responsive */

@media(max-width:992px){

    .hero-title{
        font-size:48px;
    }

    .section-title{
        font-size:34px;
    }

    .app-box{
        padding:40px;
    }
}

@media(max-width:768px){

    .hero-section{
        text-align:center;
    }

    .hero-content{
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
    }

    .hero-title{
        font-size:38px;
    }

    .section{
        padding:70px 0;
    }

    .auth-box{
        padding:35px;
    }

    .app-box{
        padding:30px;
    }
}

@media(max-width:576px){

    .hero-title{
        font-size:30px;
    }

    .section-title{
        font-size:28px;
    }

    .btn-red,
    .btn-dark2{
        width:100%;
    }

    .plan-price{
        font-size:42px;
    }
}