*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.scope-section{
    padding:60px 8%;
    position:relative;
    min-height:100vh;
    height:100vh;
    overflow:hidden;
    /* background:#f7f7f5; */
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.scope-bg{
    position:absolute;
    inset:0;
    /* background:
    radial-gradient(circle at top left,rgba(34,70,170,.08),transparent 40%),
    radial-gradient(circle at bottom right,rgba(34,70,170,.05),transparent 35%); */
    z-index:0;
}

.scope-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#1f53d9;
    filter:blur(180px);
    opacity:.08;
    top:-180px;
    left:-150px;
    z-index:0;
}

.scope-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:#3d7eff;
    filter:blur(120px);
    opacity:.06;
    right:-80px;
    bottom:120px;
    z-index:0;
}

.container{
    position:relative;
    z-index:3;
    width:min(1300px,92%);
    margin:auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
    flex:1;
}

.scope-header{
    text-align:center;
}

.subtitle{
    display:block;
    color:#2048b5;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.scope-section h2{
    color:#183d97;
    font-size:64px;
    line-height:1;
    font-family:Georgia,serif;
    font-weight:700;
}

.scope-section h2 span{
    display:block;
    margin-top:10px;
    font-size:34px;
}

.desc{
    max-width:720px;
    margin:18px auto 0;
    color:#555;
    line-height:1.7;
    font-size:17px;
}

.scope-layout{
    width:100%;
    max-width:1200px;
    margin:35px auto 0;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:35px;
}

.scope-top{
    width:100%;
    display:flex;
    justify-content:center;
    gap:180px;
}

.scope-middle{
    width:100%;
    display:grid;
    grid-template-columns:260px 1fr 260px;
    align-items:center;
    gap:40px;
}

.item{
    display:flex;
    align-items:center;
    gap:18px;
}

.item i{
    width:72px;
    height:72px;
    /* border-radius:18px; */
    background:#2048b5;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    flex-shrink:0;
}

.item-content{
    display:flex;
    flex-direction:column;
}

.item h4{
    color:#183d97;
    font-size:22px;
    margin-bottom:6px;
    line-height:1.2;
}

.item p{
    color:#666;
    font-size:16px;
    line-height:1.5;

}

.building-wrap{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    margin-top:-40px;
}

.scope-building{
    width:100%;
    max-width:760px;
    display:block;

    -webkit-mask-image:linear-gradient(
        to bottom,
        #000 0%,
        #000 45%,
        rgba(0,0,0,.9) 58%,
        rgba(0,0,0,.45) 68%,
        transparent 82%
    );

    mask-image:linear-gradient(
        to bottom,
        #000 0%,
        #000 45%,
        rgba(0,0,0,.9) 58%,
        rgba(0,0,0,.45) 68%,
        transparent 82%
    );
}

.bottom-bar{
    position:relative;
    z-index:2;
    background:#1739a5;
    color:#fff;
    text-align:center;
    padding:24px 30px;
    font-size:16px;
    line-height:1.8;
}

@media(max-width:991px){

    .scope-section{
        min-height:auto;
        height:auto;
        padding:70px 6%;
    }
    
    .container{
        width:100%;
        padding:0;
    }
    
    .scope-header{
        margin-bottom:35px;
    }
    
    .subtitle{
        font-size:13px;
        margin-bottom:10px;
    }
    
    .scope-section h2{
        font-size:40px;
    }
    
    .scope-section h2 span{
        font-size:24px;
        margin-top:6px;
    }
    
    .desc{
        max-width:100%;
        font-size:15px;
        line-height:1.7;
        margin-top:15px;
    }
    
    .scope-layout{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:18px;
        margin-top:35px;
        max-width:100%;
    }
    
    .scope-top{
        display:contents;
    }
    
    .scope-middle{
        display:contents;
    }
    
    .item{
        width:100%;
        min-height:170px;
        padding:22px;
        border:1px solid rgba(32,72,181,.08);
        background:#fff;
        box-shadow:0 12px 30px rgba(0,0,0,.08);
        display:flex;
        align-items:flex-start;
        gap:15px;
    }
    
    .item i{
        width:58px;
        height:58px;
        font-size:24px;
        border-radius:14px;
    }
    
    .item h4{
        font-size:19px;
        margin-bottom:8px;
    }
    
    .item p{
        font-size:14px;
        line-height:1.6;
    }
    
    .building-wrap{
        display:none;
    }
    
    .bottom-bar{
        margin-top:40px;
        padding:24px 18px;
        font-size:15px;
        line-height:1.7;
    }
    
    }

    @media(max-width:600px){

        .scope-layout{
            grid-template-columns:1fr;
        }
        
        .item{
            min-height:auto;
        }
        
        .scope-section h2{
            font-size:34px;
        }
        
        .scope-section h2 span{
            font-size:20px;
        }
        
        }