/* Защита от горизонтального скролла */
html, body { 
  overflow-x: hidden; 
  max-width: 100vw; 
}

/* Адаптация под темную тему */
.bg-light {
  background-color: var(--dark-alt) !important;
  color: var(--text) !important;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.table {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
}

.table-dark {
  --bs-table-bg: var(--dark-alt);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.05);
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
}

.table thead {
  background: var(--dark);
  border-bottom: 2px solid var(--primary);
}

.requirements-list {
  list-style: none;
  padding-left: 0;
}

.requirements-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.requirements-list li:last-child {
  border-bottom: none;
}

.requirements-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.alert-info {
  background-color: rgba(13, 202, 240, 0.1);
  border-left: 4px solid var(--primary);
  color: var(--text);
}

.cta-box {
  background: var(--gradient-primary);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}