*{

    margin:0;
    padding:0;
    box-sizing:border-box;
    
    }
    
    body{
    
    background:#070707;
    font-family:'Vazirmatn',sans-serif;
    overflow-x:hidden;
    color:white;
    
    }
    
    .hero{
    
    min-height:100vh;
    
    display:flex;
    
    align-items:center;
    
    justify-content:space-between;
    
    padding:80px;
    
    position:relative;
    
    overflow:hidden;
    
    }
    
    .red-light{
    
    position:absolute;
    
    width:700px;
    
    height:700px;
    
    background:#d90429;
    
    filter:blur(220px);
    
    opacity:.18;
    
    right:-200px;
    
    top:-200px;
    
    }
    
    .content{
    
    width:50%;
    
    position:relative;
    
    z-index:2;
    
    }
    
    .tag{
    
    display:inline-block;
    
    padding:8px 16px;
    
    border:1px solid rgba(255,0,0,.4);
    
    border-radius:30px;
    
    font-size:13px;
    
    color:#ff4d4d;
    
    margin-bottom:25px;
    
    letter-spacing:1px;
    
    }
    
    h1{
    
    font-size:70px;
    
    line-height:1.25;
    
    font-weight:900;
    
    margin-bottom:25px;
    
    }
    
    h1 span{
    
    display:block;
    
    color:#d90429;
    
    }
    
    .content p{
    
    font-size:18px;
    
    color:#9d9d9d;
    
    line-height:2;
    
    max-width:560px;
    
    margin-bottom:35px;
    
    }
    
    .buttons{
    
    display:flex;
    
    gap:15px;
    
    margin-bottom:60px;
    
    }
    
    .buttons a{
    
    text-decoration:none;
    
    padding:15px 28px;
    
    border-radius:12px;
    
    font-weight:700;
    
    transition:.35s;
    
    }
    
    .btn-red{
    
    background:#d90429;
    
    color:white;
    
    box-shadow:0 0 35px rgba(217,4,41,.4);
    
    }
    
    .btn-red:hover{
    
    transform:translateY(-6px);
    
    }
    
    .btn-dark{
    
    border:1px solid #333;
    
    color:white;
    
    }
    
    .btn-dark:hover{
    
    border-color:#d90429;
    
    background:#111;
    
    }
    
    .stats{
    
    display:flex;
    
    gap:60px;
    
    }
    
    .stats h2{
    
    font-size:38px;
    
    margin-bottom:8px;
    
    color:#fff;
    
    }
    
    .stats p{
    
    font-size:14px;
    
    color:#777;
    
    }
    
    .mockup{
    
    width:42%;
    
    display:flex;
    
    justify-content:center;
    
    position:relative;
    
    z-index:2;
    
    }
    
    .screen{
    
    width:500px;
    
    height:320px;
    
    background:#121212;
    
    border-radius:22px;
    
    padding:25px;
    
    border:1px solid rgba(255,255,255,.08);
    
    box-shadow:
    
    0 0 60px rgba(217,4,41,.18);
    
    }
    
    .top{
    
    height:18px;
    
    width:100%;
    
    background:#222;
    
    border-radius:8px;
    
    margin-bottom:25px;
    
    }
    
    .line{
    
    height:16px;
    
    background:#2b2b2b;
    
    border-radius:8px;
    
    margin-bottom:15px;
    
    }
    
    .short{
    
    width:60%;
    
    }
    
    .box{
    
    height:120px;
    
    background:linear-gradient(135deg,#d90429,#45000f);
    
    border-radius:16px;
    
    margin:30px 0;
    
    }
    
    .cards{
    
    display:flex;
    
    gap:15px;
    
    }
    
    .cards div{
    
    flex:1;
    
    height:70px;
    
    background:#1c1c1c;
    
    border-radius:12px;
    
    }
    
    @media(max-width:991px){
    
    .hero{
    
    flex-direction:column;
    
    text-align:center;
    
    padding:40px 25px;
    
    }
    
    .content{
    
    width:100%;
    
    }
    
    .mockup{
    
    width:100%;
    
    margin-top:60px;
    
    }
    
    .screen{
    
    width:100%;
    
    max-width:500px;
    
    }
    
    .buttons{
    
    justify-content:center;
    
    }
    
    .stats{
    
    justify-content:center;
    
    flex-wrap:wrap;
    
    gap:30px;
    
    }
    
    h1{
    
    font-size:42px;
    
    }
    
    }