/* ============================================= */
/* === Designed for Clarity and Impact Section === */
/* ============================================= */
.clarity-impact-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.clarity-impact-section::before { /* Blurred background */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/hero-mobile-first-action-planning.png'); /* Reusing background */
    background-size: cover;
    background-position: center center;
    filter: blur(4px);
    transform: scale(1.05);
    z-index: 0;
}

.clarity-impact-section::after { /* Fading overlay */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.65);
    z-index: 1;
}

.clarity-impact-section .container { /* Content container for this section */
    position: relative;
    z-index: 2;
}

.clarity-impact-section h2 {
    font-size: 2.2rem;
    color: #3E593C;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: left;
}

.mockups-grid { /* Grid for the 3 mockup images */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Distributes space between items */
    gap: 25px; /* Consistent gap */
    margin-bottom: 40px;
}

.mockup-item { /* Each mockup image container */
    flex: 1 1 calc(33.333% - 17px); /* Aim for 3 items per row (100% / 3 - (2 * gap / 3)) approx */
    min-width: 280px; /* Minimum width before wrapping */
    max-width: 350px; /* Max width for each item */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.mockup-item:hover {
    transform: translateY(-4px); /* Slight lift on hover */
}

.mockup-item img { /* The mockup image itself */
    width: 100%;
    height: auto;
    display: block;
}

.clarity-summary { /* Concluding paragraph */
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    text-align: left;
    max-width: 850px; /* To prevent it from becoming too wide */
}

/* --- Designed for Clarity and Impact Section (Tablet: max-width: 992px) --- */
@media (max-width: 992px) {
    .clarity-impact-section h2 {
        font-size: 2rem;
    }
    .mockups-grid {
        justify-content: center; /* Center items if they don't fill space */
    }
    .mockup-item {
        flex-basis: calc(48% - 13px); /* Two mockups per row on tablet */
        max-width: calc(48% - 13px); /* Ensure they don't get too large */
    }
}

/* --- Designed for Clarity and Impact Section (Mobile: max-width: 768px) --- */
@media (max-width: 768px) {
    .clarity-impact-section h2 {
        text-align: center;
        font-size: 1.8rem;
    }
    .mockups-grid {
        justify-content: center; /* Continue centering */
        flex-direction: column; /* Stack mockups */
        align-items: center;
    }
    .mockup-item {
        flex-basis: 85%; /* Allow them to be fairly wide when stacked */
        max-width: 350px; /* But cap the width */
        width: 100%; /* Ensure it takes the flex-basis width */
    }
    .clarity-summary {
        text-align: center;
    }
}