/* =============================================

   Theme: Deep Dark Tech | Electric Blue Premium
   PavionX Technologies — Advanced Dark UI
   All class names preserved exactly
   + Advanced animations & 3D effects added
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Deep Dark Background System */
  --bg:            #050812;
  --bg2:           #080e1c;
  --bg3:           #0b1224;
  --surface:       #0f1830;
  --surface2:      #142040;
  --border:        rgba(26,107,255,0.12);
  --border-bright: rgba(26,107,255,0.32);

  /* Electric Blue Accent */
  --accent:        #1a6bff;
  --accent2:       #0d4fd1;
  --accent3:       #5c93ff;
  --accent-soft:   rgba(26,107,255,0.08);
  --accent-mid:    rgba(26,107,255,0.16);
  --accent-glow:   rgba(26,107,255,0.35);
  --accent-glow2:  rgba(26,107,255,0.55);

  /* Text */
  --text:          #e8eeff;
  --text-muted:    #8a9bbf;
  --text-dim:      #4a5578;
  --white:         #ffffff;

  /* Secondary accents */
  --green:         #00e5a0;
  --orange:        #ff9e00;
  --purple:        #9b6eff;
  --cyan:          #00d4ff;
  --pink:          #ff4d8f;

  /* Radii & Effects */
  --radius:        16px;
  --radius-sm:     10px;
  --transition:    0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow:        0 10px 40px rgba(26,107,255,0.20);
  --shadow-sm:     0 4px 20px rgba(26,107,255,0.12);
  --shadow-lg:     0 30px 80px rgba(26,107,255,0.25);
  --shadow-glow:   0 0 0 6px rgba(26,107,255,0.10);

  --font-head:     'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============ GLOBAL TEXT ALIGNMENT ============ */
p { text-align: left; }
h1, h2, h3, h4, h5, h6 { text-align: left; }
.section-heading,
.section-header.center .section-heading,
.testi-section .section-heading,
.cta-inner .section-heading { text-align: center; }

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--cyan));
  border-radius: 10px;
}

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(26,107,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(0,212,255,0.07) 0%, transparent 60%);
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 24px; position: relative; z-index: 1;
}
.px-logo {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -1.5px;
  animation: loaderPulse 0.9s ease infinite alternate;
  filter: drop-shadow(0 0 30px rgba(26,107,255,0.5));
}
.loader-bar {
  width: 200px; height: 2px;
  background: var(--surface2);
  border-radius: 10px; overflow: hidden; position: relative;
}
.loader-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  animation: shimmerBar 1.5s ease infinite;
}
.loader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  border-radius: 10px;
  animation: loadFill 1.6s cubic-bezier(0.4,0,0.2,1) forwards;
  box-shadow: 0 0 20px var(--accent-glow);
}
@keyframes loadFill { to { width: 100%; } }
@keyframes loaderPulse {
  from { opacity: 0.5; filter: drop-shadow(0 0 15px rgba(26,107,255,0.3)); }
  to   { opacity: 1;   filter: drop-shadow(0 0 40px rgba(26,107,255,0.7)); }
}
@keyframes shimmerBar { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ============ PROGRESS BAR ============ */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--accent));
  background-size: 200% 100%;
  z-index: 1200; width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
  box-shadow: 0 0 20px var(--accent-glow);
  animation: progressShimmer 2s linear infinite;
}
@keyframes progressShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ============ CUSTOM CURSOR ============ */
.cursor-dot, .cursor-ring {
  position: fixed; border-radius: 50%; pointer-events: none;
  z-index: 9000; transform: translate(-50%,-50%); transition: opacity 0.3s;
  mix-blend-mode: screen;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  top: 0; left: 0;
  box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,212,255,0.5);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(26,107,255,0.5);
  top: 0; left: 0;
  transition: left 0.09s linear, top 0.09s linear, width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}
.cursor-ring.ring-hover {
  width: 50px; height: 50px;
  border-color: var(--cyan);
  background: rgba(0,212,255,0.04);
}
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============ NOISE OVERLAY — Blueprint grid (dark-mode) ============ */
.noise-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.55;
  background-image:
    linear-gradient(rgba(26,107,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 0%, transparent 75%);
}

/* ============ AMBIENT LIGHTS ============ */
.ambient-light { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; opacity: 1; filter: blur(120px); }
.al-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(26,107,255,0.12) 0%, transparent 65%);
  top: -300px; right: -250px;
  animation: ambientDrift1 12s ease-in-out infinite alternate;
}
.al-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(155,110,255,0.08) 0%, transparent 65%);
  bottom: 15%; left: -200px;
  animation: ambientDrift2 15s ease-in-out infinite alternate;
}
.al-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 65%);
  top: 45%; right: 8%;
  animation: ambientDrift3 18s ease-in-out infinite alternate;
}
@keyframes ambientDrift1 { 0% { transform: translate(0,0); } 100% { transform: translate(-40px,30px); } }
@keyframes ambientDrift2 { 0% { transform: translate(0,0); } 100% { transform: translate(30px,-40px); } }
@keyframes ambientDrift3 { 0% { transform: translate(0,0); } 100% { transform: translate(-20px,50px); } }

/* ============ CONTAINER ============ */
.container { max-width: 100%; margin: 0 auto; padding: 0 60px; position: relative; z-index: 1; }

/* ============ SECTION PAD ============ */
.section-pad { padding: 110px 0; position: relative; z-index: 1; }

/* ============ SHARED LABELS ============ */
.section-label {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.24em; color: var(--cyan);
  padding: 6px 16px; border: 1px solid rgba(0,212,255,0.25);
  border-radius: 50px;
  background: rgba(0,212,255,0.06);
  text-transform: uppercase;
  position: relative; overflow: hidden;
}
.section-label::before {
  content: ''; position: absolute; inset: 0; border-radius: 50px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.10), transparent);
  animation: labelShimmer 3s ease infinite;
}
@keyframes labelShimmer { 0%, 100% { opacity: 0; transform: translateX(-100%); } 50% { opacity: 1; transform: translateX(100%); } }

.section-label-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.section-label-wrap.center { justify-content: center; }
.label-line { flex: 1; height: 1px; max-width: 80px; background: linear-gradient(90deg, transparent, rgba(26,107,255,0.4), transparent); }

.section-heading {
  font-family: var(--font-head); font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; color: var(--text);
}
.section-heading span, .gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.section-sub {
  color: var(--text-muted); font-size: 1rem; line-height: 1.8;
  max-width: 480px; margin-top: 12px; text-align: left;
}
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 12px auto 0; text-align: center; }
.section-header { margin-bottom: 56px; }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0; transform: translateY(36px) scale(0.98);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.18s; }
.reveal.delay-3 { transition-delay: 0.28s; }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ============ GLASS CARD ============ */
.glass-card {
  background: rgba(8,14,28,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative; overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.glass-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,107,255,0.5), rgba(0,212,255,0.3), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.glass-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow), 0 0 50px rgba(26,107,255,0.08);
  transform: translateY(-4px);
}
.glass-card:hover::before { opacity: 1; }

/* ============ BUTTONS ============ */
.btn-glass-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: var(--white);
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  padding: 14px 28px; border-radius: 10px;
  border: 1px solid rgba(26,107,255,0.5);
  transition: var(--transition);
  box-shadow: 0 10px 28px rgba(26,107,255,0.28);
  position: relative; overflow: hidden;
}
.btn-glass-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s ease;
}
.btn-glass-primary:hover::before { left: 100%; }
.btn-glass-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(26,107,255,0.38);
}
.btn-glass-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(26,107,255,0.06); color: var(--text);
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  padding: 14px 28px; border-radius: 10px;
  border: 1px solid var(--border-bright);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-glass-ghost:hover {
  border-color: var(--cyan); color: var(--cyan);
  background: rgba(0,212,255,0.07);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,212,255,0.16);
}
.btn-glass-primary.large, .btn-glass-ghost.large { padding: 16px 34px; font-size: 0.98rem; }

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,8,18,0.88);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,107,255,0.4), rgba(0,212,255,0.2), transparent);
}
.header.scrolled {
  background: rgba(5,8,18,0.97);
  box-shadow: 0 4px 40px rgba(26,107,255,0.12);
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--white);   /* white as per previous request */
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 16px rgba(26,107,255,0.3);
  border: 1px solid rgba(255,255,255,0.15);
}
.logo-text { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--text); letter-spacing: 0.02em; }
.logo-x {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Nav menu */
.nav-menu ul { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 0.86rem; font-weight: 500; color: var(--text-muted);
  padding: 8px 14px; border-radius: 8px; transition: var(--transition);
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(26,107,255,0.08); }
.nav-link.active { color: var(--cyan); }
.chevron { transition: transform var(--transition); }
.dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  width: 560px;
  background: rgba(8,14,28,0.97);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(26,107,255,0.06);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  transform: translateX(-50%) translateY(12px);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.dropdown-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,107,255,0.4), rgba(0,212,255,0.3), transparent);
}
.dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dp-inner { padding: 20px; }
.dp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.dp-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 9px; font-size: 0.84rem;
  color: var(--text-muted); font-weight: 500; transition: var(--transition);
  border: 1px solid transparent;
}
.dp-item:hover { background: rgba(26,107,255,0.08); color: var(--cyan); border-color: var(--border); }
.dp-ico { font-size: 0.95rem; color: var(--accent); flex-shrink: 0; }
.dp-item:hover .dp-ico { color: var(--cyan); }

/* Nav CTA */
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: var(--white); font-family: var(--font-body);
  font-size: 0.84rem; font-weight: 600; padding: 10px 20px;
  border-radius: 9px; transition: var(--transition); white-space: nowrap;
  box-shadow: 0 8px 22px rgba(26,107,255,0.28);
  border: 1px solid rgba(26,107,255,0.4);
  position: relative; overflow: hidden;
}
.nav-cta-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0,212,255,0.12) 100%);
  opacity: 0; transition: opacity var(--transition);
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(26,107,255,0.38); }
.nav-cta-btn:hover::after { opacity: 1; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  background: rgba(26,107,255,0.06); border-radius: var(--radius-sm);
  border: 1px solid var(--border); flex-shrink: 0;
}
.ham-line { display: block; width: 22px; height: 2px; background: linear-gradient(90deg, var(--accent), var(--cyan)); border-radius: 2px; transition: var(--transition); }
.hamburger.active .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .ham-line:nth-child(2) { opacity: 0; }
.hamburger.active .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ MOBILE OVERLAY & NAV ============ */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(5,8,18,0.75);
  z-index: 1050; opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  backdrop-filter: blur(6px);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 88vw);
  background: rgba(8,14,28,0.98);
  border-left: 1px solid var(--border);
  z-index: 1100; padding: 0; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -20px 0 80px rgba(26,107,255,0.12); overflow-y: auto;
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
}
.mobile-nav::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), var(--cyan), transparent); }
.mobile-nav.active { transform: translateX(0); }
body.menu-open { overflow: hidden; }
.mob-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.mob-close {
  width: 34px; height: 34px; background: rgba(26,107,255,0.08); border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.mob-close:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.mob-list { padding: 16px; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.mob-link { display: block; padding: 12px 16px; font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--text-muted); border-radius: 10px; transition: var(--transition); }
.mob-link:hover, .mob-link.active { color: var(--cyan); background: rgba(0,212,255,0.06); }
.mob-dropdown { display: flex; flex-direction: column; }
.mob-toggle { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--text-muted); border-radius: 10px; transition: var(--transition); cursor: pointer; width: 100%; text-align: left; }
.mob-toggle:hover { color: var(--cyan); background: rgba(0,212,255,0.06); }
.mob-toggle svg { transition: transform var(--transition); flex-shrink: 0; }
.mob-dropdown.active .mob-toggle { color: var(--cyan); }
.mob-dropdown.active .mob-toggle svg { transform: rotate(180deg); }
.mob-sub { display: flex; flex-direction: column; gap: 2px; padding: 4px 8px; max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.mob-dropdown.active .mob-sub { max-height: 400px; }
.mob-sub li a { display: block; padding: 9px 16px; font-size: 0.88rem; color: var(--text-muted); border-radius: 8px; transition: var(--transition); }
.mob-sub li a:hover { color: var(--cyan); background: rgba(0,212,255,0.06); }
.mob-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white); font-weight: 700;
  font-size: 0.95rem; padding: 14px 20px; border-radius: 10px;
  margin: 8px 16px 20px; text-align: center; transition: var(--transition);
  box-shadow: 0 8px 22px rgba(26,107,255,0.28);
  border: 1px solid rgba(26,107,255,0.4);
}
.mob-cta-btn:hover { box-shadow: 0 12px 30px rgba(26,107,255,0.40); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  padding: 170px 0 110px; position: relative; overflow: hidden;
  background: var(--bg); min-height: 100vh; display: flex; align-items: center;
}

/* Blueprint grid background with scan line */
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(26,107,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 10%, transparent 80%);
  animation: gridPulse 8s ease-in-out infinite alternate;
}
@keyframes gridPulse { 0% { opacity: 0.6; } 100% { opacity: 1; } }
.hero-grid-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26,107,255,0.04) 50%, transparent 100%);
  background-size: 100% 240px;
  animation: scanLine 7s linear infinite;
}
@keyframes scanLine { 0% { background-position: 0 -240px; } 100% { background-position: 0 100%; } }

.orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.orb-1 {
  width: 750px; height: 750px; top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(26,107,255,0.14) 0%, rgba(0,212,255,0.05) 45%, transparent 70%);
  filter: blur(70px);
  animation: orbFloat1 11s ease-in-out infinite alternate;
}
.orb-2 {
  width: 480px; height: 480px; bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(155,110,255,0.09) 0%, transparent 70%);
  filter: blur(55px);
  animation: orbFloat2 14s ease-in-out infinite alternate;
}
@keyframes orbFloat1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-30px,40px) scale(1.06); } }
@keyframes orbFloat2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(40px,-30px) scale(0.94); } }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-left { display: flex; flex-direction: column; gap: 28px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(26,107,255,0.08);
  border: 1px solid rgba(26,107,255,0.25);
  padding: 8px 18px; border-radius: 50px; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.2em; color: var(--cyan);
  width: fit-content; backdrop-filter: blur(10px);
  position: relative; overflow: hidden;
}
.hero-badge::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.08), transparent);
  animation: badgeSweep 3s ease infinite;
}
@keyframes badgeSweep { 0% { left: -100%; } 60%, 100% { left: 100%; } }
.badge-pulse { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; flex-shrink: 0; animation: pulseDot 1.6s ease infinite; }
.badge-pulse.small { width: 6px; height: 6px; }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.5); } 50% { box-shadow: 0 0 0 8px rgba(0,212,255,0); } }

.hero-title {
  font-family: var(--font-head); font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -1.5px; color: var(--text);
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative;
}
.hero-title .gradient-text::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  border-radius: 2px; opacity: 0.35;
  animation: underlineGrow 1s cubic-bezier(0.22,1,0.36,1) 0.5s both;
  transform-origin: left;
}
@keyframes underlineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-desc { color: var(--text-muted); font-size: 1.03rem; line-height: 1.85; max-width: 490px; text-align: justify; text-align-last: left; hyphens: auto; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.trusted-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--border); margin-top: 4px; }
.trusted-label { font-size: 0.78rem; color: var(--text-dim); font-weight: 500; white-space: nowrap; }
.brand-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.brand-chips span {
  font-size: 0.74rem; font-weight: 600; color: var(--text-muted);
  background: rgba(26,107,255,0.06); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 50px; transition: var(--transition);
}
.brand-chips span:hover { border-color: rgba(0,212,255,0.4); color: var(--cyan); background: rgba(0,212,255,0.06); }

/* Hero Right — Dashboard */
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }
.dashboard {
  width: 100%; max-width: 480px; padding: 0; overflow: hidden;
  background: rgba(8,14,28,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26,107,255,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  transition: transform 0.15s ease, box-shadow 0.3s ease;
}
.dashboard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,107,255,0.5), rgba(0,212,255,0.3), transparent);
}
.dashboard:hover { box-shadow: 0 40px 100px rgba(26,107,255,0.30); }

.dash-header { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--border); background: rgba(5,8,18,0.8); }
.dash-dot { width: 11px; height: 11px; border-radius: 50%; }
.dash-dot.red    { background: #ff5f57; box-shadow: 0 0 8px rgba(255,95,87,0.5); }
.dash-dot.yellow { background: #febc2e; box-shadow: 0 0 8px rgba(254,188,46,0.4); }
.dash-dot.green  { background: #28c840; box-shadow: 0 0 8px rgba(40,200,64,0.5); }
.dash-title { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; color: var(--text-muted); flex: 1; margin-left: 4px; }
.dash-live { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 600; color: var(--green); }

.stat-cards-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-bottom: 1px solid var(--border); }
.dash-stat-card {
  padding: 16px 14px; border-right: 1px solid var(--border);
  background: rgba(8,14,28,0.6); transition: var(--transition); position: relative; overflow: hidden;
}
.dash-stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.dash-stat-card:hover::before { transform: scaleX(1); }
.dash-stat-card:hover { background: rgba(26,107,255,0.04); }
.dash-stat-card:last-child { border-right: none; }
.dash-stat-card p { font-size: 0.68rem; color: var(--text-dim); font-weight: 500; }
.dash-stat-card h3 {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin: 4px 0;
}
.stat-badge-up { font-size: 0.62rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 3px; }

.graph-area { padding: 16px 18px; background: rgba(5,8,18,0.4); }
.graph-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.graph-title { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; color: var(--text); }
.graph-btn {
  font-size: 0.68rem; font-weight: 600; color: var(--text-muted);
  background: rgba(26,107,255,0.06); border: 1px solid var(--border);
  padding: 5px 10px; border-radius: 6px; display: flex; align-items: center; gap: 5px; transition: var(--transition);
}
.graph-btn:hover { border-color: rgba(0,212,255,0.4); color: var(--cyan); }

.bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 90px; }
.bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; }
.bar-wrap span { font-size: 0.6rem; color: var(--text-dim); }
.bar {
  width: 100%; height: var(--h); background: var(--surface2); border-radius: 5px 5px 0 0;
  transition: background var(--transition);
  animation: barGrow 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
  transform-origin: bottom; position: relative; overflow: hidden;
}
.bar::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.10); border-radius: 5px; }
.bar.active {
  background: linear-gradient(180deg, var(--accent3) 0%, var(--accent) 100%);
  box-shadow: 0 0 20px rgba(26,107,255,0.4), 0 -4px 12px rgba(26,107,255,0.2);
}
.bar:hover { background: rgba(0,212,255,0.25); }
@keyframes barGrow { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

/* Floaters */
.floater {
  position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(8,14,28,0.94);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
}
.floater::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, transparent, rgba(26,107,255,0.4), transparent);
}
.ai-floater    { bottom: -20px; left: -36px;  animation: floatA 4s ease-in-out infinite; }
.perf-floater  { top: 20px;     right: -36px; animation: floatB 4.5s ease-in-out infinite; }
.sat-floater   { bottom: 60px;  right: -40px; flex-direction: column; gap: 6px; text-align: center; animation: floatC 5s ease-in-out infinite; }
@keyframes floatA { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(0.5deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-9px) rotate(-0.5deg); } }
@keyframes floatC { 0%,100% { transform: translateY(0) rotate(0.5deg); } 50% { transform: translateY(-14px) rotate(-0.5deg); } }
.floater-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }
.ai-icon { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: var(--white); box-shadow: 0 4px 14px rgba(26,107,255,0.4); }
.perf-icon { font-size: 1.2rem; color: var(--green); text-shadow: 0 0 12px rgba(0,229,160,0.5); }
.floater h5 { font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; color: var(--text); text-align: left; }
.floater p  { font-size: 0.7rem; color: var(--text-muted); text-align: left; }
.sat-ring {
  width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,107,255,0.08); position: relative;
  box-shadow: 0 0 20px rgba(26,107,255,0.25);
}
.sat-ring::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(26,107,255,0.2);
  animation: ringPulse 2s ease-in-out infinite;
}
@keyframes ringPulse { 0%, 100% { opacity: 0; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
.sat-ring span { font-family: var(--font-head); font-size: 0.75rem; font-weight: 800; color: var(--accent); }
.sat-floater > p { font-size: 0.7rem; color: var(--text-muted); }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.stats-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(26,107,255,0.04) 0%, transparent 70%); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); position: relative; z-index: 1; }
.stat-item {
  display: flex; align-items: center; gap: 20px;
  padding: 52px 36px; border-right: 1px solid var(--border);
  transition: var(--transition); cursor: default;
  background: transparent; position: relative; overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.stat-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,107,255,0.05) 0%, rgba(0,212,255,0.02) 100%);
  opacity: 0; transition: opacity var(--transition);
}
.stat-item:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(26,107,255,0.10); }
.stat-item:hover::before { opacity: 1; }
.stat-item:hover::after { transform: scaleX(1); }
.stat-icon-wrap {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(26,107,255,0.08); border: 1px solid rgba(26,107,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent); flex-shrink: 0; position: relative; z-index: 1;
  transition: var(--transition);
}
.stat-item:hover .stat-icon-wrap {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white); border-color: var(--accent);
  box-shadow: 0 0 24px rgba(26,107,255,0.4);
}
.stat-body { position: relative; z-index: 1; }
.stat-val {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; text-align: left;
}
.stat-body p { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-top: 5px; text-align: left; }

/* =============================================
   SERVICES / CARD GRIDS — SHARED
   ============================================= */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; align-items: stretch; }
.svc-card {
  padding: 34px 26px; display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  background: rgba(8,14,28,0.80); border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition); height: 100%; transform-style: preserve-3d;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--purple));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.svc-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26,107,255,0.07) 0%, transparent 70%);
  opacity: 0; transition: opacity var(--transition); pointer-events: none;
}
.svc-card:hover { transform: translateY(-10px) rotateX(2deg); box-shadow: var(--shadow-lg), 0 0 60px rgba(26,107,255,0.08); border-color: var(--border-bright); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover::after { opacity: 1; }
.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
  transition: var(--transition); position: relative; overflow: hidden;
}
.svc-icon-wrap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%); }
.svc-icon-wrap.blue   { background: rgba(26,107,255,0.10); border: 1px solid rgba(26,107,255,0.22); color: var(--accent); }
.svc-icon-wrap.green  { background: rgba(0,229,160,0.10);  border: 1px solid rgba(0,229,160,0.22);  color: var(--green); }
.svc-icon-wrap.purple { background: rgba(155,110,255,0.10); border: 1px solid rgba(155,110,255,0.22); color: var(--purple); }
.svc-icon-wrap.orange { background: rgba(255,158,0,0.10);  border: 1px solid rgba(255,158,0,0.22);  color: var(--orange); }
.svc-card:hover .svc-icon-wrap.blue   { background: var(--accent);  color: var(--white); border-color: var(--accent);  transform: translateY(-3px) scale(1.05); box-shadow: 0 0 24px rgba(26,107,255,0.45); }
.svc-card:hover .svc-icon-wrap.green  { background: var(--green);   color: var(--bg);    border-color: var(--green);  transform: translateY(-3px) scale(1.05); box-shadow: 0 0 24px rgba(0,229,160,0.4); }
.svc-card:hover .svc-icon-wrap.purple { background: var(--purple);  color: var(--white); border-color: var(--purple); transform: translateY(-3px) scale(1.05); box-shadow: 0 0 24px rgba(155,110,255,0.4); }
.svc-card:hover .svc-icon-wrap.orange { background: var(--orange);  color: var(--bg);    border-color: var(--orange); transform: translateY(-3px) scale(1.05); box-shadow: 0 0 24px rgba(255,158,0,0.4); }
.svc-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text); text-align: left; }
.svc-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.83rem; font-weight: 600; color: var(--accent); transition: gap var(--transition), color var(--transition); }
.svc-link:hover { gap: 12px; color: var(--cyan); }
.svc-number {
  position: absolute; bottom: 18px; right: 20px;
  font-family: var(--font-head); font-size: 3rem; font-weight: 800;
  color: rgba(26,107,255,0.05); line-height: 1; pointer-events: none; transition: var(--transition);
}
.svc-card:hover .svc-number { color: rgba(26,107,255,0.10); }

/* ============ WHAT WE DO GRID ============ */
.what-we-do-grid .svc-card { align-items: center; text-align: center; justify-content: center; gap: 16px; }
.what-we-do-grid .svc-card h3 { font-size: 1rem; margin-top: 2px; text-align: center; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-flex { display: flex; align-items: center; gap: 60px; }
.about-text-col { flex: 0 0 55%; max-width: 55%; }
.about-text-col .about-p {
  max-width: none; text-align: justify; text-align-last: left; hyphens: auto;
  margin: 0 0 20px; color: var(--text-muted); font-size: 0.96rem; line-height: 1.82;
}
.about-text-col .about-p:last-child { margin-bottom: 0; }
.about-image-col { flex: 0 0 45%; max-width: 45%; display: flex; justify-content: center; }
.about-image-wrap {
  position: relative; width: 100%; max-width: 420px; padding: 10px;
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid var(--border);
}
.about-image-wrap:hover { transform: translateY(-8px); box-shadow: 0 40px 100px rgba(26,107,255,0.22); }
.about-tech-img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 14px; transition: transform 0.6s ease; filter: brightness(0.85); }
.about-image-wrap:hover .about-tech-img { transform: scale(1.06); filter: brightness(1); }

/* =============================================
   TECH STACK
   ============================================= */
.tech-section { background: var(--bg2); border-top: 1px solid var(--border); position: relative; }
.tech-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(26,107,255,0.04) 0%, transparent 70%); }
.tech-ticker-wrap {
  overflow: hidden; width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  position: relative; z-index: 1;
}
.tech-ticker { display: flex; gap: 14px; width: max-content; animation: ticker 32s linear infinite; padding: 24px 0; }
.tech-ticker:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tech-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 22px; border-radius: 50px;
  background: rgba(8,14,28,0.80); border: 1px solid var(--border);
  white-space: nowrap; transition: var(--transition); flex-shrink: 0;
  font-size: 0.9rem; color: var(--text-muted); font-weight: 500;
  backdrop-filter: blur(10px); position: relative; overflow: hidden;
}
.tech-item::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.tech-item:hover::before { transform: scaleX(1); }
.tech-item i, .tech-item .next-icon { font-size: 1.2rem; color: var(--accent); }
.next-icon { font-family: var(--font-head); font-size: 1rem; font-weight: 800; }
.tech-item:hover { border-color: var(--border-bright); transform: translateY(-4px); color: var(--cyan); box-shadow: 0 8px 24px rgba(26,107,255,0.16); }
.tech-item:hover i, .tech-item:hover .next-icon { color: var(--cyan); }

/* =============================================
   PROJECTS
   ============================================= */
.projects-section { background: var(--bg); position: relative; }
.projects-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(26,107,255,0.04) 0%, transparent 70%); }
.proj-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.project-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; align-items: stretch; }
.project-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: rgba(8,14,28,0.80); border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition); height: 100%;
}
.project-card:hover { border-color: var(--border-bright); box-shadow: var(--shadow), 0 0 40px rgba(26,107,255,0.08); transform: translateY(-6px); }
.proj-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.proj-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.85); }
.project-card:hover .proj-img-wrap img { transform: scale(1.08); filter: brightness(1); }
.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,8,18,0.6) 0%, rgba(26,107,255,0.3) 100%);
  opacity: 0; transition: var(--transition);
}
.project-card:hover .proj-overlay { opacity: 1; }
.proj-content { padding: 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.proj-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; color: var(--cyan); text-transform: uppercase; }
.proj-content h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text); text-align: left; }
.proj-content p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; flex: 1; }

/* =============================================
   PROCESS
   ============================================= */
.process-section { background: var(--bg2); border-top: 1px solid var(--border); position: relative; }
.process-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(26,107,255,0.03) 0%, transparent 70%); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; position: relative; z-index: 1; align-items: stretch; }
.process-grid::before {
  content: ''; position: absolute; top: 44px; left: calc(12.5% + 24px); right: calc(12.5% + 24px); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,107,255,0.3) 10%, rgba(0,212,255,0.2) 50%, rgba(26,107,255,0.3) 90%, transparent);
  z-index: 0;
}
.proc-card {
  padding: 36px 24px; display: flex; flex-direction: column; gap: 16px;
  align-items: center; text-align: center; position: relative; z-index: 1;
  background: rgba(8,14,28,0.75); border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition); overflow: hidden; height: 100%;
}
.proc-card::after { content: ''; position: absolute; bottom: 0; right: 0; width: 80px; height: 80px; background: radial-gradient(ellipse at 100% 100%, rgba(26,107,255,0.08) 0%, transparent 70%); }
.proc-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: var(--shadow-lg), 0 0 50px rgba(26,107,255,0.10); border-color: var(--border-bright); background: rgba(8,14,28,0.95); }
.proc-num {
  position: absolute; top: -1px; right: 18px;
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 800;
  color: var(--white); background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 4px 12px; border-radius: 0 0 8px 8px; letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(26,107,255,0.35);
}
.proc-icon {
  width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: var(--transition); flex-shrink: 0; position: relative; overflow: hidden;
}
.proc-icon::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 60%); }
.proc-icon.purple { background: rgba(155,110,255,0.10); border: 1px solid rgba(155,110,255,0.22); color: var(--purple); }
.proc-icon.blue   { background: rgba(26,107,255,0.10);  border: 1px solid rgba(26,107,255,0.22); color: var(--accent); }
.proc-icon.green  { background: rgba(0,229,160,0.10);   border: 1px solid rgba(0,229,160,0.22);  color: var(--green); }
.proc-icon.orange { background: rgba(255,158,0,0.10);   border: 1px solid rgba(255,158,0,0.22);  color: var(--orange); }
.proc-card:hover .proc-icon.purple { background: var(--purple); color: var(--white); border-color: var(--purple); box-shadow: 0 0 28px rgba(155,110,255,0.45); }
.proc-card:hover .proc-icon.blue   { background: var(--accent);  color: var(--white); border-color: var(--accent);  box-shadow: 0 0 28px rgba(26,107,255,0.45); }
.proc-card:hover .proc-icon.green  { background: var(--green);   color: var(--bg);    border-color: var(--green);  box-shadow: 0 0 28px rgba(0,229,160,0.4); }
.proc-card:hover .proc-icon.orange { background: var(--orange);  color: var(--bg);    border-color: var(--orange); box-shadow: 0 0 28px rgba(255,158,0,0.4); }
.proc-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text); text-align: center; }
.proc-card p  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

/* Mission/Vision large icons */
.mission-vision-grid { grid-template-columns: repeat(2, 1fr); }
.mission-vision-grid::before { display: none; }
.large-icon { width: 76px; height: 76px; font-size: 2rem; border-radius: 22px; }
.proc-card:hover .large-icon { animation: procIconFloat 1.3s ease-in-out infinite; }
@keyframes procIconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  padding: 110px 0; background: var(--bg); position: relative; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: -50%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(26,107,255,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 30% 60%, rgba(155,110,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 70% 40%, rgba(0,212,255,0.06) 0%, transparent 60%);
  animation: ctaAurora 8s ease-in-out infinite alternate;
}
@keyframes ctaAurora { 0% { transform: scale(1) rotate(0deg); } 100% { transform: scale(1.1) rotate(3deg); } }
.orb-cta-1 { width: 560px; height: 560px; top: -200px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(26,107,255,0.09) 0%, transparent 70%); filter: blur(60px); }
.orb-cta-2 { width: 340px; height: 340px; bottom: -100px; right: 10%; background: radial-gradient(circle, rgba(0,229,160,0.06) 0%, transparent 70%); filter: blur(50px); }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; position: relative; z-index: 1; }
.cta-inner .section-heading { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -1px; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.testi-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26,107,255,0.04) 0%, transparent 70%); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; align-items: stretch; }
.testi-card {
  padding: 36px 30px; display: flex; flex-direction: column; gap: 16px;
  background: rgba(8,14,28,0.80); border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition); height: 100%; position: relative; overflow: hidden;
}
.testi-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.testi-card:hover { transform: translateY(-8px); border-color: var(--border-bright); box-shadow: var(--shadow-lg), 0 0 50px rgba(26,107,255,0.08); }
.testi-card:hover::before { transform: scaleX(1); }
.testi-card.testi-featured { border-color: var(--border-bright); background: rgba(26,107,255,0.06); }
.testi-quote { font-family: var(--font-head); font-size: 3rem; line-height: 1; font-weight: 800; color: var(--accent); opacity: 0.35; }
.testi-stars { color: var(--orange); font-size: 0.95rem; letter-spacing: 3px; }
.testi-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.testi-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(26,107,255,0.3); }
.testi-author h3 { font-family: var(--font-head); font-size: 0.92rem; font-weight: 700; color: var(--text); text-align: left; }
.testi-author span { font-size: 0.78rem; color: var(--text-dim); }

/* =============================================
   FAQ
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: rgba(8,14,28,0.80); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition); backdrop-filter: blur(16px);
}
.faq-item:hover { border-color: var(--border-bright); }
.faq-item.active { border-color: var(--border-bright); box-shadow: var(--shadow), 0 0 30px rgba(26,107,255,0.06); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 22px 26px; text-align: left; cursor: pointer;
}
.faq-question span:first-child { font-family: var(--font-head); font-size: 0.98rem; font-weight: 700; color: var(--text); text-align: left; transition: color var(--transition); }
.faq-item.active .faq-question span:first-child { color: var(--cyan); }
.faq-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,107,255,0.08); border: 1px solid rgba(26,107,255,0.22);
  color: var(--accent); font-size: 0.85rem; transition: var(--transition);
}
.faq-item.active .faq-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white); border-color: var(--accent); transform: rotate(135deg);
  box-shadow: 0 0 16px rgba(26,107,255,0.4);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner { padding: 0 26px 24px; }
.faq-answer-inner p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; border-top: 1px solid var(--border); padding-top: 14px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 70px 0 0; position: relative; }
.footer-top-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--cyan), var(--accent), transparent);
  background-size: 200% 100%; animation: footerLineShimmer 4s linear infinite;
}
@keyframes footerLineShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid var(--border); padding-top: 60px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo  { display: flex; align-items: center; gap: 10px; }
.footer-desc  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); border-radius: 9px;
  background: rgba(26,107,255,0.05); border: 1px solid var(--border);
}
.social-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white); border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(26,107,255,0.35); transform: translateY(-2px);
}
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-title { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--text); text-align: left; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.86rem; color: var(--text-muted); transition: color var(--transition), padding-left var(--transition); display: block; }
.footer-col ul li a:hover { color: var(--cyan); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-dim); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--text-dim); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--cyan); }

/* =============================================
   RESPONSIVE — 1200px
   ============================================= */
@media (max-width: 1200px) {
  .container { padding: 0 40px; }
  .hero-inner { gap: 52px; }
  .hero-title { font-size: clamp(2.3rem, 4.2vw, 3.6rem); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4,1fr); }
  .stat-item { padding: 36px 24px; gap: 16px; }
  .project-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
  .ai-floater { left: -16px; }
  .perf-floater { right: -16px; }
  .sat-floater { right: -20px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE — 1024px
   ============================================= */
@media (max-width: 1024px) {
  .nav-menu, .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  .hero-section { padding: 140px 0 80px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-left { align-items: center; text-align: center; }
  .hero-desc, .hero-actions, .trusted-row { max-width: 560px; }
  .hero-right { max-width: 500px; margin: 0 auto; width: 100%; }
  .ai-floater  { display: none; }
  .perf-floater { top: 12px; right: -10px; }
  .sat-floater  { bottom: 40px; right: -12px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .what-we-do-grid { grid-template-columns: repeat(2,1fr); }
  .project-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .mission-vision-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .about-flex { flex-direction: column; gap: 40px; }
  .about-text-col, .about-image-col { flex: 0 0 100%; max-width: 100%; }
  .about-image-col { order: 2; }
  .about-text-col { order: 1; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 72px 0; }
  .hero-section { padding: 120px 0 70px; }
  .hero-title { font-size: clamp(2.1rem, 6.5vw, 2.8rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-actions { justify-content: center; }
  .trusted-row { justify-content: center; }
  .brand-chips { justify-content: center; }
  .dashboard { max-width: 100%; }
  .perf-floater { display: none; }
  .sat-floater  { display: none; }
  .stat-item { padding: 28px 20px; gap: 14px; }
  .stat-val { font-size: 1.9rem; }
  .stat-icon-wrap { width: 44px; height: 44px; font-size: 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .what-we-do-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .proj-header { flex-direction: column; align-items: flex-start; }
  .cta-inner .section-heading { font-size: clamp(1.7rem, 5.5vw, 2.3rem); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .faq-question { padding: 18px 20px; }
  .faq-answer-inner { padding: 0 20px 20px; }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 56px 0; }
  .hero-section { padding: 110px 0 60px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.3rem); }
  .hero-badge { font-size: 0.65rem; padding: 6px 14px; }
  .btn-glass-primary, .btn-glass-ghost { font-size: 0.85rem; padding: 12px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 22px 14px; }
  .stat-val { font-size: 1.65rem; }
  .dash-stat-card h3 { font-size: 1.2rem; }
  .bar-chart { height: 70px; gap: 5px; }
  .svc-card { padding: 26px 20px; }
  .proc-card { padding: 28px 18px; }
  .proj-content { padding: 16px 18px; }
  .cta-inner .section-heading { font-size: clamp(1.6rem, 6.5vw, 2rem); }
  .about-image-wrap { max-width: 100%; }
  .testi-card { padding: 28px 22px; }
}

/* =============================================
   RESPONSIVE — 375px
   ============================================= */
@media (max-width: 375px) {
  .hero-title { font-size: 1.75rem; }
  .section-heading { font-size: 1.65rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .stat-item:last-child { border-bottom: none !important; }
  .brand-chips span { font-size: 0.68rem; padding: 3px 9px; }
}

/* =============================================
   RESPONSIVE — 320px
   ============================================= */
@media (max-width: 320px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 1.55rem; }
  .section-heading { font-size: 1.5rem; }
  .stat-cards-row { grid-template-columns: 1fr; }
  .dash-stat-card { border-right: none; border-bottom: 1px solid var(--border); }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}