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

  :root {
    --black: #020408;
    --navy: #050d1a;
    --deep: #071020;
    --indigo: #0f1f3d;
    --electric: #1e6fff;
    --aurora: #3d9eff;
    --violet: #6366f1;
    --glow: #2563eb;
    --silver: #a8b8d0;
    --mist: #c8d8ec;
    --white: #f0f6ff;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
  }

  /* â”€â”€ CUSTOM CURSOR â”€â”€ */
  .cursor {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  }
  .cursor-dot {
    width: 8px; height: 8px; background: var(--aurora);
    border-radius: 50%; transform: translate(-50%, -50%);
    transition: transform 0.1s, opacity 0.2s;
  }
  .cursor-ring {
    width: 32px; height: 32px; border: 1px solid rgba(61,158,255,0.5);
    border-radius: 50%; transform: translate(-50%, -50%);
    transition: transform 0.12s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s, height 0.3s, background 0.3s;
    position: absolute; top: 0; left: 0;
  }
  body.cursor-hover .cursor-ring {
    width: 52px; height: 52px; background: rgba(30,111,255,0.1);
  }

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

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

  /* â”€â”€ LAYOUT â”€â”€ */
  .page { display: none; position: relative; z-index: 2; min-height: 100vh; }
  .page.active { display: block; animation: pageIn 0.6s var(--transition); }
  @keyframes pageIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
  .section { padding: 120px 0; }
  .section-sm { padding: 80px 0; }

  /* â”€â”€ NAVBAR â”€â”€ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 0;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
  }
  nav.scrolled {
    background: rgba(2, 4, 8, 0.85);
    backdrop-filter: blur(24px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(61,158,255,0.08);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 10px; cursor: pointer;
    text-decoration: none;
  }
  .nav-logo-img {
    height: 56px; width: auto;
    mix-blend-mode: screen;
    filter: brightness(1.15) contrast(1.05);
  }

  .nav-links {
    display: flex; align-items: center; gap: 8px; list-style: none;
  }
  .nav-links a {
    font-family: var(--font-body); font-size: 14px; font-weight: 400;
    color: var(--silver); text-decoration: none; padding: 8px 16px; border-radius: 8px;
    transition: color 0.2s, background 0.2s; cursor: pointer; letter-spacing: 0.01em;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--white); background: rgba(255,255,255,0.06);
  }
  .nav-cta {
    background: linear-gradient(135deg, #1e6fff, #6366f1) !important;
    color: white !important; font-weight: 500 !important;
  }
  .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }
  .mobile-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(2,4,8,0.98); backdrop-filter: blur(24px);
    z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  }
  .mobile-menu.open { display: flex; animation: fadeIn 0.3s ease; }
  .mobile-menu a {
    font-family: var(--font-display); font-size: 36px; font-weight: 700;
    color: var(--white); text-decoration: none; cursor: pointer;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--aurora); }
  .mobile-close {
    position: absolute; top: 24px; right: 32px; font-size: 28px;
    cursor: pointer; color: var(--silver);
  }

  /* â”€â”€ HERO â”€â”€ */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 80px; position: relative; overflow: hidden;
  }
  .hero-content { position: relative; z-index: 3; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(30,111,255,0.1); border: 1px solid rgba(30,111,255,0.3);
    border-radius: 100px; padding: 6px 16px 6px 8px; margin-bottom: 32px;
    animation: fadeUp 0.8s 0.2s both;
  }
  .hero-badge-dot {
    width: 6px; height: 6px; background: var(--aurora); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  .hero-badge span { font-size: 12px; color: var(--aurora); font-family: var(--font-mono); letter-spacing: 0.08em; }
  .hero-title {
    font-family: var(--font-display); font-size: clamp(52px, 7vw, 96px);
    font-weight: 800; line-height: 1.0; letter-spacing: -0.04em;
    margin-bottom: 24px; animation: fadeUp 0.8s 0.3s both;
  }
  .hero-title .line { display: block; overflow: hidden; }
  .hero-title .accent {
    background: linear-gradient(135deg, #3d9eff, #6366f1, #a78bfa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: 18px; color: var(--silver); max-width: 520px; line-height: 1.7;
    margin-bottom: 48px; font-weight: 300; animation: fadeUp 0.8s 0.4s both;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.5s both; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #1e6fff, #6366f1);
    color: white; padding: 14px 28px; border-radius: 12px;
    font-family: var(--font-body); font-size: 15px; font-weight: 500;
    border: none; cursor: pointer; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: 0 0 40px rgba(30,111,255,0.3);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(30,111,255,0.5); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: var(--white); padding: 14px 28px; border-radius: 12px;
    font-family: var(--font-body); font-size: 15px; font-weight: 500;
    cursor: pointer; text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,0.08); border-color: rgba(61,158,255,0.4);
    transform: translateY(-2px);
  }

  /* Hero floating orbs */
  .hero-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
  }
  .orb-1 {
    width: 600px; height: 600px; right: -100px; top: -100px;
    background: radial-gradient(circle, rgba(30,111,255,0.12) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite;
  }
  .orb-2 {
    width: 400px; height: 400px; right: 200px; bottom: 0;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
    animation: orbFloat 12s ease-in-out infinite reverse;
  }
  @keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 30px); }
  }

  /* Hero grid / stats */
  .hero-stats {
    display: flex; gap: 48px; margin-top: 72px; padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
    animation: fadeUp 0.8s 0.6s both;
  }
  .hero-stat-num {
    font-family: var(--font-display); font-size: 36px; font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--white), var(--silver));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-stat-label { font-size: 13px; color: var(--silver); margin-top: 4px; }

  /* â”€â”€ SECTION LABELS â”€â”€ */
  .section-label {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
    color: var(--aurora); text-transform: uppercase; margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: ''; display: block; width: 32px; height: 1px; background: var(--aurora);
  }
  .section-title {
    font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
    margin-bottom: 20px;
  }
  .section-sub {
    font-size: 16px; color: var(--silver); max-width: 560px;
    line-height: 1.7; font-weight: 300;
  }
  .text-gradient {
    background: linear-gradient(135deg, #3d9eff, #6366f1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* â”€â”€ FEATURES GRID â”€â”€ */
  .features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden;
    margin-top: 64px;
  }
  .feature-card {
    background: var(--black); padding: 40px;
    transition: background 0.3s; position: relative; overflow: hidden;
  }
  .feature-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(30,111,255,0.06), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .feature-card:hover { background: var(--navy); }
  .feature-card:hover::before { opacity: 1; }
  .feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(30,111,255,0.1); border: 1px solid rgba(30,111,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 24px;
    transition: background 0.3s, transform 0.3s;
  }
  .feature-card:hover .feature-icon { background: rgba(30,111,255,0.2); transform: scale(1.1); }
  .feature-title {
    font-family: var(--font-display); font-size: 18px; font-weight: 700;
    margin-bottom: 12px; letter-spacing: -0.02em;
  }
  .feature-desc { font-size: 14px; color: var(--silver); line-height: 1.7; }

  /* â”€â”€ MARQUEE â”€â”€ */
  .marquee-section { padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
  .marquee-track { display: flex; gap: 64px; white-space: nowrap; animation: marquee 20s linear infinite; width: max-content; }
  .marquee-item { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(168,184,208,0.4); }
  .marquee-dot { color: var(--electric); }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* â”€â”€ TESTIMONIALS â”€â”€ */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
  .testimonial-card {
    background: var(--navy); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 32px; position: relative; overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }
  .testimonial-card:hover { border-color: rgba(61,158,255,0.2); transform: translateY(-4px); }
  .testimonial-quote {
    font-family: var(--font-display); font-size: 48px; color: var(--electric);
    line-height: 1; margin-bottom: 16px; opacity: 0.4;
  }
  .testimonial-text { font-size: 15px; color: var(--mist); line-height: 1.7; margin-bottom: 24px; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #1e6fff, #6366f1);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
  }
  .testimonial-name { font-weight: 600; font-size: 14px; }
  .testimonial-role { font-size: 12px; color: var(--silver); }

  /* â”€â”€ CTA SECTION â”€â”€ */
  .cta-section {
    background: linear-gradient(135deg, rgba(30,111,255,0.08), rgba(99,102,241,0.08));
    border: 1px solid rgba(30,111,255,0.15); border-radius: 28px; padding: 80px;
    text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(30,111,255,0.08), transparent 70%);
  }
  .cta-title {
    font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
    font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px;
  }
  .cta-sub { color: var(--silver); font-size: 16px; margin-bottom: 40px; }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* â”€â”€ ABOUT â”€â”€ */
  .mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .mission-visual {
    position: relative; aspect-ratio: 1; border-radius: 28px; overflow: hidden;
    background: linear-gradient(135deg, var(--indigo), var(--navy));
    border: 1px solid rgba(255,255,255,0.06);
  }
  .mission-visual-inner {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  }
  .orbit-ring {
    position: absolute; border-radius: 50%; border: 1px solid rgba(30,111,255,0.2);
    animation: spin 20s linear infinite;
  }
  .orbit-ring:nth-child(1) { width: 80%; height: 80%; animation-duration: 20s; }
  .orbit-ring:nth-child(2) { width: 55%; height: 55%; animation-duration: 14s; animation-direction: reverse; }
  .orbit-ring:nth-child(3) { width: 30%; height: 30%; animation-duration: 8s; }
  .orbit-dot {
    position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--aurora);
    top: -4px; left: 50%; transform: translateX(-50%);
    box-shadow: 0 0 12px var(--aurora);
  }
  @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .orbit-center {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, #1e6fff, #6366f1);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 22px;
    box-shadow: 0 0 60px rgba(30,111,255,0.5); z-index: 2;
  }

  .values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 64px; }
  .value-card {
    background: var(--navy); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .value-card:hover { border-color: rgba(61,158,255,0.2); transform: translateY(-4px); }
  .value-num {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
    color: var(--aurora); margin-bottom: 16px;
  }
  .value-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
  .value-desc { font-size: 14px; color: var(--silver); line-height: 1.7; }

  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 64px; }
  .team-card {
    background: var(--navy); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 28px; text-align: center;
    transition: border-color 0.3s, transform 0.3s;
  }
  .team-card:hover { border-color: rgba(61,158,255,0.2); transform: translateY(-4px); }
  .team-avatar {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 28px;
  }
  .team-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
  .team-role { font-size: 12px; color: var(--silver); margin-bottom: 16px; }
  .team-links { display: flex; justify-content: center; gap: 8px; }
  .team-link {
    width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center;
    justify-content: center; font-size: 12px; cursor: pointer; text-decoration: none;
    color: var(--silver); transition: background 0.2s, color 0.2s;
  }
  .team-link:hover { background: rgba(30,111,255,0.1); color: var(--aurora); }

  /* Timeline */
  .timeline { margin-top: 64px; position: relative; }
  .timeline::before {
    content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, transparent, var(--electric), transparent);
  }
  .timeline-item { display: flex; gap: 40px; margin-bottom: 48px; }
  .timeline-dot {
    width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--electric);
    background: var(--black); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; z-index: 2;
    font-family: var(--font-mono); font-size: 10px; color: var(--aurora);
  }
  .timeline-content { padding-top: 8px; }
  .timeline-year { font-family: var(--font-mono); font-size: 11px; color: var(--aurora); letter-spacing: 0.1em; margin-bottom: 8px; }
  .timeline-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
  .timeline-desc { font-size: 14px; color: var(--silver); line-height: 1.7; }

  /* â”€â”€ SERVICES â”€â”€ */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
  .service-card {
    background: var(--navy); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px; padding: 36px; position: relative; overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: default;
  }
  .service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #1e6fff, #6366f1);
    transform: scaleX(0); transition: transform 0.4s var(--transition);
    transform-origin: left;
  }
  .service-card:hover { border-color: rgba(61,158,255,0.2); transform: translateY(-6px); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-num {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
    color: rgba(61,158,255,0.5); margin-bottom: 24px;
  }
  .service-icon { font-size: 32px; margin-bottom: 20px; }
  .service-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
  .service-desc { font-size: 14px; color: var(--silver); line-height: 1.7; margin-bottom: 24px; }
  .service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .tag {
    font-size: 11px; font-family: var(--font-mono); color: var(--aurora);
    background: rgba(30,111,255,0.08); border: 1px solid rgba(30,111,255,0.15);
    border-radius: 100px; padding: 4px 10px;
  }

  /* Process */
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 80px; position: relative; }
  .process-grid::before {
    content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(61,158,255,0.3), transparent);
  }
  .process-step { text-align: center; padding: 0 24px; }
  .process-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--black); border: 1px solid rgba(30,111,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--aurora);
    margin: 0 auto 20px; position: relative; z-index: 2;
    transition: background 0.3s, box-shadow 0.3s;
  }
  .process-step:hover .process-num {
    background: rgba(30,111,255,0.1);
    box-shadow: 0 0 30px rgba(30,111,255,0.3);
  }
  .process-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
  .process-desc { font-size: 13px; color: var(--silver); line-height: 1.6; }

  /* â”€â”€ PROJECTS â”€â”€ */
  .projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 64px; }
  .project-card {
    border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.3s, transform 0.3s; cursor: pointer; position: relative;
  }
  .project-card:first-child { /* Removed special grid-row span to avoid extra whitespace */ }
  .project-visual { height: 260px; }

  .project-card:hover { border-color: rgba(61,158,255,0.2); transform: translateY(-4px); }
  .project-visual {
    height: 200px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .project-card:first-child .project-visual { /* Removed special height */ }

  .project-bg {
    position: absolute; inset: 0;
    transition: transform 0.5s var(--transition);
  }
  .project-card:hover .project-bg { transform: scale(1.05); }
  .project-label {
    position: absolute; top: 16px; left: 16px;
    background: rgba(2,4,8,0.8); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 100px;
    font-size: 11px; font-family: var(--font-mono); color: var(--silver);
    padding: 4px 12px; letter-spacing: 0.1em;
  }
  .project-info { padding: 28px; background: var(--navy); }
  .project-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
  .project-desc { font-size: 13px; color: var(--silver); line-height: 1.6; margin-bottom: 16px; }
  .project-meta { display: flex; gap: 12px; align-items: center; }
  .project-arrow {
    width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
    margin-left: auto; font-size: 14px; transition: background 0.2s, color 0.2s;
  }
  .project-card:hover .project-arrow { background: var(--electric); border-color: var(--electric); color: white; }

  /* Stats band */
  .stats-band {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden;
    margin-top: 80px; border: 1px solid rgba(255,255,255,0.06);
  }
  .stat-item { background: var(--black); padding: 40px; text-align: center; }
  .stat-num {
    font-family: var(--font-display); font-size: 48px; font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--white), var(--silver));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .stat-label { font-size: 13px; color: var(--silver); margin-top: 8px; }

  /* â”€â”€ CONTACT â”€â”€ */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; margin-top: 64px; }
  .contact-info h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
  .contact-info p { color: var(--silver); font-size: 15px; line-height: 1.7; margin-bottom: 40px; }
  .contact-items { display: flex; flex-direction: column; gap: 20px; }
  .contact-item { display: flex; align-items: center; gap: 16px; }
  .contact-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(30,111,255,0.1); border: 1px solid rgba(30,111,255,0.2);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
    flex-shrink: 0;
  }
  .contact-item-label { font-size: 11px; font-family: var(--font-mono); color: var(--aurora); letter-spacing: 0.1em; margin-bottom: 4px; }
  .contact-item-value { font-size: 14px; color: var(--mist); }

  .socials { display: flex; gap: 12px; margin-top: 40px; }
  .social-btn {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    cursor: pointer; text-decoration: none; color: var(--silver);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  }
  .social-btn:hover { background: rgba(30,111,255,0.1); border-color: rgba(30,111,255,0.3); color: var(--aurora); transform: translateY(-2px); }

  /* Form */
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-label { font-size: 12px; font-family: var(--font-mono); color: var(--silver); letter-spacing: 0.08em; }
  .form-input, .form-select, .form-textarea {
    background: var(--navy); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 14px 16px;
    font-family: var(--font-body); font-size: 14px; color: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s; outline: none; resize: none;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: rgba(168,184,208,0.4); }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: rgba(30,111,255,0.5); box-shadow: 0 0 0 3px rgba(30,111,255,0.1);
  }
  .form-select option { background: var(--navy); }
  .form-textarea { min-height: 120px; }
  .form-submit {
    width: 100%; padding: 16px;
    background: linear-gradient(135deg, #1e6fff, #6366f1);
    color: white; border: none; border-radius: 12px;
    font-family: var(--font-body); font-size: 15px; font-weight: 500;
    cursor: pointer; transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 30px rgba(30,111,255,0.3);
  }
  .form-submit:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 0 50px rgba(30,111,255,0.5); }
  .form-success {
    display: none; text-align: center; padding: 40px; color: var(--aurora);
    font-family: var(--font-display); font-size: 18px; font-weight: 700;
  }

  /* FAQ */
  .faq { margin-top: 80px; }
  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
  }
  .faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 0; cursor: pointer;
    font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  }
  .faq-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(30,111,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; transition: background 0.2s, transform 0.3s; }
  .faq-item.open .faq-icon { background: rgba(30,111,255,0.2); transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--transition), padding 0.3s; padding: 0; }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
  .faq-a p { color: var(--silver); font-size: 14px; line-height: 1.7; }

  /* â”€â”€ FOOTER â”€â”€ */
  footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 40px; position: relative; z-index: 2;
  }
  .footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px;
  }
  .footer-brand p { font-size: 14px; color: var(--silver); line-height: 1.7; margin-top: 12px; max-width: 280px; }
  .footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { font-size: 13px; color: var(--silver); text-decoration: none; cursor: pointer; transition: color 0.2s; }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px; }
  .footer-copy { font-size: 13px; color: rgba(168,184,208,0.5); }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-size: 13px; color: rgba(168,184,208,0.5); text-decoration: none; cursor: pointer; transition: color 0.2s; }
  .footer-legal a:hover { color: var(--silver); }

  /* â”€â”€ SCROLL REVEAL â”€â”€ */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--transition), transform 0.7s var(--transition); }
  .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; }

  /* â”€â”€ UTILITIES â”€â”€ */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
  @keyframes glow { 0%, 100% { box-shadow: 0 0 20px rgba(30,111,255,0.3); } 50% { box-shadow: 0 0 40px rgba(30,111,255,0.6); } }

  .divider { height: 1px; background: rgba(255,255,255,0.06); margin: 0; }
  .text-silver { color: var(--silver); }
  .mt-8 { margin-top: 8px; }
  .mt-16 { margin-top: 16px; }
  .mt-24 { margin-top: 24px; }
  .d-flex { display: flex; }
  .gap-8 { gap: 8px; }
  .align-center { align-items: center; }

  /* â”€â”€ MOBILE â”€â”€ */
  @media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 80px 0; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: clamp(40px, 10vw, 64px); }
    .hero-stats { flex-wrap: wrap; gap: 32px; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card:first-child { grid-row: auto; }
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .cta-section { padding: 48px 24px; }
  }
