.reasons-sec {
    padding: 30px 0;
    background-color: #090A10;
    font-family: 'Pretendard Variable', Pretendard, sans-serif;
}

/* ── Header (centered) ──────────────────────────────────────── */
.reasons-header-wrap {
    text-align: center;
    margin-bottom: 64px;
}

.reasons-badge {
    color: #FF1F23;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reasons-badge::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: #FF1F23;
    margin-right: 10px;
}

.reasons-title {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.reasons-title span {
    color: #FF1F23;
}

/* ── 5-Column Grid ──────────────────────────────────────────── */
.reasons-5-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.reason-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #1C1E26;
    border: 1px solid #2A2D3A;
    border-radius: 24px;
    padding: 44px 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.reason-col:hover {
    transform: translateY(-10px);
    border-color: #FF1F23;
    background-color: #22242F;
    box-shadow: 0 24px 50px rgba(255, 62, 66, 0.12);
}

.reason-icon-bx {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background-color: rgba(255, 62, 66, 0.12);
    color: #FF1F23;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.reason-icon-bx svg {
    width: 30px;
    height: 30px;
}

.reason-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
}

.reason-desc {
    font-size: 14px;
    color: #A1A1AA;
    line-height: 1.65;
    margin: 0;
    word-break: keep-all;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .reasons-sec {
        padding: 70px 0;
    }

    .reasons-title {
        font-size: 34px;
    }

    .reasons-5-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .reasons-sec {
        display: none !important;
        /* 모바일에서 완전히 삭제 (요소 최소화) */
    }
}

@media (max-width: 480px) {
    .reasons-title {
        font-size: 24px;
    }

    .reasons-5-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .reason-col {
        padding: 20px 10px;
        border-radius: 18px;
    }

    .reason-icon-bx {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .reason-name {
        font-size: 14px;
        margin-bottom: 0;
    }
}