.work-process-section,
.work-process-section * {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* --- FULL WIDTH BREAKOUT --- */
.work-process-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box !important;
    padding-top: clamp(3rem, 8vw, 6rem);
    padding-bottom: clamp(3rem, 8vw, 7rem);
    overflow: hidden;
}

/* Content alignment via .site-wrap (header.php) */
.work-process-container {
    margin-left: 0 !important;
    width: 100%;
}

.work-process-header {
    text-align: center;
}

.work-process-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    display: inline-block;
    background: linear-gradient(90deg,
            #8918D2 0%,
            #486AD2 23.03%,
            #08BBD2 81.73%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.work-process-description {
    margin-top: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: rgb(209 213 219);
    font-size: clamp(0.875rem, 1.1vw, 0.95rem);
    line-height: 1.7;
    font-weight: 500;
    padding: 0 0.5rem;
}

.work-process-steps-container {
    margin-top: clamp(2rem, 5vw, 4rem);
}

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

/* Top: light blue/teal dotted grid line */
.work-process-flow-line {
    position: absolute;
    top: 0;
    bottom: auto;
    height: 0;
    border-top: 2px dotted rgba(0, 165, 168, 0.85);
    z-index: 1;
    left: 0;
    width: 100%;
}

.work-process-steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
}

.work-process-step {
    width: 200px;
    min-width: 140px;
    position: relative;
    padding-top: 1rem;
    z-index: 2;
    text-align: center;
}

.work-process-connector {
    position: absolute;
    top: 0;
    height: 4rem;
    width: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 2px dotted rgba(0, 165, 168, 0.85);
}

.work-process-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #fff;
    margin-top: 5rem;
    display: block;
}

.work-process-step-title {
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
}

.work-process-step-description {
    color: #fff;
    font-size: clamp(0.7rem, 0.9vw, 0.75rem);
    line-height: 1.6;
}

/* --- TABLET --- */
@media (max-width: 1024px) {
    .work-process-flow-line,
    .work-process-connector {
        display: none;
    }

    .work-process-steps-grid {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .work-process-step {
        width: 100%;
        max-width: 480px;
        min-width: unset;
    }

    .work-process-number {
        margin-top: 0;
    }
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .work-process-section {
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .work-process-title {
        font-size: 1.5rem;
    }

    .work-process-description {
        font-size: 0.875rem;
        padding: 0;
    }

    .work-process-steps-container {
        margin-top: 2rem;
    }

    .work-process-steps-grid {
        gap: 2rem;
    }

    .work-process-number {
        font-size: 2.5rem;
    }

    .work-process-step-title {
        font-size: 1rem;
    }

    .work-process-step-description {
        font-size: 0.8rem;
    }
}

/* --- SMALL MOBILE --- */
@media (max-width: 480px) {
    .work-process-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .work-process-title {
        font-size: 1.25rem;
    }

    .work-process-steps-grid {
        gap: 1.5rem;
    }

    .work-process-number {
        font-size: 2rem;
    }

    .work-process-step-title {
        font-size: 0.9375rem;
    }

    .work-process-step-description {
        font-size: 0.75rem;
    }
}
