.twp-two-column-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    padding:80px;
    width:100%;
    box-sizing:border-box;
}

.twp-left-column{
    flex:1;
    max-width:55%;
}

.twp-right-column{
    flex:1;
    max-width:45%;
    display:flex;
    justify-content:center;
}

.twp-subtitle{
    display:inline-block;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#3765ff;
    margin-bottom:15px;
}

.twp-title{
    font-size:48px;
    line-height:1.2;
    font-weight:700;
    color:#1d1d1f;
    margin:0 0 25px;
}

.twp-description{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:35px;
}

.twp-list-heading{
    font-size:22px;
    font-weight:600;
    margin-bottom:25px;
    color:#111;
}

.twp-feature-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:40px;
}

.twp-feature-item{
    display:flex;
    align-items:center;
}

.twp-feature-item i,
.twp-feature-item svg{
    width:20px;
    height:20px;
    color:#3765ff;
    fill:#3765ff;
    margin-right:14px;
    flex-shrink:0;
}

.twp-feature-item span{
    font-size:17px;
    color:#444;
}

/*=====================================
TESTIMONIAL CARD
=====================================*/

.twp-testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    margin:40px 0;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.twp-testimonial-text{
    font-size:17px;
    line-height:1.8;
    color:#333;
    margin-bottom:25px;
    font-style:italic;
}

.twp-company-logo{
    margin-bottom:25px;
}

.twp-company-logo img{
    max-width:140px;
    height:auto;
    display:block;
}

.twp-author{
    display:flex;
    align-items:center;
    gap:15px;
}

.twp-author-image{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

.twp-author-info{
    display:flex;
    flex-direction:column;
}

.twp-author-info h5{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#111;
    line-height:1.3;
}

.twp-author-info span{
    margin-top:4px;
    font-size:14px;
    color:#666;
}

/*=====================================
CLIENT LOGOS
=====================================*/

.twp-logo-list{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:25px;
}

.twp-logo-item{
    display:flex;
    align-items:center;
    justify-content:center;
}

.twp-logo-item img{
    max-width:130px;
    width:100%;
    height:auto;
    transition:.3s;
    opacity:.8;
}

.twp-logo-item img:hover{
    opacity:1;
    transform:scale(1.05);
}

/*=====================================
FORM
=====================================*/

.twp-form-card{
    width:100%;
    max-width:520px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    box-sizing:border-box;
}

.twp-form-card iframe{
    width:100%;
    border:none;
}

.twp-form-card .calendly-inline-widget{
    min-width:100%;
}

.twp-form-card .hbspt-form{
    width:100%;
}

.twp-form-card input,
.twp-form-card select,
.twp-form-card textarea{
    width:100%;
    box-sizing:border-box;
}

.twp-form-card button,
.twp-form-card input[type="submit"]{
    cursor:pointer;
}

.fixed-header{
    display:none !important;
}

.twp-landing-logo{
    margin-bottom:30px;
}

.twp-landing-logo img{
    max-width:180px;
    height:auto;
    display:block;
}



/*=====================================
TABLET
=====================================*/

@media (max-width:1024px){

    .twp-two-column-wrapper{
        gap:50px;
        padding:60px 40px;
    }

    .twp-title{
        font-size:38px;
    }

    .twp-left-column{
        max-width:100%;
    }

    .twp-right-column{
        max-width:100%;
    }

}

/*=====================================
MOBILE
=====================================*/

@media (max-width:767px){

    .twp-two-column-wrapper{
        flex-direction:column;
        padding:30px 20px;
        gap:40px;
    }

    .twp-left-column,
    .twp-right-column{
        width:100%;
        max-width:100%;
    }

    .twp-title{
        font-size:30px;
    }

    .twp-description{
        font-size:16px;
    }

    .twp-form-card{
        padding:20px;
    }

    .twp-logo-list{
        justify-content:center;
    }

    .twp-testimonial-card{
        padding:20px;
        margin:30px 0;
    }

    .twp-testimonial-text{
        font-size:15px;
    }

    .twp-company-logo img{
        max-width:120px;
    }

    .twp-author{
        align-items:flex-start;
    }

    .twp-author-image{
        width:50px;
        height:50px;
    }

    .twp-author-info h5{
        font-size:16px;
    }

}