/* Стили для страницы итогового чек-листа уровня 2 */
.summary-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    color: inherit;
    border-left: 4px solid transparent;
    border: 1px solid #e5e7eb;
}

.checklist-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-left-color: var(--accent-color);
}

.check-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-content h3 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.check-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

.summary-intro {
    text-align: center;
    margin-bottom: 40px;
}

.summary-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.final-status-box {
    text-align: center; 
    margin-top: 40px; 
    padding: 30px; 
    background: #f0fdf4; 
    border-radius: 12px; 
    border: 1px solid #bbf7d0;
}

.final-status-text {
    font-size: 1.1rem; 
    color: #166534; 
    margin: 0; 
    font-weight: 600;
}

.next-level-text {
    color: #4b5563; 
    margin-top: 10px; 
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    .summary-container { margin: 20px auto; }
    .checklist-item { padding: 16px; }
}
