/* ===== EDGEDEFEND MOBILE RESPONSIVE DESIGN ===== */

/* Primary: #1B263B (Deep Baltic Blue)
   Secondary: #F3722C (Signal Orange)
   Accent: #8D99AE (Brushed Steel Gray)
*/

@media screen and (max-width: 768px) {
  .content-wrapper {
    min-height: calc(100vh - 60px - 200px);
  }

  /* Navigation */
  .hamburger {
    display: flex;
  }

  .nav-container {
    justify-content: space-between;
    gap: 0;
  }

  .nav-title {
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
  }

  .nav-logo img {
    height: 32px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    background-color: #1B263B; /* Deep Baltic Blue for mobile menu overlay */
    width: 100%;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0,0,0,0.3);
    padding: 2rem 0;
    gap: 0;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    margin-left: 0;
    border-top: 2px solid #F3722C; /* Brand orange accent on top of mobile menu */
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    width: 100%;
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
    font-family: 'IBM Plex Mono', monospace; /* Maintain engineering feel in menu */
    color: white;
    border-bottom: 1px solid rgba(141, 153, 174, 0.2); /* Steel Gray divider */
  }

  .nav-menu a:hover {
    background-color: rgba(243, 114, 44, 0.1); /* Subtle Signal Orange hover */
    color: #F3722C;
    transform: none;
  }

  .bar {
    background-color: #F3722C; /* Hamburger bars in Signal Orange for visibility */
  }

  /* Hero Section */
  .hero-title {
    font-size: 2rem;
    max-width: 90%;
    color: white;
  }

  .hero-subtitle {
    font-size: 1.
