:root {
    --bg: #03060f;
    --bg2: #060d1e;
    --cyan: #00e5ff;
    --cyan2: #00bcd4;
    --orange: #ff6b35;
    --orange2: #ff9a5e;
    --white: #f0f4ff;
    --muted: #6b7a99;
    --card: rgba(0,229,255,0.04);
    --border: rgba(0,229,255,0.12);
    --glow: 0 0 40px rgba(0,229,255,0.25);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Exo 2', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor-dot {
    position: fixed; width: 8px; height: 8px;
    background: var(--cyan); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid var(--cyan);
    border-radius: 50%; pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
    opacity: 0.6;
  }
  body:hover .cursor-dot { transform: translate(-50%, -50%) scale(1); }

  /* CANVAS */
  #starfield {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 5%;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
  }
  nav.scrolled {
    background: rgba(3,6,15,0.9);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
  }
  .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem; font-weight: 900;
    letter-spacing: 0.12em;
    text-decoration: none; color: var(--white);
    display: flex; align-items: center; gap: 0.5rem;
  }
  .logo span.x { color: var(--cyan); }
  .logo-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--cyan), var(--orange));
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: logoSpin 8s linear infinite;
  }
  @keyframes logoSpin {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
  }
  .nav-links {
    display: flex; gap: 2rem; list-style: none;
  }
  .nav-links a {
    text-decoration: none; color: var(--muted);
    font-size: 0.85rem; letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--cyan);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--cyan); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan) !important;
    padding: 0.5rem 1.4rem !important;
    border-radius: 2px;
    transition: all 0.3s ease !important;
  }
  .nav-cta:hover {
    background: var(--cyan) !important;
    color: var(--bg) !important;
    box-shadow: var(--glow) !important;
  }
  .nav-cta::after { display: none !important; }

  /* HERO */
  .hero {
    position: relative; z-index: 1;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 0 5%; padding-top: 80px;
    overflow: hidden;
  }
  .hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
    animation: gridPulse 4s ease-in-out infinite;
  }
  @keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
  }
  .hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,229,255,0.15), transparent 70%);
    top: -100px; right: 5%;
    animation-delay: 0s;
  }
  .hero-orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255,107,53,0.12), transparent 70%);
    bottom: 0; left: 15%;
    animation-delay: -3s;
  }
  @keyframes orbFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 800px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(0,229,255,0.08);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--cyan);
    margin-bottom: 1.5rem;
    animation: badgePulse 2s ease-in-out infinite;
  }
  @keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,229,255,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(0,229,255,0); }
  }
  .badge-dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: dotBlink 1s ease-in-out infinite;
  }
  @keyframes dotBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

  h1.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
  }
  .hero-title .line-1 { display: block; opacity: 0; transform: translateY(30px); animation: slideUp 0.8s 0.3s forwards; }
  .hero-title .line-2 { display: block; opacity: 0; transform: translateY(30px); animation: slideUp 0.8s 0.5s forwards; }
  .hero-title .line-3 { display: block; opacity: 0; transform: translateY(30px); animation: slideUp 0.8s 0.7s forwards; }
  .hero-title .accent { color: var(--cyan); }
  .hero-title .accent-o { color: var(--orange); }
  @keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-sub {
    font-size: 1.1rem; color: var(--muted); line-height: 1.7;
    max-width: 540px;
    opacity: 0; transform: translateY(20px);
    animation: slideUp 0.8s 0.9s forwards;
    margin-bottom: 2.5rem;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: slideUp 0.8s 1.1s forwards;
  }
  .btn-primary {
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, var(--cyan), var(--cyan2));
    color: #000; font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    border: none; border-radius: 2px; cursor: pointer;
    position: relative; overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none; display: inline-block;
  }
  .btn-primary::before {
    content: ''; position: absolute;
    top: -50%; left: -60%; width: 30%; height: 200%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
  }
  .btn-primary:hover::before { left: 130%; }
  .btn-primary:hover { box-shadow: 0 0 30px rgba(0,229,255,0.5); transform: translateY(-2px); }
  .btn-secondary {
    padding: 0.9rem 2.2rem;
    background: transparent;
    color: var(--white); font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none; display: inline-block;
    letter-spacing: 0.05em;
  }
  .btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

  /* FLOATING STATS */
  .hero-stats {
    position: absolute; right: 5%; top: 50%;
    transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 1rem;
    opacity: 0; animation: fadeInRight 1s 1.5s forwards;
  }
  @keyframes fadeInRight {
    to { opacity: 1; }
  }
  .stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.2rem 1.6rem;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
    animation: statFloat 4s ease-in-out infinite;
  }
  .stat-card:nth-child(2) { animation-delay: -1.5s; }
  .stat-card:nth-child(3) { animation-delay: -3s; }
  @keyframes statFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .stat-card:hover { border-color: var(--cyan); box-shadow: var(--glow); }
  .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem; font-weight: 900;
    color: var(--cyan); display: block;
  }
  .stat-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

  /* TICKER */
  .ticker {
    position: relative; z-index: 1;
    background: rgba(0,229,255,0.05);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
    overflow: hidden;
  }
  .ticker-track {
    display: flex; gap: 3rem;
    animation: tickerScroll 25s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  @keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .ticker-item {
    display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.8rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted);
  }
  .ticker-item .dot { color: var(--cyan); font-size: 1.2rem; }

  /* SECTION BASE */
  section { position: relative; z-index: 1; }
  .section-label {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.72rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--cyan);
    margin-bottom: 1rem;
  }
  .section-label::before {
    content: ''; display: block;
    width: 24px; height: 1px; background: var(--cyan);
  }
  h2.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900; line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
  }
  .section-desc { color: var(--muted); line-height: 1.7; max-width: 500px; }

  /* SERVICES */
  .services {
    padding: 8rem 5%;
    background: linear-gradient(180deg, transparent, rgba(0,229,255,0.02) 50%, transparent);
  }
  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1.5px solid var(--border);
  }
  .service-card {
    background: var(--bg);
    padding: 2.5rem 2rem;
    position: relative; overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
  }
  .service-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s ease;
  }
  .service-card::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(0,229,255,0.06), transparent 60%);
    opacity: 0; transition: opacity 0.3s;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover::after { opacity: 1; }
  .service-card:hover { background: rgba(0,229,255,0.03); transform: translateY(-4px); }
  .service-icon {
    width: 52px; height: 52px;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
    transition: all 0.3s;
    background: rgba(0,229,255,0.04);
  }
  .service-card:hover .service-icon {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0,229,255,0.2);
    background: rgba(0,229,255,0.08);
  }
  .service-number {
    position: absolute; top: 1.5rem; right: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem; font-weight: 700;
    color: rgba(0,229,255,0.2); letter-spacing: 0.1em;
  }
  .service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    letter-spacing: 0.05em; margin-bottom: 0.8rem;
    position: relative; z-index: 1;
  }
  .service-card p {
    font-size: 0.9rem; color: var(--muted); line-height: 1.65;
    position: relative; z-index: 1;
  }
  .service-tags {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    margin-top: 1.2rem; position: relative; z-index: 1;
  }
  .tag {
    font-size: 0.68rem; padding: 0.2rem 0.6rem;
    border: 1px solid rgba(0,229,255,0.15);
    color: rgba(0,229,255,0.6);
    border-radius: 2px; letter-spacing: 0.08em; text-transform: uppercase;
  }

  /* HOW IT WORKS */
  .process {
    padding: 8rem 5%;
  }
  .process-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }
  .process-steps { display: flex; flex-direction: column; gap: 0; }
  .process-step {
    display: flex; gap: 1.5rem;
    padding: 2rem 0;
    border-left: 1px solid var(--border);
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s;
    opacity: 0.5;
  }
  .process-step.active, .process-step:hover {
    opacity: 1;
    border-left-color: var(--cyan);
  }
  .process-step::before {
    content: ''; position: absolute;
    left: -5px; top: 2rem;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.3s;
  }
  .process-step.active::before, .process-step:hover::before {
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
  }
  .step-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem; color: var(--cyan);
    font-weight: 700; min-width: 24px;
    padding-top: 0.2rem;
  }
  .step-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem; font-weight: 700;
    margin-bottom: 0.5rem; letter-spacing: 0.05em;
  }
  .step-content p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

  /* ORBIT VISUAL */
  .orbit-visual {
    position: relative; width: 100%; padding-bottom: 100%;
  }
  .orbit-center {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan2));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 50px rgba(0,229,255,0.4);
    z-index: 3;
    animation: centerPulse 2s ease-in-out infinite;
  }
  @keyframes centerPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(0,229,255,0.4); }
    50% { box-shadow: 0 0 70px rgba(0,229,255,0.7); }
  }
  .orbit-ring {
    position: absolute; top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid var(--border);
    transform-origin: center;
  }
  .orbit-ring-1 {
    width: 160px; height: 160px;
    margin: -80px 0 0 -80px;
    animation: orbit1 6s linear infinite;
    border-color: rgba(0,229,255,0.2);
  }
  .orbit-ring-2 {
    width: 260px; height: 260px;
    margin: -130px 0 0 -130px;
    animation: orbit2 10s linear infinite reverse;
    border-color: rgba(0,229,255,0.12);
  }
  .orbit-ring-3 {
    width: 380px; height: 380px;
    margin: -190px 0 0 -190px;
    animation: orbit1 16s linear infinite;
    border-color: rgba(255,107,53,0.1);
  }
  @keyframes orbit1 { to { transform: rotate(360deg); } }
  @keyframes orbit2 { to { transform: rotate(-360deg); } }
  .orbit-dot {
    position: absolute; border-radius: 50%;
    background: var(--cyan);
  }
  .orbit-dot-1 { width: 10px; height: 10px; top: -5px; left: 50%; margin-left: -5px; box-shadow: 0 0 10px var(--cyan); }
  .orbit-dot-2 { width: 8px; height: 8px; top: -4px; left: 50%; margin-left: -4px; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
  .orbit-dot-3 { width: 12px; height: 12px; top: -6px; left: 50%; margin-left: -6px; box-shadow: 0 0 14px var(--cyan); }
  .orbit-node {
    position: absolute; top: 30%; right: -10%;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 4px; padding: 0.6rem 1rem;
    font-size: 0.72rem; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--cyan);
    white-space: nowrap;
    animation: nodeFloat 5s ease-in-out infinite;
  }
  .orbit-node:nth-child(5) { top: auto; bottom: 20%; right: -5%; animation-delay: -2s; color: var(--orange); border-color: rgba(255,107,53,0.3); }
  .orbit-node:nth-child(6) { right: auto; left: -10%; top: 60%; animation-delay: -4s; }
  @keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* METRICS BAND */
  .metrics {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(0,229,255,0.03), rgba(255,107,53,0.02));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  .metric-item {
    text-align: center; padding: 2rem;
    position: relative;
  }
  .metric-item::after {
    content: ''; position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px; background: var(--border);
  }
  .metric-item:last-child::after { display: none; }
  .metric-value {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900; display: block;
    background: linear-gradient(135deg, var(--cyan), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }
  .metric-suffix {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--cyan), var(--orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .metric-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.5rem; }
  .metric-sub { font-size: 0.72rem; color: rgba(0,229,255,0.4); margin-top: 0.2rem; }

  /* FEATURES */
  .features {
    padding: 8rem 5%;
  }
  .features-inner {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 5rem; align-items: center;
  }
  .feature-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
  .feature-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: default;
  }
  .feature-item:hover {
    border-color: var(--border);
    background: var(--card);
    transform: translateX(8px);
  }
  .feature-check {
    width: 24px; height: 24px; min-width: 24px;
    background: rgba(0,229,255,0.1);
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: var(--cyan);
    margin-top: 0.1rem;
  }
  .feature-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.05em; margin-bottom: 0.3rem;
  }
  .feature-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
  .feature-visual {
    position: relative;
  }
  .dashboard-mockup {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  }
  .dash-topbar {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border);
    background: rgba(0,229,255,0.03);
  }
  .dash-dot { width: 8px; height: 8px; border-radius: 50%; }
  .dash-dot-r { background: #ff5f57; }
  .dash-dot-y { background: #febc2e; }
  .dash-dot-g { background: #28c840; }
  .dash-body { padding: 1.2rem; }
  .dash-row { display: flex; gap: 1rem; margin-bottom: 1rem; }
  .dash-card {
    flex: 1; background: rgba(0,229,255,0.04);
    border: 1px solid var(--border);
    border-radius: 4px; padding: 0.9rem;
  }
  .dash-card-label { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
  .dash-card-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem; font-weight: 700; color: var(--cyan);
  }
  .dash-card-change { font-size: 0.68rem; color: #00e676; margin-top: 0.2rem; }
  .dash-chart {
    background: rgba(0,229,255,0.03);
    border: 1px solid var(--border);
    border-radius: 4px; padding: 0.9rem;
    margin-bottom: 1rem;
  }
  .chart-bars {
    display: flex; align-items: flex-end;
    gap: 0.4rem; height: 80px;
  }
  .bar {
    flex: 1; background: linear-gradient(180deg, var(--cyan), var(--cyan2));
    border-radius: 2px 2px 0 0;
    animation: barGrow 1.5s ease-out forwards;
    transform-origin: bottom;
    opacity: 0.7;
  }
  .bar:nth-child(odd) { background: linear-gradient(180deg, var(--orange), var(--orange2)); }
  @keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
  }
  .dash-activity { display: flex; flex-direction: column; gap: 0.4rem; }
  .activity-row {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0,229,255,0.05);
    font-size: 0.72rem; color: var(--muted);
  }
  .activity-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); min-width: 6px; }
  .activity-dot.orange { background: var(--orange); }

  /* TESTIMONIALS */
  .testimonials {
    padding: 8rem 5%;
    background: linear-gradient(180deg, transparent, rgba(255,107,53,0.02) 50%, transparent);
  }
  .testimonials-header { text-align: center; margin-bottom: 4rem; }
  .testimonials-header .section-label { justify-content: center; }
  .testimonials-header .section-label::before { display: none; }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px; padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
  }
  .testi-card:hover {
    border-color: rgba(255,107,53,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  .testi-stars { color: var(--orange); letter-spacing: 0.1em; margin-bottom: 1rem; font-size: 0.9rem; }
  .testi-text { font-size: 0.92rem; line-height: 1.7; color: rgba(240,244,255,0.8); margin-bottom: 1.5rem; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 0.8rem; }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--orange));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Orbitron', sans-serif; font-size: 0.8rem; font-weight: 700; color: #000;
  }
  .testi-name { font-weight: 600; font-size: 0.88rem; }
  .testi-role { font-size: 0.75rem; color: var(--muted); }
  .testi-quote {
    position: absolute; top: 1.5rem; right: 1.5rem;
    font-size: 3rem; color: rgba(0,229,255,0.08);
    font-family: serif; line-height: 1;
  }

  /* CTA */
  .cta-section {
    padding: 8rem 5%;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,229,255,0.06), transparent 70%);
  }
  .cta-ring-1, .cta-ring-2, .cta-ring-3 {
    position: absolute; top: 50%; left: 50%;
    border: 1px solid rgba(0,229,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cta-ring-1 { width: 300px; height: 300px; animation: ctaRing 4s linear infinite; }
  .cta-ring-2 { width: 500px; height: 500px; animation: ctaRing 6s linear infinite reverse; border-color: rgba(255,107,53,0.08); }
  .cta-ring-3 { width: 700px; height: 700px; animation: ctaRing 8s linear infinite; }
  @keyframes ctaRing { to { transform: translate(-50%, -50%) rotate(360deg); } }
  .cta-content { position: relative; z-index: 1; }
  .cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900; margin-bottom: 1rem;
    line-height: 1.1;
  }
  .cta-section p { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* FOOTER */
  footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3rem 5%;
    position: relative; z-index: 1;
  }
  .footer-inner {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem;
  }
  .footer-copy { font-size: 0.8rem; color: var(--muted); }
  .footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; flex: 1; }
  .footer-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--cyan); }
  .footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.3rem; }
  .footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem; color: rgba(0,229,255,0.3);
    letter-spacing: 0.15em;
  }

  /* REVEAL ANIMATION */
  .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; }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
    padding: 4px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-stats { display: none; }
    .process-inner { grid-template-columns: 1fr; }
    .orbit-visual { display: none; }
    .features-inner { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .hero-title { font-size: 2rem; }
    .services-header { flex-direction: column; align-items: flex-start; }
    .hamburger { display: flex; }
    .nav-links {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0; left: 0; right: 0;
      background: rgba(3,6,15,0.97);
      backdrop-filter: blur(20px);
      padding: 90px 2rem 2rem;
      gap: 0;
      transform: translateY(-100%);
      transition: transform 0.35s ease;
      z-index: 99;
      border-bottom: 1px solid var(--border);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links li { border-bottom: 1px solid var(--border); }
    .nav-links a { display: block; padding: 1rem 0; font-size: 1rem; }
    .nav-links li:last-child { border-bottom: none; margin-top: 1rem; }
    .nav-cta { text-align: center; }
  }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 2px; }
/* FOOTER EMAIL */
.footer-email { margin: 0.5rem 0; }
.footer-email a { color: var(--cyan); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.05em; }
.footer-email a:hover { text-decoration: underline; }
