:root{
    --orange:#ff6a00;
    --orange2:#ff9d2f;
    --bg:#0f1115;
    --card:#1a1d24;
    --white:#ffffff;
    --gray:#b5b5b5;
    --green:#69ff69;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,sans-serif;
    background:var(--bg);
    color:var(--white);
    overflow-x:hidden;
    line-height:1.6;
}

.flags{
    display:flex;
    gap:10px;
}

.lang-btn{
    background:none;
    border:none;
    cursor:pointer;
    font-size:28px;
    transition:.3s;
}

.lang-btn:hover{
    transform:scale(1.15);
}

.lang-btn.active{
    transform:scale(1.2);
}

.top{
    background:var(--orange);
    overflow:hidden;
    white-space:nowrap;
    padding:10px 0;
    font-size:14px;
    font-weight:600;
}

.top span{
    display:inline-block;
    padding-left:100%;
    animation:marquee 18s linear infinite;
}

@keyframes marquee{
    to{
        transform:translateX(-120%);
    }
}


header{
    background:#0f1115;
    padding:20px 0 60px;
    position:relative;
    overflow:hidden;
}

header::before{
    content:"";
    position:absolute;
    top:-200px;
    right:-200px;
    width:450px;
    height:450px;
    background:radial-gradient(circle, rgba(255,106,0,.18), transparent 70%);
}

nav{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    z-index:2;
}

.logo{
    height:80px;
    width:auto;
}

.flags{
    font-size:24px;
}

.video-box{
    width:100%;
    max-width:300px;
    margin:auto;

    border-radius:25px;
    overflow:hidden;

    border:2px solid rgba(255,106,0,.3);

    box-shadow:
        0 15px 35px rgba(255,106,0,.2);

    background:#000;
}

.video-box video{
    display:block;
    width:100%;
    height:auto;
}

.hero{
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
    display:grid;
    grid-template-columns:300px 1fr 350px;
    gap:40px;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-logo{
    max-width:220px;
    width:100%;
}

.stars{
    font-size:24px;
    margin-top:15px;
}

.hero h1{
    font-size:56px;
    line-height:1.1;
    font-weight:800;
}

.hero p{
    margin:20px 0;
    font-size:20px;
    color:var(--gray);
}

.iphone{
    width:100%;
    filter:drop-shadow(0 30px 50px rgba(255,106,0,.35));
    animation:floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
}

.btn{
    display:inline-block;
    background:#fff;
    color:var(--orange);
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(255,106,0,.35);
}



.sec{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}

.sec h2{
    text-align:center;
    margin-bottom:40px;
    color:var(--orange2);
    font-size:38px;
    font-weight:700;
}


.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}


.card{
    background:var(--card);
    padding:30px;
    border-radius:22px;
    text-align:center;

    border:1px solid rgba(255,255,255,.06);

    box-shadow:
        0 20px 40px rgba(0,0,0,.25);

    transition:all .35s ease;
}

.card:hover{
    transform:translateY(-10px);

    border-color:rgba(255,106,0,.35);

    box-shadow:
        0 25px 50px rgba(255,106,0,.18);
}

.card h3{
    margin-bottom:12px;
    font-size:22px;
}

.card p{
    color:var(--gray);
    font-size:15px;
}

.available{
    display:inline-block;
    margin-top:12px;
    color:var(--green);
    font-weight:700;
}


.telegram{
    text-align:center;
}

.telegram img{
    width:100%;
    max-width:250px;

    border-radius:20px;

    margin-top:25px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);
}


.contact-form{
    max-width:700px;
    margin:auto;

    display:grid;
    gap:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:15px;

    border:none;

    border-radius:14px;

    background:#1d212b;

    color:#fff;

    outline:none;
}

.contact-form textarea{
    resize:vertical;
    min-height:140px;
}

.contact-form button{

    border:none;

    cursor:pointer;

    background:var(--orange);

    color:#fff;

    padding:16px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;
}

.contact-form button:hover{

    background:var(--orange2);

    transform:translateY(-3px);
}


iframe{

    width:100%;

    height:400px;

    border:none;

    border-radius:22px;

    overflow:hidden;
}


footer{

    background:#000;

    text-align:center;

    padding:50px 20px;

    color:#9aa0aa;
}

footer p{

    margin:10px 0;
}

footer a{

    color:#fff;

    text-decoration:none;

    margin:0 10px;

    transition:.3s;
}

footer a:hover{

    color:var(--orange);
}

.call{

    position:fixed;

    right:20px;

    bottom:20px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:var(--orange);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:30px;

    z-index:999;

    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{
        box-shadow:
            0 0 0 0 rgba(255,106,0,.5);
    }

    70%{
        box-shadow:
            0 0 0 18px rgba(255,106,0,0);
    }

    100%{
        box-shadow:
            0 0 0 0 rgba(255,106,0,0);
    }
}


@media(max-width:992px){

    nav{
        flex-direction:column;
        gap:15px;
    }

    .hero{
        grid-template-columns:1fr;
        text-align:center;
        gap:25px;
    }

    .hero-logo{
        max-width:180px;
        margin:auto;
    }

    .video-box{
        max-width:260px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:17px;
    }
}


@media(max-width:576px){

    body{
        font-size:15px;
    }

    .top{
        font-size:12px;
        padding:8px 0;
    }

    .logo{
        height:55px;
    }

    .lang-btn{
        font-size:24px;
    }

    .hero{
        padding:25px 15px;
    }

    .hero-logo{
        max-width:140px;
    }

    .stars{
        font-size:20px;
    }

    .hero h1{
        font-size:28px;
        line-height:1.3;
    }

    .hero p{
        font-size:15px;
    }

    .video-box{
        max-width:220px;
    }

    .btn{
        width:100%;
        max-width:280px;
        margin:auto;
        text-align:center;
    }

    .sec{
        padding:45px 15px;
    }

    .sec h2{
        font-size:26px;
    }

    .grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .card{
        padding:20px;
    }

    iframe{
        height:250px;
    }

    footer{
        padding:35px 15px;
        font-size:14px;
    }

    footer a{
        display:block;
        margin:8px 0;
    }

    .call{
        width:55px;
        height:55px;
        font-size:24px;
        right:15px;
        bottom:15px;
    }
}

.auth-buttons{
    display:flex;
    gap:10px;
}

.overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.7);
    z-index:9998;
}

.modal{
    display:none;
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90%;
    max-width:420px;
    background:#1a1d24;
    padding:30px;
    border-radius:20px;
    z-index:9999;
    box-shadow:0 20px 50px rgba(0,0,0,.5);
}

.modal h2{
    margin-bottom:20px;
    text-align:center;
    color:#ff9d2f;
}

.modal input{
    width:100%;
    padding:14px;
    margin-bottom:12px;
    border:none;
    border-radius:12px;
    background:#2a2f3a;
    color:#fff;
}

.modal-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:12px;
    background:#ff6a00;
    color:#fff;
    font-weight:bold;
    cursor:pointer;
}

.close{
    position:absolute;
    right:18px;
    top:12px;
    font-size:30px;
    cursor:pointer;
    color:#fff;
}