/* g410/process — design "process" de la home (bundle standalone) */

.process {
    --pr-ink: var(--ink, #00202f);
    --pr-blue-line: var(--blue-line, #cfe5f6);
    --pr-muted: var(--muted, #5a6b76);
    --pr-display: var(--font-display, "Manrope", ui-sans-serif, system-ui, sans-serif);

    background: #fff;
    padding: 96px 0;
    color: var(--pr-ink);
}

.process > .container {
    max-width: var(--container-width, 1240px);
    margin: 0 auto;
    padding: 0 24px;
}

.process .section-head {
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
}
.process .section-head .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-deep, #1f4a7e);
    margin-bottom: 16px;
}
.process .section-head .eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--blue, #359ee0);
    display: inline-block;
}
.process .section-head h2 {
    margin: 0;
    font-family: var(--pr-display);
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.1;
    color: var(--pr-ink);
    text-wrap: balance;
}
.process .section-head p {
    font-size: 18px;
    color: var(--pr-muted);
    margin-top: 10px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.steps.steps-3 { grid-template-columns: repeat(3, 1fr); }
.steps.steps-2 { grid-template-columns: repeat(2, 1fr); }
.steps::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 8%;
    right: 8%;
    height: 2px;
    background-image: linear-gradient(90deg, var(--pr-blue-line) 50%, transparent 0);
    background-size: 12px 2px;
    z-index: 0;
}
.step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 6px;
}
.step-num {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--pr-ink);
    color: var(--pr-ink);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    font-family: var(--pr-display);
    font-weight: 800;
    font-size: 24px;
    position: relative;
    transition: background .2s ease, color .2s ease;
}
.step:hover .step-num {
    background: var(--pr-ink);
    color: #fff;
}
.step h3 {
    font-family: var(--pr-display);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 8px;
    color: var(--pr-ink);
}
.step p {
    font-size: 14.5px;
    color: var(--pr-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .steps,
    .steps.steps-3,
    .steps.steps-2 { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
    .process { padding: 64px 0; }
}
@media (max-width: 480px) {
    .steps,
    .steps.steps-3,
    .steps.steps-2 { grid-template-columns: 1fr; }
}
