/* ——— WHY US ——— */
.why-us {
    padding: 120px 0;
    background: var(--blanco);
}
.why-header { margin-bottom: 72px; }
.why-header .section-title { max-width: 600px; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}
.why-item {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--fondo);
    border-left: 3px solid transparent;
    transition: all 0.4s ease;
}
.why-item:hover { border-left-color: var(--naranja); transform: translateX(4px); }
.why-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--naranja); fill: none; stroke-width: 2; }
.why-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--azul);
    margin-bottom: 8px;
    font-weight: 500;
}
.why-desc {
    font-size: 0.88rem;
    color: var(--gris-acero);
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
}
