    /* Nav */
  nav#main-nav {    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;    background: rgba(11, 31, 58, 0.92);    backdrop-filter: blur(12px);    border-bottom: 1px solid rgba(255,255,255,0.08);    padding: 16px 0;  }
  .nav-inner {    max-width: 1400px; margin: 0 auto; padding: 0 24px;    display: flex; align-items: center; justify-content: space-between;  }
  .logo img { height: 58px; width: auto; display: block; }
  @media (max-width: 520px) {
     .logo img { height: 46px; }
    }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links a {color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px;    font-weight: 500; transition: color 0.2s;  }
  .nav-links a:hover { color: #2EC4B6; }
  .nav-cta {    background: #2EC4B6; color: #0B1F3A !important;    padding: 10px 20px !important; border-radius: 8px; font-weight: 600; text-align: center;  }
  .nav-cta:hover { background: #25a89d; }
  .nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .nav-hamburger span { width: 24px; height: 2px; background: #fff; }
  a.nav-cta span {    white-space: nowrap;}

  /* Mobile menu */
  .mobile-menu {    display: none; position: fixed; top: 70px; left: 0; right: 0;    background: #0B1F3A; padding: 24px; flex-direction: column; gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08); z-index: 999;  }
  .mobile-menu a { color: #fff; text-decoration: none; font-size: 16px; padding: 8px 0; }
  .mobile-menu.open { display: flex; }
  
  /* Mobile menu dropdown */
  .mobile-menu-item-dropdown {    display: flex;    flex-direction: column;    gap: 0;  }
  .mobile-dropdown-toggle {    color: #fff;    text-decoration: none;    font-size: 16px;    padding: 8px 0;    cursor: pointer;    transition: color 0.2s;  }
  .mobile-dropdown-toggle:hover {    color: #2EC4B6;  }
  .mobile-dropdown-toggle::after {    content: '▾';    font-size: 12px;    opacity: 0.6;    transition: transform 0.2s ease;    margin-left: 8px;  }
  .mobile-dropdown-toggle.open::after {    transform: rotate(180deg);  }
  .mobile-dropdown {    display: none;    flex-direction: column;    gap: 0;    margin-top: 8px;    padding-left: 16px;    border-left: 2px solid rgba(46,196,182,0.3);    max-height: 0;    overflow: hidden;    transition: max-height 0.3s ease;  }
  .mobile-dropdown.open {    display: flex;    max-height: 500px;  }
  .mobile-dropdown a {    color: rgba(255,255,255,0.85);    text-decoration: none;    font-size: 15px;    padding: 8px 0;    transition: color 0.2s;  }
  .mobile-dropdown a:hover {    color: #2EC4B6;  }



  /* Services + About dropdowns */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a::after {  content: "▾"; margin-left: 4px; font-size: 10px; opacity: 0.6;}
/* Invisible bridge — extends the dropdown's hover area UP to the trigger */
.nav-item-dropdown::after {  content: "";  position: absolute;  top: 100%; left: 0; right: 0;  height: 16px;  pointer-events: none;}
.nav-item-dropdown:hover::after,
.nav-item-dropdown:focus-within::after {  pointer-events: auto;}
.nav-dropdown {  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-4px);  margin-top: 12px;  background: rgba(11, 31, 58, 0.98); backdrop-filter: blur(12px);  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;  padding: 8px; min-width: 200px;  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 1001;}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown,
.nav-dropdown:hover {  opacity: 1; visibility: visible; pointer-events: auto;  transform: translateX(-50%) translateY(0);}
.nav-dropdown a {  padding: 10px 14px; border-radius: 6px; font-size: 14px;  color: rgba(255,255,255,0.85); text-decoration: none;  transition: background 0.15s, color 0.15s;  white-space: nowrap;}
.nav-dropdown a:hover {  background: rgba(46,196,182,0.1); color: #2EC4B6;}
@media (max-width: 768px) {
  .nav-item-dropdown > a::after { display: none; }
  .nav-dropdown { display: none; }
  .nav-item-dropdown::after { display: none; }
}


/* [NAV-TOM] Pink mono techy styling for TOM AI nav link with pulsing status dot */
.nav-tom {  font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', monospace !important;  color: #f02090 !important;  letter-spacing: 0.12em;  text-transform: uppercase;  font-size: 12px !important;  font-weight: 600 !important;  display: inline-flex !important;  align-items: center;  gap: 8px;  transition: text-shadow 0.2s, color 0.2s;}
.nav-tom::before {  content: '';  width: 7px;  height: 7px;  border-radius: 50%;  background: #f02090;  box-shadow: 0 0 8px #f02090, 0 0 14px rgba(240,32,144,0.6);
  animation: navTomPulse 1.6s ease-in-out infinite;  flex-shrink: 0;}
.nav-tom:hover {  color: #ff4ba8 !important;  text-shadow: 0 0 12px rgba(240,32,144,0.5);}
@keyframes navTomPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #f02090, 0 0 14px rgba(240,32,144,0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 4px #f02090, 0 0 8px rgba(240,32,144,0.3); }
}
.mobile-menu .nav-tom { font-size: 14px !important; }
/* [NAV-TOM-END] */



/* Footer */
  footer {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 24px 30px;
    background: #06132A;
  }
  .footer-container { max-width: 1400px; margin: 0 auto; }
  .footer-grid {    display: grid;    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;    gap: 40px;    margin-bottom: 40px;  }
  .footer-brand img { height: 32px; margin-bottom: 16px; }
  .footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 320px; }
  .footer-col-title {
    font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-bottom: 16px; font-weight: 600;
  }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; }
  .footer-links a:hover { color: #2EC4B6; }
  .footer-bottom {
    padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.45); }
  .footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.55); text-decoration: none; }
  .footer-legal a:hover { color: #2EC4B6; }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }
