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

  :root {
    --black: #080c10;
    --deep: #0b1320;
    --navy: #0d1f3c;
    --blue: #0052ff;
    --cyan: #00c8ff;
    --green: #00e676;
    --white: #f0f4ff;
    --muted: #8899bb;
    --glass: rgba(13,31,60,0.6);
    --glow: 0 0 40px rgba(0,82,255,0.3);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    width: 12px;
    height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
  }

  .cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0,200,255,0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease, width 0.3s, height 0.3s;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(8,12,16,0.95), transparent);
    backdrop-filter: blur(10px);
  }

  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .logo span {
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    display: block;
    background: none;
    -webkit-text-fill-color: var(--muted);
    color: var(--muted);
    text-transform: uppercase;
    margin-top: -4px;
  }

  .nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    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;
  }

  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 2px;
    font-size: 0.75rem !important;
    letter-spacing: 0.15em;
    transition: background 0.3s, box-shadow 0.3s !important;
  }

  .nav-cta:hover {
    background: var(--cyan) !important;
    box-shadow: 0 0 20px rgba(0,200,255,0.4);
    color: var(--black) !important;
    -webkit-text-fill-color: var(--black) !important;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: center;
    gap: 48px;
    padding: 140px 60px 56px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,82,255,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 30% 30%, rgba(0,200,255,0.07) 0%, transparent 60%);
  }

  .grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,82,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,82,255,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  }

  .hero-left {
    position: relative;
    z-index: 2;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,82,255,0.1);
    border: 1px solid rgba(0,82,255,0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--cyan);
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
  }

  .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.2s ease forwards;
    opacity: 0;
  }

  h1 .line-blue {
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-desc {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeUp 0.8s 0.4s ease forwards;
    opacity: 0;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    animation: fadeUp 0.8s 0.6s ease forwards;
    opacity: 0;
  }

  .btn-primary {
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    padding: 16px 36px;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'DM Mono', monospace;
    border-radius: 2px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    opacity: 0;
    transition: opacity 0.3s;
  }

  .btn-primary:hover {
    box-shadow: var(--glow);
    transform: translateY(-2px);
  }

  .btn-primary:hover::before { opacity: 1; }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-ghost {
    color: var(--white);
    text-decoration: none;
    padding: 16px 36px;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'DM Mono', monospace;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    transition: all 0.3s;
  }

  .btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0,200,255,0.05);
  }

  .hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s 0.5s ease forwards;
    opacity: 0;
  }

  .hero-orb {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
      radial-gradient(ellipse at 35% 35%, rgba(0,200,255,0.15), rgba(0,82,255,0.08) 50%, transparent);
    border: 1px solid rgba(0,82,255,0.2);
    position: relative;
    animation: none;
  }

  .hero-orb::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(0,200,255,0.12);
    animation: none;
  }

  .hero-orb::after {
    content: '';
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0,82,255,0.2), transparent 70%);
    border: 1px dashed rgba(0,200,255,0.12);
  }

  .orb-center {
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 40% 40%, rgba(0,200,255,0.3), rgba(0,82,255,0.4), rgba(0,30,80,0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: inset 0 0 60px rgba(0,82,255,0.3), 0 0 60px rgba(0,82,255,0.15);
  }

  .service-orb-center {
    inset: 78px;
    overflow: hidden;
    position: absolute;
    isolation: isolate;
  }

  .service-orb-center::before,
  .service-orb-center::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(0,200,255,0.18);
    transform: translate(-50%, -50%) scale(0.75);
    opacity: 0;
    animation: ripplePulse 3.6s ease-out infinite;
    z-index: 0;
  }

  .service-orb-center::after {
    animation-delay: 1.8s;
  }

  @keyframes ripplePulse {
    0% {
      transform: translate(-50%, -50%) scale(0.72);
      opacity: 0;
    }
    20% {
      opacity: 0.28;
    }
    70% {
      opacity: 0.08;
    }
    100% {
      transform: translate(-50%, -50%) scale(2.2);
      opacity: 0;
    }
  }

  .orb-content-shift {
    position: relative;
    z-index: 2;
    transform: translateY(-16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    text-align: center;
  }

  .orb-mini-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0,200,255,0.78);
  }

  .service-rotator {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-word {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.3vw, 3.4rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-align: center;
    max-width: 220px;
    background: linear-gradient(135deg, var(--white), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
  }

  .service-word.is-changing {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(10px);
  }

  .orb-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 4px;
  }

  .orb-sub-label {
    color: rgba(136,153,187,0.95);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    max-width: 220px;
    line-height: 1.6;
  }

  .orbit-star {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 28px;
    height: 28px;
    margin-left: -14px;
    margin-top: -14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1rem;
    text-shadow: 0 0 18px rgba(0,200,255,0.9);
    z-index: 4;
    animation: starOrbit 8s linear infinite;
  }

  @keyframes starOrbit {
    from {
      transform: rotate(0deg) translateY(-196px) rotate(0deg);
    }
    to {
      transform: rotate(360deg) translateY(-196px) rotate(-360deg);
    }
  }

  .stats-strip {
    position: relative;
    grid-column: 1 / -1;
    left: auto;
    right: auto;
    bottom: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    z-index: 2;
    margin-top: 56px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(8,12,16,0.55);
    backdrop-filter: blur(10px);
    animation: fadeUp 0.8s 0.8s ease forwards;
    opacity: 0;
  }

  .stat {
    min-width: 0;
    padding: 24px 32px;
    border-left: 1px solid rgba(255,255,255,0.06);
    position: relative;
  }

  .stat:first-child { border-left: none; }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--white);
    line-height: 1;
    background: linear-gradient(90deg, var(--white), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 4px;
  }

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

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* SECTION COMMONS */
  section { padding: 120px 60px; }

  .section-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-tag::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--cyan);
  }

  h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
  }

  /* ABOUT */
  .about {
    background: var(--deep);
    position: relative;
    overflow: hidden;
  }

  .about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,82,255,0.06), transparent 70%);
  }

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

  .about-text p {
    color: var(--muted);
    line-height: 1.9;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 20px;
  }

  .about-text p strong {
    color: var(--white);
    font-weight: 500;
  }

  .about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 28px;
    transition: border-color 0.3s, background 0.3s;
  }

  .about-card:hover {
    border-color: rgba(0,82,255,0.4);
    background: rgba(0,82,255,0.05);
  }

  .about-card.full { grid-column: span 2; }

  .card-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 4px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .card-title {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 8px;
  }

  .card-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
  }

  /* SERVICES */
  .services { background: var(--black); }

  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
  }

  .services-header p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
  }

  .service-card {
    background: var(--black);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
    cursor: pointer;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }

  .service-card:hover { background: rgba(0,82,255,0.04); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }

  .service-icon svg {
    width: 100%;
    height: 100%;
  }

  .service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
  }

  .service-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    position: relative;
    z-index: 1;
  }

  /* INDUSTRIES */
  .industries {
    background: var(--deep);
    position: relative;
    overflow: hidden;
  }

  .industries-inner { max-width: 1200px; }

  .industries h2 { margin-bottom: 60px; }

  .industry-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .industry-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: padding-left 0.4s;
  }

  .industry-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--blue);
    transition: height 0.4s;
  }

  .industry-item:hover { padding-left: 20px; }
  .industry-item:hover::before { height: 60%; }

  .industry-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    color: var(--blue);
    width: 32px;
    flex-shrink: 0;
  }

  .industry-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
  }

  .industry-item:hover .industry-name { color: var(--cyan); }

  .industry-arrow {
    margin-left: auto;
    color: var(--muted);
    font-size: 1.2rem;
    transition: transform 0.3s, color 0.3s;
  }

  .industry-item:hover .industry-arrow {
    transform: translateX(6px);
    color: var(--cyan);
  }

  /* TESTIMONIALS */
  .testimonials { background: var(--black); }

  .testimonials h2 {
    margin-bottom: 60px;
    text-align: center;
  }

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

  .testimonial-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 40px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
  }

  .testimonial-card:hover {
    border-color: rgba(0,82,255,0.4);
    transform: translateY(-8px);
  }

  .quote-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--blue);
    line-height: 0.7;
    margin-bottom: 16px;
    opacity: 0.6;
  }

  .testimonial-text {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 28px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
  }

  .author-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--white);
  }

  .author-company {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-top: 2px;
  }

  /* CTA BANNER */
  .cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, rgba(0,82,255,0.15) 100%);
    border-top: 1px solid rgba(0,82,255,0.2);
    border-bottom: 1px solid rgba(0,82,255,0.2);
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,82,255,0.08), transparent);
  }

  .cta-banner h2 {
    font-size: clamp(3.5rem, 6vw, 6rem);
    margin-bottom: 20px;
    position: relative;
  }

  .cta-banner p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 40px;
    font-weight: 300;
    position: relative;
  }

  .cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
  }

  /* CONTACT */
  .contact { background: var(--deep); }

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

  .contact-info h2 { margin-bottom: 16px; }

  .contact-info p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 48px;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,82,255,0.1);
    border: 1px solid rgba(0,82,255,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .contact-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .contact-value {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.6;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-field label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    padding: 14px 16px;
    font-size: 0.9rem;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
  }

  .form-field textarea {
    height: 120px;
    resize: vertical;
  }

  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    border-color: var(--blue);
  }

  .form-field select option { background: var(--deep); }

  /* FOOTER */
  footer {
    background: var(--black);
    padding: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
  }

  .footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .footer-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
  }

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

  /* SCROLL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

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

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

  /* MARQUEE */
  .marquee-wrap {
    overflow: hidden;
    padding: 20px 0;
    background: rgba(0,82,255,0.05);
    border-top: 1px solid rgba(0,82,255,0.15);
    border-bottom: 1px solid rgba(0,82,255,0.15);
  }

  .marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    width: max-content;
  }

  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .marquee-item span {
    color: var(--blue);
    font-size: 0.8rem;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  @media (max-width: 1100px) {
    nav {
      padding: 22px 28px;
    }

    .hero {
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 128px 28px 44px;
    }

    .hero-left,
    .hero-right {
      width: 100%;
    }

    .hero-right {
      justify-content: flex-start;
    }

    .stats-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-top: 36px;
    }

    section,
    .cta-banner,
    footer {
      padding-left: 28px;
      padding-right: 28px;
    }

    .about-grid,
    .services-header,
    .contact-grid,
    .testimonial-grid {
      grid-template-columns: 1fr;
    }

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

    .industry-list {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 720px) {
    body {
      cursor: auto;
    }

    .cursor,
    .cursor-ring {
      display: none;
    }

    nav {
      padding: 18px 18px;
      gap: 14px;
      flex-wrap: wrap;
    }

    .nav-links {
      width: 100%;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .hero {
      padding: 120px 18px 28px;
    }

    .hero-actions {
      flex-direction: column;
      align-items: stretch;
    }

    .hero-orb {
      width: min(100%, 320px);
      height: min(100vw - 36px, 320px);
    }

    .orb-content-shift {
      transform: translateY(-10px);
      gap: 8px;
    }

    .service-rotator {
      min-height: 72px;
    }

    .service-word {
      max-width: 180px;
      font-size: clamp(1.7rem, 8vw, 2.5rem);
    }

    .orbit-star {
      animation: starOrbitMobile 8s linear infinite;
    }

    @keyframes starOrbitMobile {
      from {
        transform: rotate(0deg) translateY(-148px) rotate(0deg);
      }
      to {
        transform: rotate(360deg) translateY(-148px) rotate(-360deg);
      }
    }

    .stats-strip {
      grid-template-columns: 1fr;
      margin-top: 28px;
    }

    .stat {
      border-left: none;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .stat:first-child {
      border-top: none;
    }

    section,
    .cta-banner,
    footer {
      padding-left: 18px;
      padding-right: 18px;
    }

    .about-cards,
    .services-grid {
      grid-template-columns: 1fr;
    }

    .form-row,
    footer {
      grid-template-columns: 1fr;
      display: grid;
      gap: 16px;
      align-items: start;
    }
  }
 