:root{

    --bg:#050505;
    --card:#101010;

    --text:#f5f7fa;
    --muted:#8d96a7;

    --accent:#6FD3FF;
    --accent2:#008CFF;

    --border:rgba(255,255,255,.08);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:

        radial-gradient(circle at top right,
        rgba(111,211,255,.14),
        transparent 30%),

        radial-gradient(circle at bottom left,
        rgba(0,140,255,.10),
        transparent 35%),

        radial-gradient(circle at center,
        rgba(255,255,255,.02),
        transparent 60%),

        var(--bg);

    color:var(--text);

    font-family:'Space Grotesk',sans-serif;

    overflow-x:hidden;

    min-height:100vh;

    position:relative;

}

body::before{

    content:'';

    position:fixed;

    inset:0;

    background:
        radial-gradient(circle,
        transparent 55%,
        rgba(0,0,0,.55));

    pointer-events:none;

    z-index:2;

}

.noise{
    position:fixed;
    inset:0;
    opacity:.04;
    pointer-events:none;
    background-image:url('https://grainy-gradients.vercel.app/noise.svg');
}

.container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0 32px;
}

.header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    backdrop-filter:blur(14px);
    background:rgba(0,0,0,.3);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.nav{
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:24px;
    font-weight:700;
    letter-spacing:6px;
}

.menu{
    display:flex;
    gap:40px;
}

.menu a,
.nav-phone{
    color:white;
    text-decoration:none;
    font-size:14px;
    opacity:.8;
    transition:.3s;
}

.menu a:hover,
.nav-phone:hover{
    opacity:1;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero-glow{

    position:absolute;

    width:1400px;
    height:1400px;

    border-radius:50%;

    background:
        radial-gradient(circle,

        rgba(111,211,255,.45) 0%,

        rgba(111,211,255,.20) 25%,

        rgba(0,140,255,.10) 40%,

        transparent 70%);

    filter:blur(160px);

    opacity:.9;

    top:-500px;
    right:-350px;

    z-index:0;

}

.hero::after{

    content:'';

    position:absolute;

    width:900px;
    height:900px;

    border-radius:50%;

    background:
        radial-gradient(circle,

        rgba(0,140,255,.22),

        transparent 70%);

    left:-300px;
    bottom:-300px;

    filter:blur(140px);

    opacity:.7;

}

.hero-container{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:80px;
    align-items:center;
}

.hero-label{
    color:var(--accent);
    margin-bottom:30px;
    letter-spacing:3px;
    font-size:13px;
}

.hero h1{

    font-size:clamp(100px,14vw,240px);

    line-height:.82;

    margin-bottom:40px;

    font-weight:700;

    letter-spacing:-8px;

    text-shadow:
        0 0 30px rgba(111,211,255,.06);

    position:relative;

    z-index:3;

}

.hero p{
    font-size:20px;
    color:var(--muted);
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:50px;
}

.btn-primary,
.btn-secondary{
    border:none;
    padding:18px 28px;
    border-radius:100px;
    font-size:15px;
    cursor:pointer;
    transition:.35s cubic-bezier(.2,.8,.2,1);
    text-decoration:none;
}

.btn-primary{

    background:
        linear-gradient(
            135deg,
            #6FD3FF,
            #008CFF
        );

    color:white;

    font-weight:700;

    box-shadow:

        0 10px 30px rgba(0,140,255,.25),

        0 0 40px rgba(111,211,255,.10);

}
.btn-primary:hover{

    transform:
        translateY(-6px)
        scale(1.02);

    box-shadow:

        0 20px 50px rgba(0,140,255,.35),

        0 0 80px rgba(111,211,255,.20);

}

.btn-secondary{
    border:1px solid var(--border);
    color:white;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-5px);
}

.hero-right{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.floating-card{

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.02)
        );

    border:1px solid rgba(255,255,255,.12);

    border-radius:32px;

    padding:42px;

    backdrop-filter:blur(24px);

    box-shadow:

        0 10px 40px rgba(0,0,0,.35),

        inset 0 1px 0 rgba(255,255,255,.08);

    transition:
        transform .5s cubic-bezier(.2,.8,.2,1),
        border-color .4s,
        box-shadow .4s;

    position:relative;

    overflow:hidden;

}
.floating-card:hover{

    transform:
        translateY(-12px)
        scale(1.02);

    border-color:
        rgba(111,211,255,.35);

    box-shadow:

        0 20px 60px rgba(0,0,0,.45),

        0 0 60px rgba(111,211,255,.08);

}

.floating-card span{
    display:block;
    font-size:48px;
    margin-bottom:10px;
    color:var(--accent);
}

.services,
.about,
.reviews,
.contacts{
    padding:180px 0;
}

.section-top span,
.about-left span,
.contacts span{
    color:var(--accent);
    letter-spacing:3px;
    font-size:13px;
}

.section-top h2,
.about h2,
.contacts h2{
    font-size:clamp(48px,6vw,100px);
    line-height:1;
    margin-top:20px;
}

.services-list{
    margin-top:100px;
    border-top:1px solid var(--border);
}

.service-item{
    display:grid;
    grid-template-columns:120px 1fr 100px;
    align-items:center;
    padding:45px 0;
    border-bottom:1px solid var(--border);
    transition:.35s;
}

.service-item:hover{

    transform:
        translateX(18px);

    border-color:
        rgba(111,211,255,.25);

    box-shadow:
        0 0 40px rgba(111,211,255,.06);

}

.service-number{
    color:var(--muted);
    font-size:20px;
}

.service-content h3{
    font-size:42px;
    margin-bottom:10px;
}

.service-content p{
    color:var(--muted);
    max-width:600px;
}

.service-item i{
    font-size:38px;
    color:var(--accent);
    justify-self:end;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
}

.about-right p{
    font-size:28px;
    line-height:1.5;
    color:#d0d0d0;
}

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:60px;
}

.stat-card{
    background:rgba(255,255,255,.03);
    border:1px solid var(--border);
    border-radius:24px;
    padding:35px;
}

.stat-card h3{
    font-size:44px;
    color:var(--accent);
    margin-bottom:10px;
}

.review{
    background:rgba(255,255,255,.03);
    border:1px solid var(--border);
    border-radius:30px;
    padding:45px;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:80px;
}

.review p{
    font-size:26px;
    line-height:1.5;
    margin-bottom:30px;
}

.review span{
    color:var(--muted);
}

.contacts-box{
    border:1px solid var(--border);
    border-radius:40px;
    padding:80px;
    display:grid;
	gap:40px;
	grid-template-columns:1fr 1fr;
    justify-content:space-between;
    align-items:stretch;
    background:rgba(255,255,255,.03);
}

.contacts-left{

    display:flex;

    flex-direction:column;

    justify-content:space-between;

}

.map-wrapper{

    min-height:500px;

    border-radius:36px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:

        0 20px 60px rgba(0,0,0,.35),

        0 0 50px rgba(111,211,255,.06);

}
.contacts-right{
    display:flex;
    flex-direction:column;
    gap:20px;
    align-items:flex-start;
}

.contacts-right a{
    font-size:36px;
    color:white;
    text-decoration:none;
}

.contacts-right p{
    color:var(--muted);
}

.footer{
    border-top:1px solid var(--border);
    padding:30px 0 120px;
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    color:var(--muted);
}

.mobile-bar{
    position:fixed;
    left:20px;
    right:20px;
    bottom:20px;
    background:rgba(20,20,20,.9);
    backdrop-filter:blur(20px);
    border:1px solid var(--border);
    border-radius:24px;
    display:none;
    padding:14px;
    z-index:999;
    gap:12px;
}

.mobile-bar a,
.mobile-bar button{
    flex:1;
    border:none;
    padding:16px;
    border-radius:16px;
    text-align:center;
    text-decoration:none;
    background:var(--accent);
    color:black;
    font-weight:700;
}

.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.7);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
    backdrop-filter:blur(10px);
}

.modal-content{
    width:500px;
    max-width:90%;
    background:#111;
    border:1px solid var(--border);
    border-radius:30px;
    padding:40px;
    position:relative;
}

.modal-content h3{
    font-size:38px;
    margin-bottom:30px;
}

.modal-content input,
.modal-content textarea{
    width:100%;
    background:#191919;
    border:1px solid var(--border);
    border-radius:18px;
    padding:18px;
    color:white;
    margin-bottom:18px;
    font-family:inherit;
}

.full-btn{
    width:100%;
}

.close-modal{
    position:absolute;
    top:20px;
    right:20px;
    background:none;
    border:none;
    color:white;
    font-size:32px;
    cursor:pointer;
}

.reveal,
.reveal-delay{

    opacity:1;

    transform:
        translateY(0)
        scale(1);

    transition:

        opacity 1.2s cubic-bezier(.2,.8,.2,1),

        transform 1.2s cubic-bezier(.2,.8,.2,1);

}

.js .reveal,
.js .reveal-delay{

    opacity:0;

    transform:
        translateY(80px)
        scale(.96);

}

.js .reveal.active,
.js .reveal-delay.active{

    opacity:1;

    transform:
        translateY(0)
        scale(1);

}

.reveal-delay{
    transition-delay:.18s;
}

@media(max-width:1000px){

    .hero-container,
    .about-grid,
    .reviews-grid,
    .contacts-box{
        grid-template-columns:1fr;
        display:grid;
    }

    .stats{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .menu,
    .nav-phone{
        display:none;
    }

    .hero h1{
        font-size:72px;
    }

    .services,
    .about,
    .reviews,
    .contacts{
        padding:120px 0;
    }

    .service-item{
        grid-template-columns:1fr;
        gap:20px;
    }

    .service-item i{
        justify-self:start;
    }

    .service-content h3{
        font-size:32px;
    }

    .contacts-box{
        padding:40px;
    }

    .contacts-right a{
        font-size:28px;
    }

    .mobile-bar{
        display:flex;
    }

}
@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

.floating-card{

    animation:
        float 7s ease-in-out infinite;

}

.floating-card:nth-child(2){

    animation-delay:1.5s;

}

.floating-card:nth-child(3){

    animation-delay:3s;

}