/* ============================================
   BLC Why Choose Us — Industrial Editorial
   ============================================ */

.blc-why {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: #0a0a0a;
    padding: 80px 20px;
    overflow: hidden;
    position: relative;
}

.blc-why::before {
    content: 'WHY';
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 220px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -10px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.blc-why-container {
    max-width: 1170px;
    margin: 0 auto;
}

/* Header — left-aligned, editorial style */
.blc-why-header {
    margin-bottom: 60px;
    position: relative;
}

.blc-why-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #cd0516;
    margin-bottom: 12px;
    font-family: "Roboto", Arial, sans-serif;
}

.blc-why-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.blc-why-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #cd0516;
}

/* Grid — 4 columns with staggered reveal */
.blc-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

/* Card */
.blc-why-card {
    position: relative;
    padding: 40px 28px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.4s ease;
    overflow: hidden;
    animation: blcWhyFadeUp 0.6s ease both;
    animation-delay: calc(var(--card-index) * 0.12s);
}

.blc-why-card:last-child {
    border-right: none;
}

.blc-why-card:hover {
    background: rgba(205, 5, 22, 0.08);
}

.blc-why-card:hover .blc-why-card-stripe {
    transform: scaleY(1);
}

.blc-why-card:hover .blc-why-icon {
    transform: scale(1.05);
    color: #fff;
}

.blc-why-card:hover .blc-why-card-number {
    color: #cd0516;
}

/* Card number — oversized, faded */
.blc-why-card-number {
    font-size: 64px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.4s ease;
    font-family: "Roboto", Arial, sans-serif;
}

.blc-why-card-body {
    position: relative;
    z-index: 1;
}

.blc-why-icon {
    font-size: 36px;
    color: #cd0516;
    display: block;
    margin-bottom: 18px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.blc-why-card-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.blc-why-card-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin: 0;
}

/* Red top stripe on hover */
.blc-why-card-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #cd0516;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

/* Animation */
@keyframes blcWhyFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .blc-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blc-why-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .blc-why-card:nth-child(2) {
        border-right: none;
    }
    .blc-why-title {
        font-size: 34px;
    }
    .blc-why::before {
        font-size: 140px;
    }
}

@media (max-width: 767px) {
    .blc-why {
        padding: 50px 15px;
    }
    .blc-why-grid {
        grid-template-columns: 1fr;
    }
    .blc-why-card {
        border-right: none;
        padding: 30px 20px;
    }
    .blc-why-title {
        font-size: 28px;
    }
    .blc-why-header {
        margin-bottom: 40px;
    }
    .blc-why-card-number {
        font-size: 48px;
    }
    .blc-why::before {
        font-size: 100px;
        top: -15px;
    }
}
