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

:root {
  --bg: #060612;
  --bg2: #0a0a1e;
  --bg3: #0d0d24;
  --blue: #0066ff;
  --cyan: #00d4ff;
  --purple: #7c3aed;
  --gold: #f59e0b;
  --green: #10b981;
  --red: #ef4444;
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --border: rgba(255,255,255,0.08);
  --glass: rgba(255,255,255,0.04);
  --glow-blue: 0 0 40px rgba(0,102,255,0.3);
  --glow-cyan: 0 0 40px rgba(0,212,255,0.3);
  --grad: linear-gradient(135deg, #0066ff, #00d4ff);
  --grad2: linear-gradient(135deg, #7c3aed, #0066ff);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

::selection { background: rgba(0,102,255,0.4); color: #fff; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem; font-weight: 900;
  color: #fff; margin-bottom: 2rem;
  animation: pulse 1s ease-in-out infinite alternate;
}
.loader-logo span { color: var(--cyan); }
.loader-bar {
  width: 240px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; margin: 0 auto 1rem;
}
.loader-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 2px;
  animation: loadfill 2.5s ease forwards;
}
.loader-text { color: var(--text-dim); font-size: 0.85rem; letter-spacing: 2px; }
@keyframes loadfill { from { width: 0 } to { width: 100% } }
@keyframes pulse { from { text-shadow: 0 0 20px rgba(0,212,255,0.3); } to { text-shadow: 0 0 60px rgba(0,212,255,0.8); } }

/* ===== BG CANVAS ===== */
#bgCanvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.6;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(6,6,18,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1400px; margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  width: 42px; height: 42px;
  background: var(--grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900; font-size: 1rem; color: #fff;
  box-shadow: var(--glow-blue);
}
.nav-logo span {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: #fff;
}
.nav-logo em { color: var(--cyan); font-style: normal; }
.nav-links {
  display: flex; list-style: none; gap: 0.25rem;
  margin: 0 auto;
}
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  padding: 0.5rem 0.85rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  transition: all 0.3s;
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: var(--glass); }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 0.5rem); left: 0;
  background: rgba(10,10,30,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 0.5rem;
  min-width: 220px; opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 1rem; border-radius: 8px;
  color: var(--text-dim); text-decoration: none;
  font-size: 0.875rem; transition: all 0.2s;
}
.dropdown-menu a i { color: var(--cyan); width: 16px; }
.dropdown-menu a:hover { background: var(--glass); color: #fff; }
.nav-cta {
  background: var(--grad); color: #fff;
  text-decoration: none; padding: 0.6rem 1.4rem;
  border-radius: 10px; font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; gap: 0.5rem;
  flex-shrink: 0; transition: all 0.3s;
  box-shadow: var(--glow-blue);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,102,255,0.5); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.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 Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(6,6,18,0.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  opacity: 0; visibility: hidden; transition: 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  color: #fff; text-decoration: none; font-size: 1.5rem;
  font-weight: 700; font-family: 'Orbitron', sans-serif;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--cyan); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden; z-index: 1;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,102,255,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(124,58,237,0.1) 0%, transparent 50%);
}
.hero-content {
  max-width: 700px; position: relative; z-index: 2;
  margin-left: max(2rem, calc((100vw - 1400px)/2 + 2rem));
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,102,255,0.1); border: 1px solid rgba(0,102,255,0.3);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
  color: var(--cyan); margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  animation: pulseDot 1.5s ease-in-out infinite;
  display: inline-block;
}
@keyframes pulseDot { 0%,100%{box-shadow:0 0 0 0 rgba(0,212,255,0.6)} 50%{box-shadow:0 0 0 6px rgba(0,212,255,0)} }
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .line1, .hero-title .line3 { display: block; animation: slideInLeft 0.8s ease both; }
.hero-title .line2 { display: block; animation: slideInLeft 0.8s 0.2s ease both; }
.hero-title .line3 { animation-delay: 0.4s; }
@keyframes slideInLeft { from { opacity:0; transform: translateX(-40px); } to { opacity:1; transform: translateX(0); } }
@keyframes fadeInDown { from { opacity:0; transform: translateY(-20px); } to { opacity:1; transform: translateY(0); } }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem; color: var(--text-dim); line-height: 1.8;
  margin-bottom: 2.5rem; max-width: 580px;
  animation: fadeInDown 0.8s 0.5s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInDown 0.8s 0.6s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--grad); color: #fff;
  padding: 0.9rem 2rem; border-radius: 12px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: var(--glow-blue);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,102,255,0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary.full-width { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: #fff;
  padding: 0.9rem 2rem; border-radius: 12px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.btn-ghost:hover { background: var(--glass); border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }
.hero-stats {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  animation: fadeInDown 0.8s 0.8s ease both;
}
.hstat { text-align: center; }
.hnum {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--cyan);
  display: inline;
}
.hstat > span { font-size: 1.5rem; font-weight: 700; color: var(--cyan); }
.hstat p { font-size: 0.8rem; color: var(--text-dim); margin-top: 0.15rem; }
.hstat-div { width: 1px; height: 40px; background: var(--border); }
.hero-3d {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: min(600px, 50vw); height: 600px;
  z-index: 1; pointer-events: none;
}
#heroCanvas { width: 100%; height: 100%; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-dim); font-size: 0.75rem; letter-spacing: 2px; z-index: 2;
  animation: fadeInDown 1s 1.2s ease both;
}
.hero-scroll span {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{transform:scaleY(0.5);opacity:0.5} 50%{transform:scaleY(1);opacity:1} }

/* ===== TICKER ===== */
.ticker-wrap {
  position: relative; z-index: 1;
  background: rgba(0,102,255,0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 1rem 0;
}
.ticker {
  display: flex; gap: 2rem; white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker span { font-weight: 600; font-size: 0.9rem; color: var(--text-dim); }
.ticker .sep { color: var(--cyan); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTIONS ===== */
.section { position: relative; z-index: 1; padding: 6rem 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge {
  display: inline-flex; align-items: center;
  background: rgba(0,102,255,0.1); border: 1px solid rgba(0,102,255,0.2);
  color: var(--cyan); padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 1rem;
}
.section-header p { color: var(--text-dim); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}
.about-visual { position: relative; display: flex; justify-content: center; }
.about-card-3d {
  position: relative; width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.card3d-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; width: 280px;
}
.acard {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem; text-align: center;
  transition: all 0.3s; backdrop-filter: blur(10px);
}
.acard:hover { border-color: rgba(0,102,255,0.4); transform: translateY(-4px); box-shadow: var(--glow-blue); }
.acard i { font-size: 1.5rem; color: var(--cyan); margin-bottom: 0.75rem; display: block; }
.acard h4 { font-size: 1.3rem; font-weight: 900; font-family: 'Orbitron',sans-serif; color: #fff; }
.acard p { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.25rem; }
.orbit-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,102,255,0.15);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: spinRing 15s linear infinite;
}
.r1 { width: 340px; height: 340px; animation-duration: 15s; }
.r2 { width: 420px; height: 420px; animation-duration: 25s; animation-direction: reverse; }
@keyframes spinRing { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }
.orbit-dot {
  position: absolute; width: 10px; height: 10px;
  border-radius: 50%; background: var(--cyan);
  top: 50%; left: 50%; box-shadow: var(--glow-cyan);
}
.d1 { animation: orbitDot1 15s linear infinite; }
.d2 { animation: orbitDot2 25s linear infinite reverse; background: var(--purple); }
@keyframes orbitDot1 {
  from { transform: translate(-50%,-50%) rotate(0deg) translateX(170px); }
  to   { transform: translate(-50%,-50%) rotate(360deg) translateX(170px); }
}
@keyframes orbitDot2 {
  from { transform: translate(-50%,-50%) rotate(0deg) translateX(210px); }
  to   { transform: translate(-50%,-50%) rotate(360deg) translateX(210px); }
}
.about-content { padding: 1rem 0; }
.about-content p { color: var(--text-dim); line-height: 1.8; margin-bottom: 1.25rem; font-size: 1rem; }
.about-features { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.af { display: flex; align-items: center; gap: 0.75rem; }
.af i { color: var(--cyan); font-size: 1rem; flex-shrink: 0; }
.af span { font-size: 0.95rem; color: var(--text); }

/* ===== SERVICES ===== */
.services-section { background: var(--bg2); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: all 0.4s;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.4s;
}
.sc1::before { background: radial-gradient(circle at top left, rgba(0,102,255,0.1), transparent 70%); }
.sc2::before { background: radial-gradient(circle at top left, rgba(0,212,255,0.1), transparent 70%); }
.sc3::before { background: radial-gradient(circle at top left, rgba(124,58,237,0.1), transparent 70%); }
.sc4::before { background: radial-gradient(circle at top left, rgba(245,158,11,0.1), transparent 70%); }
.service-card:hover { border-color: rgba(0,102,255,0.3); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }
.sc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; margin-bottom: 1.25rem;
  box-shadow: var(--glow-blue);
}
.sc2 .sc-icon { background: linear-gradient(135deg, var(--cyan), var(--blue)); }
.sc3 .sc-icon { background: var(--grad2); }
.sc4 .sc-icon { background: linear-gradient(135deg, var(--gold), #f97316); box-shadow: 0 0 30px rgba(245,158,11,0.3); }
.service-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card > p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.service-card li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-dim); }
.service-card li i { color: var(--cyan); }
.sc-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--cyan); font-weight: 600; font-size: 0.875rem;
  text-decoration: none; transition: gap 0.3s;
}
.sc-link:hover { gap: 0.75rem; }

/* ===== ERP SECTION ===== */
.erp-section { background: var(--bg3); }
.erp-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.etab {
  padding: 0.6rem 1.4rem; border-radius: 50px;
  background: var(--glass); border: 1px solid var(--border);
  color: var(--text-dim); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
}
.etab:hover, .etab.active {
  background: var(--grad); border-color: transparent;
  color: #fff; box-shadow: var(--glow-blue);
}
.epanel { display: none; animation: fadePanel 0.4s ease; }
.epanel.active { display: block; }
@keyframes fadePanel { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.epanel-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.emod-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,102,255,0.1); border: 1px solid rgba(0,102,255,0.25);
  color: var(--cyan); padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem;
}
.epanel-content h3 {
  font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.3;
}
.epanel-content > p { color: var(--text-dim); line-height: 1.8; margin-bottom: 2rem; }
.emod-features { display: flex; flex-direction: column; gap: 1.25rem; }
.emf {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem; border-radius: 12px;
  background: var(--glass); border: 1px solid var(--border);
  transition: all 0.3s;
}
.emf:hover { border-color: rgba(0,102,255,0.3); background: rgba(0,102,255,0.05); }
.emf > i {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.emf div { display: flex; flex-direction: column; gap: 0.2rem; }
.emf strong { font-size: 0.9rem; color: #fff; }
.emf span { font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; }

/* Dashboard Mockup */
.dashboard-mockup {
  background: rgba(10,10,30,0.8);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.dmock-header {
  display: flex; gap: 6px; padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.dmock-header span { width: 10px; height: 10px; border-radius: 50%; }
.dmock-header span:nth-child(1) { background: #ef4444; }
.dmock-header span:nth-child(2) { background: #f59e0b; }
.dmock-header span:nth-child(3) { background: #10b981; }
.dmock-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.dmock-stat {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
}
.dmock-stat i { font-size: 1.1rem; color: var(--blue); width: 20px; text-align: center; }
.dmock-stat.green i { color: var(--green); }
.dmock-stat.red i { color: var(--red); }
.dmock-stat.blue i { color: var(--cyan); }
.dmock-stat.gold i { color: var(--gold); }
.dmock-stat strong { font-weight: 700; font-size: 0.95rem; }
.dmock-stat small { font-size: 0.75rem; color: var(--text-dim); margin-left: auto; }
.dmock-chart {
  display: flex; align-items: flex-end; gap: 5px;
  height: 80px; padding: 0.5rem;
  background: rgba(255,255,255,0.02); border-radius: 8px;
}
.dc-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: var(--blue); opacity: 0.7;
  animation: barGrow 1s ease both;
  transition: all 0.3s;
}
.dc-bar:hover { opacity: 1; transform: scaleY(1.05); }
.dc-bar.green { background: var(--green); }
.dc-bar.blue { background: var(--cyan); }
@keyframes barGrow { from{height:0!important} }

/* ===== PRODUCTS ===== */
.products-section { background: var(--bg2); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.prod-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  transition: all 0.4s; position: relative;
}
.prod-card:hover { transform: translateY(-8px); border-color: rgba(0,102,255,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.prod-card.featured { border-color: rgba(0,102,255,0.4); background: rgba(0,102,255,0.05); }
.prod-badge-top {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--grad); color: #fff;
  padding: 0.3rem 0.9rem; border-radius: 0 0 10px 10px;
  font-size: 0.75rem; font-weight: 700;
}
.prod-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; margin-bottom: 1.25rem;
  box-shadow: var(--glow-blue);
}
.prod-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.prod-card p { color: var(--text-dim); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.prod-tags span {
  background: rgba(0,102,255,0.1); border: 1px solid rgba(0,102,255,0.2);
  color: var(--cyan); padding: 0.25rem 0.65rem;
  border-radius: 50px; font-size: 0.75rem; font-weight: 500;
}
.prod-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad); color: #fff;
  padding: 0.6rem 1.4rem; border-radius: 10px;
  font-weight: 600; font-size: 0.875rem; text-decoration: none;
  transition: all 0.3s;
}
.prod-btn:hover { transform: translateY(-2px); box-shadow: var(--glow-blue); }

/* ===== APPS ===== */
.apps-section { background: var(--bg3); }
.apps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.app-type {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
}
.app-type-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; margin-bottom: 1.25rem;
}
.app-type h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.app-list { display: flex; flex-direction: column; gap: 1rem; }
.app-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.app-item i { color: var(--cyan); margin-top: 3px; flex-shrink: 0; font-size: 0.6rem; }
.app-item strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.app-item span { font-size: 0.8rem; color: var(--text-dim); }

/* ===== SERVER ===== */
.server-section { background: var(--bg2); }
.server-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem; margin-bottom: 2rem;
}
.server-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
  transition: all 0.3s;
}
.server-card:hover { border-color: rgba(0,102,255,0.4); transform: translateY(-4px); box-shadow: var(--glow-blue); }
.sv-icon {
  font-size: 2rem; color: var(--cyan); margin-bottom: 1rem;
  display: block;
}
.server-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.server-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }
.server-uptime {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-top: 1rem;
}
.uptime-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2);
  color: var(--green); padding: 0.6rem 1.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
}
.uptime-badge i { font-size: 0.6rem; }

/* ===== TECH ===== */
.tech-section { background: var(--bg3); }
.tech-categories { display: flex; flex-direction: column; gap: 2rem; }
.tech-cat h4 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 1rem;
}
.tech-items { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.tech-item {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--glass); border: 1px solid var(--border);
  padding: 0.6rem 1.2rem; border-radius: 50px;
  font-size: 0.875rem; font-weight: 500;
  transition: all 0.3s; cursor: default;
}
.tech-item i { color: var(--cyan); }
.tech-item:hover { border-color: rgba(0,102,255,0.4); background: rgba(0,102,255,0.1); color: var(--cyan); transform: translateY(-2px); }

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, rgba(0,102,255,0.1), rgba(124,58,237,0.1));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 5rem 0; position: relative; z-index: 1;
}
.stats-grid {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem; text-align: center;
}
.stat-item { padding: 1rem; }
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900; color: var(--cyan);
  display: inline;
}
.stat-item > span { font-size: 2.5rem; font-weight: 900; color: var(--cyan); }
.stat-item p { color: var(--text-dim); font-size: 0.9rem; margin-top: 0.5rem; }

/* ===== PORTFOLIO ===== */
.portfolio-section { background: var(--bg2); }
.portfolio-filter { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.pf-btn {
  padding: 0.5rem 1.25rem; border-radius: 50px;
  background: var(--glass); border: 1px solid var(--border);
  color: var(--text-dim); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
}
.pf-btn:hover, .pf-btn.active {
  background: var(--grad); border-color: transparent; color: #fff;
}
.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.port-card { border-radius: 20px; overflow: hidden; cursor: pointer; }
.port-img {
  height: 260px; position: relative;
  transition: transform 0.4s;
  display: flex; align-items: flex-end;
}
.port-card:hover .port-img { transform: scale(1.03); }
.erp-bg  { background: linear-gradient(135deg, #0a1628, #1a3a6b); }
.school-bg { background: linear-gradient(135deg, #1a0a28, #4a1d8b); }
.app-bg  { background: linear-gradient(135deg, #001a28, #004a6b); }
.web-bg  { background: linear-gradient(135deg, #0a280a, #1d6b1d); }
.mfg-bg  { background: linear-gradient(135deg, #280a0a, #6b1d1d); }
.srv-bg  { background: linear-gradient(135deg, #1a1a0a, #4a4a1d); }
.port-overlay {
  position: absolute; inset: 0; padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0.85; transition: opacity 0.3s;
}
.port-card:hover .port-overlay { opacity: 1; }
.port-tags { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
.port-tags span {
  background: rgba(0,102,255,0.8); color: #fff;
  padding: 0.2rem 0.6rem; border-radius: 50px;
  font-size: 0.7rem; font-weight: 600;
}
.port-overlay h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }
.port-overlay p { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ===== WHY US ===== */
.whyus-section { background: var(--bg3); }
.whyus-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; text-align: center;
  transition: all 0.3s;
}
.why-card:hover { border-color: rgba(0,102,255,0.4); transform: translateY(-6px); box-shadow: var(--glow-blue); }
.why-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; margin: 0 auto 1.25rem;
  box-shadow: var(--glow-blue);
}
.why-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.why-card p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg2); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  transition: all 0.3s;
}
.testi-card:hover { border-color: rgba(0,102,255,0.3); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-card > p { color: var(--text-dim); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; font-size: 0.95rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { font-size: 0.8rem; color: var(--text-dim); }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg3); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; flex-shrink: 0;
}
.ci-item div { display: flex; flex-direction: column; gap: 0.25rem; }
.ci-item strong { font-size: 0.9rem; font-weight: 700; }
.ci-item span { font-size: 0.85rem; color: var(--text-dim); display: block; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-links a {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--glass); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); text-decoration: none; font-size: 1rem;
  transition: all 0.3s;
}
.social-links a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-3px); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-dim); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.85rem 1rem;
  color: var(--text); font-size: 0.9rem; font-family: inherit;
  outline: none; transition: all 0.3s; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}
.form-group select option { background: #0a0a1e; }

/* ===== FOOTER ===== */
.footer { position: relative; z-index: 1; }
.footer-top {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p { color: var(--text-dim); font-size: 0.875rem; line-height: 1.8; margin-bottom: 1.5rem; max-width: 300px; }
.footer-links h5 { font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text); }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.875rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--text-dim); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 100;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--grad); border: none; cursor: pointer;
  color: #fff; font-size: 1.1rem;
  box-shadow: var(--glow-blue);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all 0.3s;
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,102,255,0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .epanel-grid { grid-template-columns: 1fr; }
  .epanel-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; text-align: center; }
  .hero-content { margin: 0 auto; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-3d { display: none; }
  .apps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .hero { padding: 7rem 1rem 3rem; }
  .container { padding: 0 1rem; }
  .erp-tabs { gap: 0.4rem; }
  .etab { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}
