/* ========== MEAL PREP — SECTION 6: PROCESS STEPS ========== */

.mp-process-section {
    background: #0d0a04;
    padding: 120px 5vw;
    /* Added more space from Section 5 */
    position: relative;
    overflow: hidden;
}

.mp-process-inner {
    max-width: 1451px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styling */
.mp-process-header {
    margin-bottom: 106px;
    /* Matched from top coords (4689 - 4583) */
    text-align: center;
}

.mp-process-title {
    font-family: 'Jost', sans-serif;
    font-size: 46px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    width: 901px;
    /* Exact dimensions from user */
    max-width: 100%;
}

/* Grid Styling */
.mp-process-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1451.1px;
    /* Exact dimensions from user */
    max-width: 100%;
    position: relative;
}

/* Card Styling */
.mp-process-card {
    width: 296.8px;
    /* Exact size from user */
    height: 296.8px;
    background: #110e08;
    border-radius: 50px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(224, 185, 115, 0.2);
    /* Even subtler golden outline as in Pic 1 */
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 2;
    /* Ensure cards stay above linkers */
}

.mp-process-card:hover {
    background: #1a160d;
    transform: translateY(-8px);
}

.mp-process-step-num {
    font-family: 'Jost', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.mp-process-step-title {
    font-family: 'Jost', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.mp-process-step-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    width: 245px;
    /* Exact width from user */
}

/* Linker Styling */
.mp-process-linker {
    width: 224px;
    /* Exact width from user */
    height: 182px;
    /* Exact height from user */
    margin: 0 -68px;
    /* Negative margins to overlap cards correctly */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.mp-process-linker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
}

/* ---- Mobile Responsiveness ---- */
@media (max-width: 1450px) {
    .mp-process-grid {
        width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 1200px) {
    .mp-process-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .mp-process-linker {
        display: none;
        /* Hide linkers on wrap */
    }
}

@media (max-width: 767px) {
    .mp-process-section {
        padding: 80px 24px;
    }

    .mp-process-header {
        margin-bottom: 40px;
        /* Reduced from 106px */
    }

    .mp-process-title {
        font-size: 32px;
        width: 100%;
    }

    .mp-process-card {
        width: 100%;
        max-width: 340px;
        height: auto;
        min-height: 296.8px;
        border-radius: 40px;
    }
}