/* site-nav.css — ONE shared navbar + footer for every Linkedify page.
   Fully namespaced under .site-header / .site-footer with site-* classes, so it
   never conflicts with any page's base CSS (homepage inline, vs-comparison.css, vs-hub.css).
   Replicates the homepage navbar exactly. Load this on every page. */

.site-header, .site-footer { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.site-header *, .site-footer * { box-sizing: border-box; }
.site-container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,8,13,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.site-logo { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; }
.site-logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.site-logo-text {
  font-size: 1.125rem; font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #8b5cf6, #6366f1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.site-nav { display: none; gap: 1.75rem; align-items: center; }
.site-nav a { color: rgba(255,255,255,0.5); font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.site-nav a:hover { color: #fff; }
.site-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; font-size: 0.9375rem; font-weight: 600;
  border-radius: 0.625rem; border: none; cursor: pointer; text-decoration: none; line-height: 1;
  transition: all 0.2s ease;
}
.site-btn-primary { background: linear-gradient(135deg, #8b5cf6, #a855f7); color: #fff; box-shadow: 0 4px 24px rgba(139,92,246,0.3); }
.site-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 32px rgba(139,92,246,0.4); color: #fff; }
.site-btn svg { width: 1rem; height: 1rem; }

/* ---- footer ---- */
.site-footer { padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.06); background: rgba(0,0,0,0.4); margin-top: 4rem; }
.site-footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.site-footer-copyright { color: rgba(255,255,255,0.3); font-size: 0.8125rem; }
.site-footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; justify-content: center; }
.site-footer-links a { color: rgba(255,255,255,0.3); font-size: 0.8125rem; text-decoration: none; transition: color 0.15s; }
.site-footer-links a:hover { color: rgba(255,255,255,0.6); }

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .site-footer-inner { flex-direction: row; justify-content: space-between; }
}
