.nexum-process-wrapper {
    position: relative;
    width: 100%;
}

.nexum-process-line {
    position: absolute;
    top: 72px;
    left: 8%;
    width: 84%;
    height: 2px;
    z-index: 1;
    overflow: hidden;
}

.nexum-process-line::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 45%;
    opacity: 0.9;
}

.nexum-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

.nexum-process-item {
    position: relative;
    text-align: center;
    overflow: hidden;
    transition: all 0.35s ease;
}

.nexum-process-item::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 120px;
    height: 120px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    transition: all 0.35s ease;
}

.nexum-process-item:hover {
    transform: translateY(-8px);
}

.nexum-process-item:hover::before {
    transform: scale(3);
}

.nexum-process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.nexum-process-number::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.15;
}

.nexum-process-title {
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.nexum-process-description {
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .nexum-process-line {
        display: none;
    }
}

@media (max-width: 767px) {
    .nexum-process-grid {
        grid-template-columns: 1fr;
    }

    .nexum-process-item {
        text-align: left;
    }

    .nexum-process-number {
        margin: 0;
    }
}