/* ============================================================
   V DIGITAL MARKETING — ALL PREMIUM SECTION STYLES
   ============================================================ */
:root {
  --ease: cubic-bezier(0.16, 1, 0.3, 1)
}

/* ── HERO SLIDER ── */
@keyframes vhFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes vhBarGrow {
  from {
    width: 0
  }

  to {
    width: 56px
  }
}

.vhero__section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 660px;
  overflow: hidden;
  background: #000
}

.vhero__slider {
  width: 100%;
  height: 100%;
  position: relative
}

.vhero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .9s var(--ease)
}

.vhero__slide--active {
  opacity: 1;
  pointer-events: auto
}

.vhero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s linear
}

.vhero__slide--active .vhero__bg {
  transform: scale(1)
}

.vhero__bg--1 {
  background-image: url("../imgs/hero/1/1-bg.png");
  background-color: #0a0a0a
}

.vhero__bg--2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, #0e0e0e 0%, #000 60%)
}

.vhero__bg--3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, #0a0a0a 0%, #000 55%)
}

/* Strong overlay only on left half — right stays visible for scene */
.vhero__overlay--left {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .75) 45%, rgba(0, 0, 0, .3) 65%, rgba(0, 0, 0, 0) 100%)
}

/* Full width layout: text left, scene right */
.vhero__layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between
}

.vhero__content {
  width: 48%;
  flex-shrink: 0;
  padding-right: 0px
}

.vhero__scene {
  width: 48%;
  flex-shrink: 0;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

/* Text styles — left aligned */
.vhero__badge {
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(28px);
  transition: all .7s var(--ease) .1s
}

.vhero__badge a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 8px 20px;
  transition: background .3s, color .3s
}

.vhero__badge a:hover {
  background: #fff;
  color: #000
}

.vhero__tagline {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(28px);
  transition: all .7s var(--ease) .2s
}

.vhero__title {
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(36px);
  transition: all .8s var(--ease) .3s
}

.vhero__title span {
  -webkit-text-stroke: 2px #fff;
  color: transparent
}

.vhero__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.8;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(28px);
  transition: all .7s var(--ease) .45s
}

.vhero__desc strong {
  color: #fff
}

.vhero__stats {
  display: flex;
  gap: 36px;
  opacity: 0;
  transform: translateY(28px);
  transition: all .7s var(--ease) .55s
}

.vhero__num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1
}

.vhero__label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  margin-top: 4px
}

.vhero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(28px);
  transition: all .7s var(--ease) .55s
}

.vhero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s
}

.vhero__cta--primary {
  background: #fff;
  color: #000 !important;
  border: 2px solid #fff
}

.vhero__cta--primary:hover {
  background: transparent;
  color: #fff !important
}

.vhero__cta--outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, .45)
}

.vhero__cta--outline:hover {
  background: #fff;
  color: #000 !important;
  border-color: #fff
}

.vhero__slide--active .vhero__badge,
.vhero__slide--active .vhero__tagline,
.vhero__slide--active .vhero__title,
.vhero__slide--active .vhero__desc,
.vhero__slide--active .vhero__stats,
.vhero__slide--active .vhero__actions {
  opacity: 1;
  transform: translateY(0)
}

/* Controls */
.vhero__controls {
  position: absolute;
  bottom: 36px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 10
}

.vhero__arrow {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s
}

.vhero__arrow:hover {
  background: #fff;
  color: #000;
  border-color: #fff
}

.vhero__dots {
  display: flex;
  gap: 8px
}

.vhero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: all .3s
}

.vhero__dot--active {
  background: #fff;
  width: 26px;
  border-radius: 4px
}

.vhero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, .1);
  z-index: 10
}

.vhero__progress-bar {
  height: 100%;
  background: #fff;
  width: 0;
  transition: width linear
}

/* ══ SCENE 1: SOCIAL ICONS ══ */
@keyframes vs1Orbit {
  from {
    transform: rotate(var(--a, 0deg)) translateX(120px) rotate(calc(-1 * var(--a, 0deg)))
  }

  to {
    transform: rotate(calc(var(--a, 0deg) + 360deg)) translateX(120px) rotate(calc(-1 * (var(--a, 0deg) + 360deg)))
  }
}

@keyframes vs1Float {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-14px) scale(1.05)
  }
}

@keyframes vs1Ring {
  0% {
    transform: translate(-50%, -50%) scale(.6);
    opacity: .5
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0
  }
}

@keyframes vs1IconPop {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.15)
  }
}

.vhero__scene--social {
  overflow: visible
}

.vs1__center {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vs1Float 3.5s ease-in-out infinite;
  z-index: 2;
  position: relative;
  flex-shrink: 0
}

.vs1__center svg {
  width: 60px;
  height: 60px
}

.vs1__icon {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vs1Orbit 14s linear infinite;
  left: 50%;
  top: 50%;
  margin: -26px 0 0 -26px;
  transition: transform .3s
}

.vs1__icon svg {
  width: 22px;
  height: 22px;
  opacity: .75
}

.vs1__icon--ig {
  animation-duration: 14s;
  animation-delay: 0s
}

.vs1__icon--fb {
  animation-duration: 14s;
  animation-delay: -2.3s
}

.vs1__icon--wa {
  animation-duration: 14s;
  animation-delay: -4.7s
}

.vs1__icon--yt {
  animation-duration: 14s;
  animation-delay: -7s
}

.vs1__icon--tw {
  animation-duration: 14s;
  animation-delay: -9.3s
}

.vs1__icon--li {
  animation-duration: 14s;
  animation-delay: -11.7s
}

.vs1__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  animation: vs1Ring 3s ease-out infinite;
  pointer-events: none
}

.vs1__ring--1 {
  width: 160px;
  height: 160px;
  animation-delay: 0s
}

.vs1__ring--2 {
  width: 240px;
  height: 240px;
  animation-delay: 1s
}

.vs1__ring--3 {
  width: 310px;
  height: 310px;
  animation-delay: 2s
}

/* ══ SCENE 2: BROWSER ══ */
@keyframes vs2Float {

  0%,
  100% {
    transform: translateY(0) perspective(600px) rotateY(-5deg)
  }

  50% {
    transform: translateY(-16px) perspective(600px) rotateY(-3deg)
  }
}

@keyframes vs2BackFloat {

  0%,
  100% {
    transform: translateY(0) perspective(600px) rotateY(-8deg) scale(.85)
  }

  50% {
    transform: translateY(-10px) perspective(600px) rotateY(-6deg) scale(.85)
  }
}

@keyframes vs2TypeBar {

  0%,
  100% {
    width: 30%
  }

  50% {
    width: 80%
  }
}

@keyframes vs2BadgeFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.vhero__scene--web {
  flex-direction: column;
  justify-content: center;
  gap: 0;
  overflow: visible
}

.vs2__browser {
  width: 380px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .6);
  animation: vs2Float 4.5s ease-in-out infinite;
  z-index: 2;
  position: relative
}

.vs2__browser--back {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-55%) perspective(600px) rotateY(-8deg) scale(.82);
  width: 340px;
  opacity: .25;
  animation: vs2BackFloat 5s ease-in-out infinite .4s;
  z-index: 1
}

.vs2__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.vs2__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  flex-shrink: 0
}

.vs2__url {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, .08);
  border-radius: 3px;
  margin-left: 8px;
  overflow: hidden;
  position: relative
}

.vs2__url-text {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(255, 255, 255, .2);
  border-radius: 3px;
  animation: vs2TypeBar 3s ease-in-out infinite
}

.vs2__body {
  padding: 14px
}

.vs2__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.vs2__navlogo {
  width: 28px;
  height: 14px;
  background: rgba(255, 255, 255, .2);
  border-radius: 2px
}

.vs2__navlinks {
  display: flex;
  gap: 6px;
  flex: 1;
  margin-left: 12px
}

.vs2__navlinks div {
  height: 5px;
  width: 24px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px
}

.vs2__navbtn {
  width: 40px;
  height: 16px;
  background: rgba(255, 255, 255, .15);
  border-radius: 3px
}

.vs2__hero {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  height: 70px
}

.vs2__hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center
}

.vs2__hl {
  height: 8px;
  background: rgba(255, 255, 255, .18);
  border-radius: 3px;
  width: 90%
}

.vs2__hl--big {
  height: 14px;
  width: 80%
}

.vs2__hl--sm {
  width: 55%
}

.vs2__hbtn {
  width: 60px;
  height: 18px;
  background: rgba(255, 255, 255, .2);
  border-radius: 3px;
  margin-top: 4px
}

.vs2__hero-img {
  width: 90px;
  background: rgba(255, 255, 255, .07);
  border-radius: 5px;
  flex-shrink: 0
}

.vs2__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.vs2__card {
  background: rgba(255, 255, 255, .05);
  border-radius: 5px;
  padding: 8px
}

.vs2__card-top {
  height: 36px;
  background: rgba(255, 255, 255, .1);
  border-radius: 4px;
  margin-bottom: 6px
}

.vs2__card-line {
  height: 5px;
  background: rgba(255, 255, 255, .12);
  border-radius: 2px;
  margin-bottom: 4px
}

.vs2__card-line--s {
  width: 55%
}

.vs2__badge {
  position: absolute;
  top: var(--vb-t, 20%);
  right: var(--vb-r, 0%);
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 5px 12px;
  border-radius: 4px;
  animation: vs2BadgeFloat var(--vb-d, 3s) ease-in-out infinite var(--vb-dl, 0s);
  user-select: none
}

/* ══ SCENE 3: FILM / VIDEO ══ */
@keyframes vs3Spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes vs3StripScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes vs3PlayFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1)
  }
}

@keyframes vs3CamFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes vs3Pulse {
  0% {
    transform: translate(-50%, -50%) scale(.8);
    opacity: .6
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0
  }
}

.vhero__scene--video {
  overflow: visible;
  flex-direction: column;
  gap: 20px
}

.vs3__reel {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%)
}

.vs3__reel-outer {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .2);
  position: relative;
  animation: vs3Spin 8s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center
}

.vs3__reel-inner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: center
}

.vs3__reel-hole {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .8);
  border: 1.5px solid rgba(255, 255, 255, .2)
}

.vs3__spoke {
  position: absolute;
  width: 2px;
  height: 55px;
  background: rgba(255, 255, 255, .12);
  top: 50%;
  left: 50%;
  transform-origin: bottom center;
  transform: rotate(0deg);
  margin-left: -1px;
  margin-top: -55px
}

/* Film strip at bottom */
.vs3__strip {
  position: absolute;
  bottom: 80px;
  left: -40px;
  right: -40px;
  height: 60px;
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent)
}

.vs3__frame {
  flex-shrink: 0;
  width: 70px;
  height: 60px;
  border: 1.5px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
  margin-right: 4px;
  position: relative;
  border-top: 6px solid rgba(255, 255, 255, .1);
  border-bottom: 6px solid rgba(255, 255, 255, .1);
  animation: vs3StripScroll 6s linear infinite
}

/* Play button center -->*/
.vs3__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  animation: vs3PlayFloat 2.5s ease-in-out infinite
}

.vs3__play svg {
  width: 80px;
  height: 80px
}

/* Camera */
.vs3__camera {
  position: absolute;
  left: 30px;
  top: 15%;
  width: 90px;
  height: 90px;
  opacity: .5;
  animation: vs3CamFloat 3.8s ease-in-out infinite .3s
}

.vs3__camera svg {
  width: 90px;
  height: 90px
}

/* Pulse rings */
.vs3__pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .2);
  animation: vs3Pulse 2.5s ease-out infinite
}

.vs3__pulse--1 {
  width: 100px;
  height: 100px;
  animation-delay: 0s
}

.vs3__pulse--2 {
  width: 100px;
  height: 100px;
  animation-delay: 1.25s
}

/* Mobile responsive */
@media(max-width:991px) {
  .vhero__layout {
    padding: 0 30px
  }

  .vhero__content {
    width: 60%
  }

  .vhero__scene {
    width: 40%
  }

  .vs2__browser {
    width: 280px
  }

  .vs1__icon {
    animation: none;
    position: static;
    margin: 6px;
    display: inline-flex
  }

  .vhero__scene--social {
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: center;
    gap: 12px
  }
}

@media(max-width:768px) {
  .vhero__layout {
    flex-direction: column;
    padding: 80px 24px 0
  }

  .vhero__content {
    width: 100%;
    padding-right: 0
  }

  .vhero__scene {
    display: none
  }

  .vhero__title {
    font-size: clamp(2.2rem, 8vw, 3.5rem)
  }
}

/* ── SERVICES CARDS ── */
@keyframes vsvcIn {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes vsvcIconFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  40% {
    transform: translateY(-10px) rotate(3deg)
  }

  70% {
    transform: translateY(-4px) rotate(-1deg)
  }
}

@keyframes vsvcIconBob {

  0%,
  100% {
    transform: scale(1)
  }

  40% {
    transform: scale(1.16) translateY(-3px)
  }

  70% {
    transform: scale(.93) translateY(2px)
  }
}

@keyframes vsvcIconPop {
  0% {
    transform: scale(1)
  }

  30% {
    transform: scale(1.28) rotate(-8deg)
  }

  65% {
    transform: scale(.9) rotate(4deg)
  }

  100% {
    transform: scale(1)
  }
}

@keyframes vsvcPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .22)
  }

  65% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
  }
}

.vsvc__section {
  background: #000
}

.vsvc__head {
  margin-bottom: 70px
}

.vsvc__eye {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 6px 18px;
  margin-bottom: 16px
}

.vsvc__heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1
}

.vsvc__heading em {
  font-style: normal;
  -webkit-text-stroke: 2px #fff;
  color: transparent
}

.vsvc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-left: 1px solid rgba(255, 255, 255, .12)
}

.vsvc__card {
  padding: 46px 34px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  overflow: hidden;
  transition: background .4s;
  opacity: 0;
  animation: vsvcIn .6s var(--ease) forwards var(--d, 0s)
}

.vsvc__card:hover {
  background: #0d0d0d
}

.vsvc__card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease)
}

.vsvc__card:hover::before {
  transform: scaleX(1)
}

.vsvc__num {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .3);
  font-weight: 700;
  margin-bottom: 22px
}

.vsvc__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #111;
  border: 1.5px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
  animation: vsvcIconFloat 3s ease-in-out infinite, vsvcPulse 3s ease-in-out infinite .5s;
  transition: background .3s, border-color .3s
}

.vsvc__icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .07);
  transition: transform .4s, opacity .4s
}

.vsvc__icon::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0;
  transition: opacity .3s
}

.vsvc__icon i {
  font-size: 30px;
  color: #fff;
  animation: vsvcIconBob 3s ease-in-out infinite .3s;
  transition: color .3s
}

.vsvc__card:nth-child(1) .vsvc__icon {
  animation-duration: 2.8s, 2.8s
}

.vsvc__card:nth-child(2) .vsvc__icon {
  animation-duration: 3.4s, 3.4s;
  animation-delay: .2s, .7s
}

.vsvc__card:nth-child(3) .vsvc__icon {
  animation-duration: 2.5s, 2.5s;
  animation-delay: .4s, .9s
}

.vsvc__card:nth-child(4) .vsvc__icon {
  animation-duration: 3.8s, 3.8s;
  animation-delay: .1s, .6s
}

.vsvc__card:nth-child(5) .vsvc__icon {
  animation-duration: 2.2s, 2.2s;
  animation-delay: .3s, .8s
}

.vsvc__card:nth-child(6) .vsvc__icon {
  animation-duration: 3.6s, 3.6s;
  animation-delay: .5s, 1s
}

.vsvc__card:hover .vsvc__icon {
  background: #fff;
  border-color: #fff;
  animation: vsvcIconPop .5s ease forwards
}

.vsvc__card:hover .vsvc__icon i {
  color: #000;
  animation: vsvcIconPop .5s ease forwards
}

.vsvc__card:hover .vsvc__icon::before {
  transform: scale(1.5);
  opacity: 0
}

.vsvc__card:hover .vsvc__icon::after {
  opacity: 1
}

.vsvc__title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 32px 0 16px
}

.vsvc__title a {
  color: inherit;
  text-decoration: none
}

.vsvc__title strong {
  -webkit-text-stroke: 1.5px #fff;
  color: transparent
}

.vsvc__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  margin-bottom: 18px
}

.vsvc__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px
}

.vsvc__list li {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  letter-spacing: .5px
}

.vsvc__list li::before {
  content: '— ';
  color: rgba(255, 255, 255, .25)
}

.vsvc__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  padding-bottom: 2px;
  transition: gap .3s, border-color .3s
}

.vsvc__link:hover {
  color: #fff;
  border-color: #fff;
  gap: 14px
}

@media(max-width:991px) {
  .vsvc__grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .vsvc__grid {
    grid-template-columns: 1fr
  }

  .vsvc__card {
    padding: 30px 22px
  }
}

/* ── SERVICES TILES ── */
@keyframes vtileIn {
  from {
    opacity: 0;
    transform: scale(.9) translateY(18px)
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

@keyframes vtileSvgFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes vtileShimmer {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(250%)
  }
}

.vtiles__section {
  background: #000;
  padding: 90px 0 100px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  overflow: hidden
}

.vtiles__head {
  text-align: center;
  margin-bottom: 56px
}

.vtiles__eye {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 6px 20px;
  margin-bottom: 16px
}

.vtiles__title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  margin: 0 0 12px
}

.vtiles__title em {
  font-style: normal;
  -webkit-text-stroke: 2px #fff;
  color: transparent
}

.vtiles__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .35);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7
}

.vtiles__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 0;
}

.vtile {
  min-height: 160px;
  border-radius: 12px;
  background: var(--vbg, rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: vtileIn .55s cubic-bezier(.34, 1.3, .64, 1) forwards calc(var(--i, 0)*.05s);
  transition: all .3s
}

.vtile:hover {
  --vbg: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4)
}

.vtile::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #aaaaaa, #ffffff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease)
}

.vtile:hover::before {
  transform: scaleX(1)
}

.vtile::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .04), transparent);
  transform: translateX(-100%);
  pointer-events: none
}

.vtile:hover::after {
  animation: vtileShimmer .6s ease forwards
}

.vtile svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  animation: vtileSvgFloat 3s ease-in-out infinite calc(var(--i, 0)*.13s);
  transition: filter .3s
}

.vtile:hover svg {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, .35));
  animation-duration: 1.4s
}

.vtile span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  text-align: center;
  line-height: 1.5;
  transition: color .3s
}

.vtile:hover span {
  color: #fff
}

@media(max-width:1100px) {
  .vtiles__grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

@media(max-width:768px) {
  .vtiles__grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:480px) {
  .vtiles__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .vtile svg {
    width: 38px;
    height: 38px
  }
}

/* ── HOW WE WORK ── */
@keyframes vhowIn {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.vhow__section {
  background: #000;
  padding: 110px 0;
  border-top: 1px solid rgba(255, 255, 255, .07)
}

.vhow__head {
  text-align: center;
  margin-bottom: 70px
}

.vhow__eye {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 6px 20px;
  margin-bottom: 16px
}

.vhow__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 14px
}

.vhow__title em {
  font-style: normal;
  -webkit-text-stroke: 2px #fff;
  color: transparent
}

.vhow__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .4);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7
}

.vhow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-left: 1px solid rgba(255, 255, 255, .12)
}

.vhow__step {
  padding: 46px 30px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  overflow: hidden;
  transition: background .4s;
  opacity: 0;
  animation: vhowIn .7s var(--ease) forwards calc(var(--i, 0)*.12s + .2s)
}

.vhow__step:hover {
  background: #0d0d0d
}

.vhow__step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease)
}

.vhow__step:hover::after {
  transform: scaleX(1)
}

.vhow__num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .06);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -2px;
  user-select: none
}

.vhow__icon {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: background .3s, border-color .3s, transform .4s var(--ease)
}

.vhow__icon i {
  font-size: 22px;
  color: #fff;
  transition: color .3s
}

.vhow__step:hover .vhow__icon {
  background: #fff;
  border-color: #fff;
  transform: rotate(-8deg) scale(1.08)
}

.vhow__step:hover .vhow__icon i {
  color: #000
}

.vhow__step-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 14px
}

.vhow__step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8
}

@media(max-width:991px) {
  .vhow__steps {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .vhow__steps {
    grid-template-columns: 1fr
  }
}

/* ── CLIENTS MARQUEE ── */
@keyframes vmarqScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.vmarq__section {
  background: #000;
  padding: 100px 0 110px;
  border-top: 1px solid rgba(255, 255, 255, .07)
}

.vmarq__head {
  text-align: center;
  margin-bottom: 50px
}

.vmarq__eye {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 6px 20px;
  margin-bottom: 16px
}

.vmarq__title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  margin: 0 0 12px
}

.vmarq__title em {
  font-style: normal;
  -webkit-text-stroke: 2px #fff;
  color: transparent
}

.vmarq__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 1px
}

.vmarq__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
  margin-bottom: 0
}

.vmarq__tab {
  padding: 18px 20px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .4);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
  position: relative
}

.vmarq__tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: transform .3s
}

.vmarq__tab:last-child {
  border-right: none
}

.vmarq__tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, .04)
}

.vmarq__tab--on {
  color: #fff;
  background: rgba(255, 255, 255, .08)
}

.vmarq__tab--on::after {
  transform: scaleX(1)
}

.vmarq__wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-top: none;
  padding: 38px 0;
  background: #050505;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%)
}

.vmarq__reel {
  display: flex;
  align-items: center;
  width: max-content;
  animation: vmarqScroll 30s linear infinite
}

.vmarq__reel:hover {
  animation-play-state: paused
}

.vmarq__logo {
  width: 180px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  transition: background .3s
}

.vmarq__logo:hover {
  background: rgba(255, 255, 255, .05)
}

.vmarq__logo img {
  max-width: 130px;
  max-height: 65px;
  object-fit: contain;
  filter: grayscale(100%) brightness(.75);
  transition: filter .35s, transform .35s
}

.vmarq__logo:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.08)
}

@media(max-width:768px) {
  .vmarq__tab {
    padding: 12px 12px;
    font-size: 11px
  }

  .vmarq__logo {
    width: 140px;
    height: 80px
  }
}

/* ── HERO SLIDE ANIMATED BACKGROUNDS ── */
@keyframes vhbgScan {
  0% {
    top: -2px
  }

  100% {
    top: 100%
  }
}

@keyframes vhbgCodeLine {
  0% {
    transform: translateX(-110%)
  }

  100% {
    transform: translateX(110vw)
  }
}

@keyframes vhbgCbPulse {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}

@keyframes vhbgCursor {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

@keyframes vhbgBracket {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes vhbgTagFly {
  0% {
    transform: translate(0, 0);
    opacity: 0
  }

  10% {
    opacity: 1
  }

  90% {
    opacity: .7
  }

  100% {
    transform: translate(-160px, -50px);
    opacity: 0
  }
}

@keyframes vhbgGridDrift {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 36px 36px
  }
}

@keyframes vhbgFeedScroll {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(-280px)
  }
}

@keyframes vhbgHeart {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.4)
  }
}

@keyframes vhbgSocFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(var(--sfy, -10px)) rotate(var(--sfr, 5deg))
  }
}

@keyframes vhbgRing {
  0% {
    transform: scale(1);
    opacity: .25
  }

  100% {
    transform: scale(1.9);
    opacity: 0
  }
}

/* dot grid shared */
.vhbg__dotgrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: vhbgGridDrift 14s linear infinite;
  pointer-events: none
}

/* scan line */
.vhbg__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
  animation: vhbgScan 5s linear infinite;
  pointer-events: none
}

/* ── SLIDE 1 CODING ── */
.vhero__bg--1 {
  background-image: url("../imgs/hero/1/1-bg.png");
  background-color: #000;
  background-size: cover;
  background-position: center
}

.vhbg__codeline {
  position: absolute;
  top: var(--ct, 50%);
  width: var(--cw, 50%);
  height: 1.5px;
  background: rgba(255, 255, 255, .055);
  border-radius: 2px;
  animation: vhbgCodeLine var(--csp, 4s) linear infinite var(--cd, 0s)
}

.vhbg__codeblock {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: .13;
  width: 220px;
  pointer-events: none
}

.vhbg__cb {
  height: 10px;
  background: #fff;
  border-radius: 2px;
  animation: vhbgCbPulse 2s ease-in-out infinite var(--cbdl, 0s)
}

.vhbg__cursor {
  position: absolute;
  width: 2px;
  height: 14px;
  background: #fff;
  top: 0;
  left: 0;
  animation: vhbgCursor .85s step-end infinite
}

.vhbg__bracket {
  position: absolute;
  right: 18px;
  bottom: -14px;
  font-size: 130px;
  font-family: monospace;
  font-weight: 900;
  color: rgba(255, 255, 255, .04);
  line-height: 1;
  animation: vhbgBracket 4.5s ease-in-out infinite;
  user-select: none;
  pointer-events: none
}

.vhbg__tag {
  position: absolute;
  right: var(--tx, 30%);
  top: var(--ty, 50%);
  font-family: monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, .09);
  white-space: nowrap;
  animation: vhbgTagFly var(--tspd, 9s) linear infinite var(--tdl, 0s);
  pointer-events: none
}

/* ── SLIDE 2 PHONE ── */

.vhbg__phone {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 210px;
  border: 1.5px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 10px 8px;
  gap: 6px
}

.vhbg__phone--ghost {
  right: 220px;
  opacity: .3;
  transform: translateY(-50%) scale(.75)
}

.vhbg__notch {
  width: 36px;
  height: 5px;
  background: rgba(255, 255, 255, .15);
  border-radius: 3px;
  margin: 0 auto 6px;
  flex-shrink: 0
}

.vhbg__feedwrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: vhbgFeedScroll 8s linear infinite
}

.vhbg__feeditem {
  flex-shrink: 0;
  background: rgba(255, 255, 255, .05);
  border-radius: 4px;
  padding: 5px
}

.vhbg__feedimg {
  width: 100%;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border-radius: 3px;
  margin-bottom: 4px
}

.vhbg__feedline {
  height: 4px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  margin-bottom: 3px
}

.vhbg__feedline--s {
  width: 55%
}

.vhbg__likes {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px
}

.vhbg__heart {
  width: 7px;
  height: 7px;
  background: rgba(255, 80, 80, .5);
  border-radius: 50%;
  animation: vhbgHeart 1.6s ease-in-out infinite
}

/* floating social icons */
.vhbg__soc {
  position: absolute;
  right: var(--sbx, 200px);
  top: var(--sby, 30%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vhbgSocFloat var(--sfd, 3s) ease-in-out infinite var(--sbd, 0s);
  pointer-events: none
}

.vhbg__soc svg {
  width: 17px;
  height: 17px;
  opacity: .55
}

.vhbg__soc--lg {
  width: 50px;
  height: 50px
}

.vhbg__soc--lg svg {
  width: 20px;
  height: 20px
}

.vhbg__soc::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  animation: vhbgRing 3s ease-out infinite var(--sbd, 0s)
}


/* ── SLIDE 2: WEBSITE / BROWSER BACKGROUND ── */
@keyframes vhbg2Float {

  0%,
  100% {
    transform: translateY(-50%)
  }

  50% {
    transform: translateY(calc(-50% - 10px))
  }
}

@keyframes vhbg2GhostFloat {

  0%,
  100% {
    transform: translateY(-50%) scale(.72)
  }

  50% {
    transform: translateY(calc(-50% - 8px)) scale(.72)
  }
}

@keyframes vhbg2TagFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes vhbg2TypeBar {

  0%,
  100% {
    width: 30%
  }

  50% {
    width: 70%
  }
}


.vhbg2__browser {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  overflow: hidden;
  opacity: .55;
  animation: vhbg2Float 4s ease-in-out infinite;
}

.vhbg2__browser--ghost {
  right: 360px;
  width: 220px;
  opacity: .22;
  animation: vhbg2GhostFloat 5s ease-in-out infinite .6s;
}

.vhbg2__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.vhbg2__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  flex-shrink: 0
}

.vhbg2__url {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  animation: vhbg2TypeBar 3s ease-in-out infinite;
  margin-left: 6px
}

.vhbg2__hero-block {
  padding: 14px
}

.vhbg2__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px
}

.vhbg2__navline {
  height: 5px;
  width: 40%;
  background: rgba(255, 255, 255, .12);
  border-radius: 2px
}

.vhbg2__navline--s {
  width: 16%;
  height: 4px
}

.vhbg2__banner {
  height: 80px;
  background: rgba(255, 255, 255, .07);
  border-radius: 4px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden
}

.vhbg2__banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .05), transparent);
  animation: vtileShimmer 3s ease infinite
}

.vhbg2__grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.vhbg2__card {
  background: rgba(255, 255, 255, .06);
  border-radius: 4px;
  padding: 8px
}

.vhbg2__card-img {
  height: 36px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  margin-bottom: 6px
}

.vhbg2__card-line {
  height: 4px;
  background: rgba(255, 255, 255, .12);
  border-radius: 2px;
  margin-bottom: 4px
}

.vhbg2__card-line--s {
  width: 60%
}

/* floating code labels */
.vhbg2__tag {
  position: absolute;
  left: var(--t2x, 60%);
  top: var(--t2y, 30%);
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 4px 10px;
  border-radius: 3px;
  animation: vhbg2TagFloat var(--t2d, 3s) ease-in-out infinite var(--t2dl, 0s);
  pointer-events: none;
  user-select: none;
}

.vhbg2__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .07), transparent);
  animation: vhbgScan 6s linear infinite;
  pointer-events: none
}

/* ── SLIDE 3: SOCIAL MEDIA BACKGROUND ── */
@keyframes vhbg3Feed {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(-200px)
  }
}

@keyframes vhbg3Heart {

  0%,
  100% {
    transform: scale(1)
  }

  40% {
    transform: scale(1.5)
  }

  70% {
    transform: scale(.9)
  }
}

@keyframes vhbg3SocFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(var(--s3fy, -10px)) rotate(var(--s3fr, 5deg))
  }
}

@keyframes vhbg3Ring {
  0% {
    transform: scale(1);
    opacity: .2
  }

  100% {
    transform: scale(2);
    opacity: 0
  }
}

@keyframes vhbg3Story {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}


.vhbg3__phone {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 260px;
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .03);
  opacity: .7;
}

.vhbg3__notch {
  width: 40px;
  height: 5px;
  background: rgba(255, 255, 255, .2);
  border-radius: 3px;
  margin: 8px auto 6px;
  flex-shrink: 0
}

.vhbg3__insta-bar {
  display: flex;
  gap: 6px;
  padding: 0 8px 8px;
  flex-shrink: 0
}

.vhbg3__story {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .06);
  flex-shrink: 0;
  animation: vhbg3Story 2s ease-in-out infinite
}

.vhbg3__story:nth-child(2) {
  animation-delay: .3s
}

.vhbg3__story:nth-child(3) {
  animation-delay: .6s
}

.vhbg3__story:nth-child(4) {
  animation-delay: .9s
}

.vhbg3__feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 6px;
  overflow: hidden;
  animation: vhbg3Feed 10s linear infinite
}

.vhbg3__post {
  background: rgba(255, 255, 255, .04);
  border-radius: 4px;
  padding: 6px;
  flex-shrink: 0
}

.vhbg3__post-head {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px
}

.vhbg3__avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0
}

.vhbg3__post-meta {
  flex: 1
}

.vhbg3__meta-line {
  height: 3px;
  background: rgba(255, 255, 255, .15);
  border-radius: 2px;
  margin-bottom: 3px
}

.vhbg3__meta-line--s {
  width: 50%
}

.vhbg3__post-img {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  margin-bottom: 5px
}

.vhbg3__actions {
  display: flex;
  gap: 6px;
  margin-bottom: 4px
}

.vhbg3__heart-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  animation: vhbg3Heart 2s ease-in-out infinite
}

.vhbg3__heart-icon--liked {
  background: rgba(255, 80, 80, .6)
}

.vhbg3__comment-icon {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .12)
}

.vhbg3__caption-line {
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  margin-bottom: 3px
}

.vhbg3__caption-line--s {
  width: 55%
}

/* social icon bubbles */
.vhbg3__soc {
  position: absolute;
  left: var(--s3x, 20%);
  top: var(--s3y, 30%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vhbg3SocFloat var(--s3d, 3s) ease-in-out infinite var(--s3dl, 0s);
  pointer-events: none;
}

.vhbg3__soc svg {
  width: 22px;
  height: 22px;
  opacity: .65
}

.vhbg3__soc--sm {
  width: 40px;
  height: 40px
}

.vhbg3__soc--sm svg {
  width: 17px;
  height: 17px
}

.vhbg3__soc--lg {
  width: 64px;
  height: 64px
}

.vhbg3__soc--lg svg {
  width: 26px;
  height: 26px
}

.vhbg3__soc::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .06);
  animation: vhbg3Ring 3s ease-out infinite var(--s3dl, 0s)
}

.vhbg3__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .07), transparent);
  animation: vhbgScan 7s linear infinite;
  pointer-events: none
}

/* ── UNIQUE ABOUT SECTION ── */
.vabout__unique {
  background: #040404;
  overflow: hidden;
  position: relative;
}

.vabout__images {
  position: relative;
  padding-right: 30px
}

.vabout__img-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5)
}

.vabout__img-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s
}

.vabout__img-main:hover img {
  transform: scale(1.04)
}

.vabout__img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  pointer-events: none
}

.vabout__box-glass {
  position: absolute;
  bottom: -30px;
  right: -10px;
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 25px 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  animation: vtileSvgFloat 4s ease-in-out infinite;
  z-index: 10;
}

.vabout__box-glass h3 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1;
  background: linear-gradient(90deg, #aaaaaa, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vabout__box-glass p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase
}

.vabout__content {
  padding-left: 40px
}

.vabout__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 20px;
  margin-bottom: 20px;
  border-radius: 30px
}

.vabout__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 24px
}

.vabout__title em {
  font-style: normal;
  -webkit-text-stroke: 1.5px #fff;
  color: transparent
}

.vabout__text {
  margin-bottom: 30px
}

.vabout__text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px
}

.vabout__text strong {
  color: #fff;
  font-weight: 600
}

.vabout__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #fff;
  color: #000 !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s
}

.vabout__btn:hover {
  background: linear-gradient(90deg, #aaaaaa, #ffffff);
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(14, 108, 245, 0.3)
}

@media(max-width:991px) {
  .vabout__images {
    margin-bottom: 60px;
    padding-right: 0
  }

  .vabout__content {
    padding-left: 0
  }

  .vabout__box-glass {
    right: 20px;
    bottom: -20px
  }
}

/* ==========================================================
   USER REQUESTED OVERRIDES (FONTS & HERO BGS & WRAPPING TABS)
   ========================================================== */

/* Hero Slide Backgrounds - Using Abstract Dark Wave */
.vhero__bg--2 {
  background-image: url("../img/black-wave-banner.png") !important;
  background-color: #000 !important;
  background-size: cover !important;
  background-position: center !important;
}

.vhero__bg--2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4) !important;
}

.vhero__bg--3 {
  background-image: url("../img/black-wave-banner.png") !important;
  background-color: #000 !important;
  background-size: cover !important;
  background-position: center !important;
}

.vhero__bg--3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4) !important;
}

/* Global Typography Updates for the restored sections */
.feature__content-left h3,
.feature__content-right h4,
.workflow__area-3 h2,
.workflow__area-3 h3,
.portfolio__text,
.sec-title,
.sec-sub-title,
.cta__title-2 {
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #fff !important;
}

.workflow__area-3 .research__number span,
.workflow__area-3 .counter__number {
  font-weight: 900 !important;
  background: linear-gradient(90deg, #aaaaaa, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.workflow__area-3 p,
.feature__area-6 p,
.price__area p,
.blog__area-3 p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Make Client Logo Tabs Wrap Cleanly */
.vmarq__tabs {
  border: none !important;
  gap: 12px;
  padding: 0 15px;
  justify-content: center;
}

.vmarq__tab {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 30px;
  padding: 10px 24px !important;
  margin-bottom: 10px;
}

.vmarq__tab::after {
  display: none !important;
}

.vmarq__tab--on {
  border-color: #aaaaaa !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #aaaaaa !important;
}

</style>.sec-title-6 span,
.choose-title span,
.sec-title span,
.portfolio__text span,
.brand__title-3 span {
  color: transparent !important;
  -webkit-text-stroke: 1.5px #fff !important;
  font-weight: 900 !important;
}