/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Tabs */
.tab-btn.active {
  border-bottom-color: #0284c7;
  color: #0284c7;
  font-weight: 700;
  background-color: #f0f9ff;
}

.overflow-touch {
  -webkit-overflow-scrolling: touch;
}

input[type="number"],
input[type="text"],
input[type="password"],
input[type="email"],
select {
  font-size: 16px !important;
}

/* Security pulsing badge */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.shield-pulse {
  animation: pulse-glow 2.5s infinite;
}

/* Password rule checkmarks */
.rule-item.valid {
  color: #16a34a;
  font-weight: 600;
}
.rule-item.invalid {
  color: #94a3b8;
}

/* Plan selector dropdown custom styling */
.plan-pill {
  transition: all 0.2s ease-in-out;
}
.plan-pill:hover {
  transform: translateY(-1px);
}

/* Glassmorphism modals */
.modal-backdrop {
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
}

/* Comparison matrix cards */
.compare-card {
  transition: all 0.2s ease;
}
.compare-card:hover {
  border-color: #0284c7;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}
