.vxr_60_main_box {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.vxr_60_bg_decor {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(93, 64, 55, 0.03) 0%, rgba(62, 39, 35, 0.05) 100%);
    transform: rotate(15deg);
    pointer-events: none;
}

.vxr_60_container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.vxr_60_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vxr_60_label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(93, 64, 55, 0.1) 0%, rgba(62, 39, 35, 0.1) 100%);
    color: #5D4037;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.vxr_60_title {
    font-size: 42px;
    font-weight: 800;
    color: #3E2723;
    margin: 0 0 25px;
    line-height: 1.2;
}

.vxr_60_title span {
    color: #5D4037;
}

.vxr_60_text {
    font-size: 17px;
    color: #6D4C41;
    line-height: 1.8;
    margin: 0 0 40px;
}

.vxr_60_stats {
    display: flex;
    gap: 40px;
}

.vxr_60_stat {
    text-align: center;
}

.vxr_60_stat_number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #3E2723;
    line-height: 1;
    margin-bottom: 10px;
}

.vxr_60_stat_number::after {
    content: '+';
    font-size: 32px;
    color: #5D4037;
}

.vxr_60_stat_label {
    font-size: 14px;
    color: #8D6E63;
    font-weight: 500;
}

.vxr_60_features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vxr_60_feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(62, 39, 35, 0.08);
    transition: all 0.3s ease;
}

.vxr_60_feature:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(62, 39, 35, 0.12);
}

.vxr_60_feature_icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5D4037 0%, #3E2723 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.vxr_60_feature_content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #3E2723;
    margin: 0 0 8px;
}

.vxr_60_feature_content p {
    font-size: 14px;
    color: #8D6E63;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .vxr_60_grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .vxr_60_content {
        text-align: center;
    }
    .vxr_60_stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .vxr_60_main_box {
        padding: 60px 0;
    }
    .vxr_60_title {
        font-size: 28px;
    }
    .vxr_60_stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    .vxr_60_stat_number {
        font-size: 36px;
    }
    .vxr_60_feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}