﻿/* ===== VARIABLES ===== */
:root {
  --bg-0: #0a0e1a;
  --bg-1: #050712;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.55);
  --stroke: rgba(255,255,255,0.14);
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --brand: #7C5CFF;
  --brand2: #22D3EE;
  --success: #25D366;
}

/* ===== BASE STYLES ===== */
* { box-sizing: border-box; }
html {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg-0);
}
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: transparent;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.page { min-height: auto; width: 100%; position: relative; z-index: 2; }

/* ===== BACKGROUND ANIMATION ===== */
.earth-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent;
  overflow: hidden;
  will-change: transform;
  pointer-events: none;
  display: none;
}

.earth-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(124, 92, 255, 0.05) 25%, rgba(124, 92, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(124, 92, 255, 0.05) 75%, rgba(124, 92, 255, 0.05) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(124, 92, 255, 0.05) 25%, rgba(124, 92, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(124, 92, 255, 0.05) 75%, rgba(124, 92, 255, 0.05) 76%, transparent 77%, transparent);
  background-size: 80px 80px;
  animation: gridShift 30s linear infinite;
}

@keyframes gridShift {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}

.earth-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.data-card {
  position: absolute;
  border: 1px solid rgba(124, 92, 255, 0.2);
  background: rgba(124, 92, 255, 0.06);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(124, 92, 255, 0.8);
  box-shadow: 0 8px 32px rgba(124, 92, 255, 0.1);
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.4; }
  50% { transform: translateY(-30px) translateX(10px); opacity: 0.7; }
}

.data-card:nth-child(1) { top: 10%; left: 8%; animation-delay: 0s; }
.data-card:nth-child(2) { top: 20%; right: 12%; animation-delay: 1s; }
.data-card:nth-child(3) { top: 45%; left: 5%; animation-delay: 2s; }
.data-card:nth-child(4) { bottom: 15%; right: 8%; animation-delay: 3s; }
.data-card:nth-child(5) { top: 60%; right: 15%; animation-delay: 1.5s; }
.data-card:nth-child(6) { bottom: 30%; left: 12%; animation-delay: 2.5s; }

.earth-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: -100px;
  right: -150px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 15s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 50px); }
}

.earth {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat2 20s ease-in-out infinite;
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(80px, -60px); }
}

/* ===== TOP HEADER ===== */
.siteTopbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px;
  pointer-events: none;
}

.siteTopbar__inner {
  pointer-events: none;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  display: block;
  position: relative;
  /* ✅ CHANGE 1: Increased height to fit larger logo */
  height: 110px;
}

.siteTopbar__logo {
  pointer-events: auto;
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.siteTopbar__logo img {
  /* ✅ CHANGE 1: Logo height increased from 84px → 110px */
  height: 110px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
}

.siteTopbar__wa {
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 0;
  /* ✅ CHANGE 1: WA icon size increased from 46px → 60px */
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.95);
  background: linear-gradient(135deg, rgba(37,211,102,0.95), rgba(37,211,102,0.65));
  border: 1px solid rgba(37,211,102,0.45);
  box-shadow: 0 14px 38px rgba(0,0,0,0.30);
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

/* ✅ CHANGE 1: WA SVG icon size increased from 22px → 28px */
.siteTopbar__wa svg { width: 28px; height: 28px; }
.siteTopbar__wa:hover { transform: translateY(-2px) scale(1.03); }

@media (max-width: 768px) {
  .siteTopbar { padding: 14px; }
  .siteTopbar__inner { height: 88px; }
  .siteTopbar__logo img { height: 84px; }
  .siteTopbar__wa { width: 50px; height: 50px; }
  .siteTopbar__wa svg { width: 24px; height: 24px; }
  .hero { padding-top: 54px; }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 300ms ease;
  pointer-events: auto;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-text {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(124,92,255,0.8);
  font-weight: 700;
}

.arrow-wrapper {
  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(124,92,255,0.35) !important;
  background: rgba(0,0,0,0.20);
  display: grid !important;
  place-items: center !important;
  padding-top: 0 !important;
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
}

.arrow { display: none !important; }

.arrow-wrapper .chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(124,92,255,0.85);
  border-bottom: 2px solid rgba(124,92,255,0.85);
  transform: rotate(45deg);
  position: absolute;
  opacity: 0;
}

.arrow-wrapper .chev1 { animation: chevDown 1.5s ease-in-out infinite; }
.arrow-wrapper .chev2 { animation: chevDown 1.5s ease-in-out infinite 0.18s; }

@keyframes chevDown {
  0% { transform: translateY(-6px) rotate(45deg); opacity: 0; }
  20% { opacity: 0.95; }
  60% { opacity: 0.95; }
  100% { transform: translateY(10px) rotate(45deg); opacity: 0; }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(800px 500px at 25% 25%, rgba(124,92,255,0.15), transparent 60%),
    radial-gradient(700px 500px at 75% 40%, rgba(34,211,238,0.12), transparent 55%);
  will-change: transform;
  display: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(600px 500px at 50% 45%, black 55%, transparent 100%);
  display: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px;
  }
}

.brandWrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(34,211,238,0.85));
  box-shadow: 0 18px 44px rgba(0,0,0,0.35);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.logo::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 55%);
  transform: rotate(18deg);
}

.logo svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.logo.is-floating { animation: floaty 4.6s ease-in-out infinite; }

.brandName { line-height: 1.05; }
.brandName h1 { margin: 0; font-size: clamp(42px, 5vw, 64px); letter-spacing: -0.02em; font-weight: 800; }
.brandName p { margin: 10px 0 0; color: var(--muted); font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase; }

.rightCard {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(12px);
  will-change: transform;
}

.trustLine { margin: 0 0 16px; color: var(--muted); font-size: 15px; line-height: 1.6; }

.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: var(--text);
  padding: 13px 18px;
  border-radius: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.08);
  transition: left 300ms ease;
  z-index: -1;
}

.btn:hover::before { left: 0; }
.btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.28); }

.btn--primary {
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(124,92,255,0.70));
  border-color: rgba(124,92,255,0.4);
}

.btn--primary:hover {
  box-shadow: 0 0 20px rgba(124, 92, 255, 0.4);
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(124,92,255,0.8));
}

.btn--wa {
  background: linear-gradient(135deg, rgba(37,211,102,0.95), rgba(37,211,102,0.65));
  border-color: rgba(37,211,102,0.45);
}

.btn--wa:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, rgba(37,211,102,1), rgba(37,211,102,0.8));
}

.btn svg { width: 18px; height: 18px; opacity: 0.95; }

.socialRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(18px);
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
}

.social::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(124,92,255,0.3), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.social:hover::before { opacity: 1; }
.social:hover {
  transform: translateY(0) scale(1.08);
  background: rgba(255,255,255,0.10);
  border-color: rgba(124,92,255,0.5);
  box-shadow: 0 0 15px rgba(124,92,255,0.3);
}

.social svg { width: 20px; height: 20px; position: relative; z-index: 1; }

/* ===== ABOUT SECTION ===== */
.about {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 32px;
  overflow: hidden;
  background: transparent !important;
  width: 100%;
}

.about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10,14,26,0) 0%, rgba(10,14,26,0.65) 55%, rgba(10,14,26,1) 100%);
  z-index: 1;
}

.about__bg {
  position: absolute;
  inset: -18% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 20% 25%, rgba(124,92,255,0.15), transparent 62%),
    radial-gradient(780px 540px at 78% 45%, rgba(34,211,238,0.12), transparent 60%);
  will-change: transform;
}

.about__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.about__content {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 20px 60px rgba(0,0,0,0.30);
  backdrop-filter: blur(12px);
  padding: clamp(24px, 4vw, 40px);
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

.about__title { margin: 0 0 12px; font-size: clamp(28px, 3vw, 36px); letter-spacing: -0.02em; color: var(--text); font-weight: 800; }
.about__text { margin: 0; max-width: 75ch; font-size: 16px; line-height: 1.8; color: var(--muted); }

/* ===== SERVICES SECTION ===== */
.services {
  position: relative;
  padding: 0;
  min-height: 100vh;
  overflow: hidden;
  color: var(--text);
  width: 100%;
}

.services__bg {
  position: absolute;
  inset: -12% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 18% 26%, rgba(124,92,255,0.14), transparent 62%),
    radial-gradient(760px 520px at 82% 38%, rgba(34,211,238,0.12), transparent 60%);
  opacity: 0.95;
  will-change: transform;
}

.services__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 120px) 32px;
}

.services__head {
  margin-bottom: 24px;
  text-align: center !important;
}

.services__head h2 { margin: 0 0 10px; font-size: clamp(32px, 3.5vw, 44px); letter-spacing: -0.02em; font-weight: 800; }
.services__head p {
  margin: 0 auto;
  color: var(--muted);
  max-width: 700px !important;
  line-height: 1.7;
  font-size: 15px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.services__stage { position: relative; margin-top: 24px; display: grid; gap: 16px; }

.svcCard {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.03));
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  padding: clamp(18px, 3vw, 24px);
  will-change: transform, opacity;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.svcCard h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.01em; font-weight: 700; }
.svcCard p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

@media (hover:hover) and (pointer:fine) {
  .svcCard:hover {
    transform: translateY(-6px);
    background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
    border-color: rgba(124,92,255,0.3);
    box-shadow: 0 20px 60px rgba(124, 92, 255, 0.15), 0 0 30px rgba(34, 211, 238, 0.1);
  }
}

/* ===== PORTFOLIO SECTION ===== */
.loop-images {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100svh;
  min-height: 600px;
  background: transparent;
  overflow: hidden;
  gap: 40px !important;
}

.portfolio-head {
  text-align: center;
  margin-bottom: 20px;
  z-index: 2;
  padding: 0 20px;
}

.portfolio-head h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text);
}

.portfolio-head p {
  margin: 0 auto;
  max-width: 65ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.carousel-track {
  --left: -850vw;
  position: relative;
  width: 100%;
  height: 80vh;
  max-height: 680px;
  min-height: 380px;
  margin-top: 20px !important;
  overflow: hidden;
}

.carousel-track .carousel-item {
  position: absolute;
  width: 28vw;
  height: 82vh;
  max-height: 600px;
  min-height: 380px;
  left: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  transform-style: preserve-3d;
  animation-name: scroll-left-banner !important;
  animation-duration: 160s !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
  animation-delay: calc(160s / var(--total) * (var(--i) - 1) - 160s) !important;
  will-change: left;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

@keyframes scroll-left-banner {
  from { left: 100%; }
  to   { left: -1064vw; }
}

.carousel-track .carousel-item img {
  width: 90%;
  height: 100%;
  object-fit: contain;
  background-color: transparent;
  transform: rotateY(-45deg);
  transition: 0.5s ease-in-out;
  mask: linear-gradient(black 82%, transparent 100%);
  border-radius: 16px;
}

.carousel-track .carousel-item:hover img {
  transform: rotateY(0deg) translateY(-1rem);
}

@keyframes scroll-left { to { left: var(--left); } }

@media (max-width: 768px) {
  .loop-images { gap: 20px !important; min-height: 500px; }
  .carousel-track {
    height: 55vh;
    min-height: 300px;
    margin-top: 12px !important;
  }
  .carousel-track .carousel-item {
    width: 52vw;
    height: 55vh;
    min-height: 300px;
  }
}

.portfolio-scroll-down {
  position: absolute;
  bottom: 5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.4rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  user-select: none;
}

.portfolio-arrow {
  display: inline-block;
  animation: portfolioArrow 1.2s infinite ease-in-out;
  color: rgba(124,92,255,0.95);
}

@keyframes portfolioArrow {
  0% { transform: translateY(0); }
  50% { transform: translateY(8px); }
  100% { transform: translateY(0); }
}

/* ===== ADS BANNER (REGULAR POST) ===== */
.adsBanner {
  --ads-card-width: 300px !important;
  --ads-card-height: 480px !important;
  --ads-card-gap: 48px !important;
  --ads-scene-height: 580px !important;
  --ads-side-pad: 18vw !important;
  --ads-scroll-duration: 60s !important;
  position: relative !important;
  overflow: hidden !important;
  padding: clamp(100px, 12vw, 180px) 0;
  min-height: 90vh;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%) !important;
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%) !important;
}

.adsBanner .scene {
  width: 100% !important;
  height: auto !important;
  min-height: var(--ads-scene-height) !important;
  margin-top: 40px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  perspective: 35em;
  padding-left: var(--ads-side-pad) !important;
  padding-right: var(--ads-side-pad) !important;
  box-sizing: border-box !important;
}

.adsBanner .a3d {
  display: flex !important;
  align-items: center !important;
  gap: var(--ads-card-gap) !important;
  width: max-content !important;
  min-width: max-content !important;
  margin: 0 !important;
  perspective: none !important;
  transform-style: flat !important;
  will-change: transform !important;
  --ads-loop-distance: -50%;
  animation: adsBannerSmoothScroll var(--ads-scroll-duration) linear infinite !important;
}

@keyframes adsBannerSmoothScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(var(--ads-loop-distance), 0, 0); }
}

.adsBanner .card {
  --w: unset !important;
  flex: 0 0 auto !important;
  width: var(--ads-card-width) !important;
  min-width: var(--ads-card-width) !important;
  max-width: var(--ads-card-width) !important;
  height: auto !important;
  display: block !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  overflow: hidden !important;
  transform: none !important;
  backface-visibility: hidden !important;
  opacity: 1 !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45) !important;
  background: transparent !important;
}

@media (hover: hover) {
  .adsBanner .card:hover {
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.60) !important;
    transform: translateY(-4px) !important;
  }
}

@media (max-width: 768px) {
  .adsBanner {
    --ads-card-width: 230px !important;
    --ads-card-height: 360px !important;
    --ads-card-gap: 28px !important;
    --ads-scene-height: 460px !important;
    --ads-side-pad: 10vw !important;
    --ads-scroll-duration: 20s !important;
  }
}

/* ===== FESTIVAL POSTS SECTION ===== */
.propcity-festival-scroll {
  padding: 80px 0;
  --festival-dur: 800s;
  position: relative;
  z-index: 4;
}

.propcity-festival-head {
  text-align: center !important;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.propcity-festival-head h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  margin: 0;
}

.propcity-festival-head p {
  margin-top: 10px;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  opacity: 0.75;
}

.propcity-festival-scroll .festival-scroll-wrapper {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 0 24px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scroll-behavior: smooth;
  height: auto !important;
  max-height: none !important;
  align-items: flex-start !important;
}

.propcity-festival-scroll .festival-scroll-wrapper::-webkit-scrollbar { display: none; }
.propcity-festival-scroll .festival-scroll-wrapper { scrollbar-width: none; }

#festival-scroll-wrapper.is-dragging { cursor: grabbing; }

.festival-scroll-shell {
  overflow: hidden;
  position: relative;
  perspective: 1200px;
  padding: 24px 0 28px;
}

.propcity-festival-scroll .festival-scroll-wrapper.is-looping {
  overflow: visible;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: auto;
  scroll-behavior: auto;
  cursor: default;
  padding: 0 0 12px;
  width: max-content;
  animation: festival-marquee var(--festival-dur, 36s) linear infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

.propcity-festival-scroll .festival-scroll-card {
  flex: 0 0 auto;
  width: 280px;
  height: auto !important;
  border-radius: 22px;
  background: rgba(24,28,40,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .35s ease;
}

/* ✅ FIX: Hide festival cards with broken/missing images - no gap left behind */
.festival-scroll-card.img-error {
  display: none !important;
}

.propcity-festival-scroll .festival-scroll-card::before {
  content: "";
  position: absolute;
  inset: -18% -10% -22%;
  background: radial-gradient(60% 50% at 50% 20%, rgba(124,92,255,0.28), transparent 60%);
  opacity: 0;
  filter: blur(22px);
  transform: scale(0.98);
  transition: opacity .35s ease;
  z-index: 0;
  pointer-events: none;
}

.propcity-festival-scroll .festival-scroll-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.propcity-festival-scroll .festival-scroll-wrapper.is-looping .festival-scroll-card {
  opacity: 1;
  transition: none;
  will-change: transform, opacity;
  animation: none;
  transform-origin: 50% 52%;
}

.propcity-festival-scroll .festival-scroll-card img {
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  position: relative;
  z-index: 1;
}

.propcity-festival-scroll .festival-scroll-wrapper.is-looping .festival-scroll-card::before {
  opacity: 0.18;
}

@media (hover:hover) {
  .propcity-festival-scroll .festival-scroll-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 28px 70px rgba(0,0,0,0.60);
  }
}

@keyframes festival-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--festival-loop-distance, 50%)), 0, 0); }
}

/* Hide festival cards where image failed to load */
.festival-scroll-card img[src=""],
.festival-scroll-card img:not([src]) {
  display: none;
}
.festival-scroll-card:has(img[src=""]),
.festival-scroll-card:has(img:not([src])) {
  display: none;
}

@media (max-width: 768px) {
  .propcity-festival-scroll { padding: 80px 0; }
  .propcity-festival-scroll .festival-scroll-card { width: 230px; }
}

/* ===== INFLUENCER SPLIT SECTION ===== */
.influencerSplit {
  position: relative;
  padding: clamp(40px, 5vw, 70px) 0;
  overflow: visible;
  width: 100%;
}

.influencerSplit + .influencerSplit {
  padding-top: clamp(40px, 5vw, 60px);
  margin-top: 0;
  position: relative;
}

.influencerSplit + .influencerSplit::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,14,26,0.0) 100%);
  pointer-events: none;
  z-index: 2;
}

.influencerSplit__bg {
  position: absolute;
  inset: -18% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 20% 25%, rgba(124,92,255,0.14), transparent 62%),
    radial-gradient(820px 560px at 80% 40%, rgba(34,211,238,0.12), transparent 60%);
  opacity: .95;
  will-change: transform;
}

.influencerSplit__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.influencerSplit__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.influencerTag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(124,92,255,0.9);
  margin-bottom: 10px;
}

.influencerSplit__content h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.influencerSplit__content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 70ch;
}

.influencerBtn { margin-top: 18px; }

.influencerSplit__media {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 20px 60px rgba(0,0,0,0.30);
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  will-change: transform, opacity;
}

.influencerSplit__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .influencerSplit__grid { grid-template-columns: 1fr; }
  .influencerSplit__media img { height: 320px; }
}

/* ===== VISUAL MEDIA (STATS) ===== */
.media { padding: clamp(80px, 10vw, 140px) 0; width: 100%; }

.media__head {
  text-align: center !important;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 32px;
  color: var(--text);
}

.media__head h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  font-weight: 800;
}

.media__head p {
  margin: 0 auto;
  max-width: 700px !important;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.statsWrap {
  width: 100%;
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 32px;
}

.statsGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.statCard {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  backdrop-filter: blur(12px);
  padding: 22px 18px;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  will-change: transform, opacity;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.statNum { font-size: clamp(28px, 3.2vw, 42px); font-weight: 900; letter-spacing: -0.02em; }
.statPlus { color: rgba(124,92,255,0.95); margin-left: 2px; }
.statLabel { margin-top: 8px; color: var(--muted); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }

@media (hover:hover) and (pointer:fine) {
  .statCard:hover {
    transform: translateY(-6px);
    border-color: rgba(124,92,255,0.3);
    box-shadow: 0 20px 60px rgba(124, 92, 255, 0.15), 0 0 30px rgba(34, 211, 238, 0.1);
  }
}
@media (max-width: 860px) { .statsGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .statsGrid { grid-template-columns: 1fr; } }

/* ===== CLIENTS MARQUEE SPEED OVERRIDE ===== */
#projects-scroll .pc-marquee .pc-marquee__inner {
  animation-duration: 180s !important;
}

#projects-scroll .pc-marquee--ltr .pc-marquee__inner {
  animation-duration: 220s !important;
}

#projects-scroll .pc-marquee:last-child .pc-marquee__inner {
  animation-duration: 260s !important;
}

/* ===== CLIENTS / PROJECTS SECTION ===== */
.clients-marquee-section {
  padding: 80px 0 90px;
  position: relative;
  z-index: 10;
}

.clients-header {
  text-align: center !important;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.clients-header h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  margin: 0;
}

.clients-header p {
  margin: 10px auto 0;
  max-width: 700px !important;
  opacity: .75;
}

#projects-scroll .clientsGridMarquee {
  display: grid;
  gap: 24px;
}

#projects-scroll .pc-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#projects-scroll .pc-marquee::before,
#projects-scroll .pc-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

#projects-scroll .pc-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(10,14,26,1), rgba(10,14,26,0));
}

#projects-scroll .pc-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(10,14,26,1), rgba(10,14,26,0));
}

#projects-scroll .pc-marquee__inner {
  display: flex;
  width: max-content;
  animation: pc-marquee-scroll-rtl var(--pc-dur, 48s) linear infinite;
  will-change: transform;
}

#projects-scroll .pc-marquee--ltr .pc-marquee__inner {
  animation-direction: reverse;
}

@keyframes pc-marquee-scroll-rtl {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--pc-loop-distance, 50%)), 0, 0); }
}

#projects-scroll .pc-marquee__track {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
}

#projects-scroll .logoTile {
  width: 330px;
  height: 140px;
  flex: 0 0 auto;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(12,16,32,0.90), rgba(17,22,40,0.72));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#projects-scroll .logoTile img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  background: #f3f4f6;
  padding: 8px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  #projects-scroll .clientsGridMarquee { gap: 16px; }

  #projects-scroll .pc-marquee::before,
  #projects-scroll .pc-marquee::after {
    width: 38px;
  }

  #projects-scroll .pc-marquee__track {
    gap: 16px;
    padding-right: 16px;
  }

  #projects-scroll .logoTile {
    width: 220px;
    height: 114px;
    border-radius: 18px;
  }

  #projects-scroll .logoTile img {
    width: 96px;
    height: 96px;
    padding: 8px;
  }
}

/* ===== BUTTONS ===== */
.btnCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: rgba(255,255,255,0.96);
  border: 1px solid rgba(124,92,255,0.4);
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(124,92,255,0.65));
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.btnCta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.btnCta:hover::before { opacity: 1; }
.btnCta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(124, 92, 255, 0.45);
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(124,92,255,0.8));
}

.btnCta--wa {
  border-color: rgba(37,211,102,0.5);
  background: linear-gradient(135deg, rgba(37,211,102,0.95), rgba(37,211,102,0.65));
}

.btnCta--wa:hover {
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, rgba(37,211,102,1), rgba(37,211,102,0.8));
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(124,92,255,0.0), 0 0 10px rgba(124,92,255,0.1); }
  50% { box-shadow: 0 0 0 10px rgba(124,92,255,0.0), 0 0 30px rgba(124,92,255,0.35); }
}

.btnCta.is-glowing { animation: ctaGlow 1.8s ease-in-out infinite; }

/* ===== FOOTER ===== */
.siteFooter {
  position: relative;
  z-index: 2;
  padding: 40px 18px 96px;
  margin-top: 72px;
  margin-bottom: 40px;
  background: transparent;
  color: rgba(255,255,255,0.88);
  width: 100%;
}

.siteFooter__inner {
  position: relative;
  --footer-pad-y: clamp(14px, 1.4vw, 20px);
  --footer-pad-x: clamp(16px, 2.2vw, 22px);
  --footer-section-gap: clamp(8px, 1.2vw, 12px);
  width: 100%;
  max-width: 1200px;
  min-height: 320px;
  margin: 0 auto;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(115deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04) 34%, rgba(255,255,255,0.02) 70%),
    rgba(9, 12, 24, 0.62);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow:
    0 26px 80px rgba(0,0,0,0.52),
    0 8px 28px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.06);
  padding: var(--footer-pad-y) var(--footer-pad-x);
  opacity: 1;
  transform: none;
  will-change: transform, opacity;
}

.siteFooter__inner::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% 18%, rgba(255,255,255,0.12), rgba(0,0,0,0.0) 60%);
  filter: blur(30px);
  opacity: 0.95;
  z-index: -1;
}

.footerBrand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: var(--footer-section-gap);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footerLogo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #5d61ff 0%, #17b2d6 100%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 12px 36px rgba(0,0,0,0.34);
  flex: 0 0 auto;
}

.footerLogo svg {
  width: 24px;
  height: 24px;
  opacity: 0.98;
}

.footerName {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.1;
}

.footerTag {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.64);
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 700;
}

.footerCols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 20px);
  padding: var(--footer-section-gap) 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

@media (max-width: 980px) { .footerCols { grid-template-columns: 1fr; } }

.footerLabel {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.66);
  margin-bottom: 8px;
  font-weight: 800;
  font-size: clamp(11px, 0.8vw, 13px);
}

.footerText {
  color: rgba(255,255,255,0.84);
  line-height: 1.7;
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 500;
  max-width: 42ch;
}

.footerText a {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.92);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.38);
  transition: all 250ms ease;
}

.footerText a:last-child { margin-bottom: 0; }

.footerText a:hover {
  text-decoration-color: rgba(255,255,255,0.85);
  color: rgba(255,255,255,0.95);
}

.footerSocial {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: var(--footer-section-gap) 0 0;
}

.footerIcon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(13px, 0.85vw, 16px);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.footerIcon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(124,92,255,0.4), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.footerIcon:hover::before { opacity: 1; }
@media (hover:hover) and (pointer:fine) {
  .footerIcon:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.34);
    box-shadow: 0 10px 24px rgba(0,0,0,0.32);
    color: rgba(255,255,255,0.98);
  }
}

.footerBottom {
  padding-top: calc(var(--footer-section-gap) - 4px);
  color: rgba(255,255,255,0.58);
  font-size: clamp(11px, 0.78vw, 13px);
}

.footerTopUp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 0;
}

.footerTopUpWrap {
  display: flex;
  justify-content: center;
  padding: 0 0 28px;
  position: relative;
  z-index: 2;
}

.footerTopUp__text {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(124,92,255,0.8);
  font-weight: 700;
}

.footerTopUp__btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(124,92,255,0.35);
  background: rgba(0,0,0,0.20);
  display: grid;
  place-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 300ms ease;
}

.footerTopUp__btn .chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(124,92,255,0.85);
  border-bottom: 2px solid rgba(124,92,255,0.85);
  transform: rotate(-135deg);
  position: absolute;
  opacity: 0;
}

.footerTopUp__btn .chev1 { animation: chevUp 1.5s ease-in-out infinite; }
.footerTopUp__btn .chev2 { animation: chevUp 1.5s ease-in-out infinite 0.18s; }

.footerTopUp__btn:hover {
  transform: translateY(-2px);
  border-color: rgba(124,92,255,0.6);
  box-shadow: 0 10px 24px rgba(124,92,255,0.25);
}

@keyframes chevUp {
  0% { transform: translateY(6px) rotate(-135deg); opacity: 0; }
  20% { opacity: 0.95; }
  60% { opacity: 0.95; }
  100% { transform: translateY(-10px) rotate(-135deg); opacity: 0; }
}

@media (max-width: 860px) {
  .siteFooter {
    padding: 26px 12px 66px;
    margin-top: 44px;
    margin-bottom: 24px;
  }

  .siteFooter__inner {
    --footer-pad-y: 16px;
    --footer-pad-x: 16px;
    --footer-section-gap: 10px;
    min-height: 260px;
    border-radius: 22px;
    padding: var(--footer-pad-y) var(--footer-pad-x);
  }

  .footerBrand {
    padding-bottom: 12px;
  }

  .footerLogo {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .footerLogo svg {
    width: 25px;
    height: 25px;
  }

  .footerText {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.6;
  }

  .footerIcon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 15px;
  }

  .footerTopUpWrap {
    padding-bottom: 22px;
  }
}

/* ===== CURSOR ARROW ===== */
.cursorArrow {
  position: fixed;
  left: 0;
  top: 0;
  width: 38px !important;
  height: 38px !important;
  border-radius: 999px !important;
  background: rgba(0,0,0,0.22) !important;
  border: 1px solid rgba(124,92,255,0.28) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: opacity 160ms ease, transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, left, top;
}

.cursorArrow.is-on { opacity: 1; }
.cursorArrow.is-hover { transform: translate(-50%, -50%) scale(1.05); }

.cursorArrow__icon {
  width: 11px;
  height: 11px;
  border-right: 2px solid rgba(255,255,255,0.92);
  border-bottom: 2px solid rgba(255,255,255,0.92);
  transform: rotate(-45deg);
  margin-left: 2px;
  animation: cursorNudge 1.1s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(124,92,255,0.35));
  opacity: 0.95;
}

@keyframes cursorNudge {
  0% { transform: rotate(-45deg) translate(0,0); }
  50% { transform: rotate(-45deg) translate(3px,3px); }
  100% { transform: rotate(-45deg) translate(0,0); }
}
@media (prefers-reduced-motion: reduce) { .cursorArrow__icon { animation: none !important; } }

/* ===== BACKGROUND VIDEO ===== */
#pcVideoBG {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ===== 2-VIDEO CROSSFADE ===== */
#pcVideoBG .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.45);
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  will-change: opacity;
}

#pcVideoBG .bg-video--active {
  opacity: 1;
}

/* ===== HERO FIXES ===== */
#hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(10,14,26,0) 0%, rgba(10,14,26,0.65) 55%, rgba(10,14,26,1) 100%);
  z-index: 3;
}

/* ===== GLOBAL FIXES ===== */
.elementor-button,
.elementor-button *,
button,
.button,
a.button,
.wp-block-button__link,
.btn,
.btn *,
.waMark {
  color: #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
}

header button,
header a,
.glass button,
.glass a,
button:hover,
button:focus,
button:active,
a:hover,
a:focus,
a:active,
.elementor-button:hover,
.elementor-button:focus,
.elementor-button:active {
  color: #ffffff !important;
  opacity: 1 !important;
}

.elementor-kit-10 a { color: #fff; }

/* ===== MEDIA QUERIES ===== */
@media (prefers-reduced-motion: reduce) {
  .logo.is-floating,
  .earth,
  .arrow,
  .data-card,
  .btnCta.is-glowing,
  [class*="animation"] {
    animation: none !important;
  }
  .about__content,
  .contactCard,
  .siteFooter__inner {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .earth-container { width: 500px; height: 500px; }
  .data-card { font-size: 9px; padding: 8px 12px; }
}

/* ===== GLOBAL RESPONSIVE ===== */
@media (max-width: 1024px) {
  .adsBanner {
    --ads-card-width: 240px !important;
    --ads-card-height: 380px !important;
    --ads-card-gap: 32px !important;
    --ads-scene-height: 460px !important;
    --ads-side-pad: 8vw !important;
  }
}

@media (max-width: 768px) {
  .hero { min-height: 100svh; padding-top: 80px; }
  .hero__content { padding: 0 16px; gap: 20px; }
  .brandName h1 { font-size: clamp(32px, 8vw, 48px); }
  .brandName p { font-size: 13px; }
  .rightCard { padding: 18px; }
  .trustLine { font-size: 13px; }
  .btn { padding: 10px 14px; font-size: 13px; }
  .socialRow { gap: 8px; }
  .social { width: 38px; height: 38px; }

  .about { padding: clamp(60px, 8vw, 100px) 16px; }

  .services__inner { padding: clamp(60px, 8vw, 100px) 16px; }
  .svcCard { padding: 16px; }
  .svcCard h3 { font-size: 17px; }

  .adsBanner {
    --ads-card-width: 200px !important;
    --ads-card-height: 320px !important;
    --ads-card-gap: 20px !important;
    --ads-scene-height: 380px !important;
    --ads-side-pad: 5vw !important;
    --ads-scroll-duration: 40s !important;
    padding: clamp(60px, 8vw, 100px) 0;
    min-height: auto;
  }

  .propcity-festival-scroll { padding: 60px 0; }
  .propcity-festival-scroll .festival-scroll-card { width: 200px; }

  .influencerSplit__inner { padding: 0 16px; }
  .influencerSplit__media img { height: 260px; }
  .influencerSplit__content h2 { font-size: clamp(24px, 6vw, 36px); }

  .media { padding: clamp(60px, 8vw, 100px) 0; }
  .statsWrap { padding: 0 16px; }

  #projects-scroll .logoTile { width: 180px; height: 100px; border-radius: 14px; }
  #projects-scroll .logoTile img { width: 80px; height: 80px; }
  .clients-marquee-section { padding: 60px 0 70px; }

  .siteFooter { padding: 20px 12px 60px; margin-top: 30px; }
}

@media (max-width: 480px) {
  .brandName h1 { font-size: clamp(28px, 9vw, 40px); }
  .ctaRow { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .statsGrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .adsBanner {
    --ads-card-width: 160px !important;
    --ads-card-height: 260px !important;
    --ads-card-gap: 14px !important;
    --ads-scene-height: 300px !important;
    --ads-side-pad: 3vw !important;
  }
  #projects-scroll .logoTile { width: 150px; height: 88px; }
}