/* section 5 PÔLES COMPLETS */
    .scale_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .scale_pole {
        background: var(--light-white);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s;
    }
    
    .scale_pole:hover {
        transform: translateY(-4px);
    }
    
    .sp_header {
        padding: 22px 26px 18px;
        border-bottom: 1px solid var(--light-white);
        display: flex;
        align-items: center;
        gap: 14px;
    }
    
    .sp_icon {
        flex: 0 0 45px; height: 45px;
        background: var(--second);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        i{
            color: var(--white);
            font-size: 25px;
        }
    }
    
    .sp_title {
        font-size: 0.95rem;
        font-weight: 700;
    }
    
    .sp_sub {
        font-size: 0.76rem;
        margin-top: 2px;
    }
    
    .sp_body {
        padding: 22px 26px;
    }
    
    .sp_item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 10px;
        font-size: 0.83rem;
        line-height: 1.5;
    }
    
    .sp_item:last-child {
        margin-bottom: 0;
    }
    
    .sp_check {
        flex-shrink: 0;
        margin-top: 1px;
        i{
            color: var(--second);
        }
    }
    
    .sp_vol {
        font-size: 0.68rem;
        font-weight: 700;
        margin-top: 14px;
        letter-spacing: 0.5px;
        padding-top: 12px;
        border-top: 1px solid var(--light-white);
        text-align: center;
        color: var(--second);
    }
    
    .sp_body_last{
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(350px,1fr)); 
        gap: 16px;
    }
/* section 5 PÔLES COMPLETS */

/* section vip */
    .box_plan_vip{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .vip_strip {
        width: 100%;
        padding: 48px 16px;
        background: var(--light-white);
        border-top: 1px solid var(--light-white);
        border-bottom: 1px solid var(--light-white);
    }
    
    .vip_strip h2 {
        letter-spacing: -0.5px;
        margin: 14px 0;
        font-size: 40px;
        font-weight: 800;
        text-transform: uppercase;
        span{
            text-transform: uppercase;
            font-weight: 800;
            color: var(--second);
            font-size: 40px;
        }
    }
    
    .vip_strip p {
        font-size: 0.95rem;
        max-width: 560px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    
    .vip_strip ul{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .vip_strip ul li{
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.85rem;
        i{
            color: var(--second);
        }
    }
    
    .vip_items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .vip_item {
        background: var(--light-white);
        border: 1px solid var(--light-white);
        border-radius: 16px;
        padding: 16px;
        text-align: center;
        transition: all 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .vip_item:hover {
        transform: translateY(-2px);
    }
    
    .vip_item_icon {
        margin-bottom: 10px;
        width: 35px; height: 35px;
        background: var(--second);
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        i{
            font-size: 1.6rem;
        }
    }
    
    .vip_item h4 {
        font-size: 0.82rem;
        font-weight: 700;
        margin-bottom: 4px;
    }
    
    .vip_item p {
        font-size: 0.75rem;
    }
/* section vip */

/* responsive */
    /* section 5 PÔLES COMPLETS */
        @media screen and (max-width: 900px){
            .scale_grid{
                grid-template-columns: 1fr;
            }
        }
        
        @media screen and (max-width: 450px){
            .sp_body_last{
                grid-template-columns: 1fr; 
            }
        }
    /* section 5 PÔLES COMPLETS */
    
    /* section vip */
        @media screen and (max-width: 1250px){
            .box_plan_vip{
                grid-template-columns: 1fr;
                gap: 32px;
                justify-content: center;
            }
            
            .box_text_plan{
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .box_text_plan .tag{
                margin: 0 auto;
            }
            
            .box_text_plan h2, .box_text_plan p{
                text-align: center;
            }
        }
        
        @media screen and (max-width: 650px){
            .box_text_plan h2, .box_text_plan h2 span{
                font-size: 30px;
            }
        }
        
        @media screen and (max-width: 450px){
            .box_text_plan h2, .box_text_plan h2 span{
                font-size: 25px;
            }
            
            .vip_items {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    /* section vip */
/* responsive */