.web-page{
    width:100%;
    min-height:100vh;
    position:relative;
    overflow-x:hidden;

    display:flex;
    justify-content:center;
    align-items:flex-start;

    text-align:center;
    padding:80px 50px;
}

.web-page::before{
    content:"";
    position:fixed;
    inset:0;

    background-image:url("../Assets/images/page\ \(5\).png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    z-index:-1;
}

.web-content{
    max-width:1300px;
    animation:fadeUp 1s ease forwards;
}

.web-title{
    color:var(--primary);
    font-size:clamp(45px,5vw,85px);
    font-weight:400;
    letter-spacing:4px;
    margin-bottom:30px;
}

.web-intro{
    max-width:1050px;
    margin:0 auto 45px;

    font-size:clamp(18px,1.6vw,28px);
    line-height:1.5;
}

.web-highlight{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:35px;
    align-items:center;

    max-width:1150px;
    margin:0 auto 60px;

    padding:35px;

    border:2px solid rgba(255,122,26,.5);
    border-radius:28px;

    background:rgba(0,0,0,.45);
    backdrop-filter:blur(8px);
}

.web-highlight-text{
    text-align:left;
}

.web-highlight-text h2{
    color:var(--primary);
    font-size:2.3rem;
    margin-bottom:18px;
}

.web-highlight-text p{
    font-size:1.2rem;
    line-height:1.6;
}

.web-highlight img{
    width:100%;
    height:330px;
    object-fit:cover;
    object-position:top;
    border-radius:18px;
    border:2px solid rgba(255,122,26,.45);
}

.web-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:26px;
    margin-bottom:60px;
}

.web-card{
    min-height:230px;

    padding:30px 24px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;

    text-decoration:none;
    color:white;

    border:2px solid rgba(255,122,26,.45);
    border-radius:25px;

    background:rgba(0,0,0,.4);
    backdrop-filter:blur(8px);

    transition:.3s ease;
}

.web-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);

    box-shadow:
        0 0 15px rgba(255,122,26,.4),
        0 0 30px rgba(255,122,26,.2);
}

.web-card h2{
    color:var(--primary);
    font-size:1.55rem;
    margin-bottom:15px;
}

.web-card p{
    font-size:1rem;
    line-height:1.45;
    margin-bottom:20px;
}

.web-card span{
    color:var(--primary);
    font-weight:700;
    font-size:1rem;
}

.web-buttons{
    display:flex;
    justify-content:center;
}

@media(max-width:1100px){

    .web-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .web-highlight{
        grid-template-columns:1fr;
        text-align:center;
    }

    .web-highlight-text{
        text-align:center;
    }
}

@media(max-width:700px){

    .web-page{
        padding:50px 20px;
    }

    .web-grid{
        grid-template-columns:1fr;
    }

    .web-highlight{
        padding:25px;
    }

    .web-highlight img{
        height:250px;
    }
}