*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Lato",sans-serif;
}

.cpu-hero{
    width:100%;
    min-height:320px;

    padding:30px 40px;

    border-radius:24px;

    background:#ffffff;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    overflow:hidden;
    position:relative;
}

.cpu-hero-left{
    max-width:460px;
    position:relative;
    z-index:2;
}

.cpu-line{
    position:absolute;
    left:-18px;
    top:6px;

    width:5px;
    height:68px;

    border-radius:20px;

    background:#2563eb;
}

.cpu-title{
    font-size:30px;
    /* line-height:0.92; */
    font-weight:900;
    /* letter-spacing:3px; */
    color:#020617;
    margin-bottom:18px;
}

.cpu-title span{
    color:#2563eb;
}

.cpu-sub{
    font-size:17px;
    line-height:1.7;
    color:#64748b;

    max-width:390px;

    margin-bottom:24px;
}

.cpu-btn-group{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.cpu-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:13px 24px;

    border-radius:12px;

    text-decoration:none;

    font-size:14px;
    font-weight:700;

    transition:.2s ease;
}

/* BLUE BUTTON */
.cpu-btn-primary{
    background:#2563eb;
    color:#fff;

    box-shadow:0 8px 20px rgba(37,99,235,.22);
}

.cpu-btn-primary:hover{
    transform:translateY(-2px);
}

/* OUTLINE BUTTON */
.cpu-btn-outline{
    border:1.5px solid #cbd5e1;
    background:#fff;
    color:#2563eb;
}

.cpu-btn-outline:hover{
    border-color:#2563eb;
    background:#f8fbff;
}
.cpu-hero-right{
    width:520px;
    height:300px;

    display:flex;
    align-items:center;
    justify-content:center;
}
.cpu-hero-right img{
    width:100%;
    height:100%;
    object-fit:contain;

    filter:drop-shadow(0 20px 40px rgba(0,0,0,.18));
}

@media(max-width:900px){

    .cpu-hero{
        flex-direction:column;
        padding:24px;
    }

    .cpu-title{
        font-size:42px;
    }

    .cpu-sub{
        font-size:14px;
    }

    .cpu-btn{
        font-size:15px;
        padding:13px 20px;
    }

    .cpu-hero-right{
        width:100%;
        height:220px;
    }

    .cpu-line{
        height:90px;
    }
}


