.vxr_wc72_main_box {
    background: #0a1628;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.vxr_wc72_main_box::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(50,168,214,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.vxr_wc72_main_box::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(5,70,164,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.vxr_wc72_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.vxr_wc72_header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 64px;
}

.vxr_wc72_label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #A6D43A;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}

.vxr_wc72_title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 18px;
}

.vxr_wc72_desc {
    font-size: 17px;
    color: #6e87a0;
    line-height: 1.7;
    margin: 0;
}

.vxr_wc72_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 64px;
}

.vxr_wc72_card {
    background: linear-gradient(155deg, rgba(16,34,60,0.85), rgba(10,24,44,0.6));
    border: 1px solid rgba(50,168,214,0.07);
    border-radius: 16px;
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, transform 0.35s;
}

.vxr_wc72_card:hover {
    border-color: rgba(50,168,214,0.2);
    transform: translateY(-5px);
}

.vxr_wc72_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #32A8D6, #A6D43A);
    opacity: 0;
    transition: opacity 0.4s;
}

.vxr_wc72_card:hover::before {
    opacity: 1;
}

.vxr_wc72_icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(50,168,214,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.3s;
}

.vxr_wc72_card:hover .vxr_wc72_icon {
    background: rgba(50,168,214,0.17);
}

.vxr_wc72_icon i {
    font-size: 22px;
    color: #32A8D6;
}

.vxr_wc72_num {
    font-size: 12px;
    font-weight: 700;
    color: rgba(166,212,58,0.25);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.vxr_wc72_card_title {
    font-size: 19px;
    font-weight: 600;
    color: #dfe8f0;
    margin: 0 0 10px;
    line-height: 1.3;
}

.vxr_wc72_card_text {
    font-size: 15px;
    color: #6e87a0;
    line-height: 1.7;
    margin: 0;
}

.vxr_wc72_stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 44px 36px;
    background: linear-gradient(135deg, rgba(50,168,214,0.05), rgba(5,70,164,0.07));
    border: 1px solid rgba(50,168,214,0.09);
    border-radius: 16px;
}

.vxr_wc72_stat {
    text-align: center;
}

.vxr_wc72_stat_val {
    font-size: 38px;
    font-weight: 700;
    color: #32A8D6;
    line-height: 1;
    margin-bottom: 6px;
}

.vxr_wc72_stat_lbl {
    font-size: 14px;
    color: #6e87a0;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .vxr_wc72_main_box { padding: 80px 0; }
    .vxr_wc72_grid { grid-template-columns: repeat(2, 1fr); }
    .vxr_wc72_title { font-size: 34px; }
    .vxr_wc72_stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 768px) {
    .vxr_wc72_main_box { padding: 60px 0; }
    .vxr_wc72_container { padding: 0 16px; }
    .vxr_wc72_title { font-size: 28px; }
    .vxr_wc72_grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 44px; }
    .vxr_wc72_card { padding: 26px 22px; }
    .vxr_wc72_stats { grid-template-columns: repeat(2, 1fr); padding: 30px 20px; }
    .vxr_wc72_stat_val { font-size: 30px; }
}