/* ═══════════════════════════════════════════════
   Чек-лист запуска сайта — styles
   Используются глобальные переменные темы из styles2.css
   (--surface, --text, --text-muted, --border, --rule, --primary, --secondary)
   ═══════════════════════════════════════════════ */

.checklist-progress {
  margin-bottom: 32px;
}
.checklist-progress-bar {
  height: 8px;
  background: var(--rule);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.checklist-progress-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 4px;
  transition: width 0.3s ease;
  width: 0%;
}
.checklist-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.checklist-section {
  margin-bottom: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.checklist-section-title {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.checklist-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.checklist-item:last-child {
  border-bottom: none;
}
.checklist-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.checklist-label:hover .checklist-text {
  color: var(--primary-light);
}
.checklist-checkbox {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}
.checklist-item--done .checklist-text {
  text-decoration: line-through;
  opacity: 0.5;
  color: var(--text-muted);
}
.checklist-text {
  transition: opacity 0.2s, color 0.2s;
}

.checklist-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 600px) {
  .checklist-actions {
    flex-direction: column;
  }
  .checklist-actions .btn-primary,
  .checklist-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
