/* ================================================
   VEXT TI — Premium Design System
   ================================================ */

:root {
  --void: #000008;
  --deep: #04040e;
  --surface: #080816;
  --card: #0b0b1c;
  --blue: #00d4ff;
  --blue2: #0055ff;
  --white: #eef4ff;
  --text: #b8cce0;
  --muted: #4a6278;
  --border: rgba(0, 212, 255, 0.1);
  --border-hover: rgba(0, 212, 255, 0.3);
  --glow: rgba(0, 212, 255, 0.18);
  --gradient: linear-gradient(135deg, #00d4ff, #0055ff);
  --gradient-subtle: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,85,255,0.03));
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--void);
  color: var(--text);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ================================================
   LOADER
   ================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--white);
}
.loader-logo span { color: var(--blue); }
.loader-bar {
  width: 180px;
  height: 2px;
  background: rgba(0,212,255,0.1);
  border-radius: 100px;
  margin: 1.5rem auto 1rem;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: var(--gradient);
  border-radius: 100px;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.loader-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ================================================
   CUSTOM CURSOR
   ================================================ */
.cursor, .cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
}
.cursor {
  width: 8px;
  height: 8px;
  background: var(--blue);
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform 0.1s, width 0.2s, height 0.2s;
}
.cursor.hover { transform: translate(-50%, -50%) scale(0); }
.cursor-follower {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 212, 255, 0.45);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-follower.hover {
  width: 50px;
  height: 50px;
  border-color: var(--blue);
}

/* ================================================
   NAVIGATION
   ================================================ */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 1.6rem 5%;
  transition: background 0.4s, padding 0.3s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(0, 0, 8, 0.94);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  padding: 1rem 5%;
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-vx { color: var(--white); }
.logo-ti { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--white); outline: none; }
.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 0 22px rgba(0,212,255,0.22);
  transition: box-shadow 0.3s, transform 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { box-shadow: 0 0 38px rgba(0,212,255,0.48) !important; transform: translateY(-2px) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO
   ================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--void);
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: rgba(0,212,255,0.05);
  opacity: 0;
  transform: translateY(16px);
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  flex-shrink: 0;
  animation: badgePulse 2s ease infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,255,136,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(0,255,136,0); }
}
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.title-line { display: block; overflow: hidden; }
.title-word { display: block; transform: translateY(105%); }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
  opacity: 0;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  49% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gradient);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 0.85rem 1.9rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(0,212,255,0.28);
  transition: box-shadow 0.3s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.14);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { box-shadow: 0 0 52px rgba(0,212,255,0.52); transform: translateY(-3px); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.btn-primary.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  padding: 0.85rem 1.7rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s, transform 0.25s, color 0.2s;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  background: rgba(0,212,255,0.06);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-ghost:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-ghost.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ================================================
   MARQUEE
   ================================================ */
.marquee-wrap {
  background: rgba(4,4,14,0.8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--void), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--void), transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 1rem 1.8rem;
  white-space: nowrap;
}
.marquee-inner span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.marquee-inner span:hover { color: var(--blue); }
.marquee-inner .sep { color: var(--border); font-size: 0.9rem; }

/* ================================================
   STATS
   ================================================ */
#stats {
  background: rgba(4,4,14,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
}
.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 0 repeat(3, 1fr);
  padding: 0 5%;
  align-items: center;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  justify-self: center;
}
.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.stat-suf {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 700;
  color: var(--blue);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ================================================
   LAYOUT
   ================================================ */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

#services, #about, #process, #testimonials {
  padding: 8rem 0;
}

.section-header { max-width: 640px; margin-bottom: 4rem; }
.section-header.centered { max-width: 640px; margin: 0 auto 4rem; text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ================================================
   SERVICES
   ================================================ */
#services { background: var(--deep); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 32px 64px rgba(0,0,0,0.55), 0 0 40px rgba(0,212,255,0.05);
}
.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0,212,255,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: inherit;
}
.service-card:hover .card-glow { opacity: 1; }
.service-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(0,212,255,0.25);
  letter-spacing: 0.2em;
  margin-bottom: 1.4rem;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,212,255,0.07);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1.4rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(0,212,255,0.14);
  box-shadow: 0 0 22px rgba(0,212,255,0.22);
}
.service-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
  letter-spacing: 0.01em;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.card-link:hover { gap: 0.7rem; }
.card-link:focus-visible { outline: 2px solid var(--blue); border-radius: 3px; }

/* ================================================
   MATIZOFLOW
   ================================================ */
#matizoflow {
  background: var(--void);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
#matizoflow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0,85,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.mf-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.mf-header-left .section-title { margin-top: 0.4rem; }
.mf-header-left strong { color: var(--blue); font-weight: 600; }
.mf-cta { margin-top: 2rem; }
.mf-badge-wrap { text-align: right; }
.mf-availability {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #00ff88;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,255,136,0.04);
  margin-bottom: 0.8rem;
}
.mf-tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  max-width: 220px;
  line-height: 1.6;
}
.mf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.mf-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.mf-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.mf-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.mf-card:hover::before { transform: scaleX(1); }
.mf-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(0,85,255,0.1);
  border: 1px solid rgba(0,85,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue2);
  margin-bottom: 1.2rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.mf-card:hover .mf-card-icon {
  background: rgba(0,85,255,0.18);
  box-shadow: 0 0 20px rgba(0,85,255,0.2);
}
.mf-card h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.55rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.mf-card p {
  font-size: 0.845rem;
  color: var(--muted);
  line-height: 1.78;
}

@media (max-width: 1100px) {
  .mf-grid { grid-template-columns: repeat(2, 1fr); }
  .mf-header { grid-template-columns: 1fr; }
  .mf-badge-wrap { text-align: left; }
  .mf-tagline { max-width: 100%; }
}
@media (max-width: 768px) {
  .mf-grid { grid-template-columns: 1fr; }
  #matizoflow { padding: 5rem 0; }
}

/* ================================================
   ABOUT
   ================================================ */
#about { background: var(--void); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-left .section-title { margin-top: 0.5rem; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(0,212,255,0.07);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.about-feature:hover .feature-icon {
  background: rgba(0,212,255,0.14);
  box-shadow: 0 0 18px rgba(0,212,255,0.2);
}
.about-feature h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}
.about-feature p {
  font-size: 0.855rem;
  color: var(--muted);
  line-height: 1.75;
}

/* VISUAL TERMINAL CARD */
.about-visual { perspective: 1200px; }
.visual-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 48px 100px rgba(0,0,0,0.65), 0 0 60px rgba(0,212,255,0.04);
  transform: perspective(1200px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-visual:hover .visual-card {
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.visual-header {
  background: rgba(0,212,255,0.03);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.v-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.v-green { background: #00ff88; box-shadow: 0 0 6px rgba(0,255,136,0.5); }
.v-yellow { background: #ffc600; }
.v-red { background: #ff3b3b; }
.visual-header span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-left: 0.4rem;
}
.visual-metrics {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  color: var(--text);
  letter-spacing: 0.04em;
}
.status-ok { color: #00ff88; letter-spacing: 0.06em; }
.visual-footer { padding: 0 1.5rem 1.5rem; }
.uptime-bar {
  height: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}
.uptime-fill {
  height: 100%;
  width: 0;
  background: var(--gradient);
  border-radius: 100px;
  transition: width 2s 0.3s ease;
}
.uptime-fill.go { width: 99.9%; }
.uptime-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.63rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ================================================
   PROCESS
   ================================================ */
#process { background: var(--deep); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2), rgba(0,85,255,0.2), transparent);
  z-index: 0;
}
.process-step {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}
.step-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--void);
  background: var(--gradient);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 26px rgba(0,212,255,0.22);
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover .step-num {
  transform: scale(1.12);
  box-shadow: 0 0 46px rgba(0,212,255,0.46);
}
.process-step h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
  letter-spacing: 0.03em;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
#testimonials { background: var(--void); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.t-stars {
  color: var(--blue);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.testimonial-card > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  margin-top: 1.2rem;
}
.t-avatar {
  width: 42px;
  height: 42px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.t-author strong {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
  letter-spacing: 0.03em;
}
.t-author span { font-size: 0.75rem; color: var(--muted); }

/* ================================================
   CTA
   ================================================ */
#contact {
  position: relative;
  padding: 10rem 5%;
  text-align: center;
  overflow: hidden;
  background: var(--deep);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0,85,255,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(0,212,255,0.05) 0%, transparent 60%);
  animation: ctaPulse 6s ease infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 1rem 0 1.5rem;
}
#contact > .cta-content > p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--void);
  border-top: 1px solid var(--border);
  padding: 3rem 5%;
  text-align: center;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top { margin-bottom: 1.5rem; }
.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.footer-tagline { font-size: 0.85rem; color: var(--muted); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue); }
.footer-links a:focus-visible { outline: 2px solid var(--blue); border-radius: 2px; }
.footer-copy {
  font-size: 0.73rem;
  color: rgba(74,98,120,0.55);
  line-height: 1.9;
}

/* ================================================
   REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .cursor, .cursor-follower { display: none; }
  .marquee-track { animation: none; }
}

/* ================================================
   RESPONSIVE — Tablet
   ================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
  .stat-divider { display: none; }
}

/* ================================================
   RESPONSIVE — Mobile
   ================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 270px;
    background: rgba(4,4,14,0.98);
    backdrop-filter: blur(24px);
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    border-left: 1px solid var(--border);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-cta { width: 100%; justify-content: center; text-align: center; }

  /* Hero */
  .hero-title { font-size: clamp(2.6rem, 8vw, 3.5rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-ghost { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 1.8rem 1rem; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* About */
  .about-visual { display: none; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; }
  .process-step { text-align: left; display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .step-num { margin: 0; flex-shrink: 0; width: 46px; height: 46px; font-size: 0.65rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* CTA */
  #contact { padding: 6rem 5%; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn-primary, .cta-btns .btn-ghost { width: 100%; justify-content: center; }

  /* Hide custom cursor */
  .cursor, .cursor-follower { display: none; }

  /* Sections */
  #services, #about, #process, #testimonials { padding: 5rem 0; }
}
