/* ========== MEAL PREP — SECTION 3: FEATURES GRID ========== */

.mp-features-section {
    background: #0d0a04;
    padding: 10vh 5vw;
    position: relative;
    overflow: hidden;
}

.mp-features-inner {
    max-width: 1498px;
    margin: 0 auto;
}

/* Header Styling */
.mp-features-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mp-features-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

.mp-features-title {
    font-family: 'Jost', sans-serif;
    font-size: 40px;
    /* Reduced from 46px */
    font-weight: 600;
    color: #ffffff;
    line-height: normal;
    margin: 0;
}

/* Grid Styling */
.mp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card Styling */
.mp-feature-card {
    background: #12100b;
    /* Slightly lighter than section bg */
    border: 1px solid rgba(224, 185, 115, 0.1);
    border-radius: 24px;
    padding: 30px;
    /* Reduced from 40px */
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Reduced from 20px */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mp-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 185, 115, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mp-feature-icon {
    width: 50px;
    /* Reduced from 60px */
    height: 50px;
}

.mp-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mp-feature-card-title {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    /* Reduced from 24px */
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.mp-feature-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    /* Reduced from 16px */
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    /* Slightly tighter */
    margin: 0;
}

/* ---- Mobile Responsiveness ---- */
@media (max-width: 1023px) {
    .mp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-features-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .mp-features-grid {
        grid-template-columns: 1fr;
    }

    .mp-features-title {
        font-size: 32px;
    }

    .mp-feature-card {
        padding: 30px;
    }
}