/* Paleta de marca: Navy + Gold inspirada en logo Qualified Lead */
:root {
  --brand: #0a2540;
  --brand-rgb: 10,37,64;
  --brand-dark: #071a2e;
  --brand-light: #e8eef4;
  --brand-accent: #c9a227;
  --brand-accent-rgb: 201,162,39;
  --text-main: #1a1a2e;
  --text-muted: #5a6577;
  --bg-main: #fff;
  --bg-alt: #f5f7fa;
  --border: #e2e8f0;
  --shadow: 0 2px 12px rgba(10,37,64,0.08);
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', 'Lato', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-family: 'Inter', 'Lato', Arial, sans-serif;
  font-weight: 700;
}

.glass-card, .kanban-column, .card, .modal-content {
  background: var(--bg-main) !important;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 12px;
}

.btn, .action-btn, .btn-primary-custom {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover, .action-btn:hover, .btn-primary-custom:hover {
  background: var(--brand-accent);
  color: var(--brand);
  box-shadow: 0 4px 16px rgba(var(--brand-accent-rgb),0.25);
}

a, .link {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.18s;
}

a:hover, .link:hover {
  color: var(--brand-accent);
}

input, select, textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-main);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.1);
  outline: none;
}

.stat-value, .lead-score-badge.hot {
  color: var(--brand-accent) !important;
}

.kanban-title i, .stat-icon {
  color: var(--brand) !important;
}

::-webkit-scrollbar-thumb {
  background: var(--brand-light);
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}
