    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #07071a;
      --bg2:       #0d0d2b;
      --card:      #111130;
      --border:    #1e1e4a;
      --cyan:      #00d4ff;
      --purple:    #8b5cf6;
      --gold:      #f5c518;
      --orange:    #ff6b35;
      --text:      #e8e8f0;
      --muted:     #8888aa;
      --radius:    14px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 70px;
      background: rgba(7,7,26,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cyan);
  text-decoration: none;
}

.nav-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
    .nav-logo span { color: var(--gold); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: var(--muted); text-decoration: none; font-size: .9rem;
      font-weight: 500; transition: color .2s;
    }
    .nav-links a:hover { color: var(--cyan); }
    .nav-cta {
      background: linear-gradient(135deg, var(--cyan), var(--purple));
      color: #fff; border: none; padding: .55rem 1.4rem;
      border-radius: 8px; font-size: .9rem; font-weight: 600;
      cursor: pointer; text-decoration: none; transition: opacity .2s;
    }
    .nav-cta:hover { opacity: .85; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: transparent; border: 0; padding: .4rem; }
    .hamburger:focus-visible, .mobile-close:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
    .hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      padding: 120px 5% 80px;
      position: relative; overflow: hidden;
    }
    .hero-glow {
      position: absolute; pointer-events: none;
      border-radius: 50%;
      filter: blur(120px);
      opacity: .25;
    }
    .hero-glow.g1 { width: 600px; height: 600px; background: var(--cyan);   top: -100px; left: -150px; }
    .hero-glow.g2 { width: 500px; height: 500px; background: var(--purple); bottom: -50px; right: -100px; }
    .hero-inner { position: relative; max-width: 820px; }
    .hero-badge {
      display: inline-block;
      background: rgba(0,212,255,.12);
      border: 1px solid rgba(0,212,255,.3);
      color: var(--cyan); font-size: .8rem; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
      padding: .4rem 1.1rem; border-radius: 50px; margin-bottom: 1.5rem;
    }
    h1 {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 700; line-height: 1.05;
      margin-bottom: 1.2rem;
    }
    h1 .accent-cyan   { color: var(--cyan); }
    h1 .accent-gold   { color: var(--gold); }
    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: var(--muted); max-width: 580px; margin: 0 auto 2.5rem;
      line-height: 1.7;
    }
    .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: linear-gradient(135deg, var(--cyan), var(--purple));
      color: #fff; padding: .85rem 2.2rem; border-radius: 10px;
      font-weight: 700; font-size: 1rem; text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 0 30px rgba(0,212,255,.3);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,212,255,.5); }
    .btn-outline {
      border: 1.5px solid var(--border); color: var(--text);
      padding: .85rem 2.2rem; border-radius: 10px;
      font-weight: 600; font-size: 1rem; text-decoration: none;
      transition: border-color .2s, color .2s;
    }
    .btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
    .hero-stats {
      display: flex; gap: 2.5rem; justify-content: center;
      margin-top: 3.5rem; flex-wrap: wrap;
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 2.4rem; font-weight: 700; color: var(--cyan);
    }
    .stat-label { font-size: .8rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

    /* ── SECTIONS ── */
    section { padding: 90px 5%; }
    .section-tag {
      font-size: .75rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--cyan); margin-bottom: .8rem;
    }
    .contact-tag {
  font-size: 1.5rem;
}
    .section-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
      margin-bottom: 1rem; line-height: 1.15;
    }
    .section-title em { color: var(--gold); font-style: normal; }
    .section-sub { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 560px; }
    .section-center { text-align: center; }
    .section-center .section-sub { margin: 0 auto; }

    /* ── VALUE PROPS ── */
    #value { background: var(--bg2); }
    .value-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem; margin-top: 3rem;
    }
    .value-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      transition: border-color .2s, transform .2s;
    }
    .value-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
    .value-icon {
      width: 52px; height: 52px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 1.2rem;
    }
    .vi-cyan   { background: rgba(0,212,255,.12); }
    .vi-purple { background: rgba(139,92,246,.12); }
    .vi-gold   { background: rgba(245,197,24,.12); }
    .vi-orange { background: rgba(255,107,53,.12); }
    .value-card h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem;
    }
    .value-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

    /* ── MACHINES ── */
    #machines { background: var(--bg); }
    .machines-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem; margin-top: 3rem;
    }
    .machine-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color .2s, transform .2s;
    }
    .machine-card:hover { border-color: var(--purple); transform: translateY(-5px); }
    .machine-art {
      background: linear-gradient(160deg, #0d0d2b 0%, #12123a 100%);
      display: flex; align-items: center; justify-content: center;
      padding: 2rem 1rem; height: 280px;
    }
    .machine-info { padding: 1.5rem; }
    .machine-info h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.25rem; font-weight: 700; margin-bottom: .4rem;
    }
    .machine-info p { font-size: .88rem; color: var(--muted); line-height: 1.6; }
    .machine-tag {
      display: inline-block; font-size: .72rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      padding: .25rem .75rem; border-radius: 50px; margin-bottom: .8rem;
    }
    .tag-cyan   { background: rgba(0,212,255,.12); color: var(--cyan); }
    .tag-purple { background: rgba(139,92,246,.12); color: var(--purple); }
    .tag-gold   { background: rgba(245,197,24,.12); color: var(--gold); }
    .tag-orange { background: rgba(255,107,53,.12); color: var(--orange); }

    /* ── HOW IT WORKS ── */
    #how { background: var(--bg2); }
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem; margin-top: 3rem; position: relative;
    }
    .step {
      text-align: center; padding: 2rem 1.5rem;
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--radius);
    }
    .step-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 3.5rem; font-weight: 700;
      background: linear-gradient(135deg, var(--cyan), var(--purple));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1; margin-bottom: .8rem;
    }
    .step h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem;
    }
    .step p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

    /* ── INDUSTRIES ── */
    #industries { background: var(--bg); }
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem; margin-top: 3rem;
    }
    .industry-pill {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 10px; padding: 1.2rem;
      text-align: center; font-size: .95rem; font-weight: 600;
      transition: border-color .2s, color .2s;
    }
    .industry-pill:hover { border-color: var(--gold); color: var(--gold); }
    .industry-icon { font-size: 1.8rem; margin-bottom: .4rem; }

    /* ── CTA BAND ── */
    #cta {
      background: linear-gradient(135deg, #0b0b28, #14143a);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      text-align: center; padding: 90px 5%;
      position: relative; overflow: hidden;
    }
    .cta-glow {
      position: absolute; pointer-events: none;
      border-radius: 50%; filter: blur(100px); opacity: .2;
    }
    .cta-glow.g1 { width: 400px; height: 400px; background: var(--cyan);   top: -100px; left: 50%; transform: translateX(-60%); }
    .cta-glow.g2 { width: 300px; height: 300px; background: var(--purple); bottom: -80px; right: 10%; }
    #cta .section-title { margin-bottom: 1rem; }
    #cta .section-sub { margin: 0 auto 2.5rem; max-width: 500px; }

    /* ── CONTACT ── */
    #contact { background: var(--bg2); }
    .contact-wrap {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
      align-items: start; margin-top: 3rem;
    }
    .contact-info h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem;
    }
    .contact-info p { color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
    .contact-detail {
      display: flex; align-items: center; gap: .8rem;
      margin-bottom: 1rem; font-size: .95rem;
    }
    .contact-detail .icon {
      width: 38px; height: 38px; border-radius: 8px;
      background: rgba(0,212,255,.1); display: flex;
      align-items: center; justify-content: center; font-size: 1rem;
      flex-shrink: 0;
    }
    form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    input, textarea, select {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 8px; color: var(--text);
      padding: .8rem 1rem; font-size: .95rem; font-family: inherit;
      width: 100%; transition: border-color .2s;
      outline: none;
    }
    input::placeholder, textarea::placeholder { color: var(--muted); }
    input:focus, textarea:focus, select:focus { border-color: var(--cyan); }
    select option { background: var(--card); }
    textarea { resize: vertical; min-height: 130px; }
    .form-submit {
      background: linear-gradient(135deg, var(--cyan), var(--purple));
      color: #fff; border: none; padding: .9rem;
      border-radius: 10px; font-size: 1rem; font-weight: 700;
      cursor: pointer; transition: opacity .2s;
    }
    .form-submit:hover { opacity: .87; }
    .checkbox-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;

  margin: 0.5rem 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.checkbox-wrap input[type="checkbox"] {
  width: auto;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--cyan);
  cursor: pointer;
}

.checkbox-wrap label {
  width: auto;
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-wrap a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-wrap a:hover {
  text-decoration: underline;
}

    /* ── FOOTER ── */
    footer {
      background: #05050f; border-top: 1px solid var(--border);
      padding: 2.5rem 5%;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
}

.footer-logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
    .footer-logo span { color: var(--gold); }
    footer p { font-size: .82rem; color: var(--muted); }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { font-size: .82rem; color: var(--muted); text-decoration: none; }
    .footer-links a:hover { color: var(--cyan); }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
      .nav-links, .nav-cta-desktop { display: none; }
      .hamburger { display: flex; }
      nav { padding: 0 1.2rem; }
      .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
      .form-row { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.5rem; }
      section { padding: 60px 1.2rem; }
      #hero { padding: 100px 1.2rem 60px; }
      footer { flex-direction: column; align-items: flex-start; }
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp .7s ease both; }
    .fade-up-d1 { animation-delay: .1s; }
    .fade-up-d2 { animation-delay: .2s; }
    .fade-up-d3 { animation-delay: .3s; }

    /* neon pulse on SVG machines */
    @keyframes neonPulse {
      0%, 100% { filter: drop-shadow(0 0 6px var(--cyan)); }
      50%       { filter: drop-shadow(0 0 16px var(--cyan)); }
    }
    .machine-svg { animation: neonPulse 3s ease-in-out infinite; }

    /* mobile nav drawer */
    .mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: rgba(7,7,26,.97); flex-direction: column;
      align-items: center; justify-content: center; gap: 2rem;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.8rem; font-weight: 700; color: var(--text);
      text-decoration: none;
    }
    .mobile-nav a:hover { color: var(--cyan); }
    .mobile-close {
      position: absolute; top: 1.2rem; right: 1.5rem;
      font-size: 2rem; cursor: pointer; color: var(--muted);
      background: transparent; border: 0; padding: .35rem; line-height: 1;
    }