/* =========================================================
   PROCESS SECTION
========================================================= */

.adp-process {
    position: relative;
    overflow: hidden;
    padding: 80px 0 50px;
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(255, 193, 7, 0.07),
            transparent 32%
        ),
        radial-gradient(
            circle at 80% 30%,
            rgba(255, 193, 7, 0.05),
            transparent 30%
        ),
        #050505;
}

.adp-process-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.adp-process-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.05);
    filter: blur(90px);
    pointer-events: none;
}

.adp-process-glow-1 {
    top: 10%;
    left: -180px;
}

.adp-process-glow-2 {
    bottom: 0;
    right: -180px;
}


/* =========================================================
   HEADER
========================================================= */

.adp-process-header {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.adp-process-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 20px;

    border: 1px solid #d6a900;
    border-radius: 30px;

    color: #ffc400;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;

    margin-bottom: 22px;
}

.adp-process-header h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
}

.adp-process-header h2 span {
    display: block;
    color: #ffc400;
}

.adp-process-header p {
    max-width: 680px;
    margin: 24px auto 0;

    color: #a8a8a8;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   GRID
========================================================= */

.adp-process-grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* =========================================================
   CONNECTING LINE
========================================================= */

.adp-process-grid::before {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;
    top: 92px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,193,7,0.5),
            rgba(255,193,7,0.5),
            transparent
        );

    z-index: 0;
}


/* =========================================================
   CARD
========================================================= */

.adp-process-card {
    position: relative;

    min-height: 390px;

    padding: 28px 26px 30px;

    border: 1px solid rgba(255,193,7,0.55);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            rgba(255,193,7,0.015)
        );

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.adp-process-card:hover {
    transform: translateY(-10px);

    border-color: #ffc400;

    box-shadow:
        0 20px 55px rgba(0,0,0,0.5),
        0 0 35px rgba(255,193,7,0.10);
}


/* =========================================================
   NUMBER
========================================================= */

.adp-process-number {
    color: #ffc400;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   ICON
========================================================= */

.adp-process-icon {
    position: relative;

    width: 72px;
    height: 72px;

    margin: 34px 0 30px;

    border: 1px solid #ffc400;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,193,7,0.035);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.adp-process-card:hover .adp-process-icon {
    transform: rotate(8deg) scale(1.08);

    background: rgba(255,193,7,0.12);

    box-shadow:
        0 0 25px rgba(255,193,7,0.25);
}

.adp-process-icon span {
    color: #ffc400;

    font-size: 30px;
    font-weight: 700;
}


/* =========================================================
   CONTENT
========================================================= */

.adp-process-content h3 {
    margin: 0 0 14px;

    color: #fff;

    font-size: 27px;
    font-weight: 800;
}

.adp-process-content p {
    margin: 0;

    color: #999;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   CARD LINE
========================================================= */

.adp-process-line {
    position: absolute;

    left: 26px;
    bottom: 24px;

    width: 45px;
    height: 2px;

    background: #ffc400;

    transition: width 0.4s ease;
}

.adp-process-card:hover .adp-process-line {
    width: 90px;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.adp-process-bottom {
    margin-top: 65px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    color: #aaa;

    font-size: 15px;
}

.adp-process-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: #ffc400;

    font-weight: 800;

    text-decoration: none;

    transition: gap 0.3s ease;
}

.adp-process-bottom a:hover {
    gap: 22px;
}

.adp-process-bottom b {
    font-size: 22px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .adp-process {
        padding: 90px 0;
    }

    .adp-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .adp-process-grid::before {
        display: none;
    }

    .adp-process-card {
        min-height: 360px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .adp-process {
        padding: 75px 0;
    }

    .adp-process-container {
        width: min(100% - 28px, 500px);
    }

    .adp-process-header {
        margin-bottom: 45px;
    }

    .adp-process-eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 7px 16px;
    }

    .adp-process-header h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .adp-process-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .adp-process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .adp-process-card {
        min-height: 330px;
        padding: 24px;
        border-radius: 20px;
    }

    .adp-process-icon {
        width: 64px;
        height: 64px;
        margin: 28px 0 24px;
    }

    .adp-process-icon span {
        font-size: 26px;
    }

    .adp-process-content h3 {
        font-size: 25px;
    }

    .adp-process-content p {
        font-size: 15px;
    }

    .adp-process-bottom {
        flex-direction: column;
        gap: 15px;
        margin-top: 45px;
        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .adp-process-header h2 {
        font-size: 33px;
    }

    .adp-process-card {
        min-height: 310px;
    }

}
/* =========================================================
   PROCESS SECTION - FINAL SPACING FIX
========================================================= */

/* Top space reduce */
.adp-process {
    padding-top: 55px !important;
}

/* Remove middle connecting gold line */
.adp-process-grid::before {
    display: none !important;
}


/* Mobile */
@media (max-width: 600px) {

    .adp-process {
        padding-top: 40px !important;
    }

}