@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

/* ============================================
   DESIGN SYSTEM — NEOVIDIA (STATIC VERSION)
   Dark / Neon / Glassmorphism / Futuristic
============================================ */

:root {
  /* Colors */
  --bg-primary:    #020818;
  --bg-secondary:  #050d1f;
  --bg-card:       rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(14, 165, 233, 0.06);

  --blue-500:  #0ea5e9;
  --blue-400:  #38bdf8;
  --blue-300:  #7dd3fc;
  --blue-600:  #0284c7;
  --blue-glow: rgba(14, 165, 233, 0.35);

  --text-primary:  #f0f9ff;
  --text-secondary:#94a3b8;
  --text-muted:    #475569;

  --border:        rgba(14, 165, 233, 0.15);
  --border-hover:  rgba(14, 165, 233, 0.45);
  --border-glass:  rgba(255, 255, 255, 0.06);

  /* Gradients */
  --grad-hero:     radial-gradient(ellipse 80% 60% at 50% -10%, rgba(14,165,233,0.18) 0%, transparent 70%);
  --grad-text:     linear-gradient(135deg, #7dd3fc 0%, #0ea5e9 50%, #0369a1 100%);
  --grad-btn:      linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  --grad-card:     linear-gradient(135deg, rgba(14,165,233,0.08) 0%, rgba(3,105,161,0.04) 100%);

  /* Shadows */
  --shadow-neon:   0 0 20px rgba(14,165,233,0.4), 0 0 60px rgba(14,165,233,0.15);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-btn:    0 0 30px rgba(14,165,233,0.5), 0 4px 15px rgba(0,0,0,0.3);

  /* Typography */
  --font:          'Almarai', sans-serif;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
}

/* ============================================ RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-family: var(--font);
  direction: rtl;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Global Background Context - Premium & Unified */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(2, 132, 199, 0.02) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 85%);
  pointer-events: none;
  z-index: -2;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ============================================ UTILITY */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 120px 0; }

section {
  position: relative;
  background-color: transparent !important;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.neon-text {
  color: var(--blue-400);
  text-shadow: 0 0 20px rgba(56,189,248,0.6);
}

.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

/* ============================================ BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--grad-btn);
  color: white;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-btn);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(14,165,233,0.65), 0 8px 25px rgba(0,0,0,0.4); }
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--blue-400);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: var(--transition);
}

.btn-ghost:hover {
  background: rgba(14,165,233,0.08);
  border-color: var(--blue-400);
  box-shadow: 0 0 20px rgba(14,165,233,0.2);
  transform: translateY(-2px);
}

/* ============================================ SECTION HEADERS */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-400);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
}

/* ============================================ BACKGROUND EFFECTS */
/* ============================================ FULL PAGE CONNECTING GLOW SYSTEM */
.fullpage-glow-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}

/* Full page section-connecting orbs */
.bg-orb-hero-right { width: 700px; height: 700px; background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, rgba(2,132,199,0.04) 60%, transparent 70%); top: -100px; right: -180px; animation: floatOrb 9s ease-in-out infinite; }
.bg-orb-hero-left { width: 500px; height: 500px; background: radial-gradient(circle, rgba(56,189,248,0.12) 0%, transparent 70%); top: 400px; left: -140px; animation: floatOrb 11s ease-in-out infinite reverse; }
.bg-orb-services { width: 600px; height: 600px; background: radial-gradient(circle, rgba(139,92,246,0.10) 0%, rgba(14,165,233,0.05) 50%, transparent 70%); top: 1100px; right: 15%; animation: floatOrb 8s ease-in-out infinite 1s; }
.bg-orb-about { width: 550px; height: 550px; background: radial-gradient(circle, rgba(14,165,233,0.14) 0%, transparent 70%); top: 1900px; left: -100px; animation: floatOrb 10s ease-in-out infinite 2s; }
.bg-orb-process { width: 650px; height: 650px; background: radial-gradient(circle, rgba(3,105,161,0.12) 0%, transparent 70%); top: 2700px; right: -150px; animation: floatOrb 12s ease-in-out infinite reverse; }
.bg-orb-portfolio { width: 600px; height: 600px; background: radial-gradient(circle, rgba(56,189,248,0.13) 0%, rgba(139,92,246,0.06) 50%, transparent 70%); top: 3700px; left: -120px; animation: floatOrb 9s ease-in-out infinite 1.5s; }
.bg-orb-testimonials { width: 550px; height: 550px; background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%); top: 4600px; right: -100px; animation: floatOrb 10s ease-in-out infinite; }
.bg-orb-contact { width: 750px; height: 750px; background: radial-gradient(circle, rgba(14,165,233,0.16) 0%, rgba(139,92,246,0.08) 50%, transparent 70%); bottom: -150px; left: 20%; animation: floatOrb 11s ease-in-out infinite reverse; }

/* Connecting vertical ambient light line */
.page-connecting-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(14, 165, 233, 0) 0%,
    rgba(14, 165, 233, 0.25) 15%,
    rgba(56, 189, 248, 0.4) 30%,
    rgba(139, 92, 246, 0.3) 50%,
    rgba(14, 165, 233, 0.4) 70%,
    rgba(56, 189, 248, 0.25) 85%,
    rgba(14, 165, 233, 0) 100%
  );
  filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.6));
  pointer-events: none;
  z-index: 0;
}
.page-connecting-line-right { right: 4%; }
.page-connecting-line-left { left: 4%; }

/* Rotating futuristic rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero-ring-1 {
  width: 550px; height: 550px;
  border: 1px solid rgba(14, 165, 233, 0.12);
  top: 300px; right: -150px;
  animation: spin-slow 35s linear infinite;
}
.hero-ring-2 {
  width: 750px; height: 750px;
  border: 1px dashed rgba(56, 189, 248, 0.08);
  top: 200px; right: -250px;
  animation: spin-slow 55s linear infinite reverse;
}
.hero-ring-3 {
  width: 480px; height: 480px;
  border: 1px stroke rgba(139, 92, 246, 0.1);
  top: 2500px; left: -100px;
  animation: spin-slow 40s linear infinite;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ============================================ ANIMATIONS */
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(14,165,233,0.3); }
  50%       { box-shadow: 0 0 40px rgba(14,165,233,0.6), 0 0 80px rgba(14,165,233,0.2); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(60px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes radar-spin {
  from { transform: rotate(20deg); }
  to   { transform: rotate(380deg); }
}

/* ============================================ SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================ NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px 0;
}

.navbar.scrolled {
  background: rgba(2, 8, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.12);
  padding: 10px 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.08);
  transition: all 0.3s;
}

.logo:hover .logo-mark {
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
  border-color: rgba(14, 165, 233, 0.6);
}

.logo-text {
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(135deg, #f0f9ff, #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #94a3b8;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  font-family: var(--font);
}

.nav-link:hover, .nav-link.active { color: #f0f9ff; }

.link-dot {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #0ea5e9;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-link:hover .link-dot, .nav-link.active .link-dot { opacity: 1; }

.nav-cta { font-size: 14px !important; padding: 10px 22px !important; }

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px; height: 2px;
  background: #94a3b8;
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}

.burger:hover span { background: #0ea5e9; }
.burger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Drawer */
.mobile-menu { display: none; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: rgba(5, 13, 31, 0.97);
  border-left: 1px solid rgba(14, 165, 233, 0.15);
  z-index: 1200;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-open .mobile-overlay { opacity: 1; pointer-events: auto; }
.mobile-menu-open .mobile-panel   { transform: translateX(0); }

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.close-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s;
}
.close-btn:hover { color: #0ea5e9; }

.mobile-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }

.mobile-link {
  width: 100%;
  padding: 14px 16px;
  text-align: right;
  font-size: 17px;
  font-weight: 600;
  color: #94a3b8;
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font);
}

.mobile-link:hover {
  color: #f0f9ff;
  background: rgba(14, 165, 233, 0.08);
}

.mobile-cta { width: 100%; justify-content: center; margin-top: auto; }

/* ============================================ HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: radial-gradient(ellipse 90% 60% at 50% -5%, rgba(14,165,233,0.14) 0%, transparent 65%);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.hero-badge,
.hero-headline,
.hero-subheadline,
.hero-ctas,
.hero-stats {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #7dd3fc;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0ea5e9;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-headline {
  font-size: clamp(26px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.25;
  color: #f0f9ff;
  letter-spacing: -0.2px;
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: clamp(15px, 1.8vw, 19px);
  color: #94a3b8;
  line-height: 1.8;
  max-width: 680px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(14,165,233,0.12);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 32px;
  position: relative;
}

.hero-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0; top: 10%;
  height: 80%; width: 1px;
  background: rgba(14,165,233,0.15);
}

.hero-stat-value {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, #7dd3fc, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

/* ============================================ SVG BACKGROUND PATHS */
.floating-paths-svg {
  width: 100%;
  height: 100%;
}

.animated-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 18s linear infinite;
}

@keyframes drawPath {
  0%   { stroke-dashoffset: 1000; opacity: 0.3; }
  50%  { stroke-dashoffset: 0;    opacity: 0.7; }
  100% { stroke-dashoffset: -1000; opacity: 0.3; }
}

/* ============================================ SERVICES SECTION */
.services-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 32px 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.service-card:hover {
  border-color: rgba(14,165,233,0.4);
  transform: translateY(-6px);
  background: rgba(14,165,233,0.05);
  box-shadow: 0 20px 60px rgba(14,165,233,0.12), 0 0 0 1px rgba(14,165,233,0.15) inset;
}

.card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.6), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover .card-glow { transform: scaleX(1); }

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  transition: all 0.3s;
  flex-shrink: 0;
}

.service-icon-wrap svg { width: 26px; height: 26px; }

.service-card:hover .service-icon-wrap {
  background: rgba(14,165,233,0.18);
  box-shadow: 0 0 20px rgba(14,165,233,0.3);
}

.service-badge {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: #7dd3fc;
  letter-spacing: 0.5px;
  width: fit-content;
  text-transform: uppercase;
}

.service-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #f0f9ff;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
  flex: 1;
}

.service-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #0ea5e9;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.service-card:hover .service-arrow { opacity: 1; transform: translateY(0); }

/* ============================================ ABOUT SECTION */
.about {
  background: linear-gradient(180deg, #020818 0%, #030d1e 100%);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content { display: flex; flex-direction: column; gap: 24px; }
.about-body { font-size: 17px; color: #64748b; line-height: 1.9; }

.pills-row { display: flex; flex-wrap: wrap; gap: 10px; }

.pill {
  padding: 7px 18px;
  background: rgba(14,165,233,0.06);
  border: 1px solid rgba(14,165,233,0.18);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #7dd3fc;
  transition: all 0.3s;
}

.pill:hover {
  background: rgba(14,165,233,0.12);
  border-color: rgba(14,165,233,0.4);
}

.stats-card {
  position: relative;
  padding: 36px;
  border-radius: 24px;
  overflow: hidden;
}

.stats-card-header {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(14,165,233,0.3);
}

.dot:first-child { background: rgba(248,113,113,0.5); }
.dot:nth-child(2) { background: rgba(251,191,36,0.5); }
.dot:nth-child(3) { background: rgba(52,211,153,0.5); }

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: rgba(14,165,233,0.04);
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 16px;
  transition: all 0.3s;
}

.about-stat-item:hover {
  background: rgba(14,165,233,0.08);
  border-color: rgba(14,165,233,0.25);
  transform: translateY(-4px);
}

.about-stat-value {
  font-size: 38px;
  font-weight: 900;
  background: linear-gradient(135deg, #7dd3fc, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

.card-decor {
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* ============================================ PROCESS SECTION */
.process {
  background: linear-gradient(180deg, #030d1e 0%, #020818 100%);
  position: relative;
  overflow: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step { position: relative; }

.connector {
  position: absolute;
  top: 52px;
  left: calc(-50% + 20px);
  width: calc(100% - 40px);
  height: 2px;
  z-index: 0;
  display: flex;
  align-items: center;
}

.connector-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(14,165,233,0.4), rgba(14,165,233,0.1));
}

.connector-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(14,165,233,0.4);
  flex-shrink: 0;
}

.step-card {
  position: relative;
  padding: 32px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  overflow: hidden;
  height: 100%;
}

.step-card:hover {
  border-color: rgba(14,165,233,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(14,165,233,0.1);
}

.step-num {
  font-size: 13px;
  font-weight: 800;
  border: 1px solid;
  border-radius: 8px;
  padding: 4px 10px;
  width: fit-content;
  letter-spacing: 1px;
}

.step-icon { font-size: 36px; line-height: 1; }

.step-title {
  font-size: 18px;
  font-weight: 800;
  color: #f0f9ff;
  line-height: 1.3;
}

.step-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.8;
}

.step-accent {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 2px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: right;
}

.step-card:hover .step-accent { transform: scaleX(1); }

/* ============================================ RADAR SECTION */
.radar-section {
  position: relative;
  width: 100%;
  padding: 160px 0;
  overflow: hidden;
  background: transparent;
}

.radar-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 50;
}

.radar-wrapper {
  position: relative;
  height: 600px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0.25;
  overflow: hidden;
}

.radar-sweep-box {
  position: absolute;
  right: 50%; top: 50%;
  z-index: 40;
  display: flex;
  height: 12px; width: 500px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  transform-origin: right center;
  animation: radar-spin 10s linear infinite;
}

.radar-sweep-line {
  position: relative;
  z-index: 40;
  height: 2px; width: 100%;
  background: linear-gradient(to right, transparent, #38bdf8, transparent);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.8);
}

.radar-circles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.radar-circle {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.radar-icons-layer {
  position: absolute;
  inset: 0;
  z-index: 50;
}

.radar-icon-item {
  position: absolute;
  transform: translateX(-50%);
  transition: all 0.7s ease-out;
}

.radar-icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.radar-icon-box {
  display: flex;
  width: 56px; height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(51, 65, 85, 0.5);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease;
}

.radar-icon-box:hover { transform: scale(1.1); }

.radar-icon-label {
  font-size: 14px;
  font-weight: 700;
  color: #cbd5e1;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.radar-center-logo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  width: 112px; height: 112px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #020818;
  border: 1px solid rgba(14, 165, 233, 0.5);
  box-shadow: 0 0 60px rgba(14, 165, 233, 0.4);
  backdrop-filter: blur(20px);
}

.radar-center-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.1);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ============================================ LAUNCH SECTION */
.launch-section {
  position: relative;
  width: 100%;
  height: 700px;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dotted-canvas-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.launch-content {
  position: relative;
  z-index: 20;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.launch-glow {
  pointer-events: none;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.15), transparent 60%);
  filter: blur(80px);
}

.launch-title {
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.25;
  color: white;
  letter-spacing: -0.5px;
}

.launch-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 720px;
  font-weight: 500;
}

.launch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  font-size: 20px;
  font-weight: 800;
  border-radius: 50px;
  background: #0ea5e9;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
  text-decoration: none;
}

.launch-btn:hover {
  background: #38bdf8;
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(56, 189, 248, 0.6);
}

/* ============================================ PORTFOLIO SECTION */
.portfolio {
  background: linear-gradient(180deg, #020818 0%, #030d1e 100%);
  position: relative;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1px solid rgba(14,165,233,0.15);
  background: transparent;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font);
}

.filter-btn:hover {
  border-color: rgba(14,165,233,0.4);
  color: #94a3b8;
  background: rgba(14,165,233,0.05);
}

.filter-btn.active {
  background: rgba(14,165,233,0.1) !important;
  border-color: rgba(14,165,233,0.4) !important;
  color: #38bdf8 !important;
  box-shadow: 0 0 20px rgba(14,165,233,0.15);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14,165,233,0.3);
  box-shadow: 0 20px 50px rgba(14,165,233,0.1);
}

.card-top {
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(14,165,233,0.08);
}

.card-icon { font-size: 48px; }

.card-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.portfolio-tag {
  padding: 3px 10px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: #7dd3fc;
}

.card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portfolio-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.portfolio-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #f0f9ff;
  line-height: 1.3;
}

.portfolio-card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

.card-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .card-accent { transform: scaleX(1); }

/* ============================================ WHY US SECTION */
.why-us {
  background: linear-gradient(180deg, #020818 0%, #030d1e 100%);
  position: relative;
}

.why-us-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-us-card {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.why-us-card:hover {
  border-color: rgba(14,165,233,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14,165,233,0.08);
}

.why-us-icon-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us-icon { font-size: 28px; }

.why-us-card-content { display: flex; flex-direction: column; gap: 10px; }

.why-us-title {
  font-size: 19px;
  font-weight: 800;
  color: #f0f9ff;
  line-height: 1.3;
}

.why-us-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
}

.bar-accent {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.why-us-card:hover .bar-accent { transform: scaleX(1); }

/* ============================================ TESTIMONIALS SECTION */
.testimonials {
  background: linear-gradient(180deg, #030d1e 0%, #020818 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  position: relative;
  padding: 32px 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.testimonial-card:hover {
  border-color: rgba(14,165,233,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(14,165,233,0.08);
}

.quote {
  font-size: 72px;
  line-height: 0.6;
  color: rgba(14,165,233,0.2);
  font-family: Georgia, serif;
  font-weight: 900;
}

.stars { display: flex; gap: 4px; }

.testimonial-text {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.8;
  flex: 1;
}

.author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(14,165,233,0.08);
}

.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.author-name { font-size: 15px; font-weight: 700; color: #f0f9ff; }
.author-role { font-size: 13px; color: #64748b; margin-top: 2px; }

/* ============================================ CTA BANNER */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #020f26 0%, #041529 50%, #020818 100%);
  border-top: 1px solid rgba(14,165,233,0.12);
  border-bottom: 1px solid rgba(14,165,233,0.12);
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-text { max-width: 580px; }

.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #f0f9ff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.cta-accent {
  background: linear-gradient(135deg, #7dd3fc, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sub {
  font-size: 18px;
  color: #64748b;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

/* ============================================ CONTACT SECTION */
.contact {
  background: linear-gradient(180deg, #020818 0%, #030d1e 100%);
  position: relative;
  overflow: hidden;
}

.contact-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.contact-card:hover {
  border-color: rgba(14,165,233,0.35);
  transform: translateY(-4px);
  background: rgba(14,165,233,0.04);
  box-shadow: 0 12px 30px rgba(14,165,233,0.08);
}

.contact-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
  transition: all 0.3s;
}

.contact-icon-wrap svg { width: 22px; height: 22px; }

.contact-card:hover .contact-icon-wrap {
  background: rgba(14,165,233,0.18);
  box-shadow: 0 0 16px rgba(14,165,233,0.25);
}

.contact-card-text { display: flex; flex-direction: column; gap: 4px; overflow: hidden; }
.contact-label { font-size: 12px; color: #64748b; font-weight: 600; }
.contact-value { font-size: 14px; color: #f0f9ff; font-weight: 700; word-break: break-word; }

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-label { font-size: 16px; color: #64748b; font-weight: 600; }
.social-links { display: flex; gap: 12px; }

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: 12px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s;
}

.social-btn:hover {
  background: rgba(14,165,233,0.15);
  border-color: rgba(14,165,233,0.4);
  color: #38bdf8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14,165,233,0.15);
}

/* ============================================ FOOTER */
.footer {
  position: relative;
  background: #020818;
  padding: 80px 0 0;
}

.footer-top-border {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 60px;
}

.footer-brand { display: flex; flex-direction: column; gap: 20px; }

.footer-logo { display: flex; align-items: center; gap: 10px; }

.footer-logo-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(14,165,233,0.3);
  background: rgba(14,165,233,0.08);
  display: flex; align-items: center; justify-content: center;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #f0f9ff, #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline { font-size: 15px; color: #475569; line-height: 1.8; max-width: 320px; }

.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-link { font-size: 14px; color: #64748b; transition: color 0.3s; }
.footer-contact-link:hover { color: #38bdf8; }

.footer-col { display: flex; flex-direction: column; gap: 20px; }
.footer-title { font-size: 15px; font-weight: 800; color: #f0f9ff; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-link  { font-size: 14px; color: #475569; transition: color 0.3s; }
.footer-link:hover { color: #38bdf8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 14px; color: #334155; }
.footer-made { font-size: 14px; color: #334155; }

/* ============================================ RESPONSIVE RULES */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger       { display: flex; }
  .mobile-menu   { display: block; }
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .stats-card    { order: -1; }
  .timeline      { grid-template-columns: repeat(2, 1fr); }
  .connector     { display: none; }
  .cta-inner     { flex-direction: column; text-align: center; }
  .cta-text      { max-width: 100%; }
  .cta-actions   { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand  { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section-padding  { padding: 70px 0; }
  .section-subtitle { font-size: 16px; }
  .btn-primary, .btn-ghost { padding: 12px 24px; font-size: 15px; }
  .hero-content { align-items: center; text-align: center; }
  .hero-headline { font-size: clamp(32px, 8vw, 52px); }
  .hero-subheadline { text-align: center; }
  .hero-stats { gap: 16px; padding: 20px; justify-content: center; }
  .hero-stat-item { padding: 0 20px; }
  .hero-stat-value { font-size: 26px; }
  .why-us-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
