.tr-cta{
    background:#f8f8f8;
}

.tr-cta-box{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:80px;

    align-items:center;

    background:#fff;

    padding:70px;

    border-radius:20px;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;

}

.tr-cta-box::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:var(--tr-accent);

}

.tr-cta-title{

    font-size:clamp(34px,4vw,48px);

    line-height:1.2;

    margin-bottom:30px;

    color:var(--tr-primary);

}

.tr-cta-text{

    font-size:19px;

    line-height:1.9;

    color:#666;

    margin-bottom:40px;

}

.tr-cta-text p{

    margin-bottom:20px;

}

.tr-cta-text p:last-child{

    margin-bottom:0;

}

.tr-cta-features ul{

    list-style:none;

    margin:0;

    padding:0;

}

.tr-cta-features li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:22px;

    font-size:18px;

    color:#444;

}

.tr-cta-features li:last-child{

    margin-bottom:0;

}

.tr-cta-features i{

    color:var(--tr-accent);

    font-size:22px;

}

.tr-cta .tr-button{

    margin-top:10px;

}

@media(max-width:991px){

    .tr-cta-box{

        grid-template-columns:1fr;

        gap:50px;

        padding:50px;

    }

}

@media(max-width:767px){

    .tr-cta-box{

        padding:35px;

    }

    .tr-cta-title{

        font-size:32px;

    }

    .tr-cta-text{

        font-size:17px;

    }

    .tr-cta-features li{

        font-size:16px;

    }

}