.service-features-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.service-features-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--ostore-services-brand-color, var(--color-primary));
    margin-bottom: var(--space-xxs);
}

.service-features-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin: 0;
    line-height: 1.3;
}

.service-features-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin: var(--space-xs) 0 0;
    line-height: 1.6;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.service-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 var(--space-sm);
}

.service-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    padding: 14px;
    box-sizing: border-box;
    margin-bottom: var(--space-sm);
    color: var(--ostore-services-brand-color, var(--color-primary));
    background: color-mix(in srgb, var(--ostore-services-brand-color, var(--color-primary)) 12%, transparent);
    border-radius: var(--radius-lg);
}

.service-feature-icon svg {
    width: 100%;
    height: 100%;
}

.service-feature-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--ostore-services-brand-color, var(--color-primary));
    margin: 0 0 var(--space-xxs) 0;
}

.service-feature-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   TABLET (max 991px): 2 columns
   ===================================================== */
@media (max-width: 991px) {
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: var(--space-xl);
    }
}

/* =====================================================
   MOBILE (max 767px): 2-column grid, compact text
   ===================================================== */
@media (max-width: 767px) {
    .service-features-header {
        margin-bottom: var(--space-lg);
    }

    .service-features-title {
        font-size: 1.125rem;
    }

    .service-features-desc {
        font-size: 0.8125rem;
    }

    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: var(--space-sm);
        row-gap: var(--space-lg);
    }

    .service-feature-item {
        padding: 0 var(--space-xxs);
    }

    .service-feature-icon {
        width: 52px;
        height: 52px;
        padding: 11px;
        margin-bottom: var(--space-xxs);
    }

    .service-feature-title {
        font-size: 0.875rem;
    }

    .service-feature-desc {
        font-size: 0.6875rem;
        line-height: 1.4;
    }
}
