@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600&display=swap');

/* === 1. GLOBAL RESET & BASICS === */
* { margin:0; padding:0; box-sizing:border-box; }

html { 
  width: 100%; 
  height: 100%; 
  /* ⭐ PREVENTS NAVBAR JUMPING BETWEEN PAGES */
  overflow-y: scroll; 
}

body { 
  background: #0a0e17; 
  color: #e2e8f0; 
  font-family: 'Inter', sans-serif; 
  line-height: 1.7; 
  -webkit-font-smoothing: antialiased;
  display: flex; flex-direction: column; 
  min-height: 100vh; width: 100%; 
  overflow-x: hidden; 
}

/* === 2. BACKGROUND === */
.bg { position:fixed; inset:0; z-index:-2; background: radial-gradient(circle at 15% 25%, rgba(10, 60, 120, 0.2), transparent 50%), radial-gradient(circle at 85% 75%, rgba(0, 80, 140, 0.1), transparent 50%), #0a0e17; }
#particles-js { position:fixed; inset:0; z-index:-1; }

/* === 3. NAVIGATION (HARD LOCKED) === */
.nav { 
  /* ⭐ LOCKED SIZE FOR ALL PAGES */
  height: 100px !important; 
  padding: 0 5rem !important; 
  
  background: rgba(10, 15, 30, 0.95); 
  backdrop-filter: blur(20px); 
  border-bottom: 1px solid rgba(0, 204, 255, 0.1); 
  position: sticky; top: 0; z-index: 1000; 
  display: flex; justify-content: space-between; align-items: center; 
  box-sizing: border-box;
}

.nav-logo { display: flex; align-items: center; gap: 15px; cursor: pointer; z-index: 1002; height: 100%; }

.nav-logo-img { 
  height: 65px !important; 
  width: auto !important; 
  filter: drop-shadow(0 0 8px rgba(0,204,255,0.3)); 
}

.nav-logo-text { display: flex; flex-direction: column; justify-content: center; }

.brand { font-family:'Orbitron', sans-serif; font-size:1.4rem; font-weight:800; color:#e6f7ff; line-height:1; }
.sub-brand { background: linear-gradient(135deg, #38bdf8, #0ea5e9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family:'Orbitron', sans-serif; font-size:1.4rem; font-weight:800; line-height:1; margin-top:2px; }
.tagline { font-size:0.6rem; color:#94a3d8; text-transform:uppercase; letter-spacing:3px; margin-top:4px; font-weight:500; opacity:0.8; }

.nav-links { display: flex; gap: 3rem; height: 100%; align-items: center; }
.nav-links a { color:#94a3b8; text-decoration:none; font-size:0.95rem; font-weight:500; text-transform:uppercase; letter-spacing:1px; position:relative; transition:0.3s; }
.nav-links a:hover, .nav-links a.active { color:#fff; }
.nav-links a::after { content:''; position:absolute; bottom: 35px; left:0; width:0; height:1px; background:#38bdf8; transition:0.3s; }
.nav-links a:hover::after { width:100%; }

/* === 4. MOBILE MENU === */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1002; }
.hamburger span { width: 30px; height: 2px; background: #38bdf8; transition: 0.3s; box-shadow: 0 0 8px #38bdf8; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu { position: fixed; inset: 0; background: linear-gradient(135deg, rgba(10, 15, 30, 0.98), #050810); backdrop-filter: blur(20px); z-index: 1001; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1); border-left: 1px solid rgba(56, 189, 248, 0.2); }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a { font-family: 'Orbitron', sans-serif; font-size: 2.2rem; font-weight: 700; color: #fff; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; opacity: 0; transform: translateX(50px); transition: all 0.4s ease; }
.mobile-menu.active a { opacity: 1; transform: translateX(0); }
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }

/* === 5. HERO (HOME) === */
.hero { padding: 2rem 5rem 8rem; position: relative; overflow: hidden; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1600px; margin: 0 auto; }
.hero-left-col { display: flex; flex-direction: column; gap: 2rem; margin-top: -9rem; position: relative; z-index: 2; }
.hero-logo-wrap { height: 450px; display: flex; align-items: center; transform: translate(-250px, 100px); }
.hero-big-logo { width: 990px; height: 740px; object-fit: contain; mix-blend-mode: screen; filter: drop-shadow(0 0 40px rgba(0, 160, 255, 0.4)); pointer-events: none; opacity: 0.9; animation: simpleFloat 6s ease-in-out infinite; }
@keyframes simpleFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(20px); } }
.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }
.glow { font-family:'Orbitron', sans-serif; line-height:1.1; color:#fff; }
.glow .line1 { font-size: 3.2rem; font-weight: 800; display: block; color: #f0f9ff; text-shadow: 0 0 20px rgba(0, 204, 255, 0.2); }
.glow .line2 { font-size: 3.2rem; font-weight: 900; display: block; margin-top: 0.1rem; background: linear-gradient(90deg, #0ea5e9 0%, #22d3ee 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 15px rgba(14, 165, 233, 0.5)); }
.typing { font-family: 'Source Code Pro', monospace; font-size: 1.1rem; color: #94a3b8; min-height: 2em; border-right: 2px solid #38bdf8; white-space: nowrap; overflow: hidden; width: fit-content; padding-right: 5px; }
.hero-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1rem; }
.neon-btn { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(56, 189, 248, 0.4); color: #e0f2fe; padding: 1rem 2.4rem; border-radius: 6px; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; backdrop-filter: blur(4px); box-shadow: 0 0 15px rgba(14, 165, 233, 0.15); transition: all .3s ease; text-decoration: none; display: inline-block; }
.neon-btn:hover { background: rgba(56, 189, 248, 0.1); border-color: #38bdf8; box-shadow: 0 0 20px rgba(56, 189, 248, 0.4); transform: translateY(-2px); color: #fff; }
.hero-right-col { display: flex; flex-direction: column; gap: 1rem; transform: scale(1.05); transform-origin: top left; padding-right: 3rem; margin-top: 3rem; position: relative; z-index: 2; }
.mission-title { font-family: 'Orbitron', sans-serif; font-size: 2.8rem; font-weight: 800; background: linear-gradient(to right, #ffffff, #cbd5e1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; margin-left: 5.8rem; position: relative; white-space: nowrap; }
.mission-title::before { content: ''; position: absolute; left: -5.8rem; top: 50%; width: 4rem; height: 2px; background: linear-gradient(90deg, transparent, #0ea5e9); }
.mission-text { font-size: 1.5rem; line-height: 1.6; max-width: 750px; color: #94a3b8; font-weight: 400; text-align: justify; }
.mission-text strong { color: #e2e8f0; font-weight: 600; }

/* === SECTIONS (Pricing, Employees, About) === */
.pricing-hero, .team-hero { text-align: center; padding: 6rem 2rem 4rem; }
.page-title { font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 800; color: #fff; margin-bottom: 1rem; text-shadow: 0 0 20px rgba(0, 204, 255, 0.3); }
.page-subtitle { font-size: 1.1rem; color: #94a3b8; max-width: 600px; margin: 0 auto; }

/* PRICING GRID */
.pricing-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; max-width: 1400px; margin: 0 auto 8rem; padding: 0 2rem; align-items: stretch; position: relative; z-index: 10; }
/* EMPLOYEES GRID */
.team-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1700px; margin: 0 auto 8rem; padding: 0 2rem; align-items: stretch; }

/* SHARED CARD STYLES */
.card, .employee-card { background: rgba(13, 22, 40, 0.9); border: 1px solid rgba(56, 189, 248, 0.3); border-radius: 16px; position: relative; backdrop-filter: blur(10px); display: flex; flex-direction: column; height: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.4); transition: all 0.3s; overflow: visible; }
.card { padding: 3rem 2rem; }
.employee-card { overflow: hidden; } /* Crop images inside employee cards */
.card:hover, .employee-card:hover { transform: translateY(-10px); border-color: #38bdf8; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); }
.card.popular { border-color: rgba(56, 189, 248, 0.8); background: rgba(11, 19, 36, 0.95); box-shadow: 0 0 30px rgba(56, 189, 248, 0.15); }

/* PRICING ELEMENTS */
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #38bdf8; color: #0a0e17; padding: 0.4rem 1.5rem; border-radius: 20px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; box-shadow: 0 0 15px rgba(56, 189, 248, 0.6); z-index: 5; }
.plan-name { font-family: 'Orbitron', sans-serif; font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.plan-desc { color: #94a3b8; font-size: 0.95rem; margin-bottom: 2rem; min-height: 3em; }
.price { font-family: 'Orbitron', sans-serif; font-size: 2.8rem; font-weight: 900; color: #e0f2fe; margin-bottom: 2rem; display: flex; align-items: baseline; gap: 5px; }
.price span { font-size: 1rem; color: #64748b; font-weight: 500; font-family: 'Inter', sans-serif; }
.features { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; flex-grow: 1; }
.features li { display: flex; align-items: center; gap: 12px; color: #cbd5e1; font-size: 0.95rem; }
.features li svg { width: 20px; height: 20px; fill: #38bdf8; flex-shrink: 0; }
.card-btn { margin-top: auto; width: 100%; padding: 1rem; background: transparent; border: 1px solid rgba(56, 189, 248, 0.4); color: #38bdf8; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; border-radius: 8px; cursor: pointer; transition: 0.3s; text-align: center; text-decoration: none; display: inline-block; }
.card-btn:hover { background: #38bdf8; color: #0a0e17; }

/* EMPLOYEE ELEMENTS */
.img-wrap { width: 100%; height: 320px; overflow: hidden; border-bottom: 1px solid rgba(56, 189, 248, 0.3); position: relative; }
.employee-img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform 0.6s ease, filter 0.6s ease; filter: grayscale(100%); }
.employee-card:hover .employee-img { transform: scale(1.05); filter: grayscale(0%); }
.info-wrap { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.emp-name { font-family: 'Orbitron', sans-serif; font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; letter-spacing: 1px; }
.emp-role { font-family: 'Source Code Pro', monospace; color: #38bdf8; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; display: inline-block; opacity: 0.9; }
.emp-desc { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; font-weight: 400; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }

/* ABOUT ELEMENTS */
.about-section { max-width: 1400px; margin: 0 auto; padding: 6rem 4rem 8rem; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 5rem; align-items: center; }
.about-text-col { display: flex; flex-direction: column; gap: 1.5rem; }
.section-label { color: #38bdf8; font-family: 'Orbitron', sans-serif; text-transform: uppercase; letter-spacing: 4px; font-size: 0.9rem; font-weight: 700; }
.about-title { font-family: 'Orbitron', sans-serif; font-size: 3.5rem; font-weight: 800; line-height: 1.1; color: #fff; text-shadow: 0 0 25px rgba(0, 204, 255, 0.25); }
.about-desc { font-size: 1.1rem; color: #94a3b8; max-width: 600px; text-align: justify; }
.highlight { color: #e2e8f0; font-weight: 600; border-bottom: 1px solid rgba(56, 189, 248, 0.3); }
.contact-card-wrapper { width: 100%; }
.contact-card { background: rgba(13, 22, 40, 0.8); border: 1px solid rgba(56, 189, 248, 0.3); border-radius: 16px; padding: 2.5rem; position: relative; backdrop-filter: blur(12px); box-shadow: 0 0 40px rgba(0, 0, 0, 0.5); overflow: hidden; width: 100%; }
.contact-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, transparent, #38bdf8, transparent); animation: scan 3s infinite linear; }
@keyframes scan { 0% { top: -10%; } 100% { top: 110%; } }
.card-header { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 1rem; margin-bottom: 2rem; }
.card-title { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; color: #fff; }
.card-status { font-size: 0.75rem; color: #38bdf8; text-transform: uppercase; letter-spacing: 2px; }
.status-dot { display: inline-block; width: 8px; height: 8px; background: #00ff88; border-radius: 50%; margin-right: 6px; box-shadow: 0 0 8px #00ff88; }
.contact-item { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.8rem; }
.icon-box { width: 50px; height: 50px; background: rgba(56, 189, 248, 0.1); border: 1px solid rgba(56, 189, 248, 0.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box svg { width: 22px; height: 22px; fill: #38bdf8; }
.info-label { font-size: 0.75rem; color: #64748b; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 2px; }
.info-value { font-family: 'Source Code Pro', monospace; color: #fff; font-size: 1.05rem; word-break: break-all; }
.placeholder-note { margin-top: 2rem; padding: 1rem; background: rgba(255, 255, 255, 0.03); border-left: 2px solid #38bdf8; font-size: 0.85rem; color: #94a3b8; font-style: italic; }

/* === FOOTER === */
.footer { width: 100%; text-align:center; padding: 2.5rem 1rem; background: #050810; color: #64748b; border-top: 1px solid #1f2937; margin-top: auto; }

/* =========================================================
   MOBILE RESPONSIVE FIXES (FINAL)
   ========================================================= */

@media (max-width: 1100px) {
  /* NAV */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  
  /* HERO */
  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-left-col { margin-top: 0; align-items: center; text-align: center; }
  .hero-logo-wrap { transform: none !important; height: auto; width: 100%; justify-content: center; margin-bottom: 0.5rem; }
  .hero-big-logo { width: 80vw; max-width: 450px; height: auto; margin: 0 auto; }
  .hero-right-col { transform: none; text-align: center; align-items: center; padding-right: 0; margin-top: 1rem; }
  .mission-title { margin-left: 0; margin-bottom: 0.5rem; }
  .mission-title::before { display: none; }
  .mission-text { text-align: center; }

  /* PRICING & TEAM */
  .pricing-container, .team-container { 
    display: flex !important; flex-direction: column; align-items: center; 
    padding: 0 1rem; gap: 2rem; 
  }
  .card, .employee-card { 
    min-height: auto; width: 100%; max-width: 500px; margin: 0 auto; 
  }
  .img-wrap { height: 350px; }

  /* ABOUT */
  .about-section { grid-template-columns: 1fr; text-align: center; gap: 3rem; padding: 3rem 1.5rem; }
  .about-text-col { align-items: center; transform: none; }
  .about-desc { text-align: center; }
  .contact-card-wrapper { width: 100%; max-width: 500px; margin: 0 auto; }
  .contact-item { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 768px) {
  /* ⭐ FORCE IDENTICAL NAV ON MOBILE ⭐ */
  .nav { 
    padding: 0 1.5rem !important; 
    height: 80px !important; 
  }
  .nav-logo-img { height: 50px !important; }
  .brand { font-size: 1rem; }
  .sub-brand { font-size: 1rem; }
  
  /* HERO */
  .hero { padding: 2rem 1.5rem 4rem 1.5rem; }
  .hero-big-logo { width: 100%; max-width: 550px; margin-bottom: -10px; }
  .glow .line1 { font-size: 1.5rem; }
  .glow .line2 { font-size: 1.7rem; margin-top: 0; }
  .typing { font-size: 0.85rem; margin-top: 0.5rem; margin-left: auto !important; margin-right: auto !important; transform: none !important; text-align: center; }
  .hero-buttons { justify-content: center; margin-top: 1.5rem; margin-bottom: 1.5rem; }
  .neon-btn { padding: 0.8rem 2rem; font-size: 0.85rem; width: 100%; max-width: 300px; display: block; text-align: center; margin-bottom: 10px; }
  .mission-title { font-size: 1.8rem; }
  .mission-text { font-size: 1rem; line-height: 1.6; }
  
  /* GENERAL PAGE TITLES */
  .pricing-hero, .team-hero { padding: 4rem 1rem 2rem; }
  .page-title { font-size: 1.8rem; }
  .about-title { font-size: 2.2rem; }
  .contact-card { padding: 1.5rem; }
}