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

/* Адаптация к теме сайта */
.bg-light {
  background-color: var(--dark-lighter) !important;
  color: var(--text-primary) !important;
}

.bg-dark {
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-lighter) 100%) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

.requirement-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--dark-card);
  border-radius: 20px;
  margin: 0.25rem;
  border: 1px solid var(--primary);
  color: var(--text-primary);
}

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

.table {
  color: var(--text-primary);
  border-color: var(--border-color);
  background: var(--dark-card);
}

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

.table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table tbody tr:hover {
  background: var(--dark-lighter);
}

.alert-info {
  background: var(--dark-card);
  border-left: 4px solid var(--primary);
  color: var(--text-primary);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
}

.highlight-box {
  background: var(--gradient-secondary);
  padding: 2rem;
  border-radius: 1rem;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.checklist li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-primary);
}

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

.cta-button {
  background: var(--gradient-main);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .requirement-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}