/* =============================================
   PAVIONX — About Page CSS v3
   Theme: Deep Dark Tech | Electric Blue Premium
   3D Effects | Cinematic Animations | Glass Morphism
   ============================================= */

@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 ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
.section-pad { padding: 110px 0; }

/* ============ SHARED LABELS & HEADINGS ============ */
.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; 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.8rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -1px; 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; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 12px auto 0; }
.section-header { margin-bottom: 56px; }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0; transform: translateY(40px) 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.22s; }
.reveal.delay-3 { transition-delay: 0.34s; }
.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); }

/* =============================================
   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); }
.header-blur-bg { display: none; }
.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); 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 */
.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;
  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 */
.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.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-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(--accent); }
.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); 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); }

/* =============================================
   PAGE HERO BANNER
   ============================================= */
.page-hero { padding: 160px 0 90px; text-align: center; position: relative; overflow: hidden; background: var(--bg); }
.page-hero::before {
  content: ''; 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; opacity: 1;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  animation: gridPulse 8s ease-in-out infinite alternate;
}
@keyframes gridPulse { 0% { opacity: 0.6; } 100% { opacity: 1; } }
.orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.orb-1 {
  width: 480px; height: 480px; top: -160px; right: -80px;
  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: 340px; height: 340px; bottom: -80px; left: -60px;
  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-grid-lines { position: absolute; inset: 0; z-index: 0; display: flex; justify-content: space-between; overflow: hidden; }
.hgl-v { width: 1px; background: var(--border); opacity: 0.6; height: 100%; }
.hgl-h { display: none; }

.ph-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.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.7rem;
  font-weight: 700; letter-spacing: 0.22em; color: var(--cyan);
  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%; 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 8px rgba(0,212,255,0); } }
.ph-title { font-family: var(--font-head); font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.07; letter-spacing: -2px; color: var(--text); }
.ph-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; line-height: 1.8; margin: 0 auto; }
.ph-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-dim); }
.ph-breadcrumb a:hover { color: var(--cyan); }
.bc-sep { color: var(--text-dim); }

/* =============================================
   ABOUT HERO
   ============================================= */
.about-hero.section-pad { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-left { display: flex; flex-direction: column; gap: 28px; }
.about-left .section-heading { margin-top: 4px; }
.about-left .section-sub { margin-top: 0; }

.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 8px; }
.feature-box {
  padding: 22px 18px; display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden; transform-style: preserve-3d;
}
.feature-box::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);
}
.feature-box::after {
  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); pointer-events: none;
}
.feature-box:hover { transform: translateY(-8px) rotateX(2deg); box-shadow: var(--shadow-lg), 0 0 40px rgba(26,107,255,0.10); border-color: var(--border-bright); }
.feature-box:hover::before { transform: scaleX(1); }
.feature-box:hover::after { opacity: 1; }
.feature-icon-wrap {
  width: 44px; height: 44px; border-radius: 11px;
  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.1rem; color: var(--accent); transition: var(--transition); flex-shrink: 0;
  position: relative; z-index: 1;
}
.feature-icon-wrap.blue  { background: rgba(26,107,255,0.10); color: var(--accent); }
.feature-icon-wrap.green { background: rgba(0,229,160,0.10); border-color: rgba(0,229,160,0.22); color: var(--green); }
.feature-box:hover .feature-icon-wrap       { background: var(--accent); color: var(--white); border-color: var(--accent); box-shadow: 0 0 24px rgba(26,107,255,0.45); }
.feature-box:hover .feature-icon-wrap.green { background: var(--green); border-color: var(--green); color: var(--bg); box-shadow: 0 0 24px rgba(0,229,160,0.4); }
.feature-box h3 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--text); position: relative; z-index: 1; }
.feature-box p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; position: relative; z-index: 1; }

/* About right */
.about-right { position: relative; display: flex; align-items: center; justify-content: center; }
.img-frame { border-radius: 22px; overflow: hidden; position: relative; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26,107,255,0.10); border: 1px solid var(--border); }
.img-frame img { width: 100%; height: 480px; object-fit: cover; display: block; transition: transform 0.6s ease; filter: brightness(0.88) saturate(1.05); }
.img-frame:hover img { transform: scale(1.04); filter: brightness(1) saturate(1.1); }
.img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,8,18,0.55) 0%, rgba(26,107,255,0.10) 45%, transparent 70%); }
.experience-card {
  position: absolute; bottom: -24px; left: -28px;
  padding: 20px 24px; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  background: rgba(8,14,28,0.94); border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  animation: floatCard 4s ease-in-out infinite;
}
.experience-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(26,107,255,0.4), transparent); }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.exp-icon {
  width: 44px; height: 44px; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white);
  box-shadow: 0 4px 16px rgba(26,107,255,0.4);
}
.exp-num {
  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;
}
.experience-card p { font-size: 0.76rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }

/* =============================================
   STATS
   ============================================= */
.stats-section { padding: 0; 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: 48px 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::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::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:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(26,107,255,0.10); }
.stat-item:hover::before { opacity: 1; }
.stat-item:hover::after { transform: scaleX(1); }
.stat-icon-wrap {
  width: 52px; height: 52px; 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.2rem; 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;
}
.stat-body p { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

/* =============================================
   JOURNEY / TIMELINE
   ============================================= */
.journey-section { background: var(--bg); }
.journey-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.journey-left { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 100px; }
.journey-left .section-sub { margin-top: 0; }

/* Timeline */
.timeline { display: flex; flex-direction: column; position: relative; }
.timeline-spine { position: absolute; left: 22px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, rgba(26,107,255,0.35), rgba(0,212,255,0.15), rgba(26,107,255,0.35)); border-radius: 2px; z-index: 0; }
.tl-item { display: grid; grid-template-columns: 48px 1fr; gap: 0 24px; padding: 24px 0; align-items: start; position: relative; }
.tl-node { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.tl-icon-wrap {
  width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--accent); background: rgba(26,107,255,0.10); transition: var(--transition);
  border: 1px solid rgba(26,107,255,0.22); box-shadow: 0 0 0 4px var(--bg);
}
.tl-icon-wrap.orange { background: rgba(255,158,0,0.12); color: var(--orange); border-color: rgba(255,158,0,0.25); }
.tl-icon-wrap.green  { background: rgba(0,229,160,0.12); color: var(--green); border-color: rgba(0,229,160,0.25); }
.tl-icon-wrap.cyan   { background: rgba(0,212,255,0.12); color: var(--cyan); border-color: rgba(0,212,255,0.25); }
.tl-icon-wrap.default { background: rgba(26,107,255,0.10); color: var(--accent); }
.tl-content {
  background: rgba(8,14,28,0.8); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px; display: flex; flex-direction: column; gap: 6px; transition: var(--transition);
}
.tl-content:hover { transform: translateX(8px); border-color: var(--border-bright); box-shadow: var(--shadow), 0 0 30px rgba(26,107,255,0.08); }
.tl-year {
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
  color: var(--cyan); letter-spacing: 0.1em; background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25); padding: 3px 10px; border-radius: 50px; width: fit-content;
}
.tl-content h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text); }
.tl-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   TEAM
   ============================================= */
.team-section { background: var(--bg2); border-top: 1px solid var(--border); position: relative; }
.team-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%); }
.team-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; margin-top: 0; position: relative; z-index: 1; }
.team-card {
  padding: 28px 18px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px;
  position: relative; overflow: hidden; transition: var(--transition);
}
.team-card::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: center; transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg), 0 0 40px rgba(26,107,255,0.10); border-color: var(--border-bright); }
.team-card:hover::before { transform: scaleX(1); }
.team-img-wrap { position: relative; width: 150px; height: 150px; }
.team-img-wrap img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 3px solid var(--border); transition: border-color var(--transition); filter: brightness(0.92); }
.team-card:hover .team-img-wrap img { border-color: var(--accent); filter: brightness(1); }
.team-img-glow { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(26,107,255,0); transition: border-color var(--transition), box-shadow var(--transition); pointer-events: none; }
.team-card:hover .team-img-glow { border-color: rgba(0,212,255,0.4); box-shadow: 0 0 20px rgba(26,107,255,0.3); }
.team-info { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.team-info h3 { font-family: var(--font-head); font-size: 0.97rem; font-weight: 700; color: var(--text); }
.team-info > p { font-size: 0.8rem; color: var(--text-muted); }
.team-socials { display: flex; gap: 8px; margin-top: 4px; }
.ts-btn {
  width: 32px; height: 32px; background: rgba(26,107,255,0.06); border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.ts-btn:hover { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: var(--white); border-color: var(--accent); box-shadow: 0 4px 14px rgba(26,107,255,0.35); }
.team-cta { display: flex; justify-content: center; margin-top: 44px; }

/* =============================================
   PROJECTS
   ============================================= */
.projects-section { background: var(--bg); }
.proj-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 20px; }
.project-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.project-card { display: flex; flex-direction: column; overflow: hidden; transition: var(--transition); }
.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.75) 0%, rgba(26,107,255,0.35) 100%);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition);
}
.project-card:hover .proj-overlay { opacity: 1; }
.proj-link-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2)); color: var(--white); font-weight: 700;
  font-size: 0.84rem; padding: 10px 18px; border-radius: 8px;
  transform: translateY(12px) scale(0.95); transition: var(--transition);
  box-shadow: 0 4px 20px rgba(26,107,255,0.4);
}
.project-card:hover .proj-link-btn { transform: translateY(0) scale(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.12em; color: var(--cyan); text-transform: uppercase; }
.proj-content h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text); }
.proj-content p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.proj-cta { display: inline-flex; align-items: center; gap: 7px; font-size: 0.83rem; font-weight: 600; color: var(--accent); margin-top: 4px; transition: gap var(--transition), color var(--transition); }
.proj-cta:hover { gap: 12px; color: var(--cyan); }

/* =============================================
   VALUES
   ============================================= */
.values-section { background: var(--bg2); border-top: 1px solid var(--border); position: relative; }
.values-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%); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; z-index: 1; }
.value-card {
  padding: 36px 26px; display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden; transition: var(--transition); transform-style: preserve-3d;
}
.value-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);
}
.value-card::after { 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); }
.value-card:hover { transform: translateY(-10px) rotateX(2deg); box-shadow: var(--shadow-lg), 0 0 50px rgba(26,107,255,0.10); border-color: var(--border-bright); }
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover::after { opacity: 1; }
.val-icon {
  width: 52px; height: 52px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; font-size: 1.3rem;
  transition: var(--transition); position: relative; z-index: 1; flex-shrink: 0;
}
.val-icon.purple { background: rgba(155,110,255,0.10); border: 1px solid rgba(155,110,255,0.22); color: var(--purple); }
.val-icon.blue   { background: rgba(26,107,255,0.10); border: 1px solid rgba(26,107,255,0.22); color: var(--accent); }
.val-icon.green  { background: rgba(0,229,160,0.10); border: 1px solid rgba(0,229,160,0.22); color: var(--green); }
.val-icon.orange { background: rgba(255,158,0,0.10); border: 1px solid rgba(255,158,0,0.22); color: var(--orange); }
.value-card:hover .val-icon.purple { background: var(--purple); color: var(--white); border-color: var(--purple); box-shadow: 0 0 24px rgba(155,110,255,0.45); }
.value-card:hover .val-icon.blue   { background: var(--accent); color: var(--white); border-color: var(--accent); box-shadow: 0 0 24px rgba(26,107,255,0.45); }
.value-card:hover .val-icon.green  { background: var(--green); color: var(--bg); border-color: var(--green); box-shadow: 0 0 24px rgba(0,229,160,0.4); }
.value-card:hover .val-icon.orange { background: var(--orange); color: var(--bg); border-color: var(--orange); box-shadow: 0 0 24px rgba(255,158,0,0.4); }
.value-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text); position: relative; z-index: 1; }
.value-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; position: relative; z-index: 1; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-section { background: var(--bg); position: relative; overflow: hidden; }
.testi-section::before {
  content: '"'; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head); font-size: 22rem; font-weight: 800; color: var(--surface2);
  line-height: 1; pointer-events: none; z-index: 0; opacity: 0.35;
}
.testi-section .container { position: relative; z-index: 1; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card { padding: 34px 28px; display: flex; flex-direction: column; gap: 18px; transition: var(--transition); }
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), 0 0 40px rgba(26,107,255,0.08); border-color: var(--border-bright); }
.testi-featured {
  border-color: rgba(0,212,255,0.30) !important;
  background: linear-gradient(135deg, rgba(8,14,28,0.9) 0%, rgba(26,107,255,0.08) 100%);
  box-shadow: 0 0 40px rgba(26,107,255,0.10);
}
.testi-quote {
  font-family: var(--font-head); font-size: 3.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: 0.7; opacity: 0.6;
}
.testi-stars { font-size: 0.9rem; color: #f9ca24; letter-spacing: 2px; text-shadow: 0 0 12px rgba(249,202,36,0.3); }
.testi-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; filter: brightness(0.92); }
.testi-author h3 { font-family: var(--font-head); font-size: 0.92rem; font-weight: 700; color: var(--text); }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }

/* =============================================
   FAQ
   ============================================= */
.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%); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.faq-left { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.faq-left .section-sub { margin-top: 0; }
.faq-right { display: flex; flex-direction: column; gap: 12px; }
.faq-item { overflow: hidden; cursor: pointer; transition: var(--transition); }
.faq-item.open { border-color: var(--border-bright); box-shadow: var(--shadow-sm), 0 0 30px rgba(26,107,255,0.08); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; width: 100%; text-align: left; cursor: pointer; gap: 16px; }
.faq-q span { font-family: var(--font-head); font-size: 0.96rem; font-weight: 600; color: var(--text); }
.faq-icon {
  font-size: 0.85rem; color: var(--accent); flex-shrink: 0; width: 28px; height: 28px;
  background: rgba(26,107,255,0.08); border: 1px solid rgba(26,107,255,0.2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: linear-gradient(135deg, var(--accent), var(--accent2)); color: var(--white); border-color: var(--accent); box-shadow: 0 0 16px rgba(26,107,255,0.4); }
.faq-a {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.78; max-height: 0;
  overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }

/* =============================================
   PROCESS
   ============================================= */
.process-section { background: var(--bg); position: relative; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 42px; 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: 34px 24px; display: flex; flex-direction: column; gap: 16px;
  align-items: center; text-align: center; position: relative; z-index: 1; transition: var(--transition);
  overflow: hidden;
}
.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%); transition: opacity var(--transition); }
.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); }
.proc-num {
  position: absolute; top: -1px; right: 18px;
  font-family: var(--font-head); font-size: 0.7rem; 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: 58px; height: 58px; border-radius: 16px; display: flex;
  align-items: center; justify-content: center; font-size: 1.4rem;
  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); }
.proc-card p  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   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; margin-bottom: 0;
}
@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.78rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  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: 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; }
  .about-grid { gap: 50px; }
  .team-grid { grid-template-columns: repeat(3,1fr); }
  .stats-grid { grid-template-columns: repeat(4,1fr); }
  .stat-item { padding: 36px 24px; gap: 16px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
  .journey-grid { gap: 56px; }
  .faq-layout { gap: 56px; }
}

/* 1024px */
@media (max-width: 1024px) {
  .nav-menu, .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-left { align-items: center; text-align: center; }
  .about-left .section-sub { text-align: center; }
  .section-label-wrap:not(.center) { justify-content: center; }
  .about-right { max-width: 500px; margin: 0 auto; width: 100%; }
  .img-frame img { height: 380px; }
  .feature-grid { grid-template-columns: repeat(3,1fr); }

  .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; }

  .journey-grid { grid-template-columns: 1fr; gap: 48px; }
  .journey-left { position: static; text-align: center; align-items: center; }
  .journey-left .section-sub { text-align: center; }

  .team-grid { grid-template-columns: repeat(3,1fr); gap: 16px; }

  .project-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid  { grid-template-columns: repeat(2,1fr); }
  .testi-grid   { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .faq-layout   { grid-template-columns: 1fr; gap: 44px; }
  .faq-left { position: static; text-align: center; align-items: center; }
  .faq-left .section-sub { text-align: center; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* 768px */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 72px 0; }

  .page-hero { padding: 130px 0 70px; }
  .ph-title { font-size: clamp(2.2rem, 7vw, 3rem); }
  .ph-sub { font-size: 0.95rem; }

  .about-left h2 { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .img-frame img { height: 300px; }
  .experience-card { left: -10px; bottom: -16px; }
  .feature-grid { grid-template-columns: 1fr; gap: 12px; }

  .stat-item { padding: 28px 20px; gap: 14px; }
  .stat-val { font-size: 1.9rem; }
  .stat-icon-wrap { width: 44px; height: 44px; font-size: 1.2rem; }

  .timeline-spine { left: 20px; }
  .tl-item { grid-template-columns: 44px 1fr; gap: 0 16px; }
  .tl-node { width: 44px; height: 44px; }

  .team-grid { grid-template-columns: repeat(2,1fr); }
  .team-card { padding: 22px 16px; }

  .proj-header { flex-direction: column; align-items: flex-start; }
  .project-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 28px 22px; }

  .testi-section::before { font-size: 14rem; }
  .testi-card { padding: 26px 22px; }

  .process-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; }
}

/* 480px */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 56px 0; }

  .page-hero { padding: 120px 0 60px; }
  .ph-title { font-size: clamp(1.9rem, 7.5vw, 2.6rem); }

  .about-grid { gap: 44px; }
  .about-left h2 { font-size: clamp(1.75rem, 7vw, 2.2rem); }
  .about-text { font-size: 0.93rem; }
  .img-frame img { height: 250px; }
  .experience-card { left: -8px; bottom: -14px; padding: 14px 16px; }
  .exp-num { font-size: 1.6rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 22px 14px; }
  .stat-val { font-size: 1.65rem; }

  .team-grid { grid-template-columns: 1fr 1fr; }

  .faq-q { padding: 16px 18px; }
  .faq-a  { padding: 0 18px; }
  .faq-item.open .faq-a { padding-bottom: 16px; }

  .proc-card { padding: 28px 18px; }
  .value-card { padding: 24px 18px; }
  .testi-card { padding: 22px 18px; }
  .proj-content { padding: 16px 18px; }
}

/* 375px */
@media (max-width: 375px) {
  .page-hero { padding: 110px 0 54px; }
  .ph-title { font-size: 1.75rem; }
  .about-left h2, .section-heading { font-size: 1.7rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .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; }
}

/* 320px */
@media (max-width: 320px) {
  .container { padding: 0 12px; }
  .ph-title { font-size: 1.6rem; }
  .section-heading { font-size: 1.55rem; }
  .team-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::as { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}