*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  :root {
    --navy: #0A0F1E;
    --steel: #121929;
    --card-bg: #161E30;
    --border: rgba(255,255,255,0.08);
    --blue: #2563EB;
    --blue-light: #3B82F6;
    --amber: #F59E0B;
    --text: #F1F5F9;
    --muted: #94A3B8;
    --dim: #475569;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,15,30,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    min-width: 180px;
  }

  .logo-img {
    width: 220px;
    height: auto;
    display: block;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(37,99,235,0.25); }
    50% { box-shadow: 0 0 0 6px rgba(37,99,235,0.1); }
  }

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

  nav ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
  }

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

  .nav-location {
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
  }

  .nav-cta {
    background: var(--blue);
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--blue-light) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
  }

  .hero-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    animation: breathe 4s ease-in-out infinite;
  }

  @keyframes breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
  }

  .hero-content {
    position: relative;
    max-width: 760px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--blue-light);
  }

  h1.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #fff;
  }

  h1.hero-title span {
    color: var(--blue-light);
  }

  .hero-sub {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
  }

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

  .btn-primary {
    background: var(--blue);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); }

  .btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.1s;
    display: inline-block;
  }

  .btn-outline:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-1px); }

  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
  }

  .stat-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
  }

  .stat-val span { color: var(--blue-light); }

  .stat-label {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* SECTIONS */
  section { padding: 100px 5%; }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 16px; height: 1px;
    background: var(--blue-light);
  }

  h2.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
  }

  .section-desc {
    color: var(--muted);
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 3.5rem;
  }

  /* SERVICES */
  #services { background: var(--steel); }

  .starter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
    margin-bottom: 4rem;
  }

  .starter-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem;
  }

  .starter-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.4rem;
  }

  .starter-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .service-card {
    background: var(--card-bg);
    padding: 2rem;
    transition: background 0.2s;
    cursor: default;
  }

  .service-card:hover { background: #1a2540; }

  .service-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    opacity: 0.7;
  }

	  .service-icon {
	    width: 40px; height: 40px;
	    background: rgba(37,99,235,0.12);
	    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
	    font-size: 1.125rem;
	    color: var(--blue-light);
	  }

	  .icon {
	    width: 1em;
	    height: 1em;
	    stroke: currentColor;
	    stroke-width: 2;
	    stroke-linecap: round;
	    stroke-linejoin: round;
	    fill: none;
	    display: block;
	  }

	  .service-icon .icon,
	  .contact-detail-icon .icon {
	    width: 20px;
	    height: 20px;
	  }

  .service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
  }

  .service-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .tag {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--blue-light);
    background: rgba(37,99,235,0.1);
    padding: 3px 9px;
    border-radius: 4px;
    border: 1px solid rgba(37,99,235,0.2);
  }

  .tag.amber {
    color: var(--amber);
    background: rgba(245,158,11,0.1);
    border-color: rgba(245,158,11,0.2);
  }

  /* SLA STRIP */
  .sla-strip {
    background: linear-gradient(135deg, #0F1C3A 0%, #0A0F1E 100%);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
  }

  .sla-item { text-align: center; }

  .sla-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
  }

  .sla-val span { color: var(--amber); }

  .sla-lbl {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* VENDORS */
  #vendors { background: var(--navy); }

  .vendor-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .vendor-pill {
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 10px 20px;
    border-radius: 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: border-color 0.2s, color 0.2s;
  }

  .vendor-pill:hover { border-color: rgba(37,99,235,0.5); color: var(--blue-light); }

  /* INDUSTRIES */
  #industries { background: var(--steel); }

  .phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .phase-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
  }

  .phase-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 1.25rem;
  }

  .phase-badge.p1 { background: rgba(37,99,235,0.15); color: var(--blue-light); }
  .phase-badge.p2 { background: rgba(245,158,11,0.12); color: var(--amber); }
  .phase-badge.p3 { background: rgba(16,185,129,0.12); color: #34D399; }

  .phase-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
  }

  .phase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .phase-list li {
    font-size: 0.875rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .phase-list li::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--dim);
    flex-shrink: 0;
  }

  /* REVENUE MODEL */
  #revenue { background: var(--navy); }

  .revenue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .revenue-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
  }

	  .revenue-icon {
	    width: 32px;
	    height: 32px;
	    color: var(--blue-light);
	    margin-bottom: 1rem;
	  }

	  .revenue-icon .icon {
	    width: 28px;
	    height: 28px;
	  }

  .revenue-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
  }

  .revenue-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .revenue-card ul li {
    font-size: 0.875rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .revenue-card ul li::before {
    content: '→';
    color: var(--blue);
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  /* WHY US */
  #why { background: var(--steel); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
  }

  .why-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
  }

  .why-item p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
  }

	  .why-icon {
	    width: 44px; height: 44px;
	    background: rgba(37,99,235,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
	    font-size: 1.25rem;
	    color: var(--blue-light);
	  }

  .why-icon .icon {
    width: 22px;
    height: 22px;
  }

  /* FAQ */
  #faq { background: var(--steel); }

  .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
  }

  .faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
  }

  .faq-item h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.6rem;
  }

  .faq-item p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* CTA */
  #cta {
    background: var(--navy);
    text-align: center;
    padding: 120px 5%;
  }

  .cta-box {
    max-width: 640px;
    margin: 0 auto;
  }

  #cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 1.25rem;
  }

  #cta p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.75;
  }

  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* CONTACT */
  #contact { background: var(--steel); }

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

  @media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }

  .contact-info h2 { color: #fff; margin-bottom: 1rem; }
  .contact-info p { color: var(--muted); margin-bottom: 2rem; line-height: 1.75; }

  .contact-details { display: flex; flex-direction: column; gap: 1.25rem; }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .contact-detail-icon {
    width: 36px; height: 36px;
    background: rgba(37,99,235,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--blue-light);
  }

  .contact-detail span {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
  }

  .contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--dim); }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: rgba(37,99,235,0.6);
    background: rgba(37,99,235,0.04);
  }

  .form-group select option { background: #1C2742; color: var(--text); }
  .form-group textarea { resize: vertical; min-height: 110px; }

  .form-submit {
    width: 100%;
    background: var(--blue);
    color: white;
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }

  .form-submit:hover { background: var(--blue-light); }

  /* FOOTER */
  footer {
    background: #06090F;
    padding: 3rem 5%;
    border-top: 1px solid var(--border);
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-copy {
    font-size: 0.8125rem;
    color: var(--dim);
  }

  .footer-links {
    display: flex;
    gap: 1.5rem;
  }

  .footer-links a {
    font-size: 0.8125rem;
    color: var(--dim);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  /* DIVIDER */
  .divider {
    height: 1px;
    background: var(--border);
    margin: 0;
  }

  /* MOBILE NAV */
  .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--muted); font-size: 1.25rem; padding: 4px; }
  
  @media (max-width: 760px) {
    nav ul { display: none; }
    .logo-img { width: 178px; }
    .mobile-menu-btn { display: block; }
    .hero-stats { gap: 1.5rem; }
    section { padding: 70px 5%; }
  }
