*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  button { font-family: var(--font); cursor: pointer; }
  :root {
    --blue: #2563eb;
    --blue-light: #60a5fa;
    --navy: #0d1f3c;
    --navy2: #0a1628;
    --text: #f1f5f9;
    --muted: #a8bbd4;
    --dim: #7a90a8;
    --card-bg: rgba(255,255,255,0.07);
    --card-border: rgba(255,255,255,0.12);
    --font: 'DM Sans', sans-serif;
  }
  html { scroll-behavior: smooth; }
  * { scroll-behavior: smooth; }
  body { font-family: var(--font); background: #0d1f3c; color: var(--text); }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(8,17,31,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    padding: 0 2.5rem;
    height: 64px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-mark {
    width: 36px; height: 36px; background: var(--blue); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 600; color: #fff; font-family: 'Space Grotesk', sans-serif;
  }
  .logo-name { font-size: 16px; font-weight: 500; color: #fff; }
  .logo-name span { color: var(--blue-light); }
  .nav-links { display: flex; gap: 2rem; }
  .nav-links button {
    background: none; border: none; color: var(--muted);
    font-size: 14px; cursor: pointer; font-family: var(--font);
    padding: 0; transition: color 0.2s;
  }
  .nav-links button:hover { color: #fff; }
  .nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .nav-links a:hover { color: #fff; }
  .nav-btn {
    background: var(--blue); color: #fff; text-decoration: none;
    padding: 8px 20px; border-radius: 6px; font-size: 14px; font-weight: 500;
  }
  .nav-btn:hover { background: #1d4ed8; }

  /* HERO */
  .hero {
    min-height: 92vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 0.5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .hero-glow {
    position: absolute; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 65%);
    top: -200px; left: 50%; transform: translateX(-50%);
    pointer-events: none;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 1; max-width: 720px; text-align: center; margin: 0 auto; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(96,165,250,0.25);
    border-radius: 20px; padding: 5px 16px;
    font-size: 13px; color: var(--blue-light);
    margin-bottom: 1.8rem;
  }
  .hero-badge::before { content: '●'; font-size: 8px; color: #22c55e; }
  .hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.4rem;
    color: #fff;
  }
  .hero h1 em { font-style: normal; color: var(--blue-light); }
  .hero p {
    font-size: 1.1rem; color: var(--muted);
    max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.75;
  }
  .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--blue); color: #fff;
    padding: 13px 30px; border-radius: 8px;
    font-size: 15px; font-weight: 500; text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
  }
  .btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: #fff;
    padding: 13px 30px; border-radius: 8px;
    font-size: 15px; font-weight: 500; text-decoration: none;
    border: 1px solid var(--card-border);
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
  .hero-stats {
    display: flex; gap: 0; justify-content: center;
    margin-top: 4rem; flex-wrap: nowrap;
    border-top: 1px solid var(--card-border);
    padding-top: 3rem;
  }
  .stat {
    padding: 0 3rem;
    border-right: 1px solid var(--card-border);
    text-align: center;
  }
  .stat:last-child { border-right: none; }
  .stat-n {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem; font-weight: 600; color: #fff; display: block;
  }
  .stat-l { font-size: 12px; color: var(--dim); margin-top: 3px; display: block; }

  /* SECTIONS */
  section { padding: 5rem 2rem; }
  .wrap { max-width: 1040px; margin: 0 auto; }
  .sec-head { text-align: center; margin-bottom: 3.5rem; }
  .sec-tag {
    display: inline-block; font-size: 11px; font-weight: 600;
    color: var(--blue-light); text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
  }
  .sec-head h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600; color: #fff; letter-spacing: -0.5px;
    margin-bottom: 0.8rem;
  }
  .sec-head p { color: var(--muted); font-size: 15px; max-width: 500px; margin: 0 auto; line-height: 1.7; }

  /* SERVICES */
  .services { background: #122340; }
  .svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
  }
  .svc-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.6rem;
    transition: border-color 0.2s, background 0.2s;
  }
  .svc-card:hover {
    border-color: rgba(96,165,250,0.3);
    background: rgba(37,99,235,0.06);
  }
  .svc-ico {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 1rem;
  }
  .svc-card h3 { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 0.4rem; }
  .svc-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

  /* HOW */
  .how { background: #0d1f3c; }
  .steps-list { max-width: 680px; margin: 0 auto; }
  .step-row {
    display: flex; gap: 1.5rem; padding: 1.8rem 0;
    border-bottom: 1px solid var(--card-border);
  }
  .step-row:last-child { border-bottom: none; }
  .step-dot {
    width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
    background: rgba(37,99,235,0.2); border: 1px solid rgba(37,99,235,0.4);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px; font-weight: 600; color: var(--blue-light);
  }
  .step-body h3 { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 0.4rem; }
  .step-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* ABOUT */
  .about { background: #122340; min-height: 110vh; }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center; max-width: 900px; margin: 0 auto;
  }
  @media (max-width: 640px) { .about-grid { grid-template-columns: 1fr; } }
  .av-circle {
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(37,99,235,0.2); border: 2px solid rgba(96,165,250,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px; font-weight: 600; color: var(--blue-light);
    margin-bottom: 1.5rem;
  }
  .about-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9rem; font-weight: 600; color: #fff;
    letter-spacing: -0.5px; margin-bottom: 1rem;
  }
  .about-left p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 0.8rem; }
  .creds { list-style: none; margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.6rem; }
  .creds li { font-size: 14px; color: var(--muted); display: flex; gap: 0.7rem; }
  .creds li::before { content: '✓'; color: var(--blue-light); font-weight: 600; flex-shrink: 0; }
  .about-quote {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 16px; padding: 2rem;
  }
  .about-quote blockquote {
    font-size: 15px; color: var(--muted); line-height: 1.85;
    font-style: italic;
    border-left: 3px solid var(--blue);
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .quote-sig .name { font-size: 16px; font-weight: 500; color: #fff; }
  .quote-sig .role { font-size: 13px; color: var(--blue-light); margin-top: 3px; }

  /* CONTACT */
  .contact { background: #0a1628; border-top: 1px solid var(--card-border); }
  .contact-inner { text-align: center; max-width: 680px; margin: 0 auto; }
  .contact-inner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 600; color: #fff;
    letter-spacing: -0.5px; margin-bottom: 1rem;
  }
  .contact-inner p { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 2.5rem; }
  .contact-cards { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .cc {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 12px; padding: 1.5rem 2rem; min-width: 180px;
    text-align: center;
    transition: border-color 0.2s;
  }
  .cc:hover { border-color: rgba(96,165,250,0.3); }
  .cc-ico { font-size: 22px; margin-bottom: 6px; }
  .cc-lbl { font-size: 11px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
  .cc-val { font-size: 14px; color: #fff; font-weight: 500; }

  /* FOOTER */
  footer {
    background: #08111f; border-top: 1px solid var(--card-border);
    padding: 1.5rem 2rem; text-align: center;
    color: var(--dim); font-size: 13px;
  }

  @media (max-width: 640px) {
    .stat { padding: 0 1.5rem; }
  }

  /* ========== MOBILE RESPONSIVE ========== */
  @media (max-width: 768px) {

    /* NAV */
    nav { padding: 0 1rem; position: sticky; top: 0; z-index: 100; }
    .nav-links { display: none !important; }
    .nav-btn { display: none !important; }
    .hamburger { display: flex !important; }
    .hamburger span {
      display: block; width: 22px; height: 2px;
      background: #fff; border-radius: 2px; transition: all 0.3s;
    }
    .mobile-menu {
      flex-direction: column; gap: 0;
      position: absolute; top: 64px; left: 0; right: 0;
      background: #0d1f3c; border-top: 1px solid rgba(255,255,255,0.08);
      z-index: 200; padding: 1rem 0;
      display: none;
    }
    .mobile-menu.open { display: flex !important; }


    /* HERO */
    .hero { padding: 3rem 1.25rem 2.5rem; min-height: auto; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; padding-top: 2rem; margin-top: 2.5rem; }
    .stat { border-right: none; padding: 0; width: 45%; text-align: center; }
    .stat-n { font-size: 1.6rem; }

    /* TAGLINE */
    .hero + div p { font-size: 1rem; padding: 1rem; }

    /* SERVICES */
    section { padding: 3rem 1.25rem; }
    .svc-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .svc-card { padding: 1.2rem; }

    /* HOW WE DO IT - stack cards */
    .wrap > div[style*="grid-template-columns:1fr 1fr"] {
      grid-template-columns: 1fr !important;
    }

    /* ABOUT */
    .about-grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .av-circle { width: 64px; height: 64px; font-size: 22px; }

    /* CONTACT FORM */
    form > div[style*="grid-template-columns:1fr 1fr"] {
      grid-template-columns: 1fr !important;
    }

    /* GENERAL */
    .wrap { max-width: 100%; }
    .sec-head h2 { font-size: 1.6rem; }
  }

  @media (max-width: 480px) {
    .svc-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.75rem; }
    .stat { width: 45%; }
  }

  
  
  


  /* HAMBURGER - hidden on desktop */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #0d1f3c;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 200;
    padding: 0.5rem 0 1rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu button {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #94a3b8;
    font-size: 15px;
    padding: 14px 1.5rem;
    text-align: left;
    cursor: pointer;
    font-family: var(--font);
    width: 100%;
  }
  .mobile-menu button:hover { color: #fff; background: rgba(255,255,255,0.03); }
  .mobile-menu .mob-cta {
    background: #2563eb !important;
    color: #fff !important;
    margin: 1rem 1.5rem 0;
    border-radius: 8px;
    text-align: center !important;
    border: none !important;
  }

  @media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none !important; }
    .nav-btn { display: none !important; }
    nav { padding: 0 1rem; position: sticky; top: 0; z-index: 100; }

    .hero { padding: 3rem 1.25rem 2.5rem; min-height: auto; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-primary { width: auto; min-width: 280px; text-align: center; }
    .btn-primary, .btn-ghost { text-align: center; }
    .hero-stats { flex-wrap: wrap; padding-top: 2rem; margin-top: 2.5rem; justify-content: center; }
    .stat { border-right: none; padding: 0 1rem; width: 45%; }
    .stat-n { font-size: 1.6rem; }

    section { padding: 3rem 1.25rem; }
    .svc-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

    .about-grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .steps-list { padding: 0; }
    form input, form textarea { font-size: 16px !important; }
    form > div[style*="grid-template-columns"] { display: flex !important; flex-direction: column !important; gap: 1rem !important; }
    /* Fix typing effect overflow */
    .hero-content p[style*="nowrap"] { white-space: normal !important; overflow: visible !important; text-overflow: clip !important; }
    
    /* Fix Everything I.T. header cut off */
    .wrap h2[style*="nowrap"],
    div[style*="nowrap"] h2 { white-space: normal !important; }

    /* Fix section overlap */
    section { scroll-margin-top: 70px; }

    /* Fix services header wrapping */
    .sec-head div[style*="inline-flex"] { flex-wrap: wrap; justify-content: center; }
    .sec-head div[style*="inline-flex"] h2 { white-space: normal !important; font-size: 1.3rem; }
  }

  @media (max-width: 480px) {
    .svc-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.75rem; }
    .stat { width: 45%; }
  }


  /* Form validation */
  form input:invalid:not(:placeholder-shown),
  form textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(239, 68, 68, 0.7) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
  }
  form input:valid:not(:placeholder-shown),
  form textarea:valid:not(:placeholder-shown) {
    border-color: rgba(34, 197, 94, 0.5) !important;
  }

  /* Typing effect */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
