/* BENEFITS SECTION */
.benefits-section {
    padding: 5rem 0;
    background: var(--gradient-black);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.section-title-white {
    color: var(--primary-white) !important;
}

.benefits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.card-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    align-items: stretch;
}

/* Assicura che tutte le card abbiano la stessa altezza */
.card-section .card {
    height: 100%;
    min-height: 100%;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .benefits-section {
        padding: 4rem 0;
    }

    .card-section {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        gap: 1.5rem;
    }
}