
    :root {
      --navy-600: #050d1a;
      --navy-500: #071020;
      --navy-400: #0a1628;
      --navy-300: #0f2040;
      --navy-200: #142550;
      --navy-100: #1a2f60;
      --cyan-400: #22d3ee;
      --cyan-300: #67e8f9;
      --cyan-500: #06b6d4;
      --gray-300: #d1d5db;
      --gray-400: #9ca3af;
      --gray-500: #6b7280;
      --emerald-400: #34d399;
      --blue-400: #60a5fa;
      --orange-400: #fb923c;
      --purple-400: #c084fc;
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--navy-500);
      color: white;
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      width: 100%;
    }

    /* Noise overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    .text-gradient {
      background: linear-gradient(135deg, var(--cyan-400), var(--cyan-300));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .shadow-glow { box-shadow: 0 0 20px rgba(34,211,238,0.15), 0 4px 20px rgba(0,0,0,0.4); }
    .shadow-glow-strong { box-shadow: 0 0 40px rgba(34,211,238,0.3), 0 8px 32px rgba(0,0,0,0.5); }

    /* Grid background */
    .bg-grid {
      background-image:
        linear-gradient(rgba(34,211,238,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,211,238,0.05) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    /* ─── NAV ─── */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(7,16,32,0.96);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(34,211,238,0.15);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      padding: 0 48px;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo-text {
      font-family: 'Orbitron', monospace;
      font-weight: 700;
      font-size: 1.05rem;
      color: #fff;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    .nav-links a {
      color: var(--gray-300);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .nav-links a:hover { color: var(--cyan-400); }

    .nav-cta { flex-shrink: 0; }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      color: white;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      background: rgba(5,13,26,0.99);
      border-top: 1px solid rgba(34,211,238,0.1);
      padding-bottom: 8px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: var(--gray-300);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      padding: 15px 24px;
      border-bottom: 1px solid rgba(34,211,238,0.06);
      transition: color 0.2s, background 0.2s;
    }
    .mobile-menu a:hover { color: var(--cyan-400); background: rgba(34,211,238,0.04); }
    .mobile-cta-wrap { padding: 16px 24px 8px; }
    .mobile-cta-btn {
      display: block;
      text-align: center;
      background: var(--cyan-400);
      color: var(--navy-500);
      font-weight: 600;
      font-size: 0.9rem;
      border-radius: 8px;
      padding: 12px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .mobile-cta-btn:hover { background: var(--cyan-300); }

    .btn-primary {
      background: var(--cyan-400);
      color: var(--navy-500);
      border: none;
      padding: 10px 24px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.875rem;
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .btn-primary:hover {
      background: var(--cyan-300);
      box-shadow: 0 0 24px rgba(34,211,238,0.4);
    }

    .btn-outline {
      background: rgba(20,37,80,0.6);
      color: white;
      border: 1px solid rgba(34,211,238,0.2);
      padding: 10px 24px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.875rem;
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      width: 100%;
      justify-content: center;
    }

    .btn-outline:hover {
      border-color: rgba(34,211,238,0.4);
      background: rgba(20,37,80,0.9);
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding-top: 72px;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(34,211,238,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,211,238,0.04) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .hero-perspective {
      position: absolute;
      bottom: 0; left: -50%; right: -50%;
      height: 50vh;
      background-image:
        linear-gradient(rgba(34,211,238,0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,211,238,0.12) 1px, transparent 1px);
      background-size: 40px 40px;
      transform: perspective(1000px) rotateX(65deg);
      transform-origin: center bottom;
      opacity: 0.15;
    }

    /* Corner brackets */
    .corner-bracket {
      position: absolute;
      width: 24px; height: 24px;
      pointer-events: none;
      z-index: 5;
    }
    .corner-bracket-tl { top: 16px; left: 16px; border-top: 2px solid rgba(34,211,238,0.4); border-left: 2px solid rgba(34,211,238,0.4); }
    .corner-bracket-tr { top: 16px; right: 16px; border-top: 2px solid rgba(34,211,238,0.4); border-right: 2px solid rgba(34,211,238,0.4); }
    .corner-bracket-bl { bottom: 16px; left: 16px; border-bottom: 2px solid rgba(34,211,238,0.4); border-left: 2px solid rgba(34,211,238,0.4); }
    .corner-bracket-br { bottom: 16px; right: 16px; border-bottom: 2px solid rgba(34,211,238,0.4); border-right: 2px solid rgba(34,211,238,0.4); }

    .hero-content {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 1200px;
      padding: 40px 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .hero-title {
      font-family: 'Orbitron', monospace;
      font-weight: 700;
      font-size: clamp(32px, 6vw, 72px);
      line-height: 1.1;
      animation: fadeSlideDown 0.8s ease forwards;
    }

    .hero-sub {
      margin-top: 24px;
      color: var(--gray-300);
      font-size: clamp(16px, 2vw, 20px);
      max-width: 600px;
      animation: fadeUp 0.8s ease 0.2s both;
    }

    .hero-dashboard {
      margin-top: 48px;
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(34,211,238,0.2);
      box-shadow: 0 0 40px rgba(34,211,238,0.15), 0 20px 60px rgba(0,0,0,0.5);
      position: relative;
      animation: fadeUp 0.8s ease 0.3s both;
      background: var(--navy-400);
    }

    .hero-dashboard-inner {
      width: 100%;
      aspect-ratio: 16/7;
      background: linear-gradient(135deg, var(--navy-400) 0%, var(--navy-300) 50%, var(--navy-400) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    img { width:100%; }
    
    /*@media( max-width: 768px){

    }*/

    .hero-dashboard-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(34,211,238,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(34,211,238,0.06) 1px, transparent 1px);
      background-size: 32px 32px;
    }

    .dashboard-mockup {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 16px;
      padding: 24px;
      width: 100%;
    }

    .dash-card {
      background: rgba(7,16,32,0.8);
      border: 1px solid rgba(34,211,238,0.15);
      border-radius: 10px;
      padding: 16px;
      flex: 1;
      backdrop-filter: blur(8px);
    }

    .dash-card-label {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.65rem;
      color: var(--gray-500);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 8px;
    }

    .dash-card-value {
      font-family: 'Orbitron', monospace;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--cyan-400);
    }

    .dash-bar-row {
      display: flex;
      gap: 4px;
      margin-top: 10px;
      align-items: flex-end;
      height: 40px;
    }

    .dash-bar {
      flex: 1;
      background: rgba(34,211,238,0.3);
      border-radius: 3px 3px 0 0;
      animation: growBar 1s ease-out forwards;
    }

    @keyframes growBar {
      from { transform: scaleY(0); transform-origin: bottom; }
      to { transform: scaleY(1); transform-origin: bottom; }
    }

    .hero-dashboard::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7,16,32,0.5) 0%, transparent 50%);
    }

    .hero-cta {
      margin-top: 40px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeUp 0.8s ease 0.4s both;
    }

    .btn-ghost {
      background: none;
      border: none;
      color: var(--cyan-400);
      font-weight: 500;
      font-size: 0.9rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
      padding: 10px 0;
    }

    .btn-ghost:hover { color: var(--cyan-300); }

    /* ─── SECTIONS ─── */
    section {
      position: relative;
      padding: 80px 48px;
    }

    .section-grid {
      background-image: linear-gradient(rgba(34,211,238,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(34,211,238,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(34,211,238,0.1);
      border: 1px solid rgba(34,211,238,0.3);
      border-radius: 100px;
      margin-bottom: 24px;
    }

    .section-badge span {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.7rem;
      color: var(--cyan-400);
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }

    .section-title {
      font-family: 'Orbitron', monospace;
      font-weight: 700;
      font-size: clamp(28px, 4vw, 44px);
      margin-bottom: 16px;
    }

    .section-sub {
      color: var(--gray-400);
      font-size: 1.1rem;
      max-width: 600px;
    }

    .text-center { text-align: center; }
    .mx-auto { margin-left: auto; margin-right: auto; }

    /* ─── SERVICES GRID ─── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 48px;
    }

    .service-card {
      background: rgba(20,37,80,0.4);
      border: 1px solid rgba(34,211,238,0.08);
      border-radius: 16px;
      padding: 32px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .service-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(34,211,238,0.03);
      opacity: 0;
      transition: opacity 0.3s;
      border-radius: 16px;
    }

    .service-card:hover {
      border-color: rgba(34,211,238,0.25);
      transform: translateY(-6px);
      box-shadow: 0 0 30px rgba(34,211,238,0.12);
    }

    .service-card:hover::after { opacity: 1; }

    .card-icon {
      width: 48px; height: 48px;
      background: rgba(34,211,238,0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: background 0.3s;
    }

    .service-card:hover .card-icon { background: rgba(34,211,238,0.18); }

    .card-title {
      font-family: 'Orbitron', monospace;
      font-weight: 600;
      font-size: 1.05rem;
      margin-bottom: 10px;
    }

    .card-desc {
      color: var(--gray-400);
      font-size: 0.875rem;
      line-height: 1.6;
    }

    /* ─── SPLIT SECTIONS ─── */
    .split-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .split-inner {
      display: flex;
      align-items: center;
      gap: 64px;
      max-width: 1300px;
      margin: 0 auto;
      width: 100%;
    }

    .split-inner.reverse { flex-direction: row-reverse; }

    .split-image {
      flex: 0 0 55%;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(34,211,238,0.18);
      box-shadow: 0 0 30px rgba(34,211,238,0.1);
      position: relative;
    }

    .split-image-inner {
      width: 100%;
      aspect-ratio: 16/10;
      background: linear-gradient(135deg, var(--navy-300), var(--navy-200));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .split-image-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(34,211,238,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(34,211,238,0.08) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .split-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7,16,32,0.35), transparent);
    }

    .mockup-screen {
      position: relative;
      z-index: 1;
      background: rgba(5,13,26,0.85);
      border: 1px solid rgba(34,211,238,0.2);
      border-radius: 12px;
      padding: 20px;
      margin: 24px;
      width: calc(100% - 48px);
      backdrop-filter: blur(8px);
    }

    .mockup-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(34,211,238,0.07);
    }

    .mockup-row:last-child { border-bottom: none; }

    .mockup-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--cyan-400);
      flex-shrink: 0;
    }

    .mockup-bar {
      height: 8px;
      border-radius: 4px;
      background: rgba(34,211,238,0.2);
      flex: 1;
    }

    .mockup-val {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.7rem;
      color: var(--cyan-400);
      flex-shrink: 0;
    }

    .split-text { flex: 1; }

    .split-eyebrow {
      display: inline-block;
      padding: 6px 16px;
      background: rgba(34,211,238,0.08);
      border: 1px solid rgba(34,211,238,0.25);
      border-radius: 100px;
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.7rem;
      color: var(--cyan-400);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 20px;
    }

    .split-heading {
      font-family: 'Orbitron', monospace;
      font-weight: 700;
      font-size: clamp(24px, 3vw, 40px);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .split-body {
      color: var(--gray-300);
      line-height: 1.7;
      font-size: 1rem;
      margin-bottom: 28px;
    }

    .btn-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--cyan-400);
      font-weight: 500;
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    .btn-link:hover { color: var(--cyan-300); }

    .section-ticker {
      text-align: center;
      margin-top: 48px;
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.7rem;
      color: var(--gray-500);
      text-transform: uppercase;
      letter-spacing: 0.2em;
    }

    /* ─── DEMO / STATS ─── */
    .video-placeholder {
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      border: 2px solid rgba(34,211,238,0.25);
      box-shadow: 0 0 60px rgba(34,211,238,0.15);
      position: relative;
      background: var(--navy-400);
    }

    .video-inner {
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, var(--navy-400), var(--navy-300));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .video-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(34,211,238,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(34,211,238,0.05) 1px, transparent 1px);
      background-size: 32px 32px;
    }

    .play-btn {
      width: 88px; height: 88px;
      border-radius: 50%;
      background: var(--cyan-400);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
      z-index: 1;
      border: none;
    }

    .play-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 0 40px rgba(34,211,238,0.5);
    }

    .play-btn svg { color: var(--navy-500); margin-left: 4px; }

    .vbracket { position: absolute; width: 28px; height: 28px; }
    .vbracket.tl { top: 16px; left: 16px; border-top: 2px solid rgba(34,211,238,0.5); border-left: 2px solid rgba(34,211,238,0.5); }
    .vbracket.tr { top: 16px; right: 16px; border-top: 2px solid rgba(34,211,238,0.5); border-right: 2px solid rgba(34,211,238,0.5); }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 32px;
    }

    .stat-card {
      text-align: center;
      padding: 20px 16px;
      background: rgba(20,37,80,0.3);
      border: 1px solid rgba(34,211,238,0.08);
      border-radius: 14px;
      transition: border-color 0.3s;
    }

    .stat-card:hover { border-color: rgba(34,211,238,0.25); }

    .stat-val {
      font-family: 'Orbitron', monospace;
      font-weight: 700;
      font-size: 1.6rem;
      color: var(--cyan-400);
      display: block;
      margin-top: 8px;
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--gray-500);
      margin-top: 4px;
    }

    /* ─── PROOF OF WORK ─── */
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 48px;
    }

    .proof-card {
      background: rgba(20,37,80,0.4);
      border: 1px solid rgba(34,211,238,0.08);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s;
    }

    .proof-card:hover {
      border-color: rgba(34,211,238,0.25);
      transform: translateY(-4px);
      box-shadow: 0 0 30px rgba(34,211,238,0.1);
    }

    .proof-img {
      height: 160px;
      background: linear-gradient(135deg, var(--navy-300), var(--navy-200));
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .proof-img::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(34,211,238,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(34,211,238,0.07) 1px, transparent 1px);
      background-size: 24px 24px;
    }

    .proof-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,37,80,0.8), transparent); }

    .proof-badge {
      position: absolute;
      top: 12px; left: 12px;
      padding: 4px 10px;
      border-radius: 100px;
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.1);
      z-index: 1;
    }

    .badge-green { background: rgba(52,211,153,0.2); color: var(--emerald-400); }
    .badge-blue { background: rgba(96,165,250,0.2); color: var(--blue-400); }
    .badge-orange { background: rgba(251,146,60,0.2); color: var(--orange-400); }
    .badge-purple { background: rgba(192,132,252,0.2); color: var(--purple-400); }
    .badge-cyan { background: rgba(34,211,238,0.2); color: var(--cyan-400); }

    .proof-body {
      padding: 20px;
    }

    .proof-icon-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }

    .proof-icon {
      width: 32px; height: 32px;
      background: rgba(34,211,238,0.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }

    .proof-title {
      font-family: 'Orbitron', monospace;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .proof-desc {
      color: var(--gray-400);
      font-size: 0.8rem;
      line-height: 1.5;
    }

    .proof-chart {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 3px;
      align-items: flex-end;
      height: 60px;
    }

    .proof-bar {
      flex: 1;
      background: rgba(34,211,238,0.25);
      border-radius: 3px 3px 0 0;
      min-height: 10px;
    }

    /* ─── HOW IT WORKS ─── */
    .process-grid {
      display: flex;
      gap: 32px;
      align-items: stretch;
      margin-top: 48px;
    }

    .process-card {
      flex: 1;
      background: rgba(20,37,80,0.4);
      border: 1px solid rgba(34,211,238,0.08);
      border-radius: 16px;
      padding: 32px;
      position: relative;
      transition: all 0.3s;
    }

    .process-card:hover {
      border-color: rgba(34,211,238,0.25);
      transform: translateY(-6px);
      box-shadow: 0 0 30px rgba(34,211,238,0.12);
    }

    .process-num {
      position: absolute;
      top: -14px; left: -14px;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--cyan-400);
      color: var(--navy-500);
      font-weight: 700;
      font-size: 0.9rem;
      display: flex; align-items: center; justify-content: center;
    }

    .process-connector {
      display: flex;
      align-items: center;
      padding-top: 40px;
    }

    .process-line {
      width: 32px;
      height: 1px;
      background: rgba(34,211,238,0.25);
    }

    /* ─── PRICING ─── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 48px;
    }

    .pricing-card {
      background: rgba(20,37,80,0.4);
      border: 1px solid rgba(34,211,238,0.08);
      border-radius: 16px;
      padding: 32px;
      transition: all 0.3s;
      position: relative;
    }

    .pricing-card:hover {
      border-color: rgba(34,211,238,0.25);
      transform: translateY(-6px);
      box-shadow: 0 0 30px rgba(34,211,238,0.12);
    }

    .pricing-card.featured {
      background: rgba(20,37,80,0.7);
      border: 2px solid rgba(34,211,238,0.45);
      box-shadow: 0 0 40px rgba(34,211,238,0.2);
    }

    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--cyan-400);
      color: var(--navy-500);
      padding: 4px 16px;
      border-radius: 100px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .pricing-name {
      font-family: 'Orbitron', monospace;
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .pricing-price {
      font-family: 'Orbitron', monospace;
      font-weight: 700;
      font-size: 2.5rem;
      color: var(--cyan-400);
    }

    .pricing-period {
      color: var(--gray-500);
      font-size: 0.85rem;
      margin-left: 4px;
    }

    .pricing-desc {
      color: var(--gray-400);
      font-size: 0.85rem;
      margin: 12px 0 24px;
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 28px;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.875rem;
      color: var(--gray-300);
    }

    .check-icon {
      width: 20px; height: 20px;
      background: rgba(34,211,238,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ─── CONTACT ─── */
    #contact {
      background: var(--navy-500);
    }

    .contact-cards {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .contact-card {
      background: rgba(20,37,80,0.4);
      border: 1px solid rgba(34,211,238,0.08);
      border-radius: 16px;
      padding: 28px;
      width: 300px;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
    }

    .contact-card:hover {
      border-color: rgba(34,211,238,0.25);
      box-shadow: 0 0 30px rgba(34,211,238,0.1);
    }

    .contact-icon-wrap {
      width: 48px; height: 48px;
      background: rgba(34,211,238,0.1);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      transition: background 0.3s;
    }

    .contact-card:hover .contact-icon-wrap { background: rgba(34,211,238,0.18); }

    .contact-name {
      font-family: 'Orbitron', monospace;
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 6px;
      color: white;
    }

    .contact-desc {
      color: var(--gray-400);
      font-size: 0.8rem;
      margin-bottom: 14px;
    }

    .contact-link {
      color: var(--cyan-400);
      font-size: 0.85rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .trust-row {
      display: flex;
      gap: 32px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 48px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--gray-500);
      font-size: 0.85rem;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--navy-600);
      border-top: 1px solid rgba(34,211,238,0.08);
      padding: 64px 48px 32px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 64px;
    }

    .footer-logo { margin-bottom: 16px; }
    .footer-tagline { color: var(--gray-400); font-size: 0.875rem; line-height: 1.6; max-width: 300px; }
    .footer-heading { font-family: 'Orbitron', monospace; font-weight: 600; font-size: 0.9rem; margin-bottom: 20px; }

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

    .footer-links a {
      color: var(--gray-400);
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--cyan-400); }

    .footer-social {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .social-link {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--gray-400);
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.2s;
    }

    .social-link:hover { color: var(--cyan-400); }

    .footer-bottom {
      max-width: 1200px;
      margin: 48px auto 0;
      padding-top: 24px;
      border-top: 1px solid rgba(34,211,238,0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy { color: var(--gray-500); font-size: 0.8rem; }
    .footer-tagline-bottom { color: #374151; font-size: 0.75rem; }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeSlideDown {
      from { opacity: 0; transform: translateY(-40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes drift {
      0% { transform: translateY(0) translateX(0); opacity: 0.4; }
      50% { transform: translateY(-20px) translateX(10px); opacity: 0.7; }
      100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    }

    .drift-dot {
      position: absolute;
      width: 4px; height: 4px;
      background: rgba(34,211,238,0.3);
      border-radius: 50%;
      animation: drift linear infinite;
      pointer-events: none;
    }

    /* ─── MOBILE ─── */
    @media (max-width: 768px) {
      .nav-inner { padding: 0 20px; }
      .nav-links { display: none !important; }
      .nav-cta { display: none; }
      .hamburger { display: block; }

      section { padding: 60px 20px; }
      .hero-content { padding: 20px; }
      .split-inner, .split-inner.reverse { flex-direction: column; gap: 32px; }
      .split-image { flex: 0 0 auto; width: 100%; }
      .process-grid { flex-direction: column; }
      .process-connector { display: none; }
      .footer-inner { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .stats-row { grid-template-columns: 1fr; }
    }

    /* ─── ICONS SVG HELPERS ─── */
    svg { vertical-align: middle; }
    .icon-cyan { color: var(--cyan-400); }

    /* Scroll animations */
    .fade-in-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
  