.bjhy-process {
    position: relative;
    overflow: hidden;
    --process-x: 20%;
    --process-y: 28%;
    --process-progress: 20%;
    background: #101412;
    padding: 88px 0 92px;
    color: #fff;
}

.bjhy-scroll-progress {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.bjhy-scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #3bbf30, #7fd7f0);
    box-shadow: 0 0 18px rgba(59, 191, 48, 0.36);
    transition: width 0.12s linear;
}

.bjhy-process:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at var(--process-x) var(--process-y), rgba(59, 191, 48, 0.12), rgba(59, 191, 48, 0) 28%),
        radial-gradient(circle at 86% 16%, rgba(127, 215, 240, 0.12), rgba(127, 215, 240, 0) 30%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015) 52%, rgba(255, 255, 255, 0.045)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(16, 20, 18, 0));
    pointer-events: none;
}

.bjhy-process:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 128px;
    background: linear-gradient(180deg, rgba(16, 20, 18, 0), rgba(16, 20, 18, 0.94));
    pointer-events: none;
}

.bjhy-process__inner {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

@media (min-width: 1024px) and (max-width: 1360px) {
    .bjhy-process__inner {
        box-sizing: border-box;
        padding-right: 72px;
    }
}

.bjhy-process__heading {
    display: grid;
    grid-template-columns: minmax(300px, 500px) minmax(420px, 1fr);
    gap: 56px;
    align-items: end;
    margin-bottom: 28px;
}

.bjhy-process__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(146, 229, 139, 0.92);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.bjhy-process__eyebrow:before {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, #3bbf30, rgba(127, 215, 240, 0.78));
}

.bjhy-process__heading h2 {
    font-family: var(--font-serif);
    font-size: clamp(40px, 4.2vw, 60px);
    line-height: 1.04;
    color: #fff;
}

.bjhy-process__heading p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.9;
}

.bjhy-process__overview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.bjhy-process__overview div {
    padding: 22px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.bjhy-process__overview div:last-child {
    border-right: 0;
}

.bjhy-process__overview strong {
    display: block;
    margin-bottom: 4px;
    color: rgba(241, 248, 240, 0.96);
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    text-shadow: 0 0 18px rgba(59, 191, 48, 0.18);
}

.bjhy-process__overview span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    letter-spacing: 0.08em;
}

.bjhy-process__stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    min-height: 0;
}

.bjhy-process__media {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(340px, 0.82fr);
    grid-template-rows: auto 1fr;
    align-self: start;
    height: auto;
    margin-bottom: 0;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(135deg, rgba(16, 28, 22, 0.92), rgba(7, 10, 9, 0.96)),
        #0b0f0e;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    isolation: isolate;
}

.bjhy-process__images {
    position: relative;
    z-index: 0;
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 320px;
    aspect-ratio: 16 / 8.4;
    overflow: hidden;
}

.bjhy-process__images img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08) translateY(18px);
    filter: saturate(0.86) contrast(1.04) brightness(0.96);
    transition: opacity 0.55s ease, transform 1.1s ease, filter 0.55s ease;
}

.bjhy-process__images img.is-active {
    opacity: 1;
    transform: scale(1.025) translate3d(var(--media-pan-x, 0px), var(--media-pan-y, 0px), 0);
    filter: saturate(0.98) contrast(1.05) brightness(0.98);
}

.bjhy-process__media-light {
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        radial-gradient(circle at var(--media-light-x, 42%) var(--media-light-y, 36%), rgba(127, 215, 240, 0.14), rgba(127, 215, 240, 0) 26%),
        radial-gradient(circle at 18% 72%, rgba(59, 191, 48, 0.1), rgba(59, 191, 48, 0) 28%),
        linear-gradient(115deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 38%);
    opacity: 0;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.bjhy-process__media:hover .bjhy-process__media-light {
    opacity: 1;
}

.bjhy-process__media-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(2, 5, 4, 0.48), rgba(2, 5, 4, 0.08) 54%, rgba(2, 5, 4, 0.28)),
        linear-gradient(180deg, rgba(2, 5, 4, 0.04), rgba(2, 5, 4, 0.06) 34%, rgba(2, 5, 4, 0.72));
}

.bjhy-process__media:before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.bjhy-process__media:after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 32px;
    top: 32px;
    width: 92px;
    height: 92px;
    border-top: 2px solid rgba(146, 229, 139, 0.7);
    border-left: 2px solid rgba(127, 215, 240, 0.5);
    transform: translate3d(calc(var(--media-tilt-x, 0px) * 0.2), calc(var(--media-tilt-y, 0px) * 0.2), 0);
    pointer-events: none;
}

.bjhy-process__media-status {
    position: absolute;
    z-index: 3;
    left: 34px;
    top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.bjhy-process__media-status:before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #8ee58a;
    box-shadow: 0 0 0 8px rgba(59, 191, 48, 0.12);
    animation: bjhyProcessPulse 1.8s ease-in-out infinite;
}

.bjhy-process__media-index {
    position: absolute;
    z-index: 3;
    right: 34px;
    top: 28px;
    color: rgba(255, 255, 255, 0.84);
    font-family: var(--font-serif);
    font-size: 72px;
    line-height: 1;
}

.bjhy-process__media-index small {
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.48);
    font-family: inherit;
    font-size: 24px;
}

.bjhy-process__media-copy {
    position: relative;
    z-index: 3;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    left: auto;
    right: auto;
    width: auto;
    top: auto;
    bottom: auto;
    padding: 34px 34px 14px;
    color: #fff;
    transition: transform 0.34s ease, opacity 0.34s ease;
}

.bjhy-process__media-copy.is-updating {
    opacity: 0;
    transform: translateY(14px);
}

.bjhy-process__media-copy span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-bottom: 12px;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(7, 10, 9, 0.44);
    color: rgba(235, 248, 233, 0.92);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    backdrop-filter: blur(8px);
}

.bjhy-process__media-copy h3 {
    margin-bottom: 10px;
    font-family: var(--font-serif);
    font-size: clamp(28px, 2.6vw, 40px);
    line-height: 1.04;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.62);
}

.bjhy-process__media-copy p {
    max-width: 380px;
    overflow: visible;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.72;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.62);
}

.bjhy-process__deliverables {
    position: relative;
    z-index: 3;
    grid-column: 2;
    grid-row: 2;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    padding: 0 34px 30px;
    border: 0;
    background: transparent;
    color: #f4fbf2;
    box-shadow: none;
    transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.bjhy-process__deliverables.is-updating {
    transform: translateY(12px);
}

.bjhy-process__progress {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: -16px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.bjhy-process__progress span {
    display: block;
    width: var(--process-progress);
    height: 100%;
    background: linear-gradient(90deg, rgba(146, 229, 139, 0.86), rgba(127, 215, 240, 0.72));
    transition: width 0.4s ease;
}

.bjhy-process__chips {
    display: none;
}

.bjhy-process__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.76);
    font-size: 10px;
    letter-spacing: 0.08em;
    transform: translateY(0);
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.bjhy-process__chips span:hover {
    transform: translateY(-2px);
    border-color: rgba(146, 229, 139, 0.42);
    background: rgba(59, 191, 48, 0.12);
}

.bjhy-process__nav {
    display: none;
}

.bjhy-process__nav-button {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(6, 9, 8, 0.24);
    color: rgba(255, 255, 255, 0.76);
    text-align: left;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transform: translateX(0);
    transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.bjhy-process__nav-button span {
    color: rgba(146, 229, 139, 0.86);
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1;
}

.bjhy-process__nav-button small {
    display: block;
    overflow: visible;
    color: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
}

.bjhy-process__nav-button:hover,
.bjhy-process__nav-button:focus-visible,
.bjhy-process__nav-button.is-active {
    transform: translateX(6px);
    border-color: rgba(146, 229, 139, 0.42);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 3px 0 0 rgba(59, 191, 48, 0.72);
    color: #fff;
    outline: 0;
}

.bjhy-process__nav-button.is-active span {
    color: #eef9ed;
}

.bjhy-process__actions {
    display: none;
}

.bjhy-process__arrow {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(7, 10, 9, 0.48);
    color: #fff;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 26px;
    line-height: 1;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.bjhy-process__arrow:hover,
.bjhy-process__arrow:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(146, 229, 139, 0.5);
    background: rgba(59, 191, 48, 0.18);
    outline: 0;
}

.bjhy-process__deliverables span {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: rgba(184, 242, 178, 0.95);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bjhy-process__deliverables span:before {
    content: "";
    width: 18px;
    height: 1px;
    background: #2eb33d;
}

.bjhy-process__deliverables > p {
    display: none;
}

.bjhy-process__detail-copy section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.bjhy-process__detail-item {
    min-height: 0;
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid rgba(146, 229, 139, 0.16);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: none;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.bjhy-process__detail-item:hover {
    transform: translateY(-2px);
    border-color: rgba(146, 229, 139, 0.32);
    background: rgba(255, 255, 255, 0.085);
}

.bjhy-process__detail-copy h4 {
    margin: 0;
    color: #eef9ed;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.bjhy-process__detail-copy p {
    display: none;
}

.bjhy-process__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: flex-start;
    min-height: 0;
    gap: 12px;
}

.bjhy-process__step {
    position: relative;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    grid-template-areas:
        "thumb head"
        "thumb title"
        "thumb copy";
    align-content: start;
    flex: 0 0 auto;
    min-height: 146px;
    padding: 0;
    background: rgba(252, 253, 250, 0.94);
    border: 1px solid rgba(17, 24, 18, 0.08);
    cursor: pointer;
    overflow: hidden;
    transform: translateZ(0);
    transition: flex 0.32s ease, min-height 0.32s ease, background 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.bjhy-process__step:before {
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    bottom: -1px;
    width: 4px;
    background: #2eb33d;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.28s ease;
}

.bjhy-process__step:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.bjhy-process__step.is-active {
    flex-grow: 0;
    min-height: 146px;
}

.bjhy-process__step:hover,
.bjhy-process__step:focus,
.bjhy-process__step.is-active {
    background: #fff;
    border-color: rgba(17, 24, 18, 0.12);
    box-shadow: inset 4px 0 0 #2eb33d, 0 12px 28px rgba(0, 0, 0, 0.08);
    transform: none;
    outline: 0;
}

.bjhy-process__step.is-active .bjhy-process__step-head span,
.bjhy-process__step:hover .bjhy-process__step-head span {
    color: #248832;
    text-shadow: 0 12px 24px rgba(35, 140, 47, 0.14);
}

.bjhy-process__step.is-active h3,
.bjhy-process__step:hover h3 {
    color: #101412;
}

.bjhy-process__step:hover:after,
.bjhy-process__step:focus:after,
.bjhy-process__step.is-active:after {
    opacity: 1;
}

.bjhy-process__step:hover:before,
.bjhy-process__step:focus:before,
.bjhy-process__step.is-active:before {
    transform: scaleY(1);
}

.bjhy-process__step-head {
    grid-area: head;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 18px 18px 7px 18px;
    position: relative;
    z-index: 1;
}

.bjhy-process__step-head span {
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 1;
    color: #248832;
}

.bjhy-process__step-head small {
    color: #91867b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.bjhy-process__step h3 {
    grid-area: title;
    position: relative;
    z-index: 1;
    margin: 0 18px 6px;
    color: #0d0d0d;
    font-family: var(--font-serif);
    font-size: 23px;
    line-height: 1.12;
}

.bjhy-process__step p {
    grid-area: copy;
    display: block;
    overflow: visible;
    position: relative;
    z-index: 1;
    margin: 0 18px 28px;
    color: #4f4a46;
    font-size: 13px;
    line-height: 1.58;
}

.bjhy-process__step ul {
    position: relative;
    z-index: 1;
    display: none;
    gap: 8px;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.32s ease, margin-top 0.32s ease, opacity 0.26s ease;
}

.bjhy-process__step.is-active ul {
    display: none;
}

.bjhy-process__step-meter {
    position: absolute;
    z-index: 1;
    left: 208px;
    right: 18px;
    bottom: 12px;
    height: 1px;
    background: rgba(30, 116, 43, 0.12);
    overflow: hidden;
}

.bjhy-process__step-meter span {
    display: block;
    width: 0;
    height: 100%;
    background: #2eb33d;
    transition: width 0.35s ease;
}

.bjhy-process__step.is-active .bjhy-process__step-meter span {
    width: 100%;
}

.bjhy-process__step-thumb {
    grid-area: thumb;
    position: relative;
    z-index: 1;
    width: calc(100% - 16px);
    aspect-ratio: 16 / 9;
    margin: 16px 0 16px 16px;
    overflow: hidden;
    background: #0b0f0e;
}

.bjhy-process__step-thumb:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 8, 6, 0.1), rgba(4, 8, 6, 0.34)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.bjhy-process__step-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    filter: saturate(0.92) contrast(1.04);
    transition: transform 0.36s ease, filter 0.36s ease;
}

.bjhy-process__step:hover .bjhy-process__step-thumb img,
.bjhy-process__step:focus .bjhy-process__step-thumb img,
.bjhy-process__step.is-active .bjhy-process__step-thumb img {
    transform: scale(1.09);
    filter: saturate(1.04) contrast(1.06) brightness(1.03);
}

@keyframes bjhyProcessPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.72;
    }

    50% {
        transform: scale(1.28);
        opacity: 1;
    }
}

.bjhy-process__step li {
    position: relative;
    padding-left: 16px;
    color: #5d5853;
    font-size: 12px;
    line-height: 1.45;
}

.bjhy-process__step li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2eb33d;
}

@media (max-width: 1023px) {
    .bjhy-process {
        padding: 78px 0 86px;
    }

    .bjhy-process__inner {
        width: min(100% - 32px, 760px);
    }

    .bjhy-process__heading {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 28px;
    }

    .bjhy-process__overview {
        grid-template-columns: 1fr;
    }

    .bjhy-process__overview div {
        border-right: 0;
        border-bottom: 1px solid rgba(59, 191, 48, 0.16);
    }

    .bjhy-process__overview div:last-child {
        border-bottom: 0;
    }

    .bjhy-process__stage {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .bjhy-process__media {
        position: relative;
        top: auto;
        height: 660px;
        min-height: 0;
    }

    .bjhy-process__nav {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        top: 24px;
        right: 22px;
        left: 22px;
        width: auto;
    }

    .bjhy-process__nav-button {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 2px;
        min-height: 48px;
        padding: 7px 6px;
        text-align: center;
    }

    .bjhy-process__nav-button small {
        max-width: 100%;
        font-size: 10px;
    }

    .bjhy-process__actions {
        left: auto;
        right: 24px;
        top: 112px;
        flex-direction: row;
        transform: none;
    }

    .bjhy-process__media-status,
    .bjhy-process__media-index {
        display: none;
    }

    .bjhy-process__steps {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .bjhy-process__step {
        flex: none;
        min-height: 0;
        padding-bottom: 34px;
    }

    .bjhy-process__step:hover,
    .bjhy-process__step:focus,
    .bjhy-process__step.is-active {
        transform: none;
    }
}

@media (max-width: 640px) {
    .bjhy-process {
        padding: 52px 0 60px;
    }

    .bjhy-process__inner {
        width: calc(100% - 20px);
    }

    .bjhy-process__heading {
        gap: 14px;
        margin-bottom: 18px;
    }

    .bjhy-process__eyebrow {
        margin-bottom: 10px;
        font-size: 12px;
        letter-spacing: 0.12em;
    }

    .bjhy-process__heading h2 {
        font-size: clamp(29px, 8.2vw, 34px);
        line-height: 1.08;
    }

    .bjhy-process__heading p {
        font-size: 14px;
        line-height: 1.72;
    }

    .bjhy-process__overview {
        margin-bottom: 18px;
    }

    .bjhy-process__overview div {
        padding: 16px 14px;
    }

    .bjhy-process__overview strong {
        font-size: 22px;
    }

    .bjhy-process__overview span {
        font-size: 12px;
        letter-spacing: 0.04em;
    }

    .bjhy-process__stage {
        gap: 14px;
    }

    .bjhy-process__media {
        height: auto;
        margin-bottom: 0;
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .bjhy-process__media:before,
    .bjhy-process__media:after,
    .bjhy-process__media-shade,
    .bjhy-process__media-status,
    .bjhy-process__media-index,
    .bjhy-process__progress,
    .bjhy-process__chips,
    .bjhy-process__actions {
        display: none;
    }

    .bjhy-process__images {
        position: relative;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: #0b0f0e;
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    }

    .bjhy-process__images:after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 44%;
        background: linear-gradient(180deg, rgba(2, 5, 4, 0), rgba(2, 5, 4, 0.68));
        pointer-events: none;
    }

    .bjhy-process__images img {
        transform: scale(1.04) translateY(12px);
    }

    .bjhy-process__images img.is-active {
        transform: scale(1.02) translate3d(var(--media-pan-x, 0px), var(--media-pan-y, 0px), 0);
    }

    .bjhy-process__nav {
        position: absolute;
        z-index: 4;
        left: 10px;
        right: 10px;
        top: 10px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        width: auto;
    }

    .bjhy-process__nav-button {
        min-height: 40px;
        padding: 6px 4px;
        border-color: rgba(255, 255, 255, 0.18);
        background: rgba(7, 10, 9, 0.36);
        backdrop-filter: blur(8px);
    }

    .bjhy-process__nav-button span {
        font-size: 14px;
    }

    .bjhy-process__nav-button small {
        font-size: 8px;
        letter-spacing: 0;
    }

    .bjhy-process__media-copy {
        position: relative;
        z-index: 2;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: auto;
        margin: -40px 12px 0;
        padding: 15px 14px 14px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: linear-gradient(180deg, rgba(8, 12, 11, 0.94), rgba(8, 12, 11, 0.82));
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
        backdrop-filter: blur(10px);
    }

    .bjhy-process__media-copy span {
        margin-bottom: 8px;
        font-size: 10px;
        letter-spacing: 0.12em;
    }

    .bjhy-process__media-copy h3 {
        font-size: clamp(22px, 6.4vw, 26px);
        margin-bottom: 8px;
    }

    .bjhy-process__media-copy p {
        max-width: none;
        font-size: 13px;
        line-height: 1.55;
    }

    .bjhy-process__deliverables {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin: 12px 12px 0;
        padding: 14px 13px 12px;
        max-height: none;
        overflow: visible;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    }

    .bjhy-process__deliverables span {
        margin-bottom: 8px;
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .bjhy-process__deliverables > p {
        font-size: 13px;
        line-height: 1.58;
    }

    .bjhy-process__detail-copy section {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .bjhy-process__detail-item {
        padding: 10px 10px 9px;
    }

    .bjhy-process__detail-copy h4 {
        font-size: 11px;
    }

    .bjhy-process__detail-copy p {
        font-size: 11px;
        line-height: 1.48;
    }

    .bjhy-process__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 2px;
    }

    .bjhy-process__step {
        min-height: 0;
        padding: 14px 12px 16px 14px;
    }

    .bjhy-process__step.is-active {
        min-height: 0;
        grid-column: 1 / -1;
        order: -1;
    }

    .bjhy-process__step-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 6px;
    }

    .bjhy-process__step-head span {
        font-size: 22px;
    }

    .bjhy-process__step-head small {
        font-size: 8px;
        letter-spacing: 0.06em;
    }

    .bjhy-process__step h3 {
        font-size: 17px;
        margin-bottom: 6px;
        line-height: 1.18;
    }

    .bjhy-process__step p {
        font-size: 11px;
        line-height: 1.45;
    }

    .bjhy-process__step ul {
        display: none;
        gap: 6px;
        margin-top: 8px;
    }

    .bjhy-process__step.is-active ul {
        display: grid;
    }

    .bjhy-process__step li {
        font-size: 10px;
        line-height: 1.4;
    }

    .bjhy-process__step-meter {
        left: 14px;
        right: 12px;
        bottom: 10px;
    }
}

@media (min-width: 861px) and (max-width: 1023px) {
    .bjhy-process__inner {
        width: min(100% - 32px, 960px);
    }

    .bjhy-process__heading {
        gap: 28px;
    }

    .bjhy-process__stage {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 18px;
        align-items: start;
    }

    .bjhy-process__media {
        position: sticky;
        top: 92px;
        height: 390px;
        margin-bottom: 168px;
    }

    .bjhy-process__deliverables {
        box-sizing: border-box;
        height: 210px;
        padding: 14px;
    }

    .bjhy-process__steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .bjhy-process__step {
        min-height: 132px;
        padding: 14px 14px 22px 18px;
    }

    .bjhy-process__step.is-active {
        min-height: 190px;
    }

    .bjhy-process__step h3 {
        font-size: 20px;
    }

    .bjhy-process__step p {
        font-size: 12px;
        line-height: 1.45;
    }

    .bjhy-process__step li {
        font-size: 11px;
        line-height: 1.38;
    }

    .bjhy-process__detail-copy section {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .bjhy-process__detail-item {
        padding: 9px 8px 8px;
    }

    .bjhy-process__detail-copy h4 {
        margin-bottom: 5px;
        font-size: 11px;
    }

    .bjhy-process__detail-copy p {
        font-size: 11px;
        line-height: 1.48;
    }
}

@media (max-width: 1180px) {
    .bjhy-process__media {
        grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
    }

    .bjhy-process__step {
        grid-template-columns: 150px minmax(0, 1fr);
        min-height: 132px;
    }

    .bjhy-process__step-head {
        margin: 15px 16px 5px;
    }

    .bjhy-process__step h3 {
        margin: 0 16px 5px;
        font-size: 20px;
    }

    .bjhy-process__step p {
        margin: 0 16px 24px;
        font-size: 12px;
        line-height: 1.5;
    }

    .bjhy-process__step-meter {
        left: 166px;
        right: 16px;
    }

    .bjhy-process__step-thumb {
        margin: 14px 0 14px 14px;
    }
}

@media (max-width: 1023px) {
    .bjhy-process__inner {
        width: min(100% - 32px, 920px);
    }

    .bjhy-process__overview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bjhy-process__overview div {
        border-right: 1px solid rgba(255, 255, 255, 0.09);
        border-bottom: 0;
    }

    .bjhy-process__overview div:last-child {
        border-right: 0;
    }

    .bjhy-process__stage {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bjhy-process__media {
        position: relative;
        top: auto;
        display: grid;
        grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
        grid-template-rows: auto 1fr;
        height: auto;
        margin-bottom: 0;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.09);
        background:
            linear-gradient(135deg, rgba(16, 28, 22, 0.92), rgba(7, 10, 9, 0.96)),
            #0b0f0e;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    }

    .bjhy-process__images {
        grid-column: 1;
        grid-row: 1 / span 2;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .bjhy-process__media-shade,
    .bjhy-process__media:before,
    .bjhy-process__media:after {
        display: block;
    }

    .bjhy-process__media-copy {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        padding: 26px 24px 10px;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .bjhy-process__media-copy p {
        max-width: 720px;
    }

    .bjhy-process__deliverables {
        grid-column: 2;
        grid-row: 2;
        height: auto;
        margin: 0;
        padding: 0 24px 24px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .bjhy-process__detail-copy section {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .bjhy-process__detail-item {
        min-height: 34px;
        padding: 8px 10px;
    }

    .bjhy-process__steps {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 0;
    }

    .bjhy-process__step,
    .bjhy-process__step.is-active {
        grid-column: auto;
        order: initial;
        grid-template-columns: 178px minmax(0, 1fr);
        min-height: 136px;
        padding: 0;
    }

    .bjhy-process__step-head {
        align-items: center;
        flex-direction: row;
        margin: 16px 18px 6px;
    }

    .bjhy-process__step h3 {
        margin: 0 18px 6px;
        font-size: 21px;
    }

    .bjhy-process__step p {
        margin: 0 18px 24px;
        font-size: 13px;
        line-height: 1.55;
    }

    .bjhy-process__step ul,
    .bjhy-process__step.is-active ul {
        display: none;
    }

    .bjhy-process__step-meter {
        left: 196px;
        right: 18px;
    }
}

@media (max-width: 760px) {
    .bjhy-process__media {
        grid-template-columns: 1fr;
    }

    .bjhy-process__images {
        grid-column: 1;
        grid-row: 1;
    }

    .bjhy-process__media-copy {
        grid-column: 1;
        grid-row: 2;
    }

    .bjhy-process__deliverables {
        grid-column: 1;
        grid-row: 3;
    }
}

@media (max-width: 640px) {
    .bjhy-process__media:before,
    .bjhy-process__media:after,
    .bjhy-process__media-shade,
    .bjhy-process__media-status,
    .bjhy-process__media-index,
    .bjhy-process__progress,
    .bjhy-process__chips,
    .bjhy-process__actions {
        display: none;
    }

    .bjhy-process__images {
        aspect-ratio: 16 / 9;
    }

    .bjhy-process__media-copy {
        margin: 0;
        padding: 16px 14px 6px;
    }

    .bjhy-process__deliverables {
        margin: 0;
        padding: 0 14px 16px;
    }

    .bjhy-process__detail-copy section {
        grid-template-columns: 1fr;
    }

    .bjhy-process__steps {
        grid-template-columns: 1fr;
    }

    .bjhy-process__step,
    .bjhy-process__step.is-active {
        grid-template-columns: 124px minmax(0, 1fr);
        min-height: 112px;
    }

    .bjhy-process__step-thumb {
        margin: 10px 0 10px 10px;
    }

    .bjhy-process__step-head {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin: 12px 12px 4px;
    }

    .bjhy-process__step-head span {
        font-size: 20px;
    }

    .bjhy-process__step-head small {
        font-size: 8px;
        letter-spacing: 0.04em;
    }

    .bjhy-process__step h3 {
        margin: 0 12px 4px;
        font-size: 17px;
    }

    .bjhy-process__step p {
        margin: 0 12px 18px;
        font-size: 11px;
        line-height: 1.42;
    }

    .bjhy-process__step-meter {
        left: 136px;
        right: 12px;
        bottom: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bjhy-process,
    .bjhy-process:before,
    .bjhy-process__images img,
    .bjhy-process__media-status:before,
    .bjhy-process__media-copy,
    .bjhy-process__deliverables,
    .bjhy-process__progress span,
    .bjhy-scroll-progress span,
    .bjhy-process__media-light,
    .bjhy-process__nav-button,
    .bjhy-process__arrow,
    .bjhy-process__step,
    .bjhy-process__step:before,
    .bjhy-process__step:after,
    .bjhy-process__step-meter span {
        animation: none;
        transition: none;
    }
}
