.features-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 1rem;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    width: 100%;
}

.feature-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;

    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.feature-strip:hover {
    transform: translateX(5px);
    border-left: 4px solid #00b7ff;
    background: linear-gradient(135deg, rgba(74, 208, 226, 0.05) 50%, rgba(135, 228, 235, 0.05) 100%);
    border-color: rgba(74, 144, 226, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.feature-strip .feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4A90E2 0%, #87CEEB 100%);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-strip:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.2);
}

.feature-strip .feature-text {
    flex: 1;
    min-width: 0;
}

.feature-strip .feature-text h5 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-strip .feature-text p {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile Friendly Fix */
@media (max-width: 768px) {
    .features-container {
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .features-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-strip {
        padding: 0.5rem 0.75rem;
    }

    .feature-strip .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .feature-strip .feature-text h5 {
        font-size: 0.85rem;
    }

    .feature-strip .feature-text p {
        font-size: 0.75rem;
        -webkit-line-clamp: 2; /* allow 2 lines for readability */
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .feature-strip {
        padding: 0.5rem;
    }

    .feature-strip .feature-text h5 {
        font-size: 0.8rem;
    }

    .feature-strip .feature-text p {
        font-size: 0.7rem;
    }
}
