: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:'Manrope',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:calc(100vh - 90px);

    display:flex;
    align-items:center;

    position:relative;
    overflow:hidden;

    padding-top:90px;

    isolation:isolate;
}

.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;
	pointer-events:none;

}

.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;

    position:relative;
    z-index:5;
}

.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:800;
    letter-spacing:-5px;

    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);

}

.contact-socials{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:10px;

}

.contact-socials a{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 18px;

    border-radius:18px;

    text-decoration:none;

    color:white;

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.03)
        );

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

    transition:.35s cubic-bezier(.2,.8,.2,1);

    backdrop-filter:blur(16px);

}

.contact-socials a:hover{

    transform:
        translateY(-4px);

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

    box-shadow:
        0 10px 30px rgba(0,140,255,.15);

}

.contact-socials i{

    font-size:20px;

    color:var(--accent);

}

.error-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.error-wrap span{

    font-size:160px;

    font-weight:700;

    color:var(--accent);

    line-height:1;

}

.error-wrap h1{

    font-size:54px;

    margin-bottom:20px;

}

.error-wrap p{

    color:var(--muted);

    margin-bottom:40px;

    font-size:20px;

}

.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:50%;
    transform:translateX(-50%);

    bottom:16px;

    width:calc(100% - 20px);
    max-width:460px;

    display:none;

    grid-template-columns:repeat(4,1fr);

    gap:10px;

    padding:10px;

    background:rgba(15,15,15,.92);

    backdrop-filter:blur(20px);

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

    border-radius:22px;

    z-index:9999;

    box-shadow:
        0 10px 40px rgba(0,0,0,.4);

}

.mobile-bar a{

    height:56px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    text-decoration:none;

    color:white;

    background:

        linear-gradient(
            135deg,
            rgba(111,211,255,.18),
            rgba(0,140,255,.18)
        );

    border:1px solid rgba(111,211,255,.15);

    transition:.3s;

}

.mobile-bar i{

    font-size:24px;

}

@media(max-width:768px){

    .mobile-bar{
        display:grid;
    }

}

.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;
}

.schedule{
    padding:180px 0;
}

.schedule-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:40px;

    margin-top:80px;

}

.schedule-card{

    background:

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

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

    border-radius:36px;

    padding:40px;

    backdrop-filter:blur(24px);

}

.schedule-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.06);

}

.schedule-row span{

    color:#d5dbe7;

    font-size:18px;

}

.schedule-row p{

    color:white;

    font-size:18px;

    font-weight:500;

}

.schedule-info{

    background:rgba(255,255,255,.03);

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

    border-radius:36px;

    padding:50px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.schedule-badge{

    width:max-content;

    padding:10px 16px;

    border-radius:100px;

    font-size:14px;

    border:1px solid transparent;

    transition:.3s;

}

.schedule-badge.open{

    background:rgba(0,255,140,.12);

    color:#6dffb0;

    border-color:rgba(109,255,176,.15);

}

.schedule-badge.closed{

    background:rgba(255,80,80,.12);

    color:#ff7b7b;

    border-color:rgba(255,123,123,.15);

}

.schedule-info h3{

    font-size:48px;

    line-height:1.05;

    margin-bottom:24px;

}

.schedule-info p{

    color:var(--muted);

    font-size:20px;

    line-height:1.6;

}

.schedule-lunch{

    margin-top:30px;

    color:var(--accent);

    font-size:16px;

}

@media(max-width:1000px){

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

}

@media(max-width:768px){

    .schedule{
        padding:120px 0;
    }

    .schedule-info h3{
        font-size:36px;
    }

    .schedule-row{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

}

@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:56px;
		letter-spacing:-2px;
    }

    .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:grid;
    }

}

@media(max-width:768px){

    .hero{
        padding-top:120px;
    }

}

@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;

}