.process{
    position: relative;
    overflow: hidden;
}
/* Background shape */
.process-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(25%, 30vw, 35%);
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: skewX(12deg) translateX(clamp(40px, 6vw, 80px));
    z-index: 0;
}
.process .container{
    position: relative;
    z-index: 2;
}
/* GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 4vw, 40px);
}

/* ITEM */
.process-item {
    text-align: center;
}

/* ICON */
.process-icon {
    width: clamp(48px, 6vw, 64px);
    height: clamp(48px, 6vw, 64px);
    aspect-ratio: 1;
    margin: 0 auto clamp(12px, 2vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}
.process-icon .icon{
    height: 45%;
}
.process-icon .icon svg{
    width: auto;
    height: 100%;
}

/* TITLE */
.process-item h3{
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 700;
    margin-bottom: clamp(6px, 1.5vw, 10px);
    text-transform: uppercase;
}

/* TEXT */
.process-item p {
    font-size: clamp(13px, 1.4vw, 14px);
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* HOVER */
.process-item:hover .process-icon {
    background: #fff;
    color: var(--color-secondary);
}

/* RESPONSIVE */
@media (max-width: 993px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 380px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}