/* Адаптация под светлую тему */
.bg-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-light {
  background-color: var(--light) !important;
  color: var(--text-dark) !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.table-dark {
  --bs-table-bg: var(--dark-card, #1a1a2e);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.05);
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
  --bs-table-color: var(--text-primary);
}

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

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

.commission-highlight {
  background: var(--gradient-primary);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.commission-highlight h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

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

.stats-box {
  background: var(--dark-card, #1a1a2e);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--primary);
}

.stats-box h4 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.benefit-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cta-section {
  background: var(--gradient-secondary);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.process-step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

@media (max-width: 768px) {
  .commission-highlight h3 {
    font-size: 2rem;
  }
  
  .stats-box h4 {
    font-size: 1.5rem;
  }
}