.for-whom-section {
    padding: 120px 0;
    padding-bottom: 250px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.mobile-only-title {
    display: none;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 40px;
}

.for-whom-wrapper {
    position: relative;
    width: 100%;
    max-width: 1300px;
    aspect-ratio: 1300 / 680;
    margin: 0 auto;
}

.for-whom-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    pointer-events: none;
}

.lines-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.center-desktop-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.center-desktop-circle span {
    font-size: 75px;
    font-weight: 700;
    color: #1a1f36;
    opacity: 0.9;
}

.target-item {
    position: absolute;
    width: 13.5%;
    height: 38%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    z-index: 3;
    box-sizing: border-box;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.target-item .icon-box {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: box-shadow 0.25s ease;
}

.target-item .icon-box img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.target-item p {
    font-size: 11.5px;
    line-height: 1.35;
    color: #2c3142;
    font-weight: 600;
    margin: 0;
    white-space: normal;
}

.target-item:hover {
    transform: scale(1.08);
    z-index: 10;
}

.target-item:hover .icon-box {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.pos-top-1 { top: -11%; left: -2%; }
.pos-top-2 { top: -11%; left: 15%; }
.pos-top-3 { top: -11%; left: 34%; }
.pos-top-4 { top: -11%; left: 53%; }
.pos-top-5 { top: -11%; left: 73%; }
.pos-top-6 { top: -11%; left: 89%; }

.pos-bottom-1 { top: auto !important; bottom: -25%; left: 20.5%; }
.pos-bottom-2 { top: auto !important; bottom: -25%; left: 42.5%; width: 16%; }
.pos-bottom-3 { top: auto !important; bottom: -25%; left: 68%; }


@media (max-width: 1024px) {
    
    .for-whom-section {
        padding: 50px 0;
        padding-bottom: 50px;
    }
    
    .mobile-only-title {
        display: block;
    }
    
    .for-whom-wrapper {
        height: auto !important;
        aspect-ratio: auto !important;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0 20px;
    }
    
    .for-whom-background,
    .lines-img,
    .center-desktop-circle {
        display: none !important;
    }
    
    .target-item {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 20px;
        
        background: #f8f9fa;
        padding: 16px 20px;
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    }
    
    .target-item .icon-box {
        margin-bottom: 0 !important;
        width: 65px !important;
        min-width: 65px !important;
        height: 65px !important;
        border-radius: 16px;
    }
    
    .target-item p {
        font-size: 15px;
        color: #1a1f36;
        line-height: 1.4;
        word-break: break-word;
    }
    
    .target-item:hover {
        transform: none !important;
    }
}