/* ============================================
   LIVOERA GROUP — GALAXY THEME
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:ital,wght@0,200;0,300;0,400;0,500;0,600;1,300&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-deep:        #020510;
  --bg-mid:         #060c1e;
  --bg-card:        rgba(12, 20, 48, 0.7);
  --purple-vivid:   #7c3aff;
  --purple-glow:    #a855f7;
  --purple-soft:    #6d28d9;
  --teal-vivid:     #0ff0c0;
  --teal-soft:      #14b8a6;
  --blue-accent:    #3b82f6;
  --white:          #f0f4ff;
  --white-dim:      rgba(240, 244, 255, 0.55);
  --white-faint:    rgba(240, 244, 255, 0.12);
  --gold:           #f59e0b;
  --radius-lg:      16px;
  --radius-pill:    9999px;
  --shadow-glow-p:  0 0 40px rgba(124, 58, 255, 0.4);
  --shadow-glow-t:  0 0 40px rgba(15, 240, 192, 0.3);
  --transition:     all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Exo 2', sans-serif;
  background-color: var(--bg-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

/* ---- Custom Cursor ---- */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--purple-glow);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.3s ease;
  box-shadow: 0 0 12px var(--purple-glow);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(168, 85, 247, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
.cursor-ring.hovered {
  width: 52px; height: 52px;
  border-color: var(--teal-vivid);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--purple-soft); border-radius: 4px; }

/* ---- Canvas Stars Background ---- */
#star-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---- Noise Overlay ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* ---- Layout ---- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  z-index: 2;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(2, 5, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 255, 0.15);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.nav-logo-text .tagline {
  font-size: 0.65rem;
  color: var(--teal-vivid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
}

/* ---- Animated Logo ---- */
.nav-logo-anim {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.nav-logo-anim .nav-logo-icon {
  width: 48px;
  height: 48px;
  overflow: visible;
}

/* Each ring group rotates around center (50,50) */
.nl-ring-outer {
  transform-origin: 50px 50px;
  animation: nlRotateSlow 28s linear infinite;
}
.nl-ring-teal {
  transform-origin: 50px 50px;
  animation: nlRotateReverse 14s linear infinite;
}
.nl-ring-purple {
  transform-origin: 50px 50px;
  animation: nlRotateFwd 9s linear infinite;
}
.nl-core {
  transform-origin: 50px 50px;
  animation: nlCorePulse 3s ease-in-out infinite;
}

/* Hover — speed up rings */
.nav-logo:hover .nl-ring-teal   { animation-duration: 5s; }
.nav-logo:hover .nl-ring-purple { animation-duration: 3s; }
.nav-logo:hover .nl-ring-outer  { animation-duration: 10s; }
.nav-logo:hover .nl-core        { animation: nlCoreGlow 0.8s ease-in-out infinite; }

@keyframes nlRotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes nlRotateReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes nlRotateFwd {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes nlCorePulse {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(124,58,255,0.5)); }
  50%       { filter: drop-shadow(0 0 12px rgba(124,58,255,0.9)) drop-shadow(0 0 20px rgba(124,58,255,0.4)); }
}
@keyframes nlCoreGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(124,58,255,0.8)); }
  50%       { filter: drop-shadow(0 0 20px rgba(168,85,247,1)) drop-shadow(0 0 32px rgba(15,240,192,0.4)); }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--teal-vivid);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 8px 22px;
  border: 1px solid var(--purple-glow);
  border-radius: var(--radius-pill);
  color: var(--purple-glow) !important;
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem !important;
  letter-spacing: 0.1em;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--purple-glow) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-glow-p) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--teal-vivid);
  font-weight: 500;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
  letter-spacing: 0.02em;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--purple-glow), var(--teal-vivid));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto 44px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--purple-vivid), var(--purple-glow));
  border: none;
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-glow-p);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(124, 58, 255, 0.6);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  color: var(--white-dim);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.06em;
}
.btn-secondary:hover {
  border-color: var(--teal-vivid);
  color: var(--teal-vivid);
  box-shadow: var(--shadow-glow-t);
  transform: translateY(-3px);
}
/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 255, 0.18) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(15, 240, 192, 0.12) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: orbFloat 10s ease-in-out 2s infinite reverse;
}

/* ============ STATS BAR ============ */
.stats-bar {
  padding: 40px 0;
  border-top: 1px solid var(--white-faint);
  border-bottom: 1px solid var(--white-faint);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--white-faint);
}
.stat-item:last-child::after { display: none; }
.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-glow), var(--teal-vivid));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--white-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============ SECTION COMMON ============ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-vivid);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--teal-vivid);
}
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title .accent {
  background: linear-gradient(135deg, var(--purple-glow), var(--teal-vivid));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-desc {
  color: var(--white-dim);
  font-size: 1rem;
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
}

/* ============ ABOUT ============ */
.about {
  padding: 120px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-planet {
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(124, 58, 255, 0.35),
    rgba(6, 12, 30, 0.9) 60%,
    rgba(15, 240, 192, 0.1));
  border: 1px solid rgba(124, 58, 255, 0.3);
  position: relative;
  box-shadow:
    inset 0 0 80px rgba(124, 58, 255, 0.2),
    0 0 80px rgba(124, 58, 255, 0.15);
  animation: planetRotate 20s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-planet-ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(15, 240, 192, 0.2);
  animation: ringPulse 4s ease-in-out infinite;
}
.about-planet-ring-2 {
  position: absolute;
  width: 490px; height: 490px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 255, 0.12);
  animation: ringPulse 4s ease-in-out 1s infinite;
}
.about-planet-dots {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
}
.about-planet-dots::before,
.about-planet-dots::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--teal-vivid);
  box-shadow: 0 0 8px var(--teal-vivid);
}
.about-planet-dots::before { width: 6px; height: 6px; top: 20%; left: 60%; }
.about-planet-dots::after { width: 4px; height: 4px; top: 60%; left: 25%; }
.about-icon-center {
  position: relative;
  z-index: 2;
}

/* Values list */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--white-faint);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.value-item:hover {
  border-color: rgba(124, 58, 255, 0.4);
  transform: translateX(6px);
  box-shadow: -4px 0 20px rgba(124, 58, 255, 0.2);
}
.value-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(124, 58, 255, 0.15);
  border: 1px solid rgba(124, 58, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.value-text h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.value-text p {
  font-size: 0.8rem;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.6;
}

/* ============ BUSINESS DIVISIONS ============ */
.divisions {
  padding: 120px 0;
  text-align: center;
}
.divisions-header { margin-bottom: 64px; }
.divisions-header .section-tag, .divisions-header .section-title, .divisions-header .section-desc {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.division-card {
  background: var(--bg-card);
  border: 1px solid var(--white-faint);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.division-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124, 58, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.division-card:hover {
  border-color: rgba(124, 58, 255, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-glow-p);
}
.division-card:hover::before { opacity: 1; }
.division-card.teal-variant:hover {
  border-color: rgba(15, 240, 192, 0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-glow-t);
}
.division-card.teal-variant::before {
  background: radial-gradient(circle at 50% 0%, rgba(15, 240, 192, 0.1) 0%, transparent 60%);
}
.div-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(124, 58, 255, 0.15);
  border: 1px solid rgba(124, 58, 255, 0.3);
  color: var(--purple-glow);
  margin-bottom: 24px;
  font-weight: 600;
}
.div-badge.teal {
  background: rgba(15, 240, 192, 0.1);
  border-color: rgba(15, 240, 192, 0.3);
  color: var(--teal-vivid);
}
.div-badge.gold {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--gold);
}
.div-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}
.division-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.division-card p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.8;
  font-weight: 300;
}
.div-features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.div-features li {
  font-size: 0.78rem;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.div-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple-glow);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--purple-glow);
}
.div-features.teal li::before { background: var(--teal-vivid); box-shadow: 0 0 6px var(--teal-vivid); }
.div-features.gold li::before { background: var(--gold); box-shadow: 0 0 6px var(--gold); }

/* ============ VOYIRA AI SECTION ============ */
.voyira {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.voyira-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124, 58, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.voyira-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.voyira-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Recreated Voyira logo in CSS/SVG */
.voyira-logo-anim {
  position: relative;
  width: 320px;
  height: 320px;
}
.v-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.v-ring-1 {
  width: 100%; height: 100%;
  border: 2px solid rgba(124, 58, 255, 0.7);
  box-shadow: 0 0 20px rgba(124, 58, 255, 0.5), inset 0 0 20px rgba(124, 58, 255, 0.1);
  animation: ringRotate1 12s linear infinite;
}
.v-ring-2 {
  width: 118%; height: 118%;
  border: 1.5px solid rgba(15, 240, 192, 0.5);
  box-shadow: 0 0 16px rgba(15, 240, 192, 0.3);
  animation: ringRotate2 18s linear infinite reverse;
}
.v-ring-3 {
  width: 136%; height: 136%;
  border: 1px solid rgba(124, 58, 255, 0.2);
  animation: ringRotate1 25s linear infinite;
}
.v-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 65%; height: 65%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%,
    rgba(60, 20, 120, 0.9),
    rgba(6, 8, 25, 0.95));
  border: 1.5px solid rgba(124, 58, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(124, 58, 255, 0.4), inset 0 0 30px rgba(124, 58, 255, 0.15);
}
.v-core svg { width: 70px; height: 70px; }
/* Orbit dots */
.v-dot {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-vivid);
  box-shadow: 0 0 10px var(--teal-vivid);
  top: 50%; left: 50%;
}
.v-dot-1 {
  animation: orbitDot 12s linear infinite;
  transform-origin: 0 0;
}
.v-dot-2 {
  width: 5px; height: 5px;
  background: var(--purple-glow);
  box-shadow: 0 0 8px var(--purple-glow);
  animation: orbitDot2 18s linear infinite reverse;
  transform-origin: 0 0;
}

.voyira-text { position: relative; z-index: 2; }
.voyira-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: rgba(124, 58, 255, 0.12);
  border: 1px solid rgba(124, 58, 255, 0.35);
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}
.voyira-chip-dot {
  width: 8px; height: 8px;
  background: var(--purple-glow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--purple-glow);
  animation: pulse 2s ease-in-out infinite;
}
.voyira-chip span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-glow);
  font-weight: 600;
}
.voyira-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}
.vf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(124, 58, 255, 0.07);
  border: 1px solid rgba(124, 58, 255, 0.15);
  border-radius: 10px;
  font-size: 0.78rem;
  color: var(--white-dim);
  transition: var(--transition);
}
.vf-item:hover {
  background: rgba(124, 58, 255, 0.15);
  border-color: rgba(124, 58, 255, 0.4);
  color: var(--white);
}
.vf-icon { font-size: 1rem; }
.voyira-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-voyira {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--purple-vivid), #9d2ff4);
  border: none;
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(124, 58, 255, 0.5);
}
.btn-voyira:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(124, 58, 255, 0.7);
}
.btn-voyira .arrow {
  transition: transform 0.3s ease;
}
.btn-voyira:hover .arrow { transform: translateX(4px); }

/* ============ PRODUCTS / SERVICES ============ */
.products {
  padding: 120px 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--white-faint);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 255, 0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.product-icon {
  font-size: 2rem;
}
.product-tag {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(124, 58, 255, 0.12);
  color: var(--purple-glow);
  border: 1px solid rgba(124, 58, 255, 0.25);
}
.product-tag.teal-tag {
  background: rgba(15, 240, 192, 0.1);
  color: var(--teal-vivid);
  border-color: rgba(15, 240, 192, 0.25);
}
.product-card h4 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.product-card p {
  font-size: 0.8rem;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.7;
}

/* ============ WHY US ============ */
.why {
  padding: 120px 0;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.why-card {
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1px solid var(--white-faint);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-vivid), var(--teal-vivid));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.why-card:hover { transform: translateY(-6px); }
.why-card:hover::after { transform: scaleX(1); }
.why-num {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.08;
  position: absolute;
  top: 20px; right: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}
.why-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.why-card p {
  font-size: 0.82rem;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.8;
}

/* ============ CONTACT ============ */
.contact {
  padding: 120px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--white-faint);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: rgba(124, 58, 255, 0.3);
}
.contact-item-icon {
  font-size: 1.3rem;
  width: 44px; height: 44px;
  background: rgba(124, 58, 255, 0.12);
  border: 1px solid rgba(124, 58, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-text h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 4px;
}
.contact-item-text p {
  font-size: 0.9rem;
  font-weight: 500;
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--white-faint);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(12px);
}
.contact-form h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-faint);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group select option { background: var(--bg-mid); color: var(--white); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(124, 58, 255, 0.5);
  background: rgba(124, 58, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(124, 58, 255, 0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--white-faint);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--white-faint);
  margin-bottom: 28px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 0.82rem;
  color: rgba(240, 244, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 300;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(240, 244, 255, 0.3);
}
.footer-bottom a { color: var(--purple-glow); text-decoration: none; }

/* Social links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--white-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--white-dim);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--purple-glow);
  color: var(--purple-glow);
  box-shadow: 0 0 12px rgba(124, 58, 255, 0.4);
  transform: translateY(-2px);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.05); }
  66%       { transform: translate(-15px, 15px) scale(0.97); }
}
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%, -50%) scale(1.04); opacity: 0.6; }
}
@keyframes ringRotate1 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes ringRotate2 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}
@keyframes planetRotate {
  0%, 100% { box-shadow: inset 0 0 80px rgba(124, 58, 255, 0.2), 0 0 80px rgba(124, 58, 255, 0.15); }
  50%       { box-shadow: inset 0 0 100px rgba(124, 58, 255, 0.3), 0 0 100px rgba(124, 58, 255, 0.25); }
}
@keyframes orbitDot {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(160px); }
  to   { transform: translate(-50%, -50%) rotate(360deg) translateX(160px); }
}
@keyframes orbitDot2 {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(188px); }
  to   { transform: translate(-50%, -50%) rotate(-360deg) translateX(188px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-grid, .voyira-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .divisions-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .divisions-grid, .why-grid { grid-template-columns: 1fr; }
  .voyira-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .voyira-logo-anim { width: 240px; height: 240px; }
  .about-planet { width: 240px; height: 240px; }
  .about-planet-ring { width: 300px; height: 300px; }
  .about-planet-ring-2 { width: 350px; height: 350px; }
}