.progress-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border-left: 4px solid #0EA5E9;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

.progress-percentage {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.progress-bar {
    height: 12px;
    background: #E0E7FF;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-purple));
    transition: width 0.5s ease;
    border-radius: 6px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.check-category {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-purple);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.check-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.check-item:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.check-content {
    flex: 1;
}

.check-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.check-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .progress-section {
        padding: 1.5rem;
    }
}
