.home-process {
    position: relative;
    overflow: hidden;
    padding: 118px 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(163, 255, 18, 0.15), transparent 30%),
        radial-gradient(circle at 88% 20%, rgba(0, 229, 255, 0.1), transparent 28%),
        linear-gradient(135deg, #080b0a 0%, #101614 50%, #070908 100%);
    color: var(--color-text-light);
}

.home-process::after {
    content: "PROCESS";
    position: absolute;
    right: -2vw;
    top: 68px;
    color: rgba(248, 250, 252, 0.035);
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 15rem);
    font-weight: 950;
    letter-spacing: -0.095em;
    line-height: 0.8;
    pointer-events: none;
}

.home-process-shell {
    position: relative;
    z-index: 2;
    width: min(100% - 64px, 1480px);
    margin-inline: auto;
}

.home-process-header {
    max-width: 980px;
    margin-bottom: 58px;
}

.home-process-header h2 {
    max-width: 940px;
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 5.4vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.078em;
}

.home-process-header p {
    max-width: 760px;
    color: rgba(248, 250, 252, 0.72);
    font-size: 1.08rem;
}

.home-process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.home-process-timeline::before {
    content: "";
    position: absolute;
    top: 44px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(163, 255, 18, 0.8),
        rgba(0, 229, 255, 0.32),
        rgba(248, 250, 252, 0.12)
    );
    pointer-events: none;
}

.home-process-step {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid rgba(248, 250, 252, 0.1);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(248, 250, 252, 0.075), rgba(248, 250, 252, 0.025)),
        rgba(248, 250, 252, 0.035);
    box-shadow: var(--shadow-dark);
}

.home-process-step::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 200px;
    height: 200px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(163, 255, 18, 0.1), transparent 66%);
    pointer-events: none;
}

.home-process-step span {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--color-primary);
    color: var(--color-bg-dark);
    font-family: var(--font-heading);
    font-weight: 950;
}

.home-process-step h3 {
    position: relative;
    z-index: 2;
    margin-top: auto;
    margin-bottom: 12px;
    font-size: 1.45rem;
    letter-spacing: -0.045em;
}

.home-process-step p {
    position: relative;
    z-index: 2;
    color: rgba(248, 250, 252, 0.66);
    font-size: 0.92rem;
    line-height: 1.58;
}

.home-process-step.final {
    border-color: rgba(163, 255, 18, 0.38);
    background:
        radial-gradient(circle at top right, rgba(163, 255, 18, 0.13), transparent 36%),
        rgba(248, 250, 252, 0.05);
}

.home-process-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    margin-top: 24px;
    padding: 38px;
    border: 1px solid rgba(248, 250, 252, 0.1);
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(163, 255, 18, 0.12), transparent 34%),
        rgba(248, 250, 252, 0.045);
}

.home-process-bottom h3 {
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 3vw, 3rem);
    letter-spacing: -0.06em;
}

.home-process-bottom p {
    max-width: 760px;
    color: rgba(248, 250, 252, 0.68);
}

.home-process-bottom .btn {
    flex-shrink: 0;
}

@media (max-width: 1180px) {
    .home-process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-process-timeline::before {
        display: none;
    }

    .home-process-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .home-process {
        padding: 78px 0;
    }

    .home-process-shell {
        width: min(100% - 28px, 1180px);
    }

    .home-process::after {
        display: none;
    }

    .home-process-header {
        margin-bottom: 38px;
    }

    .home-process-header h2 {
        font-size: clamp(2.35rem, 12vw, 3.8rem);
    }

    .home-process-timeline {
        grid-template-columns: 1fr;
    }

    .home-process-step {
        min-height: 245px;
        border-radius: 24px;
    }

    .home-process-bottom {
        padding: 28px;
        border-radius: 26px;
    }

    .home-process-bottom .btn {
        width: 100%;
    }
}