/* =============================================
   PAVIONX — Mobile App Development Page CSS v2 (DARK MODE)
   Theme: Deep Dark Tech | Electric Blue Premium
   3D Effects | Cinematic Animations | Glass Morphism
   Matches About / Contact Dark Theme System
   ============================================= */

@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.28);

  /* Electric Blue Accent */
  --accent:       #1a6bff;
  --accent2:      #0f55e0;
  --accent3:      #4d8fff;
  --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;

  /* 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 8px 40px rgba(26,107,255,0.18);
  --shadow-sm:    0 2px 20px rgba(26,107,255,0.10);
  --shadow-lg:    0 24px 80px rgba(26,107,255,0.22);
  --shadow-glow:  0 0 60px rgba(26,107,255,0.25), 0 0 120px 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; }

/* ============ 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.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(0,212,255,0.06) 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: -2px;
  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;
  box-shadow: 0 0 20px var(--accent-glow), 0 0 6px rgba(0,212,255,0.5);
  pointer-events: none; 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: 36px; height: 36px; border: 1.5px solid rgba(26,107,255,0.6); 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: 52px; height: 52px; border-color: var(--cyan); background: rgba(0,212,255,0.04); }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============ NOISE OVERLAY ============ */
.noise-overlay {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ 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.10) 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(0,212,255,0.07) 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(155,110,255,0.06) 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 & SECTION PAD ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
.section-pad { padding: 110px 0; }

/* ============ SHARED LABELS ============ */
.section-label {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.25em; color: var(--cyan);
  padding: 5px 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;
}
.section-label::before {
  content: ''; position: absolute; inset: 0; border-radius: 50px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.08), 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; background: linear-gradient(90deg, transparent, rgba(26,107,255,0.4), transparent); max-width: 80px; }
.section-heading {
  font-family: var(--font-head); font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -1px; color: var(--text);
}
.section-heading span {
  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; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 12px auto 0; }
.section-header { margin-bottom: 52px; }

/* ============ 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.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.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);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
}
.glass-card::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);
  opacity: 0; transition: opacity var(--transition);
}
.glass-card:hover { border-color: var(--border-bright); box-shadow: var(--shadow), 0 0 40px rgba(26,107,255,0.08); transform: translateY(-2px); }
.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: 13px 28px; border-radius: 10px; border: 1px solid rgba(26,107,255,0.5);
  transition: var(--transition); 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 12px 35px rgba(26,107,255,0.35), 0 0 20px rgba(26,107,255,0.2); border-color: var(--accent3); }
.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: 13px 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.06); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,212,255,0.15); }
.btn-glass-primary.large, .btn-glass-ghost.large { padding: 15px 32px; font-size: 0.98rem; }

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,8,18,0.92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(26,107,255,0.08);
  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.3), 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.15); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 38px; height: 38px; background: var(--white); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid rgba(26,107,255,0.3); position: relative; overflow: hidden;
}
.logo-icon::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,107,255,0.2) 0%, transparent 60%); }
.logo-text { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--text); letter-spacing: 0.04em; }
.logo-x { background: linear-gradient(135deg, var(--accent), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.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 { 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, .dp-item.active-dp { 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-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;
  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 8px 24px rgba(26,107,255,0.35); }
.nav-cta-btn:hover::after { opacity: 1; }

.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 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; 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.10); 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-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); border: 1px solid rgba(26,107,255,0.4);
  box-shadow: 0 4px 20px rgba(26,107,255,0.25);
}
.mob-cta-btn:hover { background: linear-gradient(135deg, var(--accent2), #0a46c0); box-shadow: 0 8px 28px rgba(26,107,255,0.35); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative; overflow: hidden; background: var(--bg);
  min-height: 100vh; display: flex; align-items: center;
  padding: 160px 0 100px;
}

.hero-bg-visual { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-bg-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.hero-grid-bg {
  position: absolute; inset: 0; z-index: 1;
  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: 60px 60px; opacity: 1;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  animation: gridPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes gridPulse { 0% { opacity: 0.6; } 100% { opacity: 1; } }
.orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; }
.orb-1 {
  width: 600px; height: 600px; top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(26,107,255,0.12) 0%, rgba(0,212,255,0.04) 40%, transparent 70%);
  filter: blur(50px); animation: orbFloat1 10s ease-in-out infinite alternate;
}
.orb-2 {
  width: 400px; height: 400px; bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(155,110,255,0.08) 0%, transparent 70%);
  filter: blur(45px); animation: orbFloat2 13s ease-in-out infinite alternate;
}
@keyframes orbFloat1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-25px, 35px) scale(1.05); } }
@keyframes orbFloat2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(35px, -25px) scale(0.95); } }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 2; }

/* Hero Left */
.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: 7px 18px; border-radius: 50px; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.2em; color: var(--cyan);
  backdrop-filter: blur(10px); width: fit-content; max-width: 100%; white-space: nowrap;
  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: 8px; height: 8px; background: var(--cyan); border-radius: 50%; flex-shrink: 0;
  animation: pulseDot 1.5s ease infinite; box-shadow: 0 0 0 0 rgba(0,212,255,0.5);
}
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.5); } 50% { box-shadow: 0 0 0 7px rgba(0,212,255,0); } }

.hero-title { font-family: var(--font-head); font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 800; line-height: 1.09; letter-spacing: -1.5px; color: var(--text); }
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-desc { color: var(--text-muted); font-size: 1.02rem; line-height: 1.8; max-width: 480px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 8px; border-top: 1px solid var(--border); }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 500; color: var(--text-muted); }
.trust-item i { color: var(--green); font-size: 0.85rem; }

/* Hero Right — Stat Cluster */
.hero-right { display: flex; align-items: center; justify-content: center; }

.hero-stat-cluster { display: flex; gap: 16px; width: 100%; max-width: 420px; }

.hsc-main { flex: 1; padding: 32px 24px; min-width: 0; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.hsc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(26,107,255,0.10); border: 1px solid rgba(26,107,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent); transition: var(--transition);
}
.hsc-main:hover .hsc-icon { background: var(--accent); color: var(--white); border-color: var(--accent); box-shadow: 0 0 24px rgba(26,107,255,0.4); }
.hsc-val {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hsc-val span { font-size: 1.4rem; }
.hsc-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.hsc-bar { width: 100%; height: 4px; background: var(--surface2); border-radius: 10px; overflow: hidden; margin-top: 8px; }
.hsc-fill { height: 100%; width: 84%; background: linear-gradient(90deg, var(--accent), var(--cyan)); border-radius: 10px; animation: fillGrow 1.4s ease forwards; box-shadow: 0 0 12px rgba(26,107,255,0.4); }
@keyframes fillGrow { from { width: 0; } to { width: 84%; } }

.hsc-side { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; width: 140px; }

.hsc-mini { padding: 16px 14px; display: flex; align-items: center; gap: 12px; min-width: 0; overflow: hidden; }
.hsc-mini-icon { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: var(--transition); }
.hsc-mini-icon.green  { background: rgba(0,229,160,0.10);  border: 1px solid rgba(0,229,160,0.22);  color: var(--green); }
.hsc-mini-icon.purple { background: rgba(155,110,255,0.10); border: 1px solid rgba(155,110,255,0.22); color: var(--purple); }
.hsc-mini-icon.orange { background: rgba(255,158,0,0.10);  border: 1px solid rgba(255,158,0,0.22);  color: var(--orange); }
.hsc-mini:hover .hsc-mini-icon.green  { background: var(--green);  color: var(--bg);    border-color: var(--green);  box-shadow: 0 0 18px rgba(0,229,160,0.4); }
.hsc-mini:hover .hsc-mini-icon.purple { background: var(--purple); color: var(--white); border-color: var(--purple); box-shadow: 0 0 18px rgba(155,110,255,0.4); }
.hsc-mini:hover .hsc-mini-icon.orange { background: var(--orange); color: var(--bg);   border-color: var(--orange); box-shadow: 0 0 18px rgba(255,158,0,0.4); }
.hsc-mini-val { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--cyan); line-height: 1; }
.hsc-mini-val span { color: var(--text-dim); font-weight: 700; }
.hsc-mini-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section { background: var(--bg2); border-top: 1px solid var(--border); position: relative; }
.services-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%); pointer-events: none; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }

.svc-card { padding: 34px 26px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; }
.svc-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);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), 0 0 40px rgba(26,107,255,0.10); border-color: var(--border-bright); }
.svc-card:hover::before { transform: scaleX(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); }
.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);  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);   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);  box-shadow: 0 0 24px rgba(155,110,255,0.45); }
.svc-card:hover .svc-icon-wrap.orange { background: var(--orange);  color: var(--bg);    border-color: var(--orange);  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); }
.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(--cyan); transition: gap var(--transition); }
.svc-link:hover { gap: 12px; }
.svc-link i { transition: transform var(--transition); }
.svc-link:hover i { transform: translateX(3px); }
.svc-num { position: absolute; bottom: 18px; right: 20px; font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--surface2); line-height: 1; pointer-events: none; transition: var(--transition); }
.svc-card:hover .svc-num { color: rgba(26,107,255,0.10); }

/* =============================================
   TECH STACK SECTION
   ============================================= */
.tech-section { background: var(--bg); border-top: 1px solid var(--border); }

.tech-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.tech-item { padding: 20px 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 1.8rem; transition: var(--transition); cursor: default; color: var(--accent); }
.tech-item span { font-size: 0.86rem; font-weight: 600; color: var(--text-muted); }
.tech-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), 0 0 30px rgba(26,107,255,0.10); border-color: var(--border-bright); color: var(--cyan); }
.tech-item:hover span { color: var(--cyan); }

/* =============================================
   PROCESS SECTION
   ============================================= */
.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 60% 100% at 50% 50%, rgba(26,107,255,0.04) 0%, transparent 70%); pointer-events: none; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; z-index: 1; }
.process-grid::before {
  content: ''; position: absolute; top: 46px;
  left: calc(10% + 20px); right: calc(10% + 20px); height: 1px;
  background: repeating-linear-gradient(90deg, rgba(26,107,255,0.3) 0, rgba(26,107,255,0.3) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.proc-card { padding: 30px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; position: relative; z-index: 1; transition: var(--transition); }
.proc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg), 0 0 40px rgba(26,107,255,0.10); border-color: var(--border-bright); }
.proc-step {
  position: absolute; top: -13px; right: 16px;
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 800;
  color: var(--white); background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 3px 10px; border-radius: 50px; letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(26,107,255,0.35);
}
.proc-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: var(--transition); flex-shrink: 0; }
.proc-icon.blue   { background: rgba(26,107,255,0.10); border: 1px solid rgba(26,107,255,0.22); color: var(--accent); }
.proc-icon.purple { background: rgba(155,110,255,0.10); border: 1px solid rgba(155,110,255,0.22); color: var(--purple); }
.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.blue   { background: var(--accent);  color: var(--white); border-color: var(--accent);  box-shadow: 0 0 26px rgba(26,107,255,0.45); }
.proc-card:hover .proc-icon.purple { background: var(--purple);  color: var(--white); border-color: var(--purple);  box-shadow: 0 0 26px rgba(155,110,255,0.45); }
.proc-card:hover .proc-icon.green  { background: var(--green);   color: var(--bg);    border-color: var(--green);   box-shadow: 0 0 26px 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 26px rgba(255,158,0,0.4); }
.proc-card h3 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--text); }
.proc-card p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section { background: var(--bg); border-top: 1px solid var(--border); }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-grid-4 { grid-template-columns: repeat(4, 1fr); }

.feat-card { padding: 32px 26px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; }
.feat-grid-4 .feat-card { padding: 28px 22px; }
.feat-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);
}
.feat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), 0 0 40px rgba(26,107,255,0.10); border-color: var(--border-bright); }
.feat-card:hover::before { transform: scaleX(1); }

.feat-icon { 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); }
.feat-icon.blue   { background: rgba(26,107,255,0.10); border: 1px solid rgba(26,107,255,0.22); color: var(--accent); }
.feat-icon.green  { background: rgba(0,229,160,0.10);  border: 1px solid rgba(0,229,160,0.22);  color: var(--green); }
.feat-icon.purple { background: rgba(155,110,255,0.10); border: 1px solid rgba(155,110,255,0.22); color: var(--purple); }
.feat-icon.orange { background: rgba(255,158,0,0.10);  border: 1px solid rgba(255,158,0,0.22);  color: var(--orange); }
.feat-card:hover .feat-icon.blue   { background: var(--accent);  color: var(--white); border-color: var(--accent);  box-shadow: 0 0 24px rgba(26,107,255,0.45); }
.feat-card:hover .feat-icon.green  { background: var(--green);   color: var(--bg);    border-color: var(--green);   box-shadow: 0 0 24px rgba(0,229,160,0.4); }
.feat-card:hover .feat-icon.purple { background: var(--purple);  color: var(--white); border-color: var(--purple);  box-shadow: 0 0 24px rgba(155,110,255,0.45); }
.feat-card:hover .feat-icon.orange { background: var(--orange);  color: var(--bg);    border-color: var(--orange);  box-shadow: 0 0 24px rgba(255,158,0,0.4); }
.feat-card h3 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; color: var(--text); }
.feat-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section { background: var(--bg2); border-top: 1px solid var(--border); position: relative; }
.why-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%); pointer-events: none; }

.why-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; align-items: start; position: relative; z-index: 1; }

.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.why-stat-card { padding: 28px 22px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.why-stat-icon { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: var(--transition); }
.why-stat-icon.blue   { background: rgba(26,107,255,0.10); border: 1px solid rgba(26,107,255,0.22); color: var(--accent); }
.why-stat-icon.green  { background: rgba(0,229,160,0.10);  border: 1px solid rgba(0,229,160,0.22);  color: var(--green); }
.why-stat-icon.purple { background: rgba(155,110,255,0.10); border: 1px solid rgba(155,110,255,0.22); color: var(--purple); }
.why-stat-icon.orange { background: rgba(255,158,0,0.10);  border: 1px solid rgba(255,158,0,0.22);  color: var(--orange); }
.why-stat-card:hover .why-stat-icon.blue   { background: var(--accent);  color: var(--white); border-color: var(--accent);  box-shadow: 0 0 20px rgba(26,107,255,0.4); }
.why-stat-card:hover .why-stat-icon.green  { background: var(--green);   color: var(--bg);    border-color: var(--green);   box-shadow: 0 0 20px rgba(0,229,160,0.4); }
.why-stat-card:hover .why-stat-icon.purple { background: var(--purple);  color: var(--white); border-color: var(--purple);  box-shadow: 0 0 20px rgba(155,110,255,0.4); }
.why-stat-card:hover .why-stat-icon.orange { background: var(--orange);  color: var(--bg);    border-color: var(--orange);  box-shadow: 0 0 20px rgba(255,158,0,0.4); }
.why-stat-val { font-family: var(--font-head); font-size: 2rem; font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--accent), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.why-stat-val span { font-size: 1.1rem; color: var(--text-muted); -webkit-text-fill-color: initial; background: none; }
.why-stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

.why-list { display: flex; flex-direction: column; gap: 12px; }

.why-list-item { display: flex; align-items: flex-start; gap: 16px; padding: 22px 24px; }
.why-list-item:hover { transform: translateX(6px); box-shadow: var(--shadow), 0 0 30px rgba(26,107,255,0.08); border-color: var(--border-bright); }
.wli-icon { width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; transition: var(--transition); }
.wli-icon.blue   { background: rgba(26,107,255,0.10); border: 1px solid rgba(26,107,255,0.22); color: var(--accent); }
.wli-icon.green  { background: rgba(0,229,160,0.10);  border: 1px solid rgba(0,229,160,0.22);  color: var(--green); }
.wli-icon.purple { background: rgba(155,110,255,0.10); border: 1px solid rgba(155,110,255,0.22); color: var(--purple); }
.wli-icon.orange { background: rgba(255,158,0,0.10);  border: 1px solid rgba(255,158,0,0.22);  color: var(--orange); }
.why-list-item:hover .wli-icon.blue   { background: var(--accent);  color: var(--white); border-color: var(--accent);  box-shadow: 0 0 18px rgba(26,107,255,0.4); }
.why-list-item:hover .wli-icon.green  { background: var(--green);   color: var(--bg);    border-color: var(--green);   box-shadow: 0 0 18px rgba(0,229,160,0.4); }
.why-list-item:hover .wli-icon.purple { background: var(--purple);  color: var(--white); border-color: var(--purple);  box-shadow: 0 0 18px rgba(155,110,255,0.4); }
.why-list-item:hover .wli-icon.orange { background: var(--orange);  color: var(--bg);    border-color: var(--orange);  box-shadow: 0 0 18px rgba(255,158,0,0.4); }
.why-list-item h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.why-list-item p  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   INDUSTRIES SECTION
   ============================================= */
.industries-section { background: var(--bg); border-top: 1px solid var(--border); }

.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.ind-card { padding: 26px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; cursor: default; transition: var(--transition); position: relative; overflow: hidden; }
.ind-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26,107,255,0.08) 0%, transparent 70%); opacity: 0; transition: opacity var(--transition); }
.ind-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), 0 0 40px rgba(26,107,255,0.10); border-color: var(--border-bright); }
.ind-card:hover::before { opacity: 1; }
.ind-icon {
  width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: var(--transition); position: relative; z-index: 1;
  background: rgba(26,107,255,0.10); border: 1px solid rgba(26,107,255,0.22); color: var(--accent);
}
.ind-icon.green  { background: rgba(0,229,160,0.10);  border-color: rgba(0,229,160,0.22);  color: var(--green); }
.ind-icon.purple { background: rgba(155,110,255,0.10); border-color: rgba(155,110,255,0.22); color: var(--purple); }
.ind-icon.orange { background: rgba(255,158,0,0.10);  border-color: rgba(255,158,0,0.22);  color: var(--orange); }
.ind-icon.blue   { background: rgba(26,107,255,0.10); border-color: rgba(26,107,255,0.22); color: var(--accent); }
.ind-card:hover .ind-icon         { background: var(--accent); color: var(--white); border-color: var(--accent); box-shadow: 0 0 22px rgba(26,107,255,0.45); }
.ind-card:hover .ind-icon.green   { background: var(--green);  color: var(--bg);    border-color: var(--green);  box-shadow: 0 0 22px rgba(0,229,160,0.4); }
.ind-card:hover .ind-icon.purple  { background: var(--purple); color: var(--white); border-color: var(--purple); box-shadow: 0 0 22px rgba(155,110,255,0.45); }
.ind-card:hover .ind-icon.orange  { background: var(--orange); color: var(--bg);    border-color: var(--orange); box-shadow: 0 0 22px rgba(255,158,0,0.4); }
.ind-card span { font-family: var(--font-head); font-size: 0.88rem; font-weight: 700; color: var(--text); position: relative; z-index: 1; }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { background: var(--bg2); border-top: 1px solid var(--border); position: relative; }
.faq-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%); pointer-events: none; }

.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }

.faq-item { overflow: hidden; transition: var(--transition); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 26px; background: transparent; cursor: pointer;
  font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text);
  text-align: left; transition: var(--transition);
}
.faq-q:hover { color: var(--cyan); }
.faq-icon { font-size: 0.9rem; color: var(--accent); flex-shrink: 0; transition: transform var(--transition), color var(--transition); }
.faq-item[data-open="true"] .faq-icon { transform: rotate(45deg); color: var(--cyan); }
.faq-item[data-open="true"] { border-color: var(--border-bright); box-shadow: var(--shadow-sm), 0 0 30px rgba(26,107,255,0.08); }
.faq-item[data-open="true"] .faq-q { color: var(--cyan); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease; padding: 0 26px; }
.faq-item[data-open="true"] .faq-a { max-height: 200px; padding: 0 26px 22px; }
.faq-a p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; border-top: 1px solid var(--border); padding-top: 14px; }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.cta-orb-1 { width: 500px; height: 500px; top: -160px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(26,107,255,0.10) 0%, transparent 70%); filter: blur(50px); border-radius: 50%; position: absolute; z-index: 0; pointer-events: none; }
.cta-orb-2 { width: 300px; height: 300px; bottom: -80px; right: 10%; background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%); filter: blur(40px); border-radius: 50%; position: absolute; z-index: 0; pointer-events: none; }
.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: -1.5px; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* =============================================
   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); }
.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: flex; align-items: center; }
.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: 48px; }
  .hero-title { font-size: clamp(2.2rem, 4vw, 3.2rem); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .tech-grid { grid-template-columns: repeat(5, 1fr); }
  .why-inner { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
}

/* =============================================
   RESPONSIVE — 1024px
   ============================================= */
@media (max-width: 1024px) {
  .nav-menu, .nav-cta-btn { display: none; }
  .hamburger { display: flex; }

  .hero-section { padding: 130px 0 80px; min-height: auto; }
  .hero-bg-visual { opacity: 0.5; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-left { align-items: center; text-align: center; }
  .hero-desc, .hero-actions { max-width: 560px; }
  .hero-trust { justify-content: center; }
  .hero-right { max-width: 440px; margin: 0 auto; width: 100%; }

  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(5, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid::before { display: none; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: repeat(4, 1fr); }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 72px 0; }

  .hero-section { padding: 120px 0 70px; }
  .hero-bg-visual { opacity: 0.35; }
  .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); letter-spacing: -1px; }
  .hero-right { max-width: 360px; }
  .hero-stat-cluster { flex-direction: column; max-width: 320px; margin: 0 auto; gap: 14px; }
  .hsc-side { flex-direction: row; width: 100%; gap: 10px; }
  .hsc-mini { flex: 1; padding: 14px 10px; flex-direction: column; text-align: center; gap: 8px; }
  .hsc-mini-label { margin-top: 0; }

  .svc-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-inner .section-heading { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .cta-buttons { flex-direction: column; align-items: center; }

  .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; }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 56px 0; }

  .hero-section { padding: 110px 0 60px; }
  .hero-bg-visual { display: none; }
  .hero-title { font-size: clamp(1.9rem, 7.5vw, 2.4rem); }
  .hero-badge { font-size: 0.6rem; padding: 6px 12px; letter-spacing: 0.15em; }
  .btn-glass-primary, .btn-glass-ghost { font-size: 0.85rem; padding: 12px 20px; }
  .hero-trust { flex-direction: column; gap: 10px; align-items: center; }

  .hero-right { max-width: 100%; }
  .hero-stat-cluster { max-width: 100%; }
  .hsc-main { padding: 26px 18px; }
  .hsc-val { font-size: 2.2rem; }
  .hsc-side { gap: 8px; }
  .hsc-mini { padding: 12px 8px; }
  .hsc-mini-val { font-size: 1rem; }
  .hsc-mini-label { font-size: 0.65rem; }

  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .feat-grid-4 { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }

  .svc-card, .feat-card { padding: 26px 20px; }
  .proc-card { padding: 26px 18px; }
  .faq-q { padding: 18px 20px; font-size: 0.92rem; }
  .faq-a { padding: 0 20px; }
  .faq-item[data-open="true"] .faq-a { padding: 0 20px 18px; }
}

/* =============================================
   RESPONSIVE — 375px
   ============================================= */
@media (max-width: 375px) {
  .hero-title { font-size: 1.8rem; }
  .section-heading { font-size: 1.7rem; }
  .hsc-side { flex-direction: column; gap: 8px; }
  .hsc-mini { flex-direction: row; text-align: left; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE — 320px
   ============================================= */
@media (max-width: 320px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 1.6rem; }
  .section-heading { font-size: 1.55rem; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .why-stats { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}