Despite a lot of trying, experimenting with and without enumitem I cannot figure out how to shift labels in itemize to the left of the table cell in order to exploit the full cell width. Further difficulty is that I need to use hyperref, and it seems to interfere with vertical spacing in the table.
I would appreciate not only the working solution, but also a bit of explanation on how itemindent, labelwidth work. It seems to me that leftmargin does not have an effect either.
I am inspired by this beautiful answer.
I am bound to use
xelatex,memoir,Arialfont, and the specified page geometry. That is why my minimal example is somewhat long.
\documentclass[11pt,a4paper,onecolumn,openright,final,oneside]{memoir}
%===============================================
\settrims{0.cm}{0.cm}
\setbinding{0cm}
\setlrmarginsandblock{*}{2.5cm}{1}
\setulmarginsandblock{2.5cm}{*}{1}
\checkandfixthelayout
%===============================================
\usepackage[dvipsnames,table]{xcolor}
\usepackage[colorlinks,linkcolor=blue,citecolor=blue,urlcolor=blue]{hyperref}
\usepackage{fontspec}
\setmainfont[Ligatures=TeX]{Arial}
\newfontfamily{\headingfont}[Ligatures=TeX]{Helvetica Neue Condensed Bold}
\renewcommand{\tablename}{\headingfont Tab.}
\renewcommand{\thetable}{\arabic{table}}
%===============================================
\begin{document}
\begin{table}[t]
\rowcolors{1}{}{gray!10}
\begin{tabularx}{\textwidth}[t]{llXX}
\arrayrulecolor{NavyBlue}
No.&Duration& Methodological developments& Systems and Applications\\\hline
% ======================= ======================= =======================
1.& X months &
\begin{minipage}[t]{\linewidth}%
\tightlists
\begin{enumerate}
\item Very long and complicated name
\item Even longer and more complicated name
\end{enumerate}
\end{minipage}
& Short name\\
% ======================= ======================= =======================
3.& Y months& Generalization towards some new scenario&
\begin{minipage}[t]{\linewidth}%
\tightlists
\begin{enumerate}
\item Very long and complicated name
\item Even longer and more complicated name
\end{enumerate}
\end{minipage}
\\
% ======================= ======================= =======================
4.& Z months & Short name & Short name
\end{tabularx}
\caption[]{\small Development plan}
\end{table}
\end{document}


