/* =========================
   PROCESS SECTION
========================= */

.process-section {

    padding: 100px 20px;

    text-align: center;
}


/* =========================
   WRAPPER
========================= */

.process-wrapper {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 25px;

    margin-top: 50px;
}


/* =========================
   PROCESS BOX
========================= */

.process-box {

    position: relative;

    width: 260px;

    padding: 42px 35px;

    color: white;

    transition: 0.3s ease;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.2);

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    clip-path:
        polygon(
            12% 0%,
            100% 0%,
            90% 50%,
            100% 100%,
            12% 100%,
            0% 50%
        );

    overflow: hidden;
}


/* Hover */

.process-box:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 22px 45px rgba(0,0,0,0.3);
}


/* =========================
   TYPOGRAPHY
========================= */

.process-box h3 {

    color: white;

    margin-bottom: 10px;
}

.process-box p {

    color:
        rgba(255,255,255,0.76);

    line-height: 1.9;
}


/* =========================
   COLORS
========================= */

.process-box:nth-child(1) {

    background:
        linear-gradient(
            145deg,
            #4a2440,
            #331b2c
        );
}

.process-box:nth-child(2) {

    background:
        linear-gradient(
            145deg,
            #203848,
            #1a2835
        );
}

.process-box:nth-child(3) {

    background:
        linear-gradient(
            145deg,
            #243d2f,
            #1b2d24
        );
}

.process-box:nth-child(4) {

    background:
        linear-gradient(
            145deg,
            #4a3324,
            #34251b
        );
}


/* =========================
   ICONS
========================= */

.icon {

    width: 52px;

    height: 52px;

    margin: 0 auto 22px;

    color: #c8b5ff;
}

.icon svg {

    width: 100%;

    height: 100%;
}


/* Last Icon Fix */

.process-box:nth-child(4) .icon svg {

    transform: scale(1.3);
}


/* Icon Hover */

.process-box:hover .icon {

    color: white;
}


/* =========================
   WIDE PROCESS BOX
========================= */

.process-wide {

    width: 100%;

    max-width: 860px;

    min-height: 140px;

    padding: 30px 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 28px;

    text-align: right;
}


/* =========================
   PROCESS CONTENT
========================= */

.process-content {

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.process-content h3 {

    margin-bottom: 10px;

    color: white;
}

.process-content p {

    margin: 0;

    color:
        rgba(255,255,255,0.76);

    line-height: 1.9;
}


/* =========================
   WIDE ICON FIX
========================= */

.process-wide .icon {

    margin: 0;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;
}

.process-wide .icon svg {

    width: 52px;

    height: 52px;
}