/* backend/static/css/saas.css */
/* Minimal SaaS Marketing Styles - Only shared components */

/* ===================
   NAVIGATION
   =================== */
.saas-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

.saas-nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.saas-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
}

.saas-nav__logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.saas-nav__menu {
  display: flex;
  gap: 2rem;
}

.saas-nav__link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.saas-nav__link:hover {
  color: #3b82f6;
}

.saas-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ===================
   FOOTER
   =================== */
.saas-footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  margin-top: 4rem;
}

.saas-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.saas-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.saas-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.saas-footer__brand p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.saas-footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.saas-footer__links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.saas-footer__links a:hover {
  color: #3b82f6;
}

.saas-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.saas-footer__bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}

/* ===================
   RESPONSIVE
   =================== */
@media (max-width: 768px) {
  .saas-nav__menu {
    display: none;
  }
  
  .saas-footer__content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .saas-footer__links {
    justify-content: center;
  }
}