/* Mobile Menu Styles */
@media (max-width: 768px) {
  .btn-menu {
    font-size: 24px;
    color: #000;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .btn-menu::after {
    content: "••";
    margin-left: 0;
    transition: transform 0.3s ease;
  }

  .btn-menu.active::after {
    transform: rotate(90deg);
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #4169E1;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }

  .mobile-menu-logo {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 2px;
    font-family: 'Aeonik', sans-serif;
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }

  .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .mobile-menu-nav {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 20px;
  }

  .mobile-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-family: 'Aeonik', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .mobile-menu-item:last-child {
    border-bottom: none;
  }

  .mobile-menu-item:hover {
    color: #4169E1;
  }

  .mobile-menu-item::after {
    content: '•';
    font-size: 12px;
    opacity: 0.5;
  }

  .mobile-menu-cta {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px 25px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .mobile-menu-cta:hover {
    background: rgba(255, 255, 255, 1);
  }

  .mobile-menu-cta-text {
    font-family: 'Aeonik', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
  }

  .mobile-menu-cta::after {
    content: '▢';
    font-size: 16px;
    color: #666;
  }

  .mobile-menu-labs {
    background: #000;
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .mobile-menu-labs:hover {
    background: #333;
  }

  .mobile-menu-labs-content {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-menu-labs-icon {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
  }

  .mobile-menu-labs-text {
    font-family: 'Aeonik', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
  }

  .mobile-menu-labs::after {
    content: '↗';
    font-size: 16px;
    color: #fff;
  }
}