:root {
  --bg: #050505;
  --text-main: #ffffff;
  --text-muted: #888888;
  --brand: #22d3ee;
  --accent: #fff;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
}

html {}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

/* Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  background: url('https://grainy-gradients.vercel.app/noise.svg');
}

/* Premium Custom Cursor */
#cursor,
#cursor-border {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  visibility: hidden;
  /* Hidden by default */
  z-index: 2147483647;
  /* Max Z-Index */
}

#cursor {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

#cursor-border {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* Active State (Safe Mode) */
@media (min-width: 992px) {

  body.custom-cursor-active #cursor,
  body.custom-cursor-active #cursor-border {
    visibility: visible;
  }

  /* Only hide default cursor when custom cursor is ACTIVE */
  body.custom-cursor-active,
  body.custom-cursor-active a,
  body.custom-cursor-active button,
  body.custom-cursor-active input,
  body.custom-cursor-active textarea,
  body.custom-cursor-active .bento-item,
  body.custom-cursor-active .accordion-header {
    cursor: none !important;
  }
}

/* Hover State */
body.cursor-hover #cursor {
  transform: translate(-50%, -50%) scale(0);
  /* Hide inner dot */
}

body.cursor-hover #cursor-border {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin-top: 0;
  color: #fff;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1400px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Navbar - Floating Island */
header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  transition: all 0.4s ease;
}

.nav-island {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 12px 30px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px
}

.menu a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}

.menu a:hover {
  color: #fff;
}

.cta {
  padding: 10px 24px;
  background: #fff;
  color: #000;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s ease;
  font-family: 'Syne', sans-serif;
}

.cta:hover {
  transform: scale(1.05);
}

/* Hero Section - Avant Garde */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 100px;
}

#vanta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  /* Reduced opacity to let chart show */
}

#crypto-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-label {
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  max-width: 600px;
  margin: 0 auto 60px;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(50px, 9vw, 110px);
  line-height: 1.1;
  margin-bottom: 40px;
  font-weight: 800;
  background: linear-gradient(to bottom, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 30px;
  padding-left: 30px;
}

.hero p.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.magnetic-btn {
  padding: 20px 40px;
  border-radius: 100px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Marquee */
/* Modern Tech Marquee */
.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 20%, transparent 80%, rgba(255, 255, 255, 0.02) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 100px;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.marquee-content {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 60px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: default;
  white-space: nowrap;
}

.marquee-item:hover {
  color: #fff;
  -webkit-text-stroke: 1px #fff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Bento Grid - Holographic */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 0;
}

/* Tech Card Design - 3D Upgrade */
.bento-item {
  perspective: 1000px;
  /* Essential for 3D effect */
}

.tech-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.1s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  /* Fast transform for tilt */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transform-style: preserve-3d;
  /* Enable 3D children */
  will-change: transform;
}

/* Holographic Shimmer */
.tech-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
  pointer-events: none;
}

.tech-card:hover::after {
  left: 150%;
  transition: 1s ease-in-out;
}

.tech-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  /* Inner glow */
}

/* Floating Elements (3D Depth) */
.tech-icon-wrapper,
.tech-content,
.tech-arrow {
  transform: translateZ(20px);
  /* Pop out */
  transition: transform 0.4s ease, background 0.4s, color 0.4s;
}

.tech-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tech-card:hover .tech-icon-wrapper {
  background: #fff;
  color: #000;
  transform: translateZ(40px) scale(1.1) rotate(-5deg);
  /* Higher pop on hover */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tech-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateZ(30px);
}

.tech-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
  transform: translateZ(20px);
}

.tech-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: var(--text-muted);
  transform: translateZ(20px);
}

.tech-card:hover .tech-arrow {
  background: #fff;
  color: #000;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-visual {
  position: relative;
  height: 600px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame {
  width: 300px;
  height: 580px;
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  background: #000;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.app-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.app-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 18px;
  color: var(--text-muted);
}

.app-list li i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Why Us - Glass Tiles */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-tile {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 24px;
  transition: 0.3s;
}

.why-tile:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.why-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0.8;
}

.why-tile h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.why-tile p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ - Glass Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.accordion-header {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.accordion-body {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-muted);
}

.accordion-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.accordion-item.active .accordion-body {
  padding-bottom: 30px;
  max-height: 200px;
}

/* Gaming Section - Monochrome HUD Theme */
#gaming {
  background-color: #050505;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  position: relative;
  overflow: hidden;
}

.gaming-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* HUD Corner Cut */
  clip-path: polygon(20px 0, 100% 0,
      100% calc(100% - 20px), calc(100% - 20px) 100%,
      0 100%, 0 20px);
}

/* HUD Corner Accents */
.gaming-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.gaming-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.gaming-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.game-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 8px;
  background: #000;
}

.game-icon {
  font-size: 42px;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.gaming-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.gaming-card p {
  font-family: 'Courier New', monospace;
  /* Tech font for description */
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}

/* Scanline Overlay */
.scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 51%);
  background-size: 100% 4px;
  pointer-events: none;
  opacity: 0.3;
}

/* Loading Bar Decoration */
.load-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  position: relative;
}

.load-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width 0.5s ease;
}

/* Mini Game Styles - Compact Side Layout */
.game-layout-split {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.mini-game-container {
  flex-shrink: 0;
  width: 140px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.crash-counter {
  font-family: 'Courier New', monospace;
  font-size: 32px;
  /* Smaller for side layout */
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.hud-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.hud-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 15px #fff;
}

.crash-result {
  height: 20px;
  margin-top: 10px;
  font-size: 12px;
  color: #aaa;
  font-family: 'Courier New', monospace;
}

/* Pure CSS Pong Animation */
.pong-css-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #050505;
  overflow: hidden;
}

.pong-net {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 50%, transparent 50%);
  background-size: 100% 20px;
  transform: translateX(-50%);
}

.pong-score-board {
  position: absolute;
  top: 40px;
  width: 100%;
  text-align: center;
  font-family: 'Courier New', monospace;
  font-size: 40px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.pong-paddle {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 80px;
  background: #fff;
  box-shadow: 0 0 15px #fff;
  border-radius: 4px;
  transform: translateY(-50%);
}

.paddle-left {
  left: 20px;
  animation: paddleLeft 4s ease-in-out infinite;
}

.paddle-right {
  right: 20px;
  animation: paddleRight 4s ease-in-out infinite;
}

.pong-ball {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  background: #fff;
  box-shadow: 0 0 15px #fff;
  border-radius: 50%;
  animation: ballMove 4s linear infinite;
}

@keyframes ballMove {
  0% {
    top: 50%;
    left: 50%;
  }

  25% {
    top: 20%;
    left: 90%;
  }

  /* Hit Right */
  50% {
    top: 80%;
    left: 50%;
  }

  75% {
    top: 30%;
    left: 10%;
  }

  /* Hit Left */
  100% {
    top: 50%;
    left: 50%;
  }
}

@keyframes paddleLeft {
  0% {
    top: 50%;
  }

  50% {
    top: 80%;
  }

  75% {
    top: 30%;
  }

  100% {
    top: 50%;
  }
}

@keyframes paddleRight {
  0% {
    top: 50%;
  }

  25% {
    top: 20%;
  }

  100% {
    top: 50%;
  }
}

/* App Scroll Animation */
@keyframes appScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.app-scroll-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.app-scroll-content {
  animation: appScroll 15s linear infinite;
}

.app-scroll-wrapper:hover .app-scroll-content {
  animation-play-state: paused;
}

.app-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Pan-India Section Styles */
.pan-india-section {
  background: #050505;
  position: relative;
  overflow: hidden;
}

.pan-india-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  font-family: 'Syne', sans-serif;
}

.city-link {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
}

.city-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.city-link strong {
  color: #fff;
  margin-left: 5px;
}

.map-marker {
  fill: #fff;
  animation: pulse 2s infinite;
}

.radar-scan {
  transform-origin: 300px 350px;
  animation: radarSpin 4s linear infinite;
}

@keyframes radarSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    r: 2;
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    r: 6;
    opacity: 0;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    r: 2;
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.map-path {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  transition: 0.3s;
}

.map-path:hover {
  fill: rgba(255, 255, 255, 0.1);
  stroke: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-item.large {
    grid-column: span 2;
  }

  .hero h1 {
    font-size: 80px;
  }

  .app-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-visual {
    display: none;
  }

  /* Hide visual on tablet/mobile for simplicity */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    top: 0;
  }

  .nav-island {
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(5, 5, 5, 0.9);
  }

  .menu {
    display: none;
  }

  .hero {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .hero p.lead {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }

  .magnetic-btn {
    width: 100%;
    text-align: center;
    padding: 16px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bento-item.large,
  .bento-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-item {
    min-height: auto;
    padding: 30px;
  }

  .glass-card {
    padding: 40px 20px;
  }

  .glass-card h2 {
    font-size: 32px !important;
  }

  .glass-card p {
    font-size: 16px !important;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0 !important;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .location-cloud {
    gap: 10px;
  }

  .city-link {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
  }

  .city-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .city-link strong {
    color: #fff;
    margin-left: 5px;
  }

  .map-marker {
    fill: #fff;
    animation: pulse 2s infinite;
  }

  .radar-scan {
    transform-origin: 300px 350px;
    animation: radarSpin 4s linear infinite;
  }

  @keyframes radarSpin {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  @keyframes pulse {
    0% {
      r: 2;
      opacity: 1;
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
      r: 6;
      opacity: 0;
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
      r: 2;
      opacity: 1;
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }

  .map-path {
    fill: rgba(255, 255, 255, 0.05);
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1;
    transition: 0.3s;
  }

  .map-path:hover {
    fill: rgba(255, 255, 255, 0.1);
    stroke: #fff;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .bento-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .bento-item.large {
      grid-column: span 2;
    }

    .hero h1 {
      font-size: 80px;
    }

    .app-showcase {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .app-visual {
      display: none;
    }

    /* Hide visual on tablet/mobile for simplicity */
    .why-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    header {
      top: 0;
    }

    .nav-island {
      width: 100%;
      border-radius: 0;
      border: none;
      border-bottom: 1px solid var(--glass-border);
      justify-content: space-between;
      padding: 15px 20px;
      background: rgba(5, 5, 5, 0.9);
    }

    .menu {
      display: none;
    }

    .hero {
      padding-top: 140px;
    }

    .hero h1 {
      font-size: 42px;
      margin-bottom: 20px;
    }

  }

  .glass-card {
    padding: 40px 20px;
  }

  .glass-card h2 {
    font-size: 32px !important;
  }

  .glass-card p {
    font-size: 16px !important;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0 !important;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .location-cloud {
    gap: 10px;
  }

  .loc-tag {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Force AOS Visibility - Critical Fix */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Select Dropdown Monochrome Styling */
select {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  accent-color: #2a2a2a !important;
}

select option {
  background-color: #0a0a0a !important;
  color: #ffffff !important;
  padding: 8px;
}

select option:hover,
select option:focus {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  transition: 0.3s;
}

.map-path:hover {
  fill: rgba(255, 255, 255, 0.1);
  stroke: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-item.large {
    grid-column: span 2;
  }

  .hero h1 {
    font-size: 80px;
  }


}

select option:hover,
select option:focus {
  background-color: #2a2a2a !important;
  background: linear-gradient(#2a2a2a, #2a2a2a) !important;
  color: #ffffff !important;
}

select option:checked,
select option:active {
  background-color: #2a2a2a !important;
  background: linear-gradient(#2a2a2a, #2a2a2a) !important;
  color: #ffffff !important;
}

/* Force remove browser default blue selection */
select:focus option:checked {
  background: #2a2a2a !important;
  background-color: #2a2a2a !important;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #fff, #888);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s;
}

/* Additional Mobile Responsiveness */
@media (max-width: 640px) {
  .container {
    width: 95%;
  }

  .hero h1 {
    font-size: 36px !important;
  }

  .hero p.lead {
    font-size: 16px !important;
  }

  .marquee-item {
    font-size: 40px;
  }

  .section-header h2 {
    font-size: 28px !important;
  }

  .tech-card {
    padding: 25px;
  }

  .tech-content h3 {
    font-size: 20px !important;
  }

  .tech-content p {
    font-size: 14px !important;
  }

  .app-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    gap: 15px;
  }

  .why-tile {
    padding: 30px 20px;
  }

  .gaming-card {
    padding: 25px;
  }

  .gaming-card h3 {
    font-size: 20px !important;
  }

  .pong-css-container {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(5, 5, 5, 0.9);
  }

  .menu {
    display: none;
  }

  .hero {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }

}

.glass-card {
  padding: 40px 20px;
}

.glass-card h2 {
  font-size: 32px !important;
}

.glass-card p {
  font-size: 16px !important;
}

.why-grid {
  grid-template-columns: 1fr;
}

section {
  padding: 60px 0 !important;
}

.section-header h2 {
  font-size: 36px;
}

.location-cloud {
  gap: 10px;
}

.loc-tag {
  padding: 8px 16px;
  font-size: 12px;
}
}

/* Force AOS Visibility - Critical Fix */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Select Dropdown Monochrome Styling */
select {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  accent-color: #2a2a2a !important;
}

select option {
  background-color: #0a0a0a !important;
  color: #ffffff !important;
  padding: 8px;
}

select option:hover,
select option:focus {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  transition: 0.3s;
}

.map-path:hover {
  fill: rgba(255, 255, 255, 0.1);
  stroke: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-item.large {
    grid-column: span 2;
  }

  .hero h1 {
    font-size: 80px;
  }


}

select option:hover,
select option:focus {
  background-color: #2a2a2a !important;
  background: linear-gradient(#2a2a2a, #2a2a2a) !important;
  color: #ffffff !important;
}

select option:checked,
select option:active {
  background-color: #2a2a2a !important;
  background: linear-gradient(#2a2a2a, #2a2a2a) !important;
  color: #ffffff !important;
}

/* Force remove browser default blue selection */
select:focus option:checked {
  background: #2a2a2a !important;
  background-color: #2a2a2a !important;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #fff, #888);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s;
}

/* Additional Mobile Responsiveness */
@media (max-width: 640px) {
  .container {
    width: 95%;
  }

  .hero h1 {
    font-size: 36px !important;
  }

  .hero p.lead {
    font-size: 16px !important;
  }

  .marquee-item {
    font-size: 40px;
  }

  .section-header h2 {
    font-size: 28px !important;
  }

  .tech-card {
    padding: 25px;
  }

  .tech-content h3 {
    font-size: 20px !important;
  }

  .tech-content p {
    font-size: 14px !important;
  }

  .app-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    gap: 15px;
  }

  .why-tile {
    padding: 30px 20px;
  }

  .gaming-card {
    padding: 25px;
  }

  .gaming-card h3 {
    font-size: 20px !important;
  }

  .pong-css-container {
    transform: scale(0.8);
  }
}

/* Tablet Responsiveness */
@media (min-width: 641px) and (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-item.large {
    grid-column: span 2;
  }

  .bento-item.tall {
    grid-row: span 1;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-showcase {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section-header h2 {
    font-size: 48px;
  }
}

/* Landscape Phone */
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 48px !important;
  }
}

/* Blog Layout Specific Styles */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 60px 0;
}

.blog-content {
  background: rgba(17, 24, 39, 0.4);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.blog-header {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  padding-bottom: 30px;
}

.blog-header h1 {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-header .meta {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.blog-header .meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-body h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: var(--brand);
}

.blog-body h3 {
  font-size: 22px;
  margin: 30px 0 15px;
  color: var(--text);
}

.blog-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

.blog-body ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.blog-body li {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 16px;
}

.feature-box {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
}

.feature-box h4 {
  color: var(--accent);
  margin-top: 0;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-content {
    padding: 25px;
  }

  .blog-header h1 {
    font-size: 32px;
  }
}


/* Demo Page Specific */
.demo-form-card {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
}

form input,
form select {
  width: 100%;
  padding: 14px;
  background: #0b1020;
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--text);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

form input:focus,
form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.2);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #0b0f1a;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.3s;
}

.btn-submit:hover {
  transform: translateY(-3px);
}


/* City Page Feature Image */
.city-feature-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin: 20px 0 40px;
  border: 1px solid rgba(148, 163, 184, 0.1);
}

@media (max-width: 768px) {
  .city-feature-image {
    height: 250px;
  }
}


/* City Page Buttons */
.city-cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #0b0f1a;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.city-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 211, 238, 0.3);
}

.city-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #0b0f1a;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.city-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 211, 238, 0.3);
}

/* Responsive Form Layout */
.form-row-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.city-form-input {
  width: 100%;
  padding: 16px;
  background: rgba(11, 16, 32, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.1);
  color: #fff;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s;
  font-family: 'Manrope', sans-serif;
}

.city-form-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.1);
}

.textarea-height {
  min-height: 150px;
  resize: vertical;
}

/* =========================================
   RESPONSIVE FORM LAYOUT
   ========================================= */
@media (max-width: 768px) {
  .form-row-2-col {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .city-cta-btn {
    width: 100%;
    text-align: center;
    display: block;
  }

  .city-submit-btn {
    padding: 18px;
    font-size: 18px;
  }
}

/* =========================================
   WHY US SECTION REDESIGN (Holographic Tech)
   ========================================= */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
  padding: 20px;
}

.why-card {
  background: rgba(10, 10, 10, 0.6);
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-card:hover {
  transform: translateY(-15px) scale(1.02);
  background: rgba(15, 15, 15, 0.8);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.card-bg-number {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 180px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  font-family: 'Syne', sans-serif;
  line-height: 1;
  pointer-events: none;
  transition: all 0.5s ease;
}

.why-card:hover .card-bg-number {
  color: rgba(34, 211, 238, 0.05);
  transform: scale(1.1);
}

.card-content-wrapper {
  position: relative;
  z-index: 2;
}

.card-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(139, 92, 246, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.why-card:hover .card-icon-wrapper {
  transform: rotate(10deg);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(139, 92, 246, 0.1));
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
}

.card-icon-wrapper i {
  font-size: 32px;
  background: linear-gradient(135deg, #22d3ee, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 5px rgba(34, 211, 238, 0.3));
}

.why-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.5px;
}

.why-card p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Holographic Border Effect */
.holo-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  pointer-events: none;
  z-index: 1;
}

.holo-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 40%, rgba(34, 211, 238, 0.3), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.why-card:hover .holo-border::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.5), transparent 30%, rgba(139, 92, 246, 0.5), transparent 70%);
}

.highlight-link {
  color: #22d3ee;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: all 0.3s ease;
}

.highlight-link:hover {
  color: #fff;
  text-shadow: 0 0 15px rgba(34, 211, 238, 0.8);
}

@media (max-width: 768px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 10px;
  }

  .why-card {
    padding: 30px;
    min-height: auto;
  }

  .card-bg-number {
    font-size: 120px;
    top: -10px;
    right: -10px;
  }
}

/* =========================================
   PREMIUM MOBILE REDESIGN (World-Class Agency Style)
   ========================================= */
@media (max-width: 768px) {

  /* 1. Typography & Spacing */
  body {
    font-size: 16px;
  }

  h1,
  .h1 {
    font-size: 36px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em;
  }

  h2,
  .h2 {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }

  p.lead {
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #94a3b8 !important;
  }

  .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
    width: 100% !important;
  }

  /* 2. Hero Section */
  .hero {
    padding-top: 120px !important;
    padding: 0 10px;
  }

  .magnetic-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: 16px;
  }

  /* 3. Bento Grid & Cards */
  .bento-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .bento-item,
  .glass-card,
  .tech-card,
  .why-tile {
    padding: 30px 24px !important;
    border-radius: 20px !important;
    background: rgba(17, 24, 39, 0.6) !important;
    backdrop-filter: blur(12px) !important;
  }

  /* 4. Navigation */
  header {
    background: rgba(5, 5, 5, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-island {
    background: transparent !important;
    border: none !important;
    padding: 15px 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
  }

  section {
    padding: 80px 0 !important;
  }

  footer {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Hide complex elements */
  .cursor-dot,
  .cursor-outline,
  .noise-overlay {
    display: none !important;
  }

  /* PREMIUM MOBILE MENU STYLES */
  .mobile-toggle {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 10px !important;
    z-index: 1001 !important;
    width: 44px !important;
    height: 44px !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .mobile-toggle span {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    background: #fff !important;
    transition: all 0.3s ease !important;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
  }

  .mobile-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translate(1px, -1px) !important;
  }

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    padding: 80px 20px 40px;
  }

  .mobile-menu-content a:not(.mobile-cta):not(.contact-link) {
    font-size: 19px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .mobile-menu-overlay.active .mobile-menu-content a:not(.mobile-cta):not(.contact-link) {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered Animations */
  .mobile-menu-overlay.active .mobile-menu-content>a:nth-child(1) {
    transition-delay: 0.1s;
  }

  .mobile-menu-overlay.active .mobile-menu-content>a:nth-child(2) {
    transition-delay: 0.15s;
  }

  .mobile-menu-overlay.active .mobile-menu-content>a:nth-child(3) {
    transition-delay: 0.2s;
  }

  .mobile-menu-overlay.active .mobile-menu-content>a:nth-child(4) {
    transition-delay: 0.25s;
  }

  .mobile-menu-overlay.active .mobile-menu-content>.mobile-cta {
    transition-delay: 0.3s;
  }

  .mobile-menu-overlay.active .mobile-menu-content>.mobile-contact-section {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
  }

  .mobile-cta {
    background: #FFFFFF;
    color: #000000 !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .desktop-cta {
    display: none !important;
  }

  /* Close Button */
  .mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
  }

  /* Contact Section */
  .mobile-contact-section {
    margin-top: 40px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
  }

  .contact-heading {
    font-size: 20px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    font-family: 'Syne', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .contact-subtitle {
    display: none;
  }

  .contact-block.sales-highlight {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.05);
    position: relative;
    overflow: hidden;
  }

  .contact-block.sales-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.5), transparent);
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
  }

  .contact-icon i {
    font-size: 24px;
    color: #22d3ee;
    filter: drop-shadow(0 0 5px rgba(34, 211, 238, 0.5));
  }

  .contact-block-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Syne', sans-serif;
    letter-spacing: 0.5px;
  }

  .contact-text {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .contact-link {
    display: block;
    font-size: 16px;
    color: #fff !important;
    text-decoration: none;
    margin-bottom: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
  }

  .contact-link.highlight {
    color: #22d3ee !important;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    align-items: center;
    gap: 25px;
    text-align: center;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    padding: 80px 20px 40px;
  }

  .mobile-menu-content a:not(.mobile-cta):not(.contact-link) {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .mobile-menu-overlay.active .mobile-menu-content a:not(.mobile-cta):not(.contact-link) {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered Animations */
  .mobile-menu-overlay.active .mobile-menu-content>a:nth-child(1) {
    transition-delay: 0.1s;
  }

  .mobile-menu-overlay.active .mobile-menu-content>a:nth-child(2) {
    transition-delay: 0.15s;
  }

  .mobile-menu-overlay.active .mobile-menu-content>a:nth-child(3) {
    transition-delay: 0.2s;
  }

  .mobile-menu-overlay.active .mobile-menu-content>a:nth-child(4) {
    transition-delay: 0.25s;
  }

  .mobile-menu-overlay.active .mobile-menu-content>.mobile-cta {
    transition-delay: 0.3s;
  }

  .mobile-menu-overlay.active .mobile-menu-content>.mobile-contact-section {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
  }

  .mobile-cta {
    background: #FFFFFF;
    color: #000000 !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .desktop-cta {
    display: none !important;
  }

  /* Close Button */
  .mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
  }

  /* Contact Section */
  .mobile-contact-section {
    margin-top: 40px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
  }

  .contact-heading {
    font-size: 20px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    font-family: 'Syne', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .contact-subtitle {
    display: none;
  }

  .contact-block.sales-highlight {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.05);
    position: relative;
    overflow: hidden;
  }

  .contact-block.sales-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.5), transparent);
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
  }

  .contact-icon i {
    font-size: 24px;
    color: #22d3ee;
    filter: drop-shadow(0 0 5px rgba(34, 211, 238, 0.5));
  }

  .contact-block-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Syne', sans-serif;
    letter-spacing: 0.5px;
  }

  .contact-text {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .contact-link {
    display: block;
    font-size: 16px;
    color: #fff !important;
    text-decoration: none;
    margin-bottom: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
  }

  .contact-link.highlight {
    color: #22d3ee !important;
    font-size: 19px;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    opacity: 1;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
    margin-bottom: 15px;
  }

  .contact-link:hover {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* =========================================
   DESKTOP STYLES (min-width: 769px)
   ========================================= */
@media (min-width: 769px) {

  .mobile-toggle,
  .mobile-menu-overlay {
    display: none !important;
  }

  .contact-link:hover {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* =========================================
   DESKTOP STYLES (min-width: 769px)
   ========================================= */
@media (min-width: 769px) {

  .mobile-toggle,
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* =========================================
   FAQ ACCORDION STYLES (NEON GLASS REDESIGN)
   ========================================= */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #22d3ee, #e91e63);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.faq-item.active::before {
  opacity: 1;
}

.faq-header {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.faq-number {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  margin-right: 25px;
  transition: color 0.3s ease;
}

.faq-item.active .faq-number {
  color: #22d3ee;
  text-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
}

.faq-header h3 {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-family: 'Manrope', sans-serif;
  padding-right: 20px;
  pointer-events: none;
  /* Crucial for click handling */
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: none;
  /* Crucial for click handling */
}

.faq-icon i {
  font-size: 14px;
  color: #22d3ee;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}

.faq-item.active .faq-icon i {
  transform: rotate(135deg);
  color: #ff4d4d;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-body {
  max-height: 500px;
  /* Adjust if content is longer */
}

.faq-content {
  padding: 0 30px 30px 80px;
  /* Indented to align with text */
}

.faq-content p {
  margin: 0;
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-header {
    padding: 20px;
  }

  .faq-number {
    font-size: 18px;
    margin-right: 15px;
  }

  .faq-header h3 {
    font-size: 16px;
  }

  .faq-content {
    padding: 0 20px 25px 20px;
  }
}