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

body{
  font-family:'Poppins',sans-serif;
  background:#05070d;
  color:#fff;
  overflow-x:hidden;
}

/* 3D CANVAS */
#bg{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:-1;
}

/* HEADER */
.vh{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 40px;
  background:rgba(0,0,0,0.4);
  backdrop-filter:blur(12px);
  z-index:1000;
}

.vl{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
}

.vl-orb{
  width:12px;
  height:12px;
  background:#00f0ff;
  border-radius:50%;
  box-shadow:0 0 20px #00f0ff;
}

.vl-text b{
  font-family:'Orbitron',sans-serif;
  letter-spacing:2px;
}

.vl-text small{
  display:block;
  font-size:10px;
  color:#aaa;
}

.vn{
  display:flex;
  gap:25px;
  align-items:center;
}

.vn a{
  text-decoration:none;
  color:#ccc;
  font-size:14px;
  transition:.3s;
}

.vn a:hover{
  color:#00f0ff;
}

/* CTA */
.vc{
  padding:10px 18px;
  background:#00f0ff;
  color:#000 !important;
  border-radius:20px;
  font-weight:600;
  box-shadow:0 0 15px #00f0ff;
}

/* DROPDOWN */
.vd{
  position:relative;
}

.vd button{
  background:none;
  border:none;
  color:#ccc;
  cursor:pointer;
}

.vd-menu{
  position:absolute;
  top:30px;
  left:0;
  background:#0c0f1c;
  padding:10px;
  border-radius:10px;
  display:none;
  flex-direction:column;
}

.vd:hover .vd-menu{
  display:flex;
}

.vd-menu a{
  padding:5px 10px;
}

/* MOBILE MENU */
.vm{
  display:none;
  flex-direction:column;
  gap:4px;
  background:none;
  border:none;
}

.vm span{
  width:25px;
  height:3px;
  background:#fff;
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 20px;
}

.hero h1{
  font-size:42px;
  max-width:900px;
  font-family:'Orbitron',sans-serif;
  margin-bottom:20px;
}

.hero p{
  max-width:600px;
  color:#aaa;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:15px;
}

.btn{
  padding:12px 25px;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
}

.primary{
  background:#00f0ff;
  color:#000;
  box-shadow:0 0 20px #00f0ff;
}

.secondary{
  border:1px solid #00f0ff;
  color:#00f0ff;
}

/* FOOTER */
.vf{
  padding:60px 40px;
  background:#070a14;
}

.vf-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.vf a{
  display:block;
  color:#aaa;
  margin-top:5px;
  text-decoration:none;
}

.vf-bottom{
  margin-top:30px;
  display:flex;
  justify-content:space-between;
  font-size:12px;
  color:#777;
}

/* STICKY BUTTONS */
.sticky-wa,
.sticky-tg{
  position:fixed;
  right:20px;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  z-index:999;
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 10px 30px rgba(0,0,0,.5);
  transition:.3s;
}

/* WhatsApp */
.sticky-wa{
  bottom:20px;
  background:linear-gradient(135deg,#25d366,#0a5);
  color:#fff;
}

/* Telegram */
.sticky-tg{
  bottom:85px;
  background:linear-gradient(135deg,#0088cc,#004f7a);
  color:#fff;
}

/* Hover effect */
.sticky-wa:hover,
.sticky-tg:hover{
  transform:translateY(-5px) scale(1.05);
  box-shadow:0 15px 40px rgba(0,0,0,.7);
}

/* MOBILE */
@media(max-width:900px){

  .vn{
    position:fixed;
    top:70px;
    right:-100%;
    flex-direction:column;
    background:#0b0f1c;
    width:250px;
    height:100%;
    padding:20px;
    transition:.4s;
  }

  .vn.active{
    right:0;
  }

  .vm{
    display:flex;
  }

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

  .hero h1{
    font-size:28px;
  }
}
.cursor-glow{
  position:fixed;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(0,240,255,.16),transparent 65%);
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:1;
}

.click-ripple{
  position:fixed;
  width:12px;
  height:12px;
  border-radius:50%;
  border:1px solid rgba(0,240,255,.8);
  pointer-events:none;
  transform:translate(-50%,-50%);
  animation:rip .7s ease-out forwards;
  z-index:9999;
}

@keyframes rip{
  to{
    width:140px;
    height:140px;
    opacity:0;
  }
}
.hero-badge{
  padding:10px 18px;
  border:1px solid rgba(0,240,255,.35);
  border-radius:50px;
  color:#00f0ff;
  background:rgba(0,240,255,.06);
  font-size:12px;
  letter-spacing:1.5px;
  margin-bottom:22px;
}

.dash-wrap{
  margin-top:55px;
  width:min(1050px,100%);
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:20px;
  perspective:1000px;
}

.dash-card{
  padding:24px;
  min-height:170px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:26px;
  background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
  backdrop-filter:blur(16px);
  box-shadow:0 20px 80px rgba(0,0,0,.4), inset 0 0 30px rgba(0,240,255,.05);
  transform:rotateX(8deg);
  animation:floaty 5s ease-in-out infinite;
}

.dash-card:nth-child(2){
  animation-delay:.8s;
}

.dash-card:nth-child(3){
  animation-delay:1.4s;
}

.dash-card span{
  color:#00f0ff;
  font-size:12px;
  letter-spacing:1.5px;
}

.dash-card h3{
  font-family:'Orbitron',sans-serif;
  font-size:34px;
  margin:16px 0 6px;
}

.dash-card p{
  color:#aaa;
  font-size:13px;
}

.bar{
  margin-top:25px;
  height:8px;
  background:rgba(255,255,255,.08);
  border-radius:20px;
  overflow:hidden;
}

.bar i{
  display:block;
  height:100%;
  background:linear-gradient(90deg,#00f0ff,#d4af37);
  border-radius:20px;
  animation:pulseBar 2s ease-in-out infinite;
}

.mini-graph{
  margin-top:28px;
  display:flex;
  align-items:end;
  gap:8px;
  height:50px;
}

.mini-graph i{
  width:16px;
  background:linear-gradient(#00f0ff,#123);
  border-radius:10px;
  animation:graphMove 1.4s ease-in-out infinite alternate;
}

.mini-graph i:nth-child(1){height:22px}
.mini-graph i:nth-child(2){height:38px;animation-delay:.2s}
.mini-graph i:nth-child(3){height:28px;animation-delay:.4s}
.mini-graph i:nth-child(4){height:48px;animation-delay:.6s}
.mini-graph i:nth-child(5){height:34px;animation-delay:.8s}

.radar{
  margin-top:24px;
  width:70px;
  height:70px;
  border-radius:50%;
  border:1px solid #00f0ff;
  background:radial-gradient(circle,rgba(0,240,255,.25),transparent 65%);
  box-shadow:0 0 30px rgba(0,240,255,.4);
  animation:radar 2s linear infinite;
}

.section{
  padding:110px 40px;
  position:relative;
}

.section-head{
  max-width:760px;
  margin:0 auto 45px;
  text-align:center;
}

.section-head span{
  color:#d4af37;
  font-size:12px;
  letter-spacing:2px;
}

.section-head h2{
  font-family:'Orbitron',sans-serif;
  font-size:36px;
  margin:14px 0;
}

.section-head p{
  color:#aaa;
}

.service-grid{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.service-card{
  min-height:260px;
  padding:26px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(14px);
  text-decoration:none;
  color:#fff;
  transition:.35s;
  transform-style:preserve-3d;
}

.service-card:hover{
  transform:translateY(-12px) rotateX(8deg) rotateY(-6deg);
  border-color:rgba(0,240,255,.55);
  box-shadow:0 25px 90px rgba(0,240,255,.16);
}

.service-card b{
  color:#00f0ff;
  font-family:'Orbitron',sans-serif;
}

.service-card h3{
  margin:22px 0 12px;
  font-size:22px;
}

.service-card p{
  color:#aaa;
  font-size:14px;
}

.cockpit{
  background:linear-gradient(180deg,transparent,rgba(0,240,255,.04),transparent);
}

.funnel{
  max-width:1050px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.funnel-node{
  padding:18px 24px;
  border-radius:18px;
  background:rgba(0,240,255,.08);
  border:1px solid rgba(0,240,255,.35);
  box-shadow:0 0 25px rgba(0,240,255,.12);
  font-weight:600;
}

.funnel-line{
  width:70px;
  height:2px;
  background:linear-gradient(90deg,transparent,#00f0ff,transparent);
  position:relative;
  overflow:hidden;
}

.funnel-line::after{
  content:"";
  position:absolute;
  top:0;
  left:-40%;
  width:40%;
  height:100%;
  background:#fff;
  animation:flow 1.4s linear infinite;
}

.industry-grid{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.industry-grid a{
  min-height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:25px;
  border-radius:25px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.industry-grid a:hover{
  background:rgba(0,240,255,.12);
  border-color:#00f0ff;
  transform:translateY(-8px);
}

.final-cta{
  text-align:center;
  max-width:900px;
  margin:auto;
}

.final-cta h2{
  font-family:'Orbitron',sans-serif;
  font-size:38px;
}

.final-cta p{
  color:#aaa;
  margin:18px auto 28px;
  max-width:650px;
}

@keyframes floaty{
  0%,100%{transform:translateY(0) rotateX(8deg)}
  50%{transform:translateY(-15px) rotateX(4deg)}
}

@keyframes pulseBar{
  50%{filter:brightness(1.8)}
}

@keyframes graphMove{
  to{transform:scaleY(.65)}
}

@keyframes radar{
  to{transform:rotate(360deg)}
}

@keyframes flow{
  to{left:110%}
}

@media(max-width:900px){
  .dash-wrap{
    grid-template-columns:1fr;
    margin-top:35px;
  }

  .dash-card{
    transform:none;
  }

  .section{
    padding:75px 18px;
  }

  .section-head h2{
    font-size:26px;
  }

  .service-grid,
  .industry-grid{
    grid-template-columns:1fr;
  }

  .funnel{
    flex-direction:column;
  }

  .funnel-line{
    width:2px;
    height:45px;
  }

  .hero-buttons{
    flex-direction:column;
    width:100%;
    max-width:330px;
  }

  .btn{
    width:100%;
    text-align:center;
  }

  .final-cta h2{
    font-size:26px;
  }
}
.reveal{
  opacity:0;
  transform:translateY(45px) scale(.96);
  filter:blur(8px);
  transition:1s cubic-bezier(.16,1,.3,1);
}

.reveal.show{
  opacity:1;
  transform:translateY(0) scale(1);
  filter:blur(0);
}

.btn,
.vc,
.service-card{
  position:relative;
  overflow:hidden;
}

.btn::before,
.vc::before,
.service-card::before{
  content:"";
  position:absolute;
  left:var(--mx);
  top:var(--my);
  width:0;
  height:0;
  background:radial-gradient(circle,rgba(255,255,255,.35),transparent 55%);
  transform:translate(-50%,-50%);
  transition:width .35s,height .35s;
  pointer-events:none;
}

.btn:hover::before,
.vc:hover::before,
.service-card:hover::before{
  width:260px;
  height:260px;
}

.service-card,
.dash-card,
.industry-grid a,
.funnel-node,
.btn{
  will-change:transform;
}
.page-hero{
  min-height:82vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:130px 20px 70px;
}

.page-hero h1{
  font-family:'Orbitron',sans-serif;
  font-size:46px;
  max-width:980px;
  line-height:1.15;
  margin-bottom:22px;
}

.page-hero p{
  max-width:720px;
  color:#aaa;
  margin-bottom:32px;
}

@media(max-width:900px){
  .page-hero{
    min-height:76vh;
    padding:115px 18px 55px;
  }

  .page-hero h1{
    font-size:29px;
  }

  .page-hero p{
    font-size:14px;
  }
}
.video-grid{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.video-card{
  border-radius:30px;
  padding:14px;
  background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(18px);
  box-shadow:0 25px 90px rgba(0,0,0,.45), inset 0 0 25px rgba(0,240,255,.04);
  transition:.35s;
  overflow:hidden;
}

.video-card:hover{
  transform:translateY(-12px) rotateX(6deg) rotateY(-4deg);
  border-color:rgba(0,240,255,.55);
  box-shadow:0 30px 100px rgba(0,240,255,.16);
}

.video-frame{
  height:360px;
  border-radius:22px;
  overflow:hidden;
  background:#000;
  border:1px solid rgba(0,240,255,.18);
}

.video-frame video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.video-info{
  padding:18px 8px 8px;
}

.video-info span{
  color:#00f0ff;
  font-size:11px;
  letter-spacing:1.6px;
}

.video-info h3{
  margin:8px 0;
  font-size:20px;
}

.video-info p{
  color:#aaa;
  font-size:13px;
}

@media(max-width:1000px){
  .video-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .video-grid{
    grid-template-columns:1fr;
  }

  .video-frame{
    height:430px;
  }
}
.video-grid{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.video-card{
  border-radius:30px;
  padding:14px;
  background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(18px);
  box-shadow:0 25px 90px rgba(0,0,0,.45), inset 0 0 25px rgba(0,240,255,.04);
  transition:.35s;
  overflow:hidden;
}

.video-card:hover{
  transform:translateY(-12px) rotateX(6deg) rotateY(-4deg);
  border-color:rgba(0,240,255,.55);
  box-shadow:0 30px 100px rgba(0,240,255,.16);
}

.video-frame{
  height:360px;
  border-radius:22px;
  overflow:hidden;
  background:#000;
  border:1px solid rgba(0,240,255,.18);
}

.video-frame video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.video-info{
  padding:18px 8px 8px;
}

.video-info span{
  color:#00f0ff;
  font-size:11px;
  letter-spacing:1.6px;
}

.video-info h3{
  margin:8px 0;
  font-size:20px;
}

.video-info p{
  color:#aaa;
  font-size:13px;
}

@media(max-width:1000px){
  .video-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .video-grid{
    grid-template-columns:1fr;
  }

  .video-frame{
    height:430px;
  }
}
.top-videos{
  padding-top:80px;
}

.video-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.video-card{
  border-radius:32px;
  padding:14px;
  background:linear-gradient(145deg,rgba(255,255,255,.14),rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(18px);
  box-shadow:0 25px 90px rgba(0,0,0,.45), inset 0 0 35px rgba(0,240,255,.04);
  overflow:hidden;
  transition:.35s;
}

.video-card:hover{
  transform:translateY(-12px);
  border-color:rgba(0,240,255,.7);
  box-shadow:0 30px 100px rgba(0,240,255,.18);
}

.video-frame{
  position:relative;
  height:360px;
  border-radius:24px;
  overflow:hidden;
  background:#000;
  border:1px solid rgba(0,240,255,.2);
}

.video-frame video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.play-btn{
  position:absolute;
  inset:0;
  margin:auto;
  width:72px;
  height:72px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(0,240,255,.18);
  backdrop-filter:blur(12px);
  color:#fff;
  font-size:28px;
  cursor:pointer;
  box-shadow:0 0 40px rgba(0,240,255,.55);
  z-index:5;
}

.video-frame.playing .play-btn{
  opacity:0;
  pointer-events:none;
}

.video-info{
  padding:18px 8px 8px;
}

.video-info span{
  color:#00f0ff;
  font-size:11px;
  letter-spacing:1.8px;
}

.video-info h3{
  margin:9px 0;
  font-size:21px;
}

.video-info p{
  color:#aaa;
  font-size:13px;
}

@media(max-width:1000px){
  .video-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .video-grid{
    grid-template-columns:1fr;
  }

  .video-frame{
    height:430px;
  }
}
.meta-dash{
  margin-top:10px;
}

.proof-section{
  padding-top:80px;
}

.proof-grid{
  max-width:1200px;
  margin:0 auto 34px;
  display:grid;
  gap:22px;
}

.laptop-grid{
  grid-template-columns:repeat(2,1fr);
}

.phone-grid{
  grid-template-columns:repeat(4,1fr);
}

.proof-card{
  position:relative;
  border-radius:30px;
  padding:12px;
  background:linear-gradient(145deg,rgba(255,255,255,.14),rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(18px);
  box-shadow:0 25px 90px rgba(0,0,0,.45);
  overflow:hidden;
  transition:.35s;
}

.proof-card:hover{
  transform:translateY(-10px);
  border-color:rgba(0,240,255,.7);
  box-shadow:0 30px 100px rgba(0,240,255,.18);
}

.proof-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:22px;
  background:#07101b;
}

.laptop-card{
  height:330px;
}

.phone-card{
  height:430px;
}

.proof-card span{
  position:absolute;
  left:24px;
  bottom:24px;
  padding:8px 14px;
  border-radius:30px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(0,240,255,.35);
  color:#00f0ff;
  font-size:12px;
  letter-spacing:1px;
  backdrop-filter:blur(10px);
}

@media(max-width:1000px){
  .laptop-grid,
  .phone-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .laptop-card{
    height:260px;
  }
}

@media(max-width:650px){
  .laptop-grid,
  .phone-grid{
    grid-template-columns:1fr;
  }

  .laptop-card{
    height:230px;
  }

  .phone-card{
    height:520px;
  }
}
.tg-btn{
  border:1px solid #00f0ff;
  color:#00f0ff;
  background:transparent;
  transition:.3s;
}

.tg-btn:hover{
  background:#00f0ff;
  color:#000;
  box-shadow:0 0 25px #00f0ff;
}

.proof-cta{
  margin-top:30px;
  display:flex;
  justify-content:center;
}

.tg-btn.big{
  padding:14px 32px;
  font-size:15px;
}
.portrait-grid{
  max-width:1100px;
  margin:0 auto 34px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.portrait-card{
  height:480px;
}

.portrait-card img,
.proof-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:24px;
  display:block;
}

@media(max-width:1000px){
  .portrait-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .portrait-card{
    height:430px;
  }
}

@media(max-width:650px){
  .portrait-grid{
    grid-template-columns:1fr;
  }

  .portrait-card{
    height:500px;
  }
}
.vd{
  position:relative;
  padding:14px 0;
}

.vd-menu{
  top:44px;
  min-width:210px;
  padding:18px;
  gap:12px;
  background:rgba(10,14,28,.96);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 25px 80px rgba(0,0,0,.45);
}

.vd:hover .vd-menu,
.vd-menu:hover{
  display:flex;
}
.vd-menu a{
  padding:6px 12px;
  border-radius:10px;
  font-size:18px;
}

.vd-menu a:hover{
  background:rgba(0,240,255,.08);
}
.video-frame video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.play-btn{
  z-index:20;
  pointer-events:auto;
}

.video-frame.playing .play-btn{
  opacity:0;
  pointer-events:none;
}
.vl-logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.vl-logo img{
  width:36px;
  height:36px;
  object-fit:contain;

  /* 🔥 glow effect */
  filter:drop-shadow(0 0 8px rgba(0,240,255,0.6));
}

.vl-text{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.vl-text b{
  font-size:18px;
  letter-spacing:1px;
}

.vl-text small{
  font-size:10px;
  opacity:0.7;
}
.vl-logo img{
  transition:0.3s;
}

.vl-logo:hover img{
  transform:scale(1.1);
}
/* logo container */
.vl-logo{
  display:flex;
  align-items:center;
  gap:10px;
}

/* logo image */
.vl-logo img{
  width:38px;
  height:38px;
  object-fit:cover;
  border-radius:50%;
  border:2px solid rgba(0,240,255,0.3);
  box-shadow:0 0 12px rgba(0,240,255,0.5);
  transition:0.3s;
}

.vl-logo:hover img{
  transform:scale(1.08);
}

/* text */
.vl-text{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.vl-text b{
  font-size:18px;
  letter-spacing:1px;
}

.vl-text small{
  font-size:10px;
  opacity:0.7;
}
.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:150px 20px 80px;
}
@media(max-width:900px){
  .hero{
    padding:135px 18px 70px;
    justify-content:flex-start;
  }
}
.vh{
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
}
.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:150px 20px 80px;
}
@media(max-width:900px){
  .hero{
    padding:135px 18px 70px;
    justify-content:flex-start;
  }
}
.vh{
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
}
html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

*{
  max-width:100%;
}

@media(max-width:900px){

  .vh{
    width:100%;
    height:88px;
    padding:16px 18px;
    left:0;
    right:0;
    overflow:visible;
  }

  .vm{
    display:flex !important;
    flex-direction:column;
    gap:6px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(0,240,255,.25);
    border-radius:14px;
    padding:10px;
    z-index:99999;
  }

  .vm span{
    width:30px;
    height:3px;
    border-radius:30px;
    background:#fff;
    box-shadow:0 0 10px rgba(0,240,255,.7);
  }

  .vn{
    position:fixed;
    top:88px;
    left:0;
    right:0;
    width:100%;
    height:calc(100vh - 88px);
    transform:translateX(100%);
    padding:30px 22px;
    background:rgba(5,8,18,.98);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    z-index:9999;
    transition:.35s ease;
    overflow-y:auto;
  }

  .vn.active{
    transform:translateX(0);
  }

  .vn a,
  .vd button{
    width:100%;
    text-align:center;
    font-size:20px;
    padding:13px 0;
    color:#fff;
    background:transparent;
  }

  .vd{
    width:100%;
  }

  .vd-menu{
    position:static;
    display:flex;
    width:100%;
    margin-top:8px;
    padding:10px;
    border-radius:16px;
    background:rgba(255,255,255,.05);
  }

  .hero,
  .page-hero,
  .section{
    overflow:hidden;
  }
}
.no-scroll{
  overflow:hidden;
}
html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden !important;
}

body.menu-open{
  overflow:hidden !important;
}

#bg{
  width:100% !important;
  max-width:100% !important;
  overflow:hidden !important;
}

@media(max-width:900px){

  .vh{
    width:100% !important;
    max-width:100% !important;
    left:0;
    right:0;
    overflow:visible !important;
    z-index:99999;
  }

  .vm{
    display:flex !important;
    position:relative;
    z-index:100001;
    cursor:pointer;
    pointer-events:auto;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(0,240,255,.35);
    border-radius:14px;
    padding:10px;
  }

  .vm span{
    display:block;
    width:30px;
    height:3px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 0 10px rgba(0,240,255,.8);
  }

  .vn{
    position:fixed !important;
    top:88px;
    left:0;
    right:auto;
    width:100% !important;
    max-width:100% !important;
    height:calc(100vh - 88px);
    transform:translateX(100%);
    transition:.35s ease;
    background:rgba(5,8,18,.99);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);
    z-index:100000;
    overflow-y:auto;
    overflow-x:hidden;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    padding:28px 20px;
  }

  .vn.active{
    transform:translateX(0);
  }

  .vn a,
  .vd button{
    width:100%;
    text-align:center;
    color:#fff;
    font-size:20px;
    padding:13px 0;
  }

  .vd{
    width:100%;
  }

  .vd-menu{
    position:static !important;
    display:flex !important;
    width:100%;
    margin-top:8px;
    padding:10px;
    border-radius:16px;
    background:rgba(255,255,255,.05);
  }

  .hero,
  .page-hero,
  .section,
  .dash-wrap,
  .service-grid,
  .industry-grid,
  .video-grid,
  .proof-grid{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }
}
html,
body{
  overflow-x:hidden !important;
  max-width:100% !important;
}

body.menu-open{
  overflow:hidden !important;
}

#bg{
  width:100vw !important;
  max-width:100% !important;
}
html,
body{
  width:100% !important;
  max-width:100% !important;
  overflow-x:hidden !important;
  position:relative;
}

body{
  touch-action:pan-y;
}

#bg{
  position:fixed !important;
  inset:0 !important;
  width:100% !important;
  height:100dvh !important;
  overflow:hidden !important;
}

@media(max-width:900px){

  .vh{
    width:100% !important;
    max-width:100% !important;
    left:0 !important;
    right:0 !important;
    overflow:visible !important;
  }

  .vn{
    position:fixed !important;
    top:88px !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    max-width:100% !important;
    height:calc(100dvh - 88px) !important;
    transform:translate3d(100%,0,0) !important;
    overflow-x:hidden !important;
    box-sizing:border-box !important;
  }

  .vn.active{
    transform:translate3d(0,0,0) !important;
  }

  .hero,
  .page-hero,
  .section,
  .dash-wrap,
  .service-grid,
  .industry-grid,
  .video-grid,
  .proof-grid,
  .portrait-grid,
  .laptop-grid,
  .phone-grid,
  .final-cta{
    width:100% !important;
    max-width:100% !important;
    overflow-x:hidden !important;
    box-sizing:border-box !important;
  }

  img,
  video,
  canvas{
    max-width:100% !important;
  }
}