/* =============================================
   PAVIONX — UI/UX Design Services Page CSS
   Theme: Deep Dark Tech | Electric Blue Premium
   3D Effects | Cinematic Animations | Glass Morphism
   All class names preserved — purple removed, blue/cyan only
   ============================================= */

@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;

  /* Accent Colors — purple removed, replaced by blue/cyan */
  --green:         #00e5a0;
  --orange:        #ff9e00;
  --purple:        #1a6bff;   /* repurposed to electric blue — no purple anywhere */
  --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, rgba(26,107,255,0.5), 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 rgba(26,107,255,0.4);
}
@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 rgba(26,107,255,0.4), 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; } }

/* ============ 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 ============ */
.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.08) 0%, transparent 65%);
  bottom: 15%; left: -200px; animation: ambientDrift2 15s ease-in-out infinite alternate;
}
.al-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(77,143,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; }

/* ============ 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; overflow: hidden;
}
.section-label::before {
  content: ''; position: absolute; inset: 0; border-radius: 50px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.10), transparent);
  animation: labelShimmer 3s ease infinite;
}
@keyframes labelShimmer { 0%, 100% { opacity: 0; transform: translateX(-100%); } 50% { opacity: 1; transform: translateX(100%); } }
.section-label-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.section-label-wrap.center { justify-content: center; }
.label-line { flex: 1; height: 1px; max-width: 80px; background: linear-gradient(90deg, transparent, rgba(26,107,255,0.4), transparent); }
.section-heading {
  font-family: var(--font-head); font-size: clamp(2rem, 3.2vw, 2.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: 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.08); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,212,255,0.18); }
.btn-glass-primary.large, .btn-glass-ghost.large { padding: 15px 34px; font-size: 0.98rem; }

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,8,18,0.92); border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(26,107,255,0.06);
  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.12); }
.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: linear-gradient(135deg, rgba(26,107,255,0.15) 0%, rgba(0,212,255,0.10) 100%);
  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-icon img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.logo-icon svg { position: relative; z-index: 1; }
.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%;
  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(255,255,255,0.08) 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-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.08); }
.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 { box-shadow: 0 8px 28px rgba(26,107,255,0.4); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative; overflow: hidden; background: var(--bg);
  min-height: 100vh; display: flex; align-items: center; padding: 170px 0 110px;
}
.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; opacity: 0.5; }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  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 10%, transparent 85%);
  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: 1; }
.orb-1 {
  width: 700px; height: 700px; top: -220px; right: -180px;
  background: radial-gradient(circle, rgba(26,107,255,0.14) 0%, rgba(0,212,255,0.05) 40%, transparent 70%);
  filter: blur(55px); animation: orbFloat1 10s ease-in-out infinite alternate;
}
.orb-2 {
  width: 480px; height: 480px; bottom: -120px; left: -100px;
  background: radial-gradient(circle, rgba(0,212,255,0.09) 0%, transparent 70%);
  filter: blur(50px); animation: orbFloat2 13s ease-in-out infinite alternate;
}
@keyframes orbFloat1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-30px,35px) scale(1.05); } }
@keyframes orbFloat2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(35px,-30px) scale(0.95); } }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 2; }
.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);
  width: fit-content; max-width: 100%; white-space: nowrap;
  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.10), 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.4);
}
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.4); } 50% { box-shadow: 0 0 0 8px 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; text-shadow: 0 0 10px rgba(0,229,160,0.4); }

/* Hero Right — Design Mockup Stack */
.hero-right { display: flex; align-items: center; justify-content: center; position: relative; }
.mockup-stack { position: relative; width: 100%; max-width: 420px; }
.mockup-card {
  background: rgba(8,14,28,0.92); border: 1px solid var(--border); border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26,107,255,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  animation: floatUp 4.5s ease-in-out infinite;
}
.mockup-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, transparent, rgba(26,107,255,0.5), rgba(0,212,255,0.3), transparent);
}
@keyframes floatUp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.mockup-header { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.mockup-dot.red    { background: #ff5f57; box-shadow: 0 0 8px rgba(255,95,87,0.4); }
.mockup-dot.yellow { background: #febc2e; box-shadow: 0 0 8px rgba(254,188,46,0.3); }
.mockup-dot.green  { background: #28c840; box-shadow: 0 0 8px rgba(40,200,64,0.4); }
.mockup-title { font-size: 0.76rem; color: var(--text-dim); margin-left: 6px; font-weight: 600; }
.mockup-frame-grid { display: flex; flex-direction: column; gap: 12px; }
.mockup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mockup-block {
  background: rgba(15,24,48,0.7); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px; transition: var(--transition);
}
.mockup-block:hover { border-color: rgba(0,212,255,0.35); box-shadow: 0 0 20px rgba(26,107,255,0.12); }
.mockup-block.wide { grid-column: 1 / -1; }
.mockup-block-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(26,107,255,0.14); border: 1px solid rgba(26,107,255,0.28);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; margin-bottom: 10px;
}
.mockup-line { height: 7px; background: var(--surface2); border-radius: 4px; margin-bottom: 7px; }
.mockup-line.w-70 { width: 70%; }
.mockup-line.w-50 { width: 50%; }
.mockup-line.w-90 { width: 90%; }
.mockup-color-row { display: flex; gap: 8px; margin-top: 10px; }
.mockup-swatch { width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; }

/* Floating badges */
.cursor-badge {
  position: absolute; bottom: -18px; right: -16px;
  background: rgba(8,14,28,0.94); border: 1px solid rgba(26,107,255,0.2); border-radius: 14px;
  padding: 10px 16px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(16px); animation: float2 4s ease-in-out infinite;
}
.cursor-badge::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, transparent, rgba(26,107,255,0.4), transparent);
}
@keyframes float2 { 0%,100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(10px) rotate(-0.5deg); } }
.cursor-badge-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--white); flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,107,255,0.4);
}
.cursor-badge h5 { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; color: var(--text); }
.cursor-badge p  { font-size: 0.65rem; color: var(--text-muted); }

.score-badge {
  position: absolute; top: -20px; left: -20px;
  background: rgba(8,14,28,0.94); border: 1px solid rgba(26,107,255,0.25); border-radius: 50%;
  width: 70px; height: 70px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(26,107,255,0.15);
  backdrop-filter: blur(16px); animation: float1 3.5s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(0.5deg); } }
.score-badge span {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.score-badge small { font-size: 0.55rem; color: var(--text-muted); font-weight: 600; }

/* =============================================
   STATS BAND
   ============================================= */
.stats-band {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 0; position: relative; overflow: hidden;
}
.stats-band::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-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; z-index: 1; }
.stat-pill {
  display: flex; align-items: center; gap: 18px; padding: 36px 32px;
  border-right: 1px solid var(--border); transition: var(--transition); cursor: default;
  position: relative; overflow: hidden;
}
.stat-pill:last-child { border-right: none; }
.stat-pill::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-pill:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(26,107,255,0.10); }
.stat-pill:hover::after { transform: scaleX(1); }
.stat-pill-icon {
  width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; transition: var(--transition);
  background: rgba(26,107,255,0.10); border: 1px solid rgba(26,107,255,0.22); color: var(--accent);
  position: relative; overflow: hidden;
}
.stat-pill-icon::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%); }
.stat-pill-icon.blue   { background: rgba(26,107,255,0.10); border-color: rgba(26,107,255,0.22); color: var(--accent); }
.stat-pill-icon.green  { background: rgba(0,229,160,0.10);  border-color: rgba(0,229,160,0.22);  color: var(--green); }
.stat-pill-icon.orange { background: rgba(255,158,0,0.10);  border-color: rgba(255,158,0,0.22);  color: var(--orange); }
.stat-pill:hover .stat-pill-icon          { background: var(--accent); color: var(--white); border-color: var(--accent); box-shadow: 0 0 24px rgba(26,107,255,0.45); }
.stat-pill:hover .stat-pill-icon.blue     { background: var(--accent); color: var(--white); border-color: var(--accent); box-shadow: 0 0 24px rgba(26,107,255,0.45); }
.stat-pill:hover .stat-pill-icon.green    { background: var(--green);  color: var(--bg);    border-color: var(--green); box-shadow: 0 0 24px rgba(0,229,160,0.4); }
.stat-pill:hover .stat-pill-icon.orange   { background: var(--orange); color: var(--bg);    border-color: var(--orange); box-shadow: 0 0 24px rgba(255,158,0,0.4); }
.stat-pill-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;
}
.stat-pill-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section { background: var(--bg); border-top: 1px solid var(--border); position: relative; }
.services-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(26,107,255,0.04) 0%, transparent 70%); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; z-index: 1; }
.svc-card {
  padding: 34px 26px; display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden; transform-style: preserve-3d;
  background: rgba(8,14,28,0.80); border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition);
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--accent3));
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.svc-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26,107,255,0.08) 0%, transparent 70%);
  opacity: 0; transition: opacity var(--transition); pointer-events: none;
}
.svc-card:hover { transform: translateY(-10px) rotateX(2deg); box-shadow: var(--shadow-lg), 0 0 60px rgba(26,107,255,0.10); border-color: var(--border-bright); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover::after { opacity: 1; }
.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0; transition: var(--transition); position: relative; overflow: hidden;
}
.svc-icon-wrap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%); }
.svc-icon-wrap.purple { background: rgba(26,107,255,0.12); border: 1px solid rgba(26,107,255,0.25); color: var(--accent); }
.svc-icon-wrap.blue   { background: rgba(0,212,255,0.12);  border: 1px solid rgba(0,212,255,0.25);  color: var(--cyan); }
.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.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.purple { 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.blue   { background: var(--cyan);   color: var(--bg);    border-color: var(--cyan); box-shadow: 0 0 24px rgba(0,212,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.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.75; flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.83rem; font-weight: 600; color: var(--accent); transition: gap var(--transition), color var(--transition); }
.svc-link:hover { gap: 12px; color: var(--cyan); }
.svc-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: rgba(26,107,255,0.05); line-height: 1; pointer-events: none; transition: var(--transition); }
.svc-card:hover .svc-num { color: rgba(26,107,255,0.10); }

/* =============================================
   TOOLS SECTION (ticker)
   ============================================= */
.tools-section {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0; overflow: hidden; position: relative;
}
.tools-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(26,107,255,0.04) 0%, transparent 70%); }
.tools-section .section-header { padding: 0 60px; position: relative; z-index: 1; }
.tools-ticker-wrap { overflow: hidden; position: relative; z-index: 1; }
.tools-ticker-wrap::before, .tools-ticker-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.tools-ticker-wrap::before { left: 0;  background: linear-gradient(to right, var(--bg2), transparent); }
.tools-ticker-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg2), transparent); }
.tools-ticker { display: flex; gap: 16px; animation: ticker 26s linear infinite; width: max-content; }
.tools-ticker:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tool-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(15,24,48,0.8); border: 1px solid var(--border);
  padding: 16px 26px; border-radius: 14px; white-space: nowrap; transition: var(--transition);
  backdrop-filter: blur(10px); position: relative; overflow: hidden;
}
.tool-item::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.tool-item:hover { border-color: rgba(0,212,255,0.4); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,107,255,0.15); }
.tool-item:hover::before { transform: scaleX(1); }
.tool-icon {
  width: 38px; height: 38px; border-radius: 10px;
  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); flex-shrink: 0; transition: var(--transition);
}
.tool-item:hover .tool-icon { background: var(--accent); color: var(--white); border-color: var(--accent); box-shadow: 0 0 16px rgba(26,107,255,0.4); }
.tool-item span { font-size: 0.92rem; font-weight: 600; color: var(--text-muted); transition: color var(--transition); }
.tool-item:hover span { color: var(--cyan); }

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section { background: var(--bg); border-top: 1px solid var(--border); position: relative; }
.process-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(26,107,255,0.04) 0%, transparent 70%); }
.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: 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: 30px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
  position: relative; z-index: 1;
  background: rgba(8,14,28,0.75); border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition); overflow: hidden;
}
.proc-card::after { content: ''; position: absolute; bottom: 0; right: 0; width: 70px; height: 70px; background: radial-gradient(ellipse at 100% 100%, rgba(26,107,255,0.08) 0%, transparent 70%); }
.proc-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-lg), 0 0 50px rgba(26,107,255,0.10); border-color: var(--border-bright); background: rgba(8,14,28,0.95); }
.proc-step {
  position: absolute; top: -1px; 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: 4px 11px;
  border-radius: 0 0 8px 8px; 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;
  background: rgba(26,107,255,0.10); border: 1px solid rgba(26,107,255,0.22); color: var(--accent);
  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-card:hover .proc-icon { background: var(--accent); color: var(--white); border-color: var(--accent); box-shadow: 0 0 28px rgba(26,107,255,0.45); }
.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; }

/* =============================================
   BEFORE / AFTER SHOWCASE
   ============================================= */
.showcase-section {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative;
}
.showcase-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%); }
.showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; position: relative; z-index: 1; }
.showcase-card {
  padding: 0; overflow: hidden; position: relative;
  background: rgba(8,14,28,0.80); border: 1px solid var(--border); border-radius: var(--radius);
  backdrop-filter: blur(16px); transition: var(--transition);
}
.showcase-card:hover { border-color: var(--border-bright); box-shadow: var(--shadow), 0 0 40px rgba(26,107,255,0.08); }
.showcase-label {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; padding: 5px 14px; border-radius: 50px; backdrop-filter: blur(8px);
}
.showcase-label.before { background: rgba(255,71,87,0.12); color: #ff6b7a; border: 1px solid rgba(255,71,87,0.3); }
.showcase-label.after  { background: rgba(0,229,160,0.12); color: var(--green); border: 1px solid rgba(0,229,160,0.3); }
.showcase-visual {
  padding: 50px 24px 30px; min-height: 200px;
  display: flex; flex-direction: column; gap: 10px; justify-content: center;
  background: rgba(5,8,18,0.4);
}
.showcase-visual.cluttered .sv-line { height: 9px; background: var(--surface2); border-radius: 3px; opacity: 0.9; }
.showcase-visual.cluttered .sv-line:nth-child(odd) { width: 95%; }
.showcase-visual.cluttered .sv-line:nth-child(even) { width: 70%; }
.showcase-visual.clean { gap: 16px; }
.showcase-visual.clean .sv-block { background: rgba(8,14,28,0.85); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.showcase-visual.clean .sv-line { height: 8px; border-radius: 4px; background: var(--surface2); margin-bottom: 8px; }
.showcase-visual.clean .sv-line.accent { background: linear-gradient(90deg, var(--accent), var(--cyan)); width: 40%; }
.showcase-visual.clean .sv-line.w-60 { width: 60%; }
.showcase-card-footer { padding: 20px 24px; display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--border); }
.showcase-card-footer h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--text); }
.showcase-card-footer p { font-size: 0.84rem; color: var(--text-muted); }

/* =============================================
   WHY SECTION
   ============================================= */
.why-section { background: var(--bg); border-top: 1px solid var(--border); position: relative; }
.why-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(26,107,255,0.04) 0%, transparent 70%); }
.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: 14px; }
.why-stat-card {
  padding: 28px 22px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  background: rgba(8,14,28,0.80); border: 1px solid var(--border); border-radius: var(--radius);
  backdrop-filter: blur(16px); transition: var(--transition); position: relative; overflow: hidden;
}
.why-stat-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: left; transition: transform var(--transition);
}
.why-stat-card:hover::before { transform: scaleX(1); }
.why-stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border-bright); }
.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); position: relative; overflow: hidden;
  background: rgba(26,107,255,0.10); border: 1px solid rgba(26,107,255,0.22); color: var(--accent);
}
.why-stat-icon::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%); }
.why-stat-icon.blue   { background: rgba(0,212,255,0.10); border-color: rgba(0,212,255,0.22); color: var(--cyan); }
.why-stat-icon.green  { background: rgba(0,229,160,0.10);  border-color: rgba(0,229,160,0.22);  color: var(--green); }
.why-stat-icon.orange { background: rgba(255,158,0,0.10);  border-color: rgba(255,158,0,0.22);  color: var(--orange); }
.why-stat-card:hover .why-stat-icon          { background: var(--accent); color: var(--white); border-color: var(--accent); box-shadow: 0 0 22px rgba(26,107,255,0.4); }
.why-stat-card:hover .why-stat-icon.blue     { background: var(--cyan);   color: var(--bg);    border-color: var(--cyan); box-shadow: 0 0 22px rgba(0,212,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 22px rgba(0,229,160,0.4); }
.why-stat-card:hover .why-stat-icon.orange   { background: var(--orange); color: var(--bg);    border-color: var(--orange); box-shadow: 0 0 22px 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; -webkit-text-fill-color: var(--text-muted); color: var(--text-muted); }
.why-stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.why-list { display: flex; flex-direction: column; gap: 10px; }
.why-list-item {
  display: flex; align-items: flex-start; gap: 16px; padding: 22px 24px;
  background: rgba(8,14,28,0.75); border: 1px solid var(--border); border-radius: var(--radius);
  backdrop-filter: blur(14px); transition: var(--transition); position: relative; overflow: hidden;
}
.why-list-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--cyan));
  transform: scaleY(0); transform-origin: top; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  border-radius: 0 2px 2px 0;
}
.why-list-item:hover::before { transform: scaleY(1); }
.why-list-item:hover { transform: translateX(6px); box-shadow: var(--shadow); 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); position: relative; overflow: hidden;
  background: rgba(26,107,255,0.10); border: 1px solid rgba(26,107,255,0.22); color: var(--accent);
}
.wli-icon::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%); }
.wli-icon.blue   { background: rgba(0,212,255,0.10); border-color: rgba(0,212,255,0.22); color: var(--cyan); }
.wli-icon.green  { background: rgba(0,229,160,0.10);  border-color: rgba(0,229,160,0.22);  color: var(--green); }
.wli-icon.orange { background: rgba(255,158,0,0.10);  border-color: rgba(255,158,0,0.22);  color: var(--orange); }
.why-list-item:hover .wli-icon          { 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.blue     { background: var(--cyan);   color: var(--bg);    border-color: var(--cyan); box-shadow: 0 0 18px rgba(0,212,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.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; }

/* =============================================
   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-list { display: flex; flex-direction: column; gap: 10px; max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.faq-item {
  overflow: hidden; transition: var(--transition);
  background: rgba(8,14,28,0.80); border: 1px solid var(--border); border-radius: var(--radius);
  backdrop-filter: blur(16px);
}
.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); }
.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: 110px 0; background: var(--bg); position: relative; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: -50%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(26,107,255,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 30% 60%, rgba(0,212,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 70% 40%, rgba(77,143,255,0.06) 0%, transparent 60%);
  animation: ctaAurora 8s ease-in-out infinite alternate;
}
@keyframes ctaAurora { 0% { transform: scale(1) rotate(0deg); } 100% { transform: scale(1.1) rotate(3deg); } }
.cta-orb-1 {
  position: absolute; border-radius: 50%; pointer-events: none;
  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(55px);
}
.cta-orb-2 {
  position: absolute; border-radius: 50%; pointer-events: none;
  width: 300px; height: 300px; bottom: -80px; right: 10%;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%); filter: blur(45px);
}
.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); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid::before { display: none; }
  .why-inner { grid-template-columns: 1fr 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
  .tools-section .section-header { padding: 0 40px; }
}

/* =============================================
   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.4; }
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .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%; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-pill { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-pill:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-pill:nth-last-child(-n+2) { border-bottom: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid::before { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .why-stats { 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.25; }
  .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); letter-spacing: -1px; }
  .hero-right { max-width: 360px; }
  .score-badge { width: 58px; height: 58px; top: -14px; left: -14px; }
  .cursor-badge { padding: 8px 12px; bottom: -14px; right: -10px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .showcase-visual { padding: 44px 20px 24px; }
  .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; }
  .tools-section .section-header { padding: 0 24px; }
}

/* =============================================
   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.14em; }
  .btn-glass-primary, .btn-glass-ghost { font-size: 0.85rem; padding: 12px 20px; }
  .hero-trust { flex-direction: column; gap: 10px; align-items: center; }
  .mockup-card { padding: 16px; }
  .mockup-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-pill { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-pill:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .svc-card { padding: 26px 20px; }
  .proc-card { padding: 26px 18px; }
  .tools-section .section-header { padding: 0 16px; }
}

/* =============================================
   RESPONSIVE — 375px
   ============================================= */
@media (max-width: 375px) {
  .hero-title { font-size: 1.8rem; }
  .section-heading { font-size: 1.7rem; }
  .mockup-row { grid-template-columns: 1fr; }
}

/* =============================================
   RESPONSIVE — 320px
   ============================================= */
@media (max-width: 320px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 1.6rem; }
  .section-heading { font-size: 1.55rem; }
  .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; }
}