@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* =============================================
   ELITE HEXAGONE LLC — DESIGN SYSTEM
   Colors: Black #0A0A0A | Purple #7C3AED | Pink #FF6EB4 | Yellow #F7E07A
============================================= */

:root {
  --black:        #0A0A0A;
  --black-soft:   #111111;
  --black-card:   #141414;
  --black-card2:  #1A1A1A;
  --black-border: #232323;
  --black-hover:  #2A2A2A;

  --purple:       #7C3AED;
  --purple-light: #9B5CF6;
  --purple-dark:  #5B21B6;
  --purple-glow:  rgba(124, 58, 237, 0.35);
  --purple-subtle:rgba(124, 58, 237, 0.12);

  --pink:         #FF6EB4;
  --pink-light:   #FF9ECE;
  --pink-dark:    #E84D9B;
  --pink-glow:    rgba(255, 110, 180, 0.35);
  --pink-subtle:  rgba(255, 110, 180, 0.12);

  --yellow:       #F7E07A;
  --yellow-light: #FFF3B0;
  --yellow-glow:  rgba(247, 224, 122, 0.35);
  --yellow-subtle:rgba(247, 224, 122, 0.12);

  --white:        #FFFFFF;
  --text-primary: #F0F0F0;
  --text-secondary:#AAAAAA;
  --text-muted:   #666666;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full:999px;

  --shadow-purple: 0 0 60px rgba(124, 58, 237, 0.25);
  --shadow-pink:   0 0 60px rgba(255, 110, 180, 0.25);
  --shadow-card:   0 8px 40px rgba(0,0,0,0.4);

  --nav-height: 72px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

/* =============================================
   UTILITIES
============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-2 {
  background: linear-gradient(135deg, var(--pink) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-3 {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--pink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--purple-subtle);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1.5rem;
}
.section-label.pink {
  background: var(--pink-subtle);
  border-color: rgba(255,110,180,0.3);
  color: var(--pink-light);
}
.section-label.yellow {
  background: var(--yellow-subtle);
  border-color: rgba(247,224,122,0.25);
  color: var(--yellow);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 580px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: var(--white);
  box-shadow: 0 0 30px var(--purple-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(124,58,237,0.6);
}
.btn-pink {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 100%);
  color: var(--white);
  box-shadow: 0 0 30px var(--pink-glow);
}
.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255,110,180,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--black-border);
}
.btn-outline:hover {
  border-color: var(--purple);
  background: var(--purple-subtle);
  transform: translateY(-2px);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 0 30px var(--yellow-glow);
}
.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(247,224,122,0.5);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-icon { width: 42px; height: 42px; padding: 0; border-radius: var(--radius-sm); }

/* =============================================
   CARDS
============================================= */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}
.card:hover {
  border-color: var(--purple);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(124,58,237,0.15);
}
.glass-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}
.glass-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(124,58,237,0.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow-purple);
}

/* =============================================
   TAGS / BADGES
============================================= */
.tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.tag-purple { background: var(--purple-subtle); color: var(--purple-light); border: 1px solid rgba(124,58,237,0.25); }
.tag-pink   { background: var(--pink-subtle);   color: var(--pink-light);   border: 1px solid rgba(255,110,180,0.25); }
.tag-yellow { background: var(--yellow-subtle); color: var(--yellow);       border: 1px solid rgba(247,224,122,0.2); }
.tag-gray   { background: rgba(255,255,255,0.06); color: var(--text-secondary); border: 1px solid var(--black-border); }

/* =============================================
   ICON BOX
============================================= */
.icon-box {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.icon-box-purple { background: var(--purple-subtle); }
.icon-box-pink   { background: var(--pink-subtle); }
.icon-box-yellow { background: var(--yellow-subtle); }

/* =============================================
   DIVIDER
============================================= */
.divider { width: 100%; height: 1px; background: var(--black-border); }

/* =============================================
   NAVIGATION
============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--black-border);
  transition: background 0.3s ease;
}
.navbar.scrolled { background: rgba(10,10,10,0.98); }
.nav-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; color: var(--white);
}
.nav-logo-mark {
  width: 38px; height: 38px; position: relative;
}
.nav-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.nav-brand-name em { font-style: normal; color: var(--purple-light); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 0.5rem; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
  padding: 1.5rem 2rem 2rem;
  flex-direction: column; gap: 1.5rem;
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--black-border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.25rem;
}
.page-hero p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}
.footer-main {
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 260px;
}
.footer-address {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.7;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }

/* =============================================
   ANIMATIONS
============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section-pad { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}


/* =============================================
   HOME PAGE — HERO
============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-orb 8s ease-in-out infinite;
}
.hero-orb-2 {
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,110,180,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-orb 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(247,224,122,0.04) 0%, transparent 70%);
}
@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* Floating hexagons in background */
.hex-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hex-shape {
  position: absolute;
  opacity: 0.06;
  animation: hex-drift linear infinite;
}
@keyframes hex-drift {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.06; }
  90%  { opacity: 0.06; }
  100% { transform: translateY(-200px) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--purple-subtle);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1.75rem;
}
.hero-text .hero-label .dot {
  width: 6px; height: 6px;
  background: var(--purple-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.hero-heading {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-heading .line-2 {
  display: block;
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--black-border);
}
.hero-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-val span { color: var(--purple-light); }
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-hex-ring {
  position: relative;
  width: 420px;
  height: 420px;
}
.hex-main {
  width: 100%;
  height: 100%;
  animation: spin-slow 30s linear infinite;
}
.hex-inner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.hex-inner-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
}
.hex-inner-sub { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Floating mini cards around hex */
.float-card {
  position: absolute;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}
.float-card-1 {
  top: 10%; left: -20px;
  animation: float-card 4s ease-in-out infinite;
}
.float-card-2 {
  bottom: 15%; right: -20px;
  animation: float-card 5s ease-in-out infinite reverse;
}
.float-card-3 {
  bottom: 5%; left: 5%;
  animation: float-card 6s ease-in-out infinite 1s;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.float-card-icon { font-size: 1.2rem; }
.float-card-dot {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0;
}
.dot-green { background: #22c55e; box-shadow: 0 0 8px #22c55e; }
.dot-purple { background: var(--purple-light); box-shadow: 0 0 8px var(--purple); }
.dot-pink { background: var(--pink); box-shadow: 0 0 8px var(--pink); }

/* =============================================
   HOME PAGE — SERVICES SECTION
============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card.web::before { background: linear-gradient(90deg, var(--purple), var(--purple-light)); }
.service-card.mobile::before { background: linear-gradient(90deg, var(--pink), var(--pink-light)); }
.service-card.games::before { background: linear-gradient(90deg, var(--yellow), var(--pink)); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.service-card.web:hover { border-color: var(--purple); box-shadow: 0 25px 60px rgba(124,58,237,0.2); }
.service-card.mobile:hover { border-color: var(--pink); box-shadow: 0 25px 60px rgba(255,110,180,0.2); }
.service-card.games:hover { border-color: var(--yellow); box-shadow: 0 25px 60px rgba(247,224,122,0.15); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.service-card.web .service-icon { background: var(--purple-subtle); }
.service-card.mobile .service-icon { background: var(--pink-subtle); }
.service-card.games .service-icon { background: var(--yellow-subtle); }

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.service-list {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.service-list li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.service-list li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
}
.service-card.web .service-list li::before { background: var(--purple-light); }
.service-card.mobile .service-list li::before { background: var(--pink); }
.service-card.games .service-list li::before { background: var(--yellow); }
.service-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.2s;
}
.service-card.web .service-card-link { color: var(--purple-light); }
.service-card.mobile .service-card-link { color: var(--pink); }
.service-card.games .service-card-link { color: var(--yellow); }
.service-card-link:hover { gap: 0.75rem; }

/* =============================================
   HOME PAGE — STATS STRIP
============================================= */
.stats-strip {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 50px;
  background: var(--black-border);
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--white), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-num.purple { background: linear-gradient(135deg, var(--purple-light), var(--pink)); -webkit-background-clip: text; background-clip: text; }
.stat-num.pink   { background: linear-gradient(135deg, var(--pink), var(--yellow)); -webkit-background-clip: text; background-clip: text; }
.stat-label { color: var(--text-muted); font-size: 0.85rem; }

/* =============================================
   HOME PAGE — TECH STACK MARQUEE
============================================= */
.marquee-section {
  padding: 2.5rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), transparent);
}
.marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--black), transparent);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll 25s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tech-pill {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 0.2s;
}
.tech-pill:hover { border-color: var(--purple); color: var(--white); }
.tech-pill-icon { font-size: 1.1rem; }

/* =============================================
   HOME PAGE — PORTFOLIO PREVIEW
============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.portfolio-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.35s ease;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: var(--purple);
  box-shadow: 0 20px 60px rgba(124,58,237,0.2);
}
.portfolio-card-thumb {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.portfolio-card-thumb.bg-purple { background: linear-gradient(135deg, #1a0a3d, #3b1a8a); }
.portfolio-card-thumb.bg-pink   { background: linear-gradient(135deg, #3d0a28, #8a1a55); }
.portfolio-card-thumb.bg-yellow { background: linear-gradient(135deg, #2d2800, #6b5a00); }
.portfolio-card-body { padding: 1.5rem; }
.portfolio-card-body h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.portfolio-card-body p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 1rem; }
.portfolio-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* =============================================
   HOME PAGE — CTA SECTION
============================================= */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(255,110,180,0.08) 100%);
  border-top: 1px solid rgba(124,58,237,0.2);
  border-bottom: 1px solid rgba(124,58,237,0.2);
  padding: 6rem 0;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  position: relative;
}
.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* =============================================
   SERVICES PAGE
============================================= */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-full-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all 0.3s ease;
}
.service-full-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
}
.service-full-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.service-full-card > p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.75; margin-bottom: 1.75rem; }
.service-items { display: flex; flex-direction: column; gap: 0.65rem; }
.service-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.service-item:hover { border-color: var(--purple); color: var(--white); background: var(--purple-subtle); }
.service-item-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  color: var(--white);
}
.check-purple { background: var(--purple); }
.check-pink { background: var(--pink); }
.check-yellow { background: #8a7a00; color: var(--yellow); }

/* =============================================
   ABOUT PAGE
============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hex-container {
  width: 280px; height: 280px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.about-hex-container svg { width: 100%; height: 100%; }
.about-CEO-card {
  position: absolute;
  right: -30px; bottom: -20px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.ceo-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.ceo-name { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.1rem; }
.ceo-title { font-size: 0.72rem; color: var(--text-muted); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
}
.value-card:hover { border-color: var(--purple); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--text-muted); font-size: 0.83rem; line-height: 1.65; }

/* =============================================
   CONTACT PAGE
============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--purple-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text h5 { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.25rem; font-weight: 500; }
.contact-detail-text p { color: var(--text-primary); font-size: 0.92rem; margin: 0; }
.contact-form-wrap {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--black-card2);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--black-card2); }

/* =============================================
   PORTFOLIO PAGE
============================================= */
.filter-tabs {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 1rem;
}
.filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--purple); color: var(--white); }
.filter-tab.active {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}
.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.portfolio-full-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}
.portfolio-full-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: 0 25px 60px rgba(124,58,237,0.2);
}
.portfolio-thumb {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.portfolio-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-full-card:hover .portfolio-thumb-overlay { opacity: 1; }
.portfolio-thumb-overlay span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.5rem 1.25rem;
  background: var(--purple);
  border-radius: var(--radius-full);
}
.portfolio-body { padding: 1.5rem; }
.portfolio-body h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.portfolio-body p { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.65; margin-bottom: 1rem; }
.portfolio-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }

/* =============================================
   LEGAL PAGES
============================================= */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--white);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--black-border);
}
.legal-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.legal-content ul {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1rem;
}
.legal-content ul li { margin-bottom: 0.5rem; }
.legal-meta {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.legal-meta strong { color: var(--text-secondary); }

/* =============================================
   RESPONSIVE — SPECIFIC SECTIONS
============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .services-full-grid { grid-template-columns: 1fr; }
  .portfolio-full-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
