.akra-process {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #05010d 0%,
            #090312 100%);
}

/* =========================================================
   GRID BG
========================================================= */
.akra-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .35;
}

/* =========================================================
   GLOW
========================================================= */
.process-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(123, 97, 255, .18),
            transparent 70%);
    filter: blur(140px);
    bottom: -250px;
    right: -200px;
    pointer-events: none;
}

/* =========================================================
   HEADING
========================================================= */
.process-heading {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: auto;
    text-align: center;
    margin-bottom: 100px;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    background:
        rgba(255, 255, 255, .04);
    border:
        1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
    font-size: 13px;
    letter-spacing: 3px;
    color:
        rgba(255, 255, 255, .72);
}

.process-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ba6eeb;
    box-shadow:
        0 0 15px #ba6eeb;
}

.process-heading h2 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 26px;
}

.process-heading h2 span {
    background:
        linear-gradient(90deg,
            #7b61ff,
            #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-heading p {
    font-size: 20px;
    line-height: 1.8;
    color:
        rgba(255, 255, 255, .68);
}

/* =========================================================
   TIMELINE
========================================================= */
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 24px;
}

/* =========================================================
   STEP
========================================================= */
.process-step {
    position: relative;
}

/* NUMBER */
.process-number {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    margin: auto auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    background:
        linear-gradient(135deg,
            #7b61ff,
            #c084fc);
    box-shadow:
        0 0 35px rgba(123, 97, 255, .35);
}

/* LINE */
.process-line {
    position: absolute;
    top: 36px;
    left: 50%;
    width: 100%;
    height: 2px;
    background:
        linear-gradient(90deg,
            rgba(123, 97, 255, .5),
            rgba(255, 255, 255, .08));
}

/* LAST STEP */
.process-step:last-child .process-line {
    display: none;
}

/* =========================================================
   CARD
========================================================= */
.process-card {
    position: relative;
    min-height: 320px;
    padding: 36px;
    border-radius: 34px;
    background:
        rgba(255, 255, 255, .04);
    border:
        1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition: .4s;
    display: flex;
    flex-direction: column;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .08),
            transparent);
    opacity: 0;
    transition: .4s;
}

.process-card:hover {
    transform:
        translateY(-10px);
    border-color:
        rgba(123, 97, 255, .4);
    box-shadow:
        0 0 50px rgba(123, 97, 255, .16);
}

.process-card:hover::before {
    opacity: 1;
}

/* =========================================================
   ICON
========================================================= */
.process-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 30px;
    background:
        rgba(123, 97, 255, .14);
    border:
        1px solid rgba(123, 97, 255, .28);
}

/* =========================================================
   TEXT
========================================================= */
.process-card h3 {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.process-card p {
    font-size: 16px;
    line-height: 1.8;
    color:
        rgba(255, 255, 255, .65);
    margin-bottom: 30px;
}

/* =========================================================
   TAGS
========================================================= */
.process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.process-tags span {
    padding: 12px 18px;
    border-radius: 999px;
    background:
        rgba(255, 255, 255, .05);
    border:
        1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
    color:
        rgba(255, 255, 255, .75);
}

/* =========================================================
   TABLET
========================================================= */
@media(max-width:1200px) {
    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .process-line {
        display: none;
    }
}

@media(max-width:992px) {
    .akra-process {
        padding: 100px 0;
    }

    .process-heading h2 {
        font-size: 48px;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media(max-width:768px) {
    .process-heading {
        margin-bottom: 70px;
    }

    .process-heading h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .process-heading p {
        font-size: 16px;
    }

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

    .process-card {
        min-height: auto;
        padding: 30px;
    }

    .process-card h3 {
        font-size: 28px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */
@media(max-width:576px) {
    .akra-process {
        padding: 80px 0;
    }

    .process-heading h2 {
        font-size: 32px;
    }

    .process-icon,
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
