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

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

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

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

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

.info-box {
  padding: 1.5rem;
  border-radius: 8px;
  background: var(--dark-card);
  border-left: 4px solid var(--primary);
  margin-bottom: 1.5rem;
}

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

.security-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 20px;
  color: #28a745;
  font-size: 0.875rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.highlight-text {
  color: var(--primary);
  font-weight: 600;
}

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

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

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

@media (max-width: 768px) {
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }
}