/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: white !important;
  box-shadow: 0 4px 12px rgba(67, 121, 238, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(67, 121, 238, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--text) !important;
  border: 1px solid #e1e7ec;
}

.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: #d1d9e0;
}

.btn-large {
  padding: 14px 32px;
  font-size: 16px;
}

.w-100 {
  width: 100%;
}

