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

/* Адаптация к светлой теме */
.bg-dark {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--dark-secondary) 100%) !important;
  color: var(--text-light) !important;
  border: none !important;
}

.bg-light {
  background-color: rgba(255, 255, 255, 0.95) !important;
  color: var(--dark-primary) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.card {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gradient-hero);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.requirement-item {
  padding: 1rem;
  border-left: 4px solid var(--accent-coral);
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.benefit-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-card);
  color: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.25rem;
}

.table {
  color: var(--dark-primary);
  border-color: rgba(0, 0, 0, 0.1);
  background-color: white;
}

.table thead {
  background: var(--gradient-hero);
  color: white;
  border: none;
}

.table thead th {
  border: none;
  padding: 1rem;
  font-weight: 600;
}

.table tbody tr {
  transition: var(--transition);
}

.table tbody tr:hover {
  background-color: rgba(67, 97, 238, 0.05);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}

.cta-box {
  background: var(--gradient-hero);
  color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.info-badge {
  background: var(--accent-yellow);
  color: var(--dark-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  display: inline-block;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.checklist li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-coral);
  font-weight: bold;
  font-size: 1.25rem;
}

.warning-box {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid var(--accent-yellow);
  padding: 1.5rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .cta-box {
    padding: 1.5rem;
  }
}