Como incorporar vários subtramas dentro de outra subfigura usando grouplots

Como incorporar vários subtramas dentro de outra subfigura usando grouplots

Alguém poderia me dar uma dica de como posso fazer isso usando grouplots e tikz. Eu fiz isso usando subfigure e \includegraphics, porém, estou enfrentando problemas para organizar as bordas das parcelas em relação às demais parcelas.

insira a descrição da imagem aqui

\begin{figure}
\centering
\begin{subfigure}[b]{0.45\linewidth}
    \includegraphics[width=\linewidth]{./Figures/c11.tex}
    \caption{}
\end{subfigure} \quad
\begin{subfigure}[b]{0.45\linewidth}
    \includegraphics[width=\linewidth]{./Figures/c22.tex}       
    \caption{}
\end{subfigure} \\
\begin{subfigure}[b]{0.45\linewidth}
    \centering
    \includegraphics[width=\linewidth]{./Figures/c33.tex}
    \caption{}
\end{subfigure}\quad
\begin{subfigure}[b]{0.45\linewidth}
    \begin{tabular}[b]{@{}c@{}}
        \includegraphics[width=.45\linewidth]{./Figures/c44-1.tex}  \quad
        \includegraphics[width=.45\linewidth]{./Figures/c44-2.tex}\\[-3pt]
        \includegraphics[width=.45\linewidth]{./Figures/c44-3.tex}  \quad
        \includegraphics[width=.45\linewidth]{./Figures/c44-4.tex} \\[-3pt]
    \end{tabular}
    \caption{}
\end{subfigure}
\caption{bla bla}
\label{Figure1} 
\end{figure}

Quando uso esse código, obtenho a seguinte figura. Quero que esteja perfeitamente alinhado.

insira a descrição da imagem aqui

Tentei usar groupplots, mas não tenho certeza de como definir a subfigura que é construída com 4 subtramas. Este é um MWE.

\documentclass[10pt,a4paper]{article}
\usepackage{tikz}
\usepackage{pgfplots}
\usepgfplotslibrary{groupplots}
\begin{document}    
\begin{figure}
   \begin{tikzpicture}
      \begin{groupplot}[
             group style={group size=2 by 2},
             cycle multiindex* list = {very thick\nextlist red\nextlist only 
             marks\nextlist}
       ] 
       \nextgroupplot \addplot {x}; \addplot {x^2};
       \nextgroupplot[cycle list = {red, blue}] \addplot {x}; \addplot {x^2};
       \nextgroupplot \addplot[green] {x}; \addplot {x^2};
       \nextgrouplot %Here I am not sure what to do
                \begin{groupplot}[
                                group style={group size=2 by 2},
                                cycle multiindex* list = {very 
                                thick\nextlist red\nextlist only 
                                marks\nextlist}
                                ]
                \nextgroupplot \addplot {x}; \addplot {x^2};
                \nextgroupplot \addplot {x}; \addplot {x^2};
                \nextgroupplot \addplot {x}; \addplot {x^2};
                \nextgroupplot \addplot {x}; \addplot {x^2};
            \end{groupplot}
      \end{groupplot}
   \end{tikzpicture}
\end{figure}
\end{document}

informação relacionada