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

  :root {
    --bg: #0a0a0f;
    --surface: #111118;
    --surface2: #1a1a24;
    --border: rgba(255,255,255,0.07);
    --border-accent: rgba(0,255,140,0.3);
    --accent: #00ff8c;
    --accent2: #00c9ff;
    --text: #f0f0f5;
    --muted: #8888aa;
    --mono: 'Space Mono', monospace;
    --sans: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

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

  /* 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 4rem;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 0.5px solid var(--border);
  }

  .logo {
    font-family: var(--mono);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
  }

  .logo span { color: var(--accent); }

  nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
  }

  nav ul a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.2s;
    letter-spacing: 0.02em;
  }

  nav ul a:hover { color: var(--text); }

  .nav-cta {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--accent) !important;
    border: 1px solid var(--border-accent);
    padding: 0.5rem 1rem;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--accent) !important;
    color: #000 !important;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,255,140,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,255,140,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  }

  .hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,140,0.06) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--border-accent);
    padding: 0.4rem 0.8rem;
    border-radius: 2px;
    margin-bottom: 2rem;
  }

  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  h1 {
    font-family: var(--mono);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
  }

  h1 .line-accent { color: var(--accent); }
  h1 .line-dim { color: var(--muted); font-weight: 400; }

  .hero-desc {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 3rem;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
    background: var(--accent);
    border: none;
    padding: 0.9rem 2rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.05em;
    transition: opacity 0.2s, transform 0.1s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }

  .btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

  .btn-ghost {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--border);
    padding: 0.9rem 2rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.05em;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }

  /* STATS BAR */
  .stats-bar {
    position: relative;
    z-index: 1;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 4rem;
  }

  .stat {
    padding: 2rem;
    border-right: 0.5px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .stat:last-child { border-right: none; }

  .stat-num {
    font-family: var(--mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .stat-num span { color: var(--accent); }

  .stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  /* SECTIONS */
  section {
    padding: 6rem 4rem;
    position: relative;
    z-index: 1;
  }

  .section-tag {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }

  h2 {
    font-family: var(--mono);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .section-intro {
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 3.5rem;
    font-weight: 300;
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .service-card {
    background: var(--surface);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
  }

  .service-card:hover { background: var(--surface2); }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 2px; width: 0;
    background: var(--accent);
    transition: width 0.3s;
  }

  .service-card:hover::after { width: 100%; }

  .service-icon {
    width: 40px; height: 40px;
    border: 1px solid var(--border-accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
  }

  .service-icon svg { width: 20px; height: 20px; }

  .service-card h3 {
    font-family: var(--mono);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
  }

  .service-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
  }

  .service-num {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-family: var(--mono);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.1);
    font-weight: 700;
  }

  /* PROCESS */
  .process-bg { background: var(--surface); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
  }

  .process-step {
    padding: 2rem;
    border-right: 1px solid var(--border);
    position: relative;
  }

  .process-step:last-child { border-right: none; }

  .step-num {
    font-family: var(--mono);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,255,140,0.08);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .process-step h3 {
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
  }

  .process-step p {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6;
  }

  /* WHY US */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .why-check {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border: 1px solid var(--border-accent);
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
  }

  .why-check svg { width: 10px; height: 10px; color: var(--accent); }

  .why-item strong {
    display: block;
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.25rem;
    font-weight: 700;
  }

  .why-item span {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 300;
  }

  .terminal-window {
    background: #0d0d12;
    border: 1px solid var(--border);
    padding: 1.5rem;
    font-family: var(--mono);
    font-size: 0.78rem;
    position: relative;
  }

  .terminal-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 1.25rem;
  }

  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot.r { background: #ff5f57; }
  .dot.y { background: #febc2e; }
  .dot.g { background: #28c840; }

  .terminal-line {
    color: var(--muted);
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }

  .terminal-line .cmd { color: var(--accent); }
  .terminal-line .ok { color: #28c840; }
  .terminal-line .num { color: var(--accent2); }
  .terminal-cursor {
    display: inline-block;
    width: 8px; height: 14px;
    background: var(--accent);
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
  }

  @keyframes blink { 50% { opacity: 0; } }

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

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }

  .form-group label {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.75rem 1rem;
    font-family: var(--sans);
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    appearance: none;
  }

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

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

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .info-title {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  }

  .info-block p {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 300;
  }

  .info-block a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
  }

  .info-block a:hover { color: var(--accent); }

  /* FOOTER */
  footer {
    border-top: 0.5px solid var(--border);
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }

  footer p {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--muted);
  }

  footer p span { color: var(--accent); }

  /* ANIMATIONS */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.7s forwards;
  }

  @keyframes fadeIn {
    to { opacity: 1; transform: none; }
  }

  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.25s; }
  .delay-3 { animation-delay: 0.4s; }
  .delay-4 { animation-delay: 0.55s; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    nav ul { display: none; }
    .hero { padding: 7rem 1.5rem 3rem; }
    section { padding: 4rem 1.5rem; }
    .stats-bar { margin: 0 1.5rem; grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 0.5px solid var(--border); }
    .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    footer { padding: 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
  }

  .wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.25rem 0.75rem 1rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 4px 24px rgba(37,211,102,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  }
  .wa-float svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  @media (max-width: 480px) {
    .wa-float span { display: none; }
    .wa-float { padding: 0.85rem; border-radius: 50%; }
  }