.methodo-progress {
    background: #111820;
    color: #fff;
    padding: 5rem 0;
}
.methodo-progress__header {
    max-width: 52rem;
    margin-bottom: 3.5rem;
}
.methodo-progress__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}
.methodo-progress__tag svg {
    width: 1rem;
    height: 1rem;
}
.methodo-progress__main-title {
    margin: 0.75rem 0 0;
    color: #fff;
    font-size: clamp(2.25rem, 3.5vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}
.methodo-progress__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(20rem, 1fr);
    gap: clamp(2rem, 7vw, 8rem);
    align-items: start;
}
div.methodo-progress__navigation[role="tablist"] {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    width: 100%;
    border: none;
}
.methodo-progress__navigation button.methodo-progress__step {
    display: flex;
    /*flex-direction: r;*/
    align-items: flex-start;
    justify-content: flex-start;
    appearance: none;
    width: 100%;
    padding: 1.4rem 0;
    border: 0;
    background-color: transparent ;
    cursor: pointer;
    transition: color 0.2s ease;
}
.methodo-progress__step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.methodo-progress__step:hover,
.methodo-progress__step:focus-visible,
.methodo-progress__step.is-active {
    color: #fff;
}
.methodo-progress__step:focus-visible {
    outline: 2px solid #e92d7a;
    outline-offset: 4px;
}
.methodo-progress__step-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem 1.25rem;
    font-size: clamp(1.1rem, 1.55vw, 1.45rem);
    line-height: 1.3;
}
.methodo-progress__step-heading h4{
    color: #fff;
    font-size: 1.25rem;
    transition: font-size .3s ease;
}

.methodo-progress__step .methodo-progress__step-heading .methodo-progress__colored-title{
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.3s;
}

.methodo-progress__step.is-active .methodo-progress__step-heading .methodo-progress__colored-title{
    opacity: 1;
    visibility: visible;
}

.methodo-progress__step.is-active .methodo-progress__step-heading h4,
.methodo-progress__step.is-active .methodo-progress__step-heading .methodo-progress__colored-title{
    font-size: 1.5rem;
}

.methodo-progress__number {
    color: currentColor;
    font-size: 2rem;
    font-family: "Archia", sans-serif;
    font-weight: 500;
    letter-spacing: -0.08rem;
    transition: color 0.3s ease;
}
.methodo-progress__step.is-active .methodo-progress__number,
.methodo-progress__colored-title {
    color: #ec2e7b;
    transition: font-size .3s ease;
}
.methodo-progress__colored-title {
    font-size: 0.85em;
}
.methodo-progress__description {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    text-align: left;
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.25;
    transition: grid-template-rows 0.25s ease, margin 0.25s ease;
}
.methodo-progress__description > * {
    min-height: 0;
    margin: 0;
}
.methodo-progress__step.is-active .methodo-progress__description {
    grid-template-rows: 1fr;
    margin-top: 1rem;
}
.methodo-progress__line {
    display: block;
    max-width: 32rem;
    width: 100%;
    height: 2px;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.12);
}
.methodo-progress__line i {
    display: block;
    width: 0;
    height: 100%;
    background: #ec2e7b;
    transition: width 5s linear;
}
.methodo-progress__panels {
    position: relative;
    width: 100%;
    max-width: 608px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    justify-self: center;
}
.methodo-progress__panel {
    position: absolute;
    inset: 110px;
    display: grid;
    place-items: center;
}
.methodo-progress__panel[hidden] {
    display: none;
}
.methodo-progress__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.methodo-progress__fallback-image {
    width: min(65%, 24rem);
    height: auto;
    opacity: 0.16;
}
.methodo-progress__mobile-carousel {
    display: none;
}
@media (max-width: 767px) {
    .methodo-progress {
        padding: 2.5rem 0 2.25rem;
        overflow: hidden;
    }
    .methodo-progress__header {
        max-width: 23rem;
        margin-bottom: 2.5rem;
    }
    .methodo-progress__layout {
        display: none;
    }
    .methodo-progress__main-title {
        font-size: 2.25rem;
        line-height: 1.02;
    }
    .methodo-progress__mobile-carousel {
        display: block;
        margin-right: -24px;
    }
    .methodo-progress__mobile-viewport {
        overflow: hidden;
    }
    .methodo-progress__mobile-track {
        display: flex;
        gap: 1.25rem;
        transition: transform 0.35s ease;
    }
    .methodo-progress__mobile-card {
        flex: 0 0 min(87vw, 25rem);
        color: #fff;
    }
    .methodo-progress__mobile-number {
        display: block;
        margin-bottom: 1.25rem;
        color: #ec2e7b;
        font-family: "Archia", sans-serif;
        font-size: 1.75rem;
        font-weight: 500;
        letter-spacing: -0.08rem;
    }
    .methodo-progress__mobile-image-wrap {
        display: grid;
        width: 100%;
        aspect-ratio: 1 / 1;
        place-items: center;
        border-radius: 0.85rem;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.025);
    }
    .methodo-progress__mobile-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding: 60px;
    }
    .methodo-progress__mobile-fallback-image {
        width: 65%;
        height: auto;
        opacity: 0.16;
    }
    .methodo-progress__mobile-title {
        margin: 1.25rem 0 0;
        color: #fff;
        font-size: 1.3rem;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: -0.035em;
    }
    .methodo-progress__mobile-colored-title {
        display: block;
        margin-top: 0.2rem;
        color: #ec2e7b;
        font-size: 1.05rem;
        line-height: 1.2;
    }
    .methodo-progress__mobile-description {
        margin-top: 1rem;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.95rem;
        line-height: 1.2;
    }
    .methodo-progress__mobile-description > * {
        margin: 0;
    }
    .methodo-progress__mobile-footer {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1rem;
        margin-top: 2.75rem;
        padding-right: 24px;
    }
    .methodo-progress__mobile-line {
        display: block;
        flex: 1;
        max-width: 13.2rem;
        height: 2px;
        background: rgba(255, 255, 255, 0.12);
    }
    .methodo-progress__mobile-line i {
        display: block;
        width: 0;
        height: 100%;
        background: #ec2e7b;
    }
    .methodo-progress__mobile-controls {
        display: flex;
        gap: 0.55rem;
    }
    .methodo-progress__mobile-control {
        display: grid;
        width: 3.5rem;
        height: 3.5rem;
        place-items: center;
        border: 0;
        border-radius: 0.3rem;
        background: #29313c;
        color: #fff;
        cursor: pointer;
        font-size: 2rem;
        line-height: 1;
    }
}
