/* ── CUSTOM CURSOR ── */
body { cursor: none !important; }
body * { cursor: none !important; }

#gmn-cursor-dot {
  position: fixed;
  top: -6px;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  animation: gmn-color-cycle 3s linear infinite;
  transition: opacity 0.25s;
  will-change: transform;
}

#gmn-cursor-ring {
  position: fixed;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  border: 2px solid;
  background: transparent;
  animation: gmn-color-cycle 3s linear infinite;
  animation-delay: -1.5s;
  opacity: 0.55;
  transition: opacity 0.25s, width 0.15s, height 0.15s, top 0.15s, left 0.15s;
  will-change: transform;
}

#gmn-cursor-ring.gmn-cursor-press {
  width: 28px;
  height: 28px;
  top: -14px;
  left: -14px;
  opacity: 0.9;
}

@keyframes gmn-color-cycle {
  0%   { background: #06b6d4; border-color: #06b6d4; box-shadow: 0 0 10px #06b6d4, 0 0 22px rgba(6,182,212,0.35); }
  33%  { background: #7c3aed; border-color: #7c3aed; box-shadow: 0 0 10px #7c3aed, 0 0 22px rgba(124,58,237,0.35); }
  66%  { background: #a855f7; border-color: #a855f7; box-shadow: 0 0 10px #a855f7, 0 0 22px rgba(168,85,247,0.35); }
  100% { background: #06b6d4; border-color: #06b6d4; box-shadow: 0 0 10px #06b6d4, 0 0 22px rgba(6,182,212,0.35); }
}

@media (hover: none) {
  body, body * { cursor: auto !important; }
  #gmn-cursor-dot, #gmn-cursor-ring { display: none; }
}

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cyan: #06b6d4;
  --indigo: #7c3aed;
  --purple: #a855f7;
  --cyan2: #22d3ee;
  --dark: #060608;
  --dark2: #0a0a12;
  --dark3: #0e0e1c;
  --border: rgba(99,102,241,0.18);
  --border2: rgba(6,182,212,0.2);
  --text: #e2e8f0;
  --muted: #64748b;
  --muted2: #94a3b8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  background: linear-gradient(180deg, rgba(6,6,12,0.92) 0%, rgba(6,6,12,0.75) 100%);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(6,182,212,0.15);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 4px 24px rgba(0,0,0,0.5);
}

.nav-logo svg { display: block; }
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--muted2);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover { color: var(--cyan2); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  color: white !important;
  padding: 0.45rem 1.2rem;
  border-radius: 4px;
  font-size: 0.85rem !important;
}
.nav-cta::after { display: none !important; }

.nav-account {
  border: 1px solid rgba(6,182,212,0.4);
  color: rgba(6,182,212,0.85) !important;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem !important;
  transition: border-color 0.2s, color 0.2s;
}
.nav-account:hover { border-color: rgba(6,182,212,0.9); color: #06b6d4 !important; }
.nav-account::after { display: none !important; }

.nav-phone {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  position: relative;
  z-index: 90;
  margin-top: 68px;
  padding: 0.45rem 2.5rem;
  background: rgba(4,4,10,0.55);
  border-bottom: 1px solid rgba(6,182,212,0.1);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.breadcrumb-bar .bc-item a {
  color: rgba(148,163,184,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-bar .bc-item a:hover { color: #06b6d4; }
.breadcrumb-bar .bc-sep { color: rgba(148,163,184,0.3); font-size: 0.8rem; }
.breadcrumb-bar .bc-current { color: #06b6d4; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 35%, rgba(124,58,237,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 20%, rgba(6,182,212,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(168,85,247,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(0,0,0,1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 5% 95%, rgba(6,6,8,1) 0%, transparent 70%),
    #060608;
  z-index: -2;
  pointer-events: none;
}

/* Honeycomb image layer */
.hero-honeycomb {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('../images/honeycomb_01.png');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  pointer-events: none;
}

.hero-fade-tl {
  position: absolute;
  top: 0; left: 0;
  width: 45%; height: 55%;
  background: radial-gradient(ellipse at top left, rgba(6,6,8,1) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-fade-br {
  position: absolute;
  bottom: 0; right: 0;
  width: 40%; height: 50%;
  background: radial-gradient(ellipse at bottom right, rgba(6,6,8,1) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--dark));
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6,182,212,0.07);
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s ease both;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.hero-logo-wrap {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  animation: fadeUp 0.7s 0.1s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-hex-svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.hero-logo-img {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.95));
}

.hero-wordmark {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #06b6d4, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Hero text card */
.hero-text-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #080f1a, #0a0a18);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 14px;
  padding: 1.6rem 3rem;
  text-align: center;
  width: min(760px, 90vw);
  margin-bottom: 1.75rem;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    0 0 40px rgba(124,58,237,0.08),
    0 8px 32px rgba(0,0,0,0.5);
  animation: fadeUp 0.7s 0.2s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Dual corner glows — cyan top-right, purple bottom-left */
.hero-text-card::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.1), transparent);
  top: -80px; right: -60px;
  pointer-events: none;
}

.hero-text-card .hero-badge {
  margin-top: 1.75rem;
  margin-bottom: 0;
}

.hero-text-card::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.1), transparent);
  bottom: -60px; left: -50px;
  pointer-events: none;
}

.hero-tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.hero-tagline strong {
  font-weight: 700;
  background: linear-gradient(90deg, var(--cyan2), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted2);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Hero CTA panel cards */
.hero-cta-cards {
  display: flex;
  gap: 1rem;
  width: min(760px, 90vw);
  animation: fadeUp 0.7s 0.35s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-cta-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  flex: 1;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    0 8px 32px rgba(0,0,0,0.5);
}

.hero-cta-card.biz {
  background: linear-gradient(135deg, #080f1a, #0a0a18);
  border: 1px solid rgba(6,182,212,0.25);
}

.hero-cta-card.game {
  background: linear-gradient(135deg, #0d0818, #080810);
  border: 1px solid rgba(168,85,247,0.25);
}

/* Corner glow */
.hero-cta-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  pointer-events: none;
  top: -80px; right: -60px;
}

.hero-cta-card.biz .hero-cta-glow {
  background: radial-gradient(circle, rgba(6,182,212,0.14), transparent);
}

.hero-cta-card.game .hero-cta-glow {
  background: radial-gradient(circle, rgba(168,85,247,0.14), transparent);
}

.hero-cta-card:hover { transform: translateY(-4px); }

.hero-cta-card.biz:hover {
  border-color: rgba(6,182,212,0.5);
  box-shadow: 0 1px 0 rgba(255,255,255,0.09) inset, 0 0 28px rgba(6,182,212,0.15), 0 12px 40px rgba(0,0,0,0.55);
}

.hero-cta-card.game:hover {
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 1px 0 rgba(255,255,255,0.09) inset, 0 0 28px rgba(168,85,247,0.15), 0 12px 40px rgba(0,0,0,0.55);
}

.hero-cta-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
}

.hero-cta-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-cta-card.biz .hero-cta-label { color: var(--cyan2); }
.hero-cta-card.game .hero-cta-label { color: var(--purple); }

.hero-cta-sub {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
}

.hero-cta-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
  transition: transform 0.2s, color 0.2s;
}

.hero-cta-card.biz:hover .hero-cta-arrow { transform: translateX(4px); color: var(--cyan2); }
.hero-cta-card.game:hover .hero-cta-arrow { transform: translateX(4px); color: var(--purple); }

.hero-scroll {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: fadeUp 0.7s 0.5s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollDrop 1.6s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── GLASS UTILITY ── */
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    0 -1px 0 rgba(0,0,0,0.3) inset,
    0 8px 32px rgba(0,0,0,0.4);
}

/* ── SHARED SECTION HEADERS ── */
.section-label {
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-title {
  text-align: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--muted2);
  font-weight: 300;
  font-size: 0.92rem;
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── SERVICES BAR ── */
.services-bar {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.services-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zm0-6l22-13V19L28 6 6 19v28l22 13z' fill='none' stroke='%2306b6d4' stroke-width='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(14,14,28,0.9) 40%, rgba(6,6,12,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 8px 24px rgba(0,0,0,0.4);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s;
}

.service-card:hover::after { left: 130%; }
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6,182,212,0.35);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 0 20px rgba(6,182,212,0.12),
    0 12px 32px rgba(0,0,0,0.5);
}

.service-icon { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }

.service-icon img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.service-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.service-card p { font-size: 0.75rem; color: var(--muted); line-height: 1.4; }

/* ── WHY SECTION ── */
.why-section {
  position: relative;
  z-index: 1;
  padding: 5.5rem 2rem;
  max-width: 1020px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

/* Left card — cyan-tinted atmospheric panel */
.why-text {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #080f1a, #0a0a18);
  border: 1px solid rgba(6,182,212,0.18);
  border-radius: 14px;
  padding: 2.25rem 2rem;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 0 40px rgba(6,182,212,0.06),
    0 12px 40px rgba(0,0,0,0.5);
}

.why-text::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.1), transparent);
  top: -80px; right: -80px;
  pointer-events: none;
}

.why-text h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.why-text h2 span {
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-text p {
  color: var(--muted2);
  font-weight: 300;
  font-size: 0.92rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.why-points { display: flex; flex-direction: column; gap: 0.75rem; }

/* Each why-point gets its own atmospheric panel background */
.why-point {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 6px 20px rgba(0,0,0,0.4);
}

.why-point::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  pointer-events: none;
}

/* Cyan cards */
.why-point.why-cyan {
  background: linear-gradient(135deg, #080f1a, #0a0a18);
  border: 1px solid rgba(6,182,212,0.16);
}
.why-point.why-cyan::after {
  background: radial-gradient(circle, rgba(6,182,212,0.12), transparent);
  top: -60px; right: -60px;
}
.why-point.why-cyan:hover {
  border-color: rgba(6,182,212,0.35);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07) inset, 0 0 20px rgba(6,182,212,0.12), 0 8px 24px rgba(0,0,0,0.5);
  transform: translateX(3px);
}

/* Purple card */
.why-point.why-purple {
  background: linear-gradient(135deg, #0d0818, #080810);
  border: 1px solid rgba(168,85,247,0.16);
}
.why-point.why-purple::after {
  background: radial-gradient(circle, rgba(168,85,247,0.12), transparent);
  bottom: -60px; left: -40px;
}
.why-point.why-purple:hover {
  border-color: rgba(168,85,247,0.35);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07) inset, 0 0 20px rgba(168,85,247,0.12), 0 8px 24px rgba(0,0,0,0.5);
  transform: translateX(3px);
}

/* Indigo card */
.why-point.why-indigo {
  background: linear-gradient(135deg, #0a0818, #090812);
  border: 1px solid rgba(124,58,237,0.16);
}
.why-point.why-indigo::after {
  background: radial-gradient(circle, rgba(124,58,237,0.12), transparent);
  top: -50px; right: -50px;
}
.why-point.why-indigo:hover {
  border-color: rgba(124,58,237,0.35);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07) inset, 0 0 20px rgba(124,58,237,0.12), 0 8px 24px rgba(0,0,0,0.5);
  transform: translateX(3px);
}

.why-point-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.why-point-icon img {
  width: 24px; height: 24px; object-fit: contain;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.why-point-icon.cyan { background: rgba(6,182,212,0.12); }
.why-point-icon.purple { background: rgba(168,85,247,0.12); }
.why-point-icon.indigo { background: rgba(124,58,237,0.12); }

.why-point-text { position: relative; z-index: 1; }

.why-point h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.why-point p { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ── PACKAGES ── */
.packages-section {
  position: relative;
  z-index: 1;
  padding: 5.5rem 2rem;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.packages-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zm0-6l22-13V19L28 6 6 19v28l22 13z' fill='none' stroke='%237c3aed' stroke-width='0.4'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  max-width: 1020px;
  margin: 0 auto 2rem;
  padding-top: 1rem;
}

.pkg-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.055) 0%, rgba(10,10,18,0.95) 35%, rgba(6,6,10,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.75rem;
  padding-top: 2.25rem;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    0 -1px 0 rgba(0,0,0,0.5) inset,
    0 12px 40px rgba(0,0,0,0.5);
}

.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.pkg-card:hover { transform: translateY(-5px); }

.pkg-card.featured {
  border-color: rgba(6,182,212,0.3);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 0 30px rgba(6,182,212,0.1),
    0 12px 40px rgba(0,0,0,0.55);
}

.pkg-card.gamer-pkg {
  border-color: rgba(168,85,247,0.28);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    0 0 30px rgba(124,58,237,0.1),
    0 12px 40px rgba(0,0,0,0.55);
}

.pkg-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--cyan), var(--indigo));
  color: white;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(6,182,212,0.4);
}

.pkg-badge.gamer-badge { background: linear-gradient(90deg, var(--indigo), var(--purple)); box-shadow: 0 0 14px rgba(124,58,237,0.4); }

.pkg-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 0.5rem;
}

.pkg-price {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pkg-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.pkg-desc { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.5; }

.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }

.pkg-features li {
  font-size: 0.82rem;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pkg-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.pkg-card.gamer-pkg .pkg-features li::before { background: var(--purple); }

.pkg-btn {
  display: block;
  width: 100%;
  padding: 0.65rem;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid rgba(6,182,212,0.4);
  color: var(--cyan);
  background: rgba(6,182,212,0.04);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.pkg-btn:hover, .pkg-card.featured .pkg-btn {
  background: linear-gradient(90deg, var(--cyan), var(--indigo));
  color: white;
  border-color: transparent;
  box-shadow: 0 0 18px rgba(6,182,212,0.35);
}

.pkg-card.gamer-pkg .pkg-btn { border-color: rgba(168,85,247,0.4); color: var(--purple); background: rgba(168,85,247,0.04); }
.pkg-card.gamer-pkg .pkg-btn:hover { background: linear-gradient(90deg, var(--indigo), var(--purple)); color: white; border-color: transparent; box-shadow: 0 0 18px rgba(124,58,237,0.4); }

.pkg-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.pkg-note a { color: var(--cyan); text-decoration: none; }

.view-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.view-all-btn {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan2);
  text-decoration: none;
  border: 1px solid rgba(6,182,212,0.25);
  padding: 0.65rem 2rem;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  background: rgba(6,182,212,0.03);
}

.view-all-btn:hover { border-color: var(--cyan2); background: rgba(6,182,212,0.06); box-shadow: 0 0 14px rgba(6,182,212,0.15); }

/* ── AUDIENCE SPLIT ── */
.audience-section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.audience-panel {
  padding: 5.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.audience-panel.biz {
  background: linear-gradient(135deg, #080f1a, #0a0a18);
  border-right: 1px solid var(--border2);
}

.audience-panel.game { background: linear-gradient(135deg, #0d0818, #080810); }

.audience-panel::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  pointer-events: none;
}

.audience-panel.biz::before {
  background: radial-gradient(circle, rgba(6,182,212,0.09), transparent);
  top: -60px; right: -60px;
}

.audience-panel.game::before {
  background: radial-gradient(circle, rgba(168,85,247,0.11), transparent);
  bottom: -60px; left: -60px;
}

.aud-tag {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.aud-tag.cyan { color: var(--cyan); }
.aud-tag.purple { color: var(--purple); }
.aud-tag::before { content: ''; display: block; width: 24px; height: 1px; }
.aud-tag.cyan::before { background: var(--cyan); }
.aud-tag.purple::before { background: var(--purple); }

.audience-panel h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.audience-panel p {
  color: var(--muted2);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 380px;
}

.aud-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 2rem; }

.aud-features li {
  font-size: 0.85rem;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.aud-features li .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.aud-features li .dot.cyan { background: var(--cyan); }
.aud-features li .dot.purple { background: var(--purple); }

.aud-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.aud-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.aud-btn.cyan { background: linear-gradient(90deg, var(--cyan), #0891b2); color: #080810; box-shadow: 0 0 20px rgba(6,182,212,0.3); }
.aud-btn.purple { background: linear-gradient(90deg, var(--indigo), var(--purple)); color: white; box-shadow: 0 0 20px rgba(124,58,237,0.35); }

/* ── PARTNERS ── */
.partners-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #06040f 0%, #080810 100%);
  position: relative;
  overflow: hidden;
}
.partners-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.partners-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.partners-heading {
  text-align: center;
}
.partners-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #06b6d4;
  display: block;
  margin-bottom: 0.5rem;
}
.partners-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  width: 100%;
}
.partner-card {
  position: relative;
  background: linear-gradient(135deg, #0d0818, #080f1a);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 12px;
  padding: 1.2rem;
  max-width: 300px;
  width: 100%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.partner-card:hover {
  border-color: rgba(6,182,212,0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.2), 0 0 0 1px rgba(6,182,212,0.15);
}
.partner-badge {
  position: absolute;
  top: -1px;
  right: 1.2rem;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  color: white;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 6px 6px;
}
.partner-logo-area {
  display: flex;
  justify-content: center;
}
.partner-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  display: block;
}
.partner-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.partner-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.partner-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}
.partner-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #06b6d4;
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  background: #04040a;
  border-top: 1px solid var(--border);
  padding: 3.5rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-brand .phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-top: 1rem;
}

.footer-col h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cyan2); }

.footer-bottom {
  max-width: 1020px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.75rem; color: var(--muted); }
.footer-bottom a { color: var(--cyan); text-decoration: none; }

.paypal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(6,182,212,0.06);
  border: 1px solid var(--border2);
  border-radius: 4px;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  color: var(--muted2);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ── UTILITIES ── */
.grad-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
  border: none;
  opacity: 0.3;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   HAMBURGER BUTTON (always in DOM, shown mobile)
═══════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — 900px (tablet tweaks)
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { gap: 1.2rem; }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-inner .footer-col:last-child { display: none; } /* hide last col, links exist elsewhere */
  .audience-panel { padding: 4rem 2.5rem; }
  .why-section { padding: 4rem 1.5rem; }
  .packages-section { padding: 4rem 1.5rem; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 768px (mobile main breakpoint)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  nav { padding: 0 1.25rem; overflow: visible; }
  .nav-phone { display: none !important; }
  .nav-hamburger { display: flex !important; }

  .nav-links {
    display: none !important;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(4,4,10,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6,182,212,0.18);
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    z-index: 98;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  }

  nav.nav-open .nav-links { display: flex !important; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    letter-spacing: 0.08em;
  }
  .nav-links a::after { display: none; }

  .nav-cta {
    margin: 0.75rem 1.25rem 0;
    display: block;
    text-align: center;
    padding: 0.7rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem !important;
  }

  .nav-account {
    margin: 0.4rem 1.25rem 0;
    display: block;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.9rem !important;
  }

  /* Phone number at bottom of mobile menu */
  .nav-links::after {
    content: '📞 (480) 624-2500';
    display: block;
    text-align: center;
    padding: 1rem 1.25rem 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.06em;
  }

  /* ── HERO ── */
  .hero { padding: 6rem 1.25rem 4rem; min-height: auto; }
  .hero-logo-img { max-width: 280px; }
  .hero-text-card { padding: 1.25rem 1.25rem; width: 100%; }
  .hero-cta-cards { flex-direction: column; gap: 0.75rem; width: 100%; }
  .hero-cta-card { padding: 1.1rem 1.25rem; min-width: 0; width: 100%; }
  .hero-cta-label { white-space: normal; }
  .hero-scroll { margin-top: 2.5rem; }

  /* ── BREADCRUMB ── */
  .breadcrumb-bar { padding: 0.45rem 1.25rem; }

  /* ── SERVICES ── */
  .services-bar { padding: 3.5rem 1.25rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── WHY SECTION ── */
  .why-section { padding: 3.5rem 1.25rem; }
  .why-grid { grid-template-columns: 1fr; }

  /* ── PACKAGES ── */
  .packages-section { padding: 3.5rem 1.25rem; }
  .packages-grid { grid-template-columns: 1fr 1fr; }

  /* ── AUDIENCE SPLIT ── */
  .audience-section { grid-template-columns: 1fr; }
  .audience-panel { padding: 3.5rem 1.75rem; }
  .audience-panel.biz { border-right: none; border-bottom: 1px solid var(--border2); }

  /* ── PARTNERS ── */
  .partners-section { padding: 3.5rem 1.25rem; }

  /* ── FOOTER ── */
  footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 480px (small phones)
═══════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── NAV ── */
  .nav-logo-img { height: 34px; }

  /* ── HERO ── */
  .hero { padding: 5.5rem 1rem 3rem; }
  .hero-logo-img { max-width: 220px; }
  .hero-text-card { padding: 1rem; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-cta-card { padding: 1rem; }
  .hero-cta-label { font-size: 0.95rem; }

  /* ── SERVICES ── */
  .services-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

  /* ── PACKAGES ── */
  .packages-grid { grid-template-columns: 1fr; }

  /* ── WHY SECTION ── */
  .why-text { padding: 1.5rem 1.25rem; }

  /* ── AUDIENCE ── */
  .audience-panel { padding: 3rem 1.25rem; }

  /* ── FOOTER ── */
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: auto; }
  .footer-brand p { max-width: 100%; }
}
