/* =========================================================================
   Matrix Digital — agence.css
   Pages À propos (template-about) + Notre méthode (template-methode). (P10)
   ========================================================================= */

/* ---------------------------------------------------------------- *
   HERO (commun aux 2 pages)
 * ---------------------------------------------------------------- */
.mx-about-hero {
    position: relative;
    padding: 56px 0 48px; /* offset header géré globalement sur #mx-main */
    overflow: hidden;
}
.mx-about-hero__bg {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(ellipse at 20% 25%, rgba(22, 199, 230, 0.22), transparent 60%),
        radial-gradient(ellipse at 85% 75%, rgba(195, 47, 217, 0.14), transparent 60%),
        var(--mx-black);
}
.mx-about-hero__title { font-size: clamp(2.2rem, 6vw, 4rem); margin: 12px 0; }
.mx-about-hero__intro { max-width: 60ch; color: var(--mx-muted); font-size: 1.1rem; }
.mx-about-hero__intro p { margin-bottom: 12px; }

/* ---------------------------------------------------------------- *
   MISSION
 * ---------------------------------------------------------------- */
.mx-about-mission__text {
    margin-top: 14px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.4rem, 3.2vw, 2.1rem);
    line-height: 1.35;
    color: var(--mx-white);
}

/* ---------------------------------------------------------------- *
   NOTRE MÉTHODE — phases (timeline verticale)
 * ---------------------------------------------------------------- */
.mx-phases { display: flex; flex-direction: column; gap: var(--gap-lg); max-width: 860px; margin-inline: auto; }
.mx-phase { display: flex; gap: var(--gap-md); position: relative; }
.mx-phase__num {
    flex: 0 0 auto;
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 700;
    color: var(--mx-white);
    background: var(--mx-gradient-dark);
    border: 1px solid var(--mx-border);
    border-radius: 50%;
}
.mx-phase__content {
    flex: 1;
    padding-bottom: var(--gap-lg);
    border-bottom: 1px solid var(--mx-border);
}
.mx-phase:last-child .mx-phase__content { border-bottom: none; padding-bottom: 0; }
.mx-phase__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.mx-phase__title { font-size: 1.4rem; }
.mx-phase__duree {
    font-family: var(--font-mono);
    font-size: 0.72rem; letter-spacing: 0.06em;
    color: var(--mx-cyan);
    border: 1px solid var(--mx-border);
    border-radius: 999px;
    padding: 3px 12px;
}
.mx-phase__desc { color: var(--mx-muted); margin-bottom: 12px; }
.mx-phase__livrable { font-size: 0.92rem; color: var(--mx-off-white); }
.mx-phase__livrable span {
    display: inline-block;
    margin-right: 6px;
    font-weight: 600;
    color: var(--mx-cyan);
}
