.why-choose-section {
    padding: 100px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: stretch;
}

.why-card {
    background: var(--color-primary);
    /* tono verde similar a la imagen de referencia */
    border-radius: 14px;
    padding: clamp(1.75rem, 3.5vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

.why-title {
    color: var(--color-white) !important;
    
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
}

.why-icon {
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-text h4 {
    margin: 0 0 .3rem 0;
    color: var(--color-white) !important;
}

.why-text p {
    margin: 0;
    line-height: 1.45;
    color: var(--color-white) !important;
}

.why-actions .btn {
    border-radius: 12px;
    padding: .30rem 1.4rem;
    font-weight: 600;
}

.why-actions .btn-primary {
    background: #111;
    border-color: #111;
}

.why-actions .btn-primary:hover {
    background: #333;
    border-color: #333;
}

.why-actions .btn-white {
    background: #fff;
    border: 0;
    color: #111;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
}

.why-actions .btn-white:hover {
    background: #f5f5f5;
}

.why-btn-icon {
    display: inline-block;
    transition: transform .25s ease;
}

.why-actions .btn-primary:hover .why-btn-icon {
    transform: translateX(4px);
}

.why-image-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 420px;
    background: #000;
}

.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-image-wrapper {
        min-height: 360px;
    }
}

@media (max-width: 576px) {
    .why-card {
        padding: 1.5rem 1.25rem;
    }

    .why-title {
        font-size: 1.65rem;
    }

    .why-text h3 {
        font-size: 1rem;
    }

    .why-text p {
        font-size: .88rem;
    }

    .why-image-wrapper {
        min-height: 300px;
    }
}