/* Адаптация для темной темы сайта */
.bg-light {
  background-color: var(--dark-bg) !important;
  color: var(--text-light) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
  background: var(--card-bg);
  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 10px 30px rgba(0, 255, 255, 0.2);
}

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

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

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

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

.timeline-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

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

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

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

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

.highlight-box {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.verification-step {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-color);
}

@media (max-width: 767px) {
    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .nav-menu a {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        width: 100%;
        padding-left: 0;
    }
}