:root {
  /* Zandrigo Primary Palette */
  --z-blue: #2563eb;
  --z-blue-dark: #1e40af;
  --z-blue-light: #60a5fa;
  --z-violet: #7c3aed;
  --z-violet-dark: #5b21b6;
  
  /* Neutrals */
  --z-slate-900: #0f172a;
  --z-slate-800: #1e293b;
  --z-slate-500: #64748b;
  --z-slate-100: #f1f5f9;
  --z-slate-50: #f8fafc;
  
  /* Semantic */
  --z-text-primary: #1e293b;
  --z-text-secondary: #64748b;
  --z-border: #e2e8f0;
  --z-white: #ffffff;
}

.zandrigo-footer {
  background-color: var(--z-slate-900);
  color: var(--z-white);
  padding: 4rem 2rem 2rem 2rem;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zandrigo-footer a {
  color: var(--z-slate-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.zandrigo-footer a:hover {
  color: var(--z-white);
}

.z-tagline {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--z-blue-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.z-nav-header {
  color: var(--z-white);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.z-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.z-nav-item {
  margin-bottom: 0.75rem;
}

.z-footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
