.bg-light {
  background-color: var(--card-bg) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--card-border);
}

.card {
  background-color: var(--card-bg);
  border-color: var(--card-border);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.table {
  color: #000000;
  border-color: var(--card-border);
}

.table thead {
  background: var(--deep-navy);
  color: #FFFFFF;
  border-bottom: 2px solid var(--primary-cyan);
}

.table tbody tr {
  border-bottom: 1px solid var(--card-border);
}

.table tbody td {
  color: #000000;
}

.table tbody tr:hover {
  background-color: rgba(0, 255, 255, 0.05);
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--deep-navy);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.3);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(0, 255, 255, 0.5);
}

.btn-primary:hover::before {
  left: 100%;
}

.highlight-box {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--rich-purple) 100%);
  border-left: 4px solid var(--primary-cyan);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-cyan);
  color: var(--deep-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.security-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--electric-blue);
  color: white;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}