/* Global navigation + Schedule Demo button (source of truth) */

.logo-icon {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.3s;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #f17522;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Unified Schedule Demo CTA */
.cta-demo {
  background: linear-gradient(135deg, #f17522, #BF7AB4);
  color: #fff !important;
  padding: 12px 22px;
  border: 0;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  white-space: nowrap;
  box-sizing: border-box;
  font-family: var(--font-body, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  flex-shrink: 0;
}

.cta-demo:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(241,117,34,.28); }
.cta-demo:active { transform: translateY(0); box-shadow: 0 4px 10px rgba(241,117,34,.18); }

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  padding: 0.5rem;
  z-index: 1001;
}

@media (max-width: 768px) {
  /* FORCE HIDE desktop navigation on mobile - NUCLEAR OPTION */
  .nav-links {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    padding: 1rem !important;
    flex-direction: column !important;
    z-index: 1000 !important;
    width: 100% !important;
    height: 0 !important;
    overflow: hidden !important;
    transform: translateY(-100%) !important;
    transition: all 0.3s ease !important;
  }
  
  /* Show mobile menu when active */
  .nav-links.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    transform: translateY(0) !important;
  }
  
  /* Adjust nav actions for mobile */
  .nav-actions {
    gap: 0.5rem !important;
  }
  
  /* Show hamburger menu on mobile */
  .mobile-menu-toggle {
    display: block !important;
    position: relative !important;
    z-index: 1002 !important;
  }
  
  /* Ensure header is properly positioned */
  header {
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    z-index: 1000 !important;
  }
  
  /* Make nav container responsive */
  nav {
    position: relative !important;
    padding: 0.75rem 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  /* Adjust logo size for mobile */
  .logo-icon {
    width: 120px !important;
    height: 120px !important;
  }
  
  /* Make CTA button smaller on mobile */
  .cta-demo {
    padding: 8px 16px !important;
    font-size: 12px !important;
  }
  
  /* Ensure nav-links are completely hidden by default */
  .nav-links li {
    display: none !important;
  }
  
  .nav-links.active li {
    display: block !important;
  }
}


