/* ==========================================================================
   Pagina de montaj
   ========================================================================== */

.mtj-sectiune { padding: 64px 0 80px; }

.mtj-intro {
    max-width: 700px;
    margin: 0 auto 52px;
    text-align: center;
}
.mtj-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    line-height: 1.25;
}
.mtj-intro p {
    font-size: 16.5px;
    color: #6f6f6f;
    line-height: 1.7;
    margin: 0;
}

/* --- Pasii ---------------------------------------------------------------
   Linia verticala se traseaza cu un ::before pe lista, nu cu borduri pe
   fiecare element - altfel ar aparea o intrerupere intre pasi.
------------------------------------------------------------------------- */
.mtj-pasi {
    list-style: none;
    counter-reset: pas;
    padding: 0;
    margin: 0 auto 56px;
    max-width: 760px;
    position: relative;
}
.mtj-pasi::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: #ececec;
}

.mtj-pasi > li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 22px;
    margin-bottom: 34px;
    position: relative;
}
.mtj-pasi > li:last-child { margin-bottom: 0; }

.mtj-nr {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Peste linia verticala, cu inel alb ca sa nu se atinga. */
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px #fff;
}

.mtj-pasi h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 9px 0 10px;
    line-height: 1.3;
}
.mtj-pasi p {
    font-size: 15.5px;
    color: #5d5d5d;
    line-height: 1.72;
    margin: 0 0 11px;
}
.mtj-pasi p:last-child { margin-bottom: 0; }

/* Avertismentele practice: se disting fara sa strige. */
.mtj-atentie {
    background: #fdf8ec;
    border-left: 3px solid #e0a83c;
    padding: 11px 15px;
    border-radius: 0 5px 5px 0;
    font-size: 14.5px !important;
    color: #7a5c1e !important;
}

/* --- Ce iti trebuie ------------------------------------------------------ */
.mtj-necesar {
    max-width: 760px;
    margin: 0 auto 44px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 26px 30px;
}
.mtj-necesar h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}
.mtj-necesar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px 26px;
}
.mtj-necesar li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    color: #5d5d5d;
}
.mtj-necesar li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1a1a1a;
}

/* --- Ajutor -------------------------------------------------------------- */
.mtj-ajutor {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    padding: 40px 30px;
}
.mtj-ajutor h3 {
    font-size: 23px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}
.mtj-ajutor p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 24px;
}
.mtj-buton {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 6px;
    background: #fff;
    color: #1a1a1a !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    margin: 0 5px 8px;
    transition: background .15s;
}
.mtj-buton:hover { background: #e6e6e6; }
.mtj-buton-alt {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .3);
}
.mtj-buton-alt:hover { background: rgba(255, 255, 255, .1); }

/* --- Ecrane mici --------------------------------------------------------- */
@media (max-width: 575px) {
    .mtj-sectiune { padding: 44px 0 56px; }
    .mtj-intro h2 { font-size: 25px; }
    .mtj-pasi > li { grid-template-columns: 36px 1fr; gap: 15px; }
    .mtj-nr { width: 36px; height: 36px; font-size: 15px; box-shadow: 0 0 0 5px #fff; }
    .mtj-pasi::before { left: 17px; }
    .mtj-pasi h3 { font-size: 18px; margin-top: 5px; }
    .mtj-necesar { padding: 20px; }
    .mtj-ajutor { padding: 30px 20px; }
}
