*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --cyan:#00d9ff;
    --text:#d9dde5;
    --muted:#9ca3af;
    --border:rgba(255,255,255,.13);
}

html{
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    font-family:'Inter',sans-serif;
    color:#fff;
    background:
        radial-gradient(circle at 72% 20%, rgba(0,217,255,.16), transparent 34%),
        linear-gradient(135deg,#05080c,#071019 55%,#030507);
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

/* MAIN */

.site-shell{
    width:100%;
    min-height:100vh;
    padding:8px 8px 0;
}

.hero-card{
    width:100%;
    min-height:100vh;
    position:relative;
    overflow:hidden;
    border-radius:8px 8px 0 0;
    border:1px solid var(--border);
    border-bottom:0;
    background:
        radial-gradient(circle at 72% 45%, rgba(0,217,255,.13), transparent 35%),
        linear-gradient(120deg,#05080b,#071018 55%,#040608);
}

/* ============================
   HEADER
============================ */

.hero-header{
    width:100%;
    height:88px;
    padding:0 70px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    position:relative;
    z-index:100;
}


/* ============================
   LOGO + TELSYNC
============================ */

.brand{
    display:flex;
    align-items:center;

    gap:16px;

    z-index:5;

    line-height:1;

    white-space:nowrap;

    text-decoration:none;

    flex-shrink:0;

    width:280px;
}


.brand img{

    width:60px;
    height:60px;

    object-fit:contain;

    display:block;

    flex-shrink:0;

    filter:drop-shadow(0 0 18px rgba(0,217,255,.7));

}



.brand-name{

    display:inline-block;

    font-family:'Audiowide', cursive !important;

    color:#ffffff;

    font-size:24px;

    letter-spacing:3px;

    line-height:1;

}





/* ============================
   NAVIGATION
============================ */

.nav-menu{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:55px;

    flex:1;

}



.nav-menu a{

    position:relative;

    font-family:'Audiowide', cursive;

    font-size:13px;

    letter-spacing:1.5px;

    color:#ffffff;

    text-decoration:none;

    white-space:nowrap;

    transition:.3s ease;

}



.nav-menu a:hover{

    color:var(--cyan);

}



.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--cyan);

    box-shadow:0 0 15px var(--cyan);

    transition:.35s ease;

}



.nav-menu a:hover::after{

    width:100%;

}





/* ============================
   MENU ICON
============================ */

.menu-btn{

    display:none;

    margin-left:25px;

    background:none;

    border:none;

    cursor:pointer;

}



.menu-btn span{

    display:block;

    width:32px;

    height:2px;

    background:white;

    margin:7px 0;

}






/* ============================
   TABLET
============================ */

@media(max-width:1100px){


.hero-header{

    padding:0 35px;

}


.brand{

    width:230px;

}


.nav-menu{

    gap:28px;

}


.nav-menu a{

    font-size:12px;

}


}








/* ============================
   MOBILE
============================ */

@media(max-width:900px){


.hero-header{

    height:80px;

    padding:0 25px;

}



.brand{

    width:auto;

}



.brand img{

    width:52px;

    height:52px;

}



.brand-name{

    font-size:20px;

    letter-spacing:2px;

}





.nav-menu{

    position:absolute;

    top:80px;

    left:20px;

    right:20px;

    transform:none;


    display:none;

    flex-direction:column;

    gap:25px;

    padding:28px;


    background:rgba(5,8,12,.96);

    backdrop-filter:blur(18px);

    border:1px solid var(--border);

    border-radius:18px;

}



.nav-menu.active{

    display:flex;

}



.menu-btn{

    display:block;

}


}







/* ============================
   SMALL PHONES
============================ */

@media(max-width:500px){


.brand{

    gap:10px;

}



.brand img{

    width:48px;

    height:48px;

}



.brand-name{

    font-size:17px;

    letter-spacing:2px;

}


}

/* HERO */

.hero-content{
    min-height:calc(100vh - 88px);
    display:grid;
    grid-template-columns:46% 54%;
    align-items:center;
}

.hero-copy{
    padding-left:70px;
    transform:translateY(-8px) scale(.92);
    transform-origin:left center;
    position:relative;
    z-index:10;
}

.eyebrow{
    font-family:'Audiowide',cursive;
    color:var(--cyan);
    font-size:15px;
    letter-spacing:6px;
    margin-bottom:26px;
}

.hero-copy h1{
    font-family:'Audiowide',cursive;
    font-size:clamp(52px,5.1vw,84px);
    line-height:1.1;
    letter-spacing:3px;
    text-shadow:0 3px 0 rgba(255,255,255,.12);
}

.subtitle{
    margin-top:25px;
    font-size:23px;
    line-height:1.35;
    color:var(--text);
}

.cta{
    margin-top:38px;
    display:flex;
    align-items:center;
    gap:24px;
    font-family:'Audiowide',cursive;
    font-size:13px;
}

.cta span{
    width:60px;
    height:60px;
    border-radius:50%;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.35);
    color:var(--cyan);
    font-size:25px;
}

.pager{
    margin-top:75px;
    display:flex;
    align-items:center;
    gap:24px;
    font-family:'Audiowide',cursive;
    font-size:12px;
}

.pager-line{
    width:170px;
    height:3px;
    background:rgba(255,255,255,.15);
}

.pager-line i{
    display:block;
    width:42%;
    height:100%;
    background:var(--cyan);
}

/* VISUAL */

.hero-visual{
    height:100%;
    min-height:620px;
    position:relative;
}

.blue-circle{
    position:absolute;
    width:470px;
    height:470px;
    border-radius:50%;
    right:140px;
    top:60px;
    background:radial-gradient(circle at 35% 25%,#22eaff,#0799e9 50%,#004aa5);
    box-shadow:0 0 90px rgba(0,217,255,.35);
}

.hero-image{
    position:absolute;
    width:660px;
    right:55px;
    bottom:55px;
    z-index:5;
    filter:
        drop-shadow(0 45px 45px rgba(0,0,0,.75))
        drop-shadow(0 0 25px rgba(0,217,255,.25));
}

.small-orb{
    position:absolute;
    width:150px;
    height:150px;
    border-radius:50%;
    left:75px;
    bottom:0;
    background:linear-gradient(180deg,#00dfff,#0054b8);
}

.grid-floor{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:210px;
    background:
        linear-gradient(rgba(0,217,255,.13) 1px,transparent 1px),
        linear-gradient(90deg,rgba(0,217,255,.13) 1px,transparent 1px);
    background-size:45px 45px;
    transform:perspective(500px) rotateX(65deg);
    opacity:.35;
}

/* FOOTER - BLENDED */

.footer{
    margin:0 8px 8px;
    padding:70px 70px 25px;
    border:1px solid var(--border);
    border-top:0;
    border-radius:0 0 8px 8px;
    background:
        radial-gradient(circle at 18% 18%, rgba(0,217,255,.09), transparent 28%),
        linear-gradient(180deg,#040608 0%,#040608 45%,#020305 100%);
}

.footer-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-brand img{
    width:60px;
    filter:drop-shadow(0 0 18px rgba(0,217,255,.5));
}

.footer-brand h2{
    margin-top:20px;
    font-family:'Audiowide',cursive;
    color:var(--cyan);
    letter-spacing:3px;
}

.footer-brand p{
    margin-top:15px;
    font-family:'Audiowide',cursive;
    color:white;
}

.footer-brand span{
    display:block;
    margin-top:18px;
    max-width:330px;
    color:var(--muted);
    line-height:1.7;
}

.footer-box{
    display:flex;
    flex-direction:column;
}

.footer-box h3{
    font-family:'Audiowide',cursive;
    color:var(--cyan);
    font-size:15px;
    margin-bottom:25px;
}

.footer-box a,
.footer-box p{
    margin-bottom:14px;
    color:#cbd5e1;
    font-size:15px;
    transition:.3s;
}

.footer-box a:hover{
    color:var(--cyan);
    transform:translateX(5px);
}

.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:#94a3b8;
    font-size:14px;
}

/* COMMUNITY BUTTON */

.community-btn{
    display:inline-block;
    margin-top:25px;
    padding:13px 22px;
    border-radius:40px;
    background:var(--cyan);
    color:#001014;
    font-family:'Audiowide',cursive;
    font-size:12px;
    transition:.3s;
}

.community-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 0 25px rgba(0,217,255,.7);
}

/* SOCIAL LINKS */

.social-links{
    margin-top:25px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.social-links a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid var(--border);
    color:var(--cyan);
    font-family:'Audiowide',cursive;
    font-size:12px;
    transition:.3s;
}

.social-links a:hover{
    background:var(--cyan);
    color:#001014;
    box-shadow:0 0 20px rgba(0,217,255,.7);
}
/* ======================
   SOCIAL ICONS
====================== */


.social-links{

    margin-top:25px;

    display:flex;

    align-items:center;

    gap:16px;

}



.social-links a{


    width:55px;

    height:55px;


    border-radius:50%;


    display:flex;

    justify-content:center;

    align-items:center;



    border:1px solid rgba(0,217,255,.45);



    color:#00d9ff;



    background:
    rgba(0,217,255,.04);



    transition:.35s ease;


}



.social-links a i{


    display:block;


    font-size:22px;


    color:#00d9ff;


    line-height:1;


}



.social-links a:hover{


    background:#00d9ff;


    transform:

    translateY(-7px);


    box-shadow:

    0 0 25px rgba(0,217,255,.8);


}



.social-links a:hover i{


    color:#001014;


}
/
/* FOOTER RESPONSIVE */

@media(max-width:900px){
    .footer{
        padding:50px 30px 25px;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .footer{
        margin:0 6px 6px;
        padding:45px 24px 24px;
        border-radius:0 0 10px 10px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-brand span{
        max-width:100%;
    }

    }
/* SOCIAL LINKS */

.social-links{

    margin-top:25px;

    display:flex;

    gap:14px;

}


.social-links a{


    width:45px;

    height:45px;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:50%;


    border:1px solid rgba(0,217,255,.4);


    color:var(--cyan);


    font-size:18px;


    transition:.35s ease;


    background:
    rgba(255,255,255,.03);


    backdrop-filter:blur(10px);

}



.social-links a:hover{


    background:var(--cyan);


    color:#020608;


    transform:translateY(-6px);


    box-shadow:
    0 0 25px rgba(0,217,255,.8);

}


/* LAPTOP */

@media(max-width:1250px){
    .hero-copy{
        padding-left:55px;
        transform:translateY(-5px) scale(.88);
    }

    .blue-circle{
        width:430px;
        height:430px;
        right:95px;
        top:70px;
    }

    .hero-image{
        width:600px;
        right:25px;
        bottom:65px;
    }

    .small-orb{
        width:135px;
        height:135px;
        left:45px;
    }
}

/* TABLET */

@media(max-width:900px){
    .hero-header{
        padding:0 34px;
        gap:35px;
    }

    .nav-menu{
        display:none;
        position:absolute;
        top:82px;
        left:28px;
        right:28px;
        padding:24px;
        flex-direction:column;
        background:#071018;
        border:1px solid var(--border);
        border-radius:16px;
    }

    .nav-menu.active{
        display:flex;
    }

    .menu-btn{
        display:block;
    }

    .hero-content{
        min-height:auto;
        grid-template-columns:1fr;
    }

    .hero-copy{
        padding:35px 34px 0;
        transform:none;
    }

    .hero-copy h1{
        font-size:clamp(50px,9vw,72px);
    }

    .subtitle{
        font-size:22px;
    }

    .pager{
        margin-top:65px;
    }

    .hero-visual{
        height:500px;
        min-height:500px;
        margin-top:10px;
    }

    .blue-circle{
        width:390px;
        height:390px;
        right:70px;
        top:10px;
    }

    .hero-image{
        width:610px;
        right:-10px;
        bottom:35px;
    }

    .small-orb{
        width:120px;
        height:120px;
        left:90px;
    }

    .footer{
        padding:50px 30px 25px;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

/* MOBILE */

@media(max-width:600px){
    .site-shell{
        padding:6px 6px 0;
    }

    .hero-card{
        border-radius:10px 10px 0 0;
    }

    .hero-header{
        height:76px;
        padding:0 22px;
    }

    .brand img{
        width:42px;
        height:42px;
    }

    .nav-menu{
        top:70px;
        left:16px;
        right:16px;
    }

    .hero-content{
        display:block;
    }

    .hero-copy{
        padding:30px 24px 0;
    }

    .eyebrow{
        font-size:11px;
        letter-spacing:4px;
        margin-bottom:24px;
    }

    .hero-copy h1{
        font-size:clamp(39px,12vw,56px);
        line-height:1.12;
        letter-spacing:2px;
    }

    .subtitle{
        font-size:18px;
        line-height:1.4;
        margin-top:24px;
    }

    .cta{
        margin-top:35px;
        gap:16px;
        font-size:11px;
    }

    .cta span{
        width:58px;
        height:58px;
        font-size:22px;
    }

    .pager{
        margin-top:58px;
        padding-bottom:20px;
        gap:18px;
    }

    .pager-line{
        width:125px;
    }

    .hero-visual{
        height:360px;
        min-height:360px;
        overflow:visible;
    }

    .blue-circle{
        width:260px;
        height:260px;
        left:50%;
        right:auto;
        transform:translateX(-50%);
        top:30px;
    }

    .hero-image{
        width:360px;
        left:50%;
        right:auto;
        transform:translateX(-50%);
        bottom:55px;
        z-index:5;
    }

    .small-orb{
        width:85px;
        height:85px;
        left:50%;
        transform:translateX(-140%);
        bottom:10px;
    }

    .grid-floor{
        height:150px;
    }

    .footer{
        margin:0 6px 6px;
        padding:45px 24px 24px;
        border-radius:0 0 10px 10px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-brand span{
        max-width:100%;
    }
}

/* VERY SMALL PHONES */

@media(max-width:390px){
    .hero-copy{
        padding:24px 18px 0;
    }

    .hero-copy h1{
        font-size:36px;
    }

    .subtitle{
        font-size:16px;
    }

    .hero-image{
        width:325px;
        left:50%;
        right:auto;
        transform:translateX(-50%);
    }

    .blue-circle{
        width:225px;
        height:225px;
        left:50%;
        right:auto;
        transform:translateX(-50%);
    }
}
/* PAGE LOAD ANIMATION */

body{
    opacity:0;
    transition:.5s ease;
}

body.loaded{
    opacity:1;
}



/* MENU ANIMATION */

.menu-btn span{
    transition:.3s;
}


.menu-btn.open span:nth-child(1){
    transform:
    translateY(9px)
    rotate(45deg);
}


.menu-btn.open span:nth-child(2){

    opacity:0;

}


.menu-btn.open span:nth-child(3){

    transform:
    translateY(-9px)
    rotate(-45deg);

}
/* ABOUT PAGE */

.about-main-logo{
    position:absolute;
    width:720px;
    max-width:75%;
    top:50%;
    left:50%;
    right:auto;
    bottom:auto;
    transform:translate(-50%, -50%);
    z-index:5;
    filter:
        drop-shadow(0 0 70px rgba(0,217,255,.9))
        drop-shadow(0 0 160px rgba(0,217,255,.45));
}

/* Remove circles only on about page */
.about-page .blue-circle,
.about-page .small-orb{
    display:none;
}

/* Big glow behind logo */
.about-page .hero-visual::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    background:
        radial-gradient(
            circle,
            rgba(0,217,255,.28),
            rgba(0,217,255,.08) 40%,
            transparent 70%
        );
    border-radius:50%;
    z-index:1;
}

.about-section{
    margin:0 8px;
    padding:80px 70px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:55px;
    background:#040608;
    border-left:1px solid var(--border);
    border-right:1px solid var(--border);
}

.about-left h2{
    font-family:'Audiowide',cursive;
    font-size:38px;
    margin-bottom:25px;
}

.about-left p{
    color:var(--text);
    font-size:17px;
    line-height:1.8;
    margin-bottom:18px;
}

.about-card-logo,
.value-card,
.about-ending{
    border:1px solid var(--border);
    background:rgba(255,255,255,.035);
    border-radius:18px;
}

.about-card-logo{
    min-height:330px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.about-card-logo img{
    width:120px;
    filter:drop-shadow(0 0 30px rgba(0,217,255,.55));
}

.about-card-logo h3{
    font-family:'Audiowide',cursive;
    color:var(--cyan);
    font-size:34px;
    margin-top:25px;
}

.about-card-logo p{
    margin-top:12px;
    color:var(--text);
    font-family:'Audiowide',cursive;
}

.value-section{
    margin:0 8px;
    padding:0 70px 80px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    background:#040608;
    border-left:1px solid var(--border);
    border-right:1px solid var(--border);
}

.value-card{
    padding:32px;
}

.value-card h3{
    font-family:'Audiowide',cursive;
    color:var(--cyan);
    margin-bottom:18px;
}

.value-card p{
    color:var(--text);
    line-height:1.7;
}

.about-ending{
    margin:0 8px;
    padding:60px 30px;
    text-align:center;
    background:
        radial-gradient(circle at 50% 50%, rgba(0,217,255,.12), transparent 35%),
        #040608;
    border-radius:0;
    border-left:1px solid var(--border);
    border-right:1px solid var(--border);
}

.about-ending h2{
    font-family:'Audiowide',cursive;
    font-size:32px;
}

.about-ending p{
    margin-top:15px;
    color:var(--text);
}

.about-ending a{
    margin-top:25px;
    display:inline-block;
    padding:14px 34px;
    background:var(--cyan);
    color:#001014;
    border-radius:8px;
    font-family:'Audiowide',cursive;
    font-size:13px;
}

/* PAGE 2 INDICATOR */

.pager.page-two .pager-line{
    position:relative;
    overflow:hidden;
}

.pager.page-two .pager-line i{
    width:33.3%;
    margin-left:33.3%;
}

/* ABOUT RESPONSIVE */

@media(max-width:900px){
    .about-main-logo{
        width:460px;
        max-width:80%;
    }

    .about-page .hero-visual::before{
        width:480px;
        height:480px;
    }

    .about-section,
    .value-section{
        grid-template-columns:1fr;
        padding:55px 30px;
    }
}

@media(max-width:600px){
    .about-main-logo{
        width:420px;
        max-width:90%;
    }

    .about-page .hero-visual::before{
        width:420px;
        height:420px;
    }

    .about-section,
    .value-section{
        margin:0 6px;
        padding:45px 24px;
    }

    .about-left h2,
    .about-ending h2{
        font-size:25px;
    }

}
/* NEW SERVICES PAGE */

.services-page-new{
    margin:0 8px;
    padding:90px 70px;
    position:relative;
    overflow:hidden;
    min-height:100vh;
    border-left:1px solid var(--border);
    border-right:1px solid var(--border);
    background:
        radial-gradient(circle at 20% 15%, rgba(0,217,255,.14), transparent 28%),
        radial-gradient(circle at 85% 25%, rgba(0,100,255,.16), transparent 30%),
        linear-gradient(135deg,#05080c,#071019 55%,#030507);
}

.services-hero-new{
    text-align:center;
    position:relative;
    z-index:5;
    margin-bottom:65px;
}

.services-hero-new h1{
    font-family:'Audiowide',cursive;
    font-size:clamp(58px,8vw,110px);
    line-height:.95;
    letter-spacing:4px;
}

.services-hero-new p{
    margin:22px auto 0;
    max-width:620px;
    color:var(--text);
    font-size:18px;
    line-height:1.7;
}

.services-photo-grid{
    max-width:1250px;
    margin:0 auto;
    position:relative;
    z-index:5;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-photo-card{
    overflow:hidden;
    border-radius:26px;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.045);
    backdrop-filter:blur(18px);
    transition:.35s ease;
}

.service-photo-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,217,255,.65);
    box-shadow:0 0 38px rgba(0,217,255,.16);
}

.service-photo-card img{
    width:100%;
    height:190px;
    object-fit:cover;
    display:block;
}

.service-card-body{
    padding:25px 24px 28px;
    text-align:center;
}

.service-card-body h3{
    font-family:'Audiowide',cursive;
    color:var(--cyan);
    font-size:17px;
    margin-bottom:14px;
}

.service-card-body p{
    color:#cbd5e1;
    font-size:14px;
    line-height:1.7;
}

.services-orb{
    position:absolute;
    border-radius:50%;
    background:radial-gradient(circle at 30% 25%,#22eaff,#006eff);
    opacity:.75;
    z-index:1;
}

.orb-one{
    width:120px;
    height:120px;
    top:90px;
    left:-45px;
}

.orb-two{
    width:90px;
    height:90px;
    top:140px;
    right:90px;
}

.orb-three{
    width:150px;
    height:150px;
    bottom:120px;
    left:130px;
}

.services-action{
    margin-top:60px;
    text-align:center;
    position:relative;
    z-index:5;
}

.services-action a{
    display:inline-flex;
    padding:15px 38px;
    border-radius:999px;
    background:var(--cyan);
    color:#001014;
    font-family:'Audiowide',cursive;
    font-size:13px;
    box-shadow:0 0 35px rgba(0,217,255,.28);
}

/* SERVICES RESPONSIVE */

@media(max-width:900px){
    .services-page-new{
        padding:70px 30px;
    }

    .services-photo-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .services-page-new{
        margin:0 6px;
        padding:55px 22px;
    }

    .services-hero-new h1{
        font-size:46px;
    }

    .services-photo-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .service-photo-card img{
        height:180px;
    }

    .orb-one{
        width:80px;
        height:80px;
    }

    .orb-two{
        width:70px;
        height:70px;
        right:-20px;
    }

    .orb-three{
        width:100px;
        height:100px;
        left:-30px;
    }
}
/* PRICING PAGE */

.pricing-page{
    margin:0 8px;
    min-height:100vh;
    padding:90px 70px;
    background:
        radial-gradient(circle at 50% 20%, rgba(0,217,255,.16), transparent 35%),
        linear-gradient(135deg,#05080c,#071019 55%,#030507);
    border-left:1px solid var(--border);
    border-right:1px solid var(--border);
    overflow:hidden;
}

.pricing-heading{
    text-align:center;
    margin-bottom:70px;
}

.pricing-heading h1{
    font-family:'Audiowide',cursive;
    font-size:clamp(58px,9vw,130px);
    line-height:.9;
    letter-spacing:4px;
}

.pricing-heading p{
    color:var(--text);
    margin-top:18px;
}

.pricing-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    align-items:center;
}

.price-card{
    padding:42px 32px;
    min-height:540px;
    border-radius:34px;
    text-align:center;
    border:1px solid rgba(0,217,255,.45);
    background:rgba(255,255,255,.045);
    backdrop-filter:blur(20px);
    box-shadow:
        inset 0 0 35px rgba(255,255,255,.025),
        0 0 35px rgba(0,217,255,.08);
    transition:.35s;
}

.price-card.featured{
    transform:translateY(-35px);
    min-height:600px;
    box-shadow:
        0 0 55px rgba(0,217,255,.22),
        inset 0 0 45px rgba(0,217,255,.06);
}

.price-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 45px rgba(0,217,255,.2);
}

.price-card.featured:hover{
    transform:translateY(-45px);
}

.price-card h2{
    font-family:'Audiowide',cursive;
    font-size:28px;
    margin-bottom:18px;
}

.price{
    font-family:'Audiowide',cursive;
    color:var(--cyan);
    font-size:30px;
    margin-bottom:28px;
}

.price-card ul{
    list-style:none;
    text-align:left;
    margin:0 auto 32px;
}

.price-card li{
    color:#dbeafe;
    margin-bottom:13px;
    font-size:15px;
    line-height:1.5;
}

.price-card a{
    display:inline-block;
    padding:13px 38px;
    border-radius:999px;
    background:var(--cyan);
    color:#001014;
    font-family:'Audiowide',cursive;
    font-size:12px;
    box-shadow:0 0 30px rgba(0,217,255,.35);
}

@media(max-width:900px){
    .pricing-page{
        padding:70px 30px;
    }

    .pricing-grid{
        grid-template-columns:1fr;
        max-width:520px;
    }

    .price-card,
    .price-card.featured{
        transform:none;
        min-height:auto;
    }

    .price-card.featured:hover,
    .price-card:hover{
        transform:translateY(-8px);
    }
}

@media(max-width:600px){
    .pricing-page{
        margin:0 6px;
        padding:55px 22px;
    }

    .pricing-heading h1{
        font-size:48px;
    }

    .price-card{
        padding:34px 24px;
    }
}
/* CONTACT PAGE CLEAN */

.contact-page-clean{
    min-height:calc(100vh - 88px);
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    padding:60px 70px 80px;
}

.contact-form-side{
    position:relative;
    z-index:5;
}

.contact-form-side h1{
    font-family:'Audiowide',cursive;
    font-size:clamp(48px,5vw,82px);
    line-height:1.1;
    margin-top:25px;
}

.contact-subtitle{
    margin-top:25px;
    color:var(--text);
    font-size:20px;
    line-height:1.6;
    max-width:560px;
}

.contact-form{
    margin-top:35px;
    max-width:680px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:18px 20px;
    border-radius:10px;
    border:1px solid rgba(0,217,255,.35);
    background:rgba(255,255,255,.035);
    color:#fff;
    outline:none;
    font-family:'Inter',sans-serif;
    font-size:15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#9ca3af;
}

.contact-form select{
    color:#9ca3af;
}

.contact-form textarea{
    height:150px;
    resize:none;
    margin-bottom:18px;
}

.contact-form button{
    border:none;
    padding:17px 34px;
    border-radius:10px;
    background:var(--cyan);
    color:#001014;
    font-family:'Audiowide',cursive;
    cursor:pointer;
    box-shadow:0 0 35px rgba(0,217,255,.35);
}

.contact-card-side{
    min-height:500px;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    perspective:1600px;
}

.contact-glow{
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(0,217,255,.20), transparent 65%);
}

.contact-card-flip{
    width:620px;
    height:390px;
    position:relative;
    z-index:5;
    perspective:1600px;
}

.contact-card-inner{
    width:100%;
    height:100%;
    position:relative;
    transform-style:preserve-3d;
    transition:transform .9s ease;
}

.contact-card-flip:hover .contact-card-inner{
    transform:rotateY(180deg);
}

.contact-card-face{
    position:absolute;
    inset:0;
    border-radius:24px;
    overflow:hidden;
    backface-visibility:hidden;
    border:1px solid rgba(0,217,255,.45);
    box-shadow:0 40px 70px rgba(0,0,0,.65), 0 0 45px rgba(0,217,255,.24);
}

.contact-card-face img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.contact-card-back{
    transform:rotateY(180deg);
}

@media(max-width:1000px){
    .contact-page-clean{
        grid-template-columns:1fr;
        padding:45px 34px 70px;
    }

    .contact-card-side{
        min-height:390px;
    }
}

@media(max-width:600px){
    .contact-page-clean{
        padding:35px 22px 60px;
    }

    .contact-form-side h1{
        font-size:40px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-card-side{
        min-height:270px;
    }

    .contact-card-flip{
        width:330px;
        height:210px;
    }

    .contact-glow{
        width:300px;
        height:300px;
    }
}
/* PRICING PAGE INDICATOR */

.pricing-pager{

    margin:35px auto 0;

    justify-content:center;

    width:fit-content;

}
/* CENTER PAGE INDICATOR */

.center-pager{

    margin:35px auto 0;

    justify-content:center;

    width:fit-content;

}
/* PROJECTS PAGE */

.projects-page{
    margin:0 8px;
    min-height:100vh;
    padding:90px 70px;
    position:relative;
    overflow:hidden;
    border-left:1px solid var(--border);
    border-right:1px solid var(--border);
    background:
        radial-gradient(circle at 20% 15%, rgba(0,217,255,.13), transparent 30%),
        radial-gradient(circle at 85% 35%, rgba(0,100,255,.14), transparent 32%),
        linear-gradient(135deg,#05080c,#071019 55%,#030507);
}

.projects-heading{
    text-align:center;
    margin-bottom:65px;
}

.projects-heading h1{
    font-family:'Audiowide',cursive;
    font-size:clamp(56px,8vw,110px);
    line-height:.95;
    letter-spacing:4px;
}

.projects-heading p{
    max-width:650px;
    margin:22px auto 0;
    color:var(--text);
    font-size:18px;
    line-height:1.7;
}

.projects-grid{
    max-width:1250px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.project-card{
    min-height:310px;
    padding:35px 30px;
    border-radius:26px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(18px);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.project-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    right:-70px;
    top:-70px;
    border-radius:50%;
    background:rgba(0,217,255,.09);
}

.project-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,217,255,.6);
    box-shadow:0 0 38px rgba(0,217,255,.14);
}

.project-number{
    font-family:'Audiowide',cursive;
    color:var(--cyan);
    font-size:18px;
    margin-bottom:22px;
}

.project-card h3{
    font-family:'Audiowide',cursive;
    color:#fff;
    font-size:22px;
    margin-bottom:18px;
}

.project-card p{
    color:#cbd5e1;
    line-height:1.8;
    font-size:15px;
}

.project-card span{
    display:inline-block;
    margin-top:24px;
    padding:9px 14px;
    border-radius:999px;
    color:var(--cyan);
    border:1px solid rgba(0,217,255,.35);
    font-size:12px;
    font-family:'Audiowide',cursive;
}

.projects-action{
    margin-top:60px;
    text-align:center;
}

.projects-action a{
    display:inline-flex;
    padding:15px 38px;
    border-radius:999px;
    background:var(--cyan);
    color:#001014;
    font-family:'Audiowide',cursive;
    font-size:13px;
    box-shadow:0 0 35px rgba(0,217,255,.28);
}

@media(max-width:900px){
    .projects-page{
        padding:70px 30px;
    }

    .projects-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .projects-page{
        margin:0 6px;
        padding:55px 22px;
    }

    .projects-heading h1{
        font-size:44px;
    }

    .projects-grid{
        grid-template-columns:1fr;
    }
}
/* PROJECT CATEGORIES */

.project-category-grid{
    max-width:1250px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.project-category-card{
    min-height:300px;
    padding:35px 30px;
    border-radius:28px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(18px);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.project-category-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    right:-70px;
    top:-70px;
    border-radius:50%;
    background:rgba(0,217,255,.11);
}

.project-category-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,217,255,.65);
    box-shadow:0 0 40px rgba(0,217,255,.16);
}

.project-category-card span{
    font-family:'Audiowide',cursive;
    color:var(--cyan);
    font-size:18px;
}

.project-category-card h3{
    margin-top:45px;
    font-family:'Audiowide',cursive;
    font-size:23px;
}

.project-category-card p{
    margin-top:18px;
    color:var(--text);
    line-height:1.8;
}


/* PROJECT DETAIL */

.project-detail-page{
    margin:0 8px;
    min-height:100vh;
    padding:90px 70px;
    border-left:1px solid var(--border);
    border-right:1px solid var(--border);
    background:
        radial-gradient(circle at 20% 15%, rgba(0,217,255,.13), transparent 30%),
        linear-gradient(135deg,#05080c,#071019 55%,#030507);
}

.project-detail-heading{
    text-align:center;
    margin-bottom:60px;
}

.project-detail-heading h1{
    font-family:'Audiowide',cursive;
    font-size:clamp(44px,6vw,86px);
}

.project-detail-heading p{
    max-width:700px;
    margin:20px auto 0;
    color:var(--text);
    line-height:1.7;
}

.back-projects{
    display:inline-block;
    margin-top:25px;
    color:var(--cyan);
    font-family:'Audiowide',cursive;
    font-size:12px;
}

.project-gallery-grid{
    max-width:1250px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.gallery-card{
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.04);
    transition:.35s;
}

.gallery-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,217,255,.65);
}

.gallery-card img{
    width:100%;
    height:210px;
    object-fit:cover;
    display:block;
}

.gallery-card h3{
    padding:18px;
    font-family:'Audiowide',cursive;
    color:var(--cyan);
    font-size:15px;
}

.case-study-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.case-card{
    padding:35px 30px;
    min-height:300px;
    border-radius:26px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(18px);
}

.case-card span{
    color:var(--cyan);
    font-family:'Audiowide',cursive;
    font-size:12px;
}

.case-card h3{
    margin-top:22px;
    font-family:'Audiowide',cursive;
    font-size:23px;
}

.case-card p{
    margin-top:18px;
    color:var(--text);
    line-height:1.8;
}

.case-card a{
    display:inline-block;
    margin-top:25px;
    color:var(--cyan);
    font-family:'Audiowide',cursive;
    font-size:12px;
}

@media(max-width:900px){
    .project-category-grid,
    .case-study-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .project-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .project-detail-page{
        padding:70px 30px;
    }
}

@media(max-width:600px){
    .project-category-grid,
    .case-study-grid,
    .project-gallery-grid{
        grid-template-columns:1fr;
    }

    .project-detail-page{
        margin:0 6px;
        padding:55px 22px;
    }

    .gallery-card img{
        height:190px;
    }
}
/* ======================
LEGAL PAGES
====================== */


.legal-page{

    margin:0 8px;

    padding:90px 70px;


    min-height:100vh;


    border-left:1px solid var(--border);

    border-right:1px solid var(--border);



    background:

    radial-gradient(circle at 15% 20%, rgba(0,217,255,.13), transparent 30%),

    linear-gradient(135deg,#05080c,#071019 55%,#030507);


}



.legal-heading{

    text-align:center;

    margin-bottom:70px;

}



.legal-heading h1{


    font-family:'Audiowide',cursive;


    font-size:clamp(45px,7vw,100px);


    line-height:1;


}




.legal-heading p{


    max-width:700px;

    margin:25px auto;


    color:var(--text);


    line-height:1.8;

}




.legal-container{


    max-width:1100px;

    margin:auto;


    display:flex;

    flex-direction:column;


    gap:25px;

}




.legal-card{


    padding:35px;


    border-radius:24px;


    border:1px solid rgba(255,255,255,.14);



    background:

    rgba(255,255,255,.04);



    backdrop-filter:blur(18px);



    transition:.35s ease;

}




.legal-card:hover{


    transform:translateX(10px);


    border-color:rgba(0,217,255,.6);


    box-shadow:

    0 0 35px rgba(0,217,255,.15);


}



.legal-card h2{


    font-family:'Audiowide',cursive;


    color:var(--cyan);


    font-size:18px;


    margin-bottom:18px;


}




.legal-card p{


    color:#cbd5e1;


    line-height:1.8;


    font-size:16px;


}




@media(max-width:600px){


    .legal-page{

        margin:0 6px;

        padding:55px 22px;

    }


    .legal-heading h1{

        font-size:40px;

    }


    .legal-card{

        padding:25px;

    }


}
.project-category-grid-four{
    max-width:900px;
    grid-template-columns:repeat(2,1fr);
}

@media(max-width:600px){
    .project-category-grid-four{
        grid-template-columns:1fr;
    }
}
/* ==========================
   CLEAN CURVED PROJECT WALL
========================== */

.vr-filter{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:45px;
}

.vr-filter button{
    padding:11px 28px;
    border:1px solid rgba(0,217,255,.35);
    border-radius:999px;
    background:rgba(255,255,255,.05);
    color:white;
    font-family:'Audiowide',cursive;
    cursor:pointer;
}

.vr-filter .active{
    background:var(--cyan);
    color:#001014;
}

.vr-project-wall{
    max-width:1400px;
    margin:55px auto 80px;
    min-height:430px;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.vr-project-card{
    position:absolute;
    width:320px;
    height:auto;
    border-radius:22px;
    overflow:hidden;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.02)
        );
    border:1px solid rgba(0,217,255,.25);
    transition:.28s ease;
    cursor:pointer;
    opacity:.9;
}

/* left cards */
.vr-project-card:nth-child(1){
    transform:translateX(-580px) translateY(70px) scale(.78);
    z-index:1;
}

.vr-project-card:nth-child(2){
    transform:translateX(-325px) translateY(35px) scale(.9);
    z-index:2;
}

/* center card */
.vr-project-card:nth-child(3){
    transform:translateX(0) translateY(0) scale(1.15);
    z-index:5;
    opacity:1;
    border-color:var(--cyan);
    box-shadow:0 0 40px rgba(0,217,255,.25);
}

/* right cards */
.vr-project-card:nth-child(4){
    transform:translateX(325px) translateY(35px) scale(.9);
    z-index:2;
}

.vr-project-card:nth-child(5){
    transform:translateX(580px) translateY(70px) scale(.78);
    z-index:1;
}

.vr-project-card:hover{
    transform:translateX(0) translateY(-35px) scale(1.18) !important;
    z-index:30;
    opacity:1;
    border-color:var(--cyan);
    box-shadow:0 0 45px rgba(0,217,255,.3);
}

.vr-project-card img{
    width:100%;
    height:auto;
    aspect-ratio:16/9;
    object-fit:cover;
    display:block;
    cursor:pointer;
}

.vr-project-card div{
    min-height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:12px;
    color:white;
    font-family:'Audiowide',cursive;
    font-size:13px;
}

.vr-bottom-nav{
    max-width:900px;
    margin:30px auto 0;
    display:flex;
    justify-content:center;
    gap:25px;
    padding:16px;
    border-radius:18px;
    background:rgba(0,217,255,.07);
}

.vr-bottom-nav a{
    color:white;
    font-family:'Audiowide',cursive;
    font-size:13px;
}

.vr-bottom-nav a:hover{
    color:var(--cyan);
}

/* RESPONSIVE */

@media(max-width:1200px){
    .vr-project-card{
        width:280px;
    }

    .vr-project-card:nth-child(1){
        transform:translateX(-490px) translateY(70px) scale(.78);
    }

    .vr-project-card:nth-child(2){
        transform:translateX(-260px) translateY(35px) scale(.9);
    }

    .vr-project-card:nth-child(4){
        transform:translateX(260px) translateY(35px) scale(.9);
    }

    .vr-project-card:nth-child(5){
        transform:translateX(490px) translateY(70px) scale(.78);
    }
}

@media(max-width:900px){
    .vr-project-wall{
        min-height:auto;
        overflow-x:auto;
        justify-content:flex-start;
        gap:22px;
        padding:25px 10px;
    }

    .vr-project-card,
    .vr-project-card:nth-child(n){
        position:relative;
        transform:none !important;
        min-width:280px;
        opacity:1;
    }

    .vr-project-card:hover{
        transform:translateY(-8px) scale(1.03) !important;
    }

    .vr-bottom-nav{
        overflow-x:auto;
        justify-content:flex-start;
    }
}
.blur-project{

    filter:blur(7px);

    user-select:none;

    opacity:.6;

}
/* =========================
   CONTACT FORM ALERTS
========================= */

.form-alert{

    margin:28px 0 15px;

    padding:16px 22px;

    border-radius:12px;

    font-size:15px;

    line-height:1.6;

    font-weight:500;


    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.07),
        rgba(255,255,255,.025)
    );


    border:1px solid rgba(0,217,255,.35);


    color:#cbd5e1;


    backdrop-filter:blur(15px);


    animation:alertSlide .35s ease;


}



/* SUCCESS MESSAGE */

.form-alert.success{

    color:#25D366;


    border-color:#25D366;


    box-shadow:
    0 0 25px rgba(37,211,102,.15),
    inset 0 0 20px rgba(37,211,102,.04);


}






/* ERROR MESSAGES */

.form-alert.error,
.form-alert.empty,
.form-alert.invalid_email{


    color:#ff8a8a;


    border-color:#ff4d4d;


    box-shadow:
    0 0 25px rgba(255,77,77,.12),
    inset 0 0 20px rgba(255,77,77,.04);


}






/* SMALL ENTRY ANIMATION */


@keyframes alertSlide{


    from{

        opacity:0;

        transform:translateY(-10px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }


}





@media(max-width:600px){


    .form-alert{

        font-size:14px;

        padding:14px 18px;

    }


}
.hidden-field{
    display:none !important;
}
/* ============================
   COOKIE CONSENT
============================ */

.cookie-banner{
    position:fixed;
    left:25px;
    right:25px;
    bottom:25px;
    max-width:850px;
    margin:auto;
    z-index:9999;

    display:none;
    align-items:center;
    justify-content:space-between;
    gap:25px;

    padding:20px 24px;
    border-radius:18px;

    background:rgba(5,8,12,.96);
    border:1px solid rgba(0,217,255,.35);
    box-shadow:0 0 40px rgba(0,0,0,.45);
    backdrop-filter:blur(18px);
}

.cookie-text strong{
    color:var(--cyan);
    font-family:'Audiowide', cursive;
    font-size:14px;
}

.cookie-text p{
    margin-top:8px;
    color:#cbd5e1;
    font-size:14px;
    line-height:1.6;
}

.cookie-actions{
    display:flex;
    gap:12px;
    flex-shrink:0;
}

.cookie-actions button{
    padding:11px 20px;
    border-radius:999px;
    cursor:pointer;
    font-weight:700;
    border:1px solid rgba(0,217,255,.35);
}

#rejectCookies{
    background:transparent;
    color:#cbd5e1;
}

#acceptCookies{
    background:var(--cyan);
    color:#001014;
}

@media(max-width:700px){
    .cookie-banner{
        flex-direction:column;
        align-items:flex-start;
    }

    .cookie-actions{
        width:100%;
    }

    .cookie-actions button{
        width:100%;
    }
}