/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 22px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: #3E7BFA;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(62,123,250,0.25);
}
.btn-primary:hover {
  background: #5B94FF;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(62,123,250,0.35);
}

.btn-secondary {
  background: transparent;
  color: #0B1320;
  border: 1px solid #CBD5E1;
}
.btn-secondary:hover { border-color: #94A3B8; background: #F3F7FB; }

.btn-ghost {
  background: transparent;
  color: #64748B;
  padding: 8px 16px;
}
.btn-ghost:hover { color: #0B1320; }
