/* ===================================================================
   BLUEVISA GLOBAL STYLES
   Common styles used across all pages to avoid duplication
   =================================================================== */

/* Typography */
body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.025em;
}

/* Mockup Scroll (for dashboard previews) */
.mockup-scroll::-webkit-scrollbar {
  width: 4px;
}

.mockup-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.mockup-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step completion animation (pack pages) */
.step-item.completed .step-circle {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  transform: scale(1.1);
}

.step-item.completed .step-number {
  opacity: 0;
}

.step-item.completed .step-check {
  opacity: 1;
}

.step-item.completed span:last-child {
  color: #16a34a;
  font-weight: 500;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  padding: 1rem 2rem;
  background-color: #06a0f7;
  color: white;
  box-shadow: 0 10px 25px -5px rgba(6, 160, 247, 0.3), 0 5px 10px -5px rgba(6, 160, 247, 0.2);
}

.btn-primary:hover {
  background-color: #0590de;
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 1rem 2rem;
  background-color: white;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

/* Responsive Utilities */
@media (max-width: 640px) {
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
