/* =========================================================
   CTA
========================================================= */

.cta{
    position:relative;
    padding:72px 48px 64px;
    background:#e8eef8;
    font-family:'Inter','Segoe UI',sans-serif;
}

/* =========================================================
   HEADING
========================================================= */

.cta__heading{
    max-width:700px;
    margin:0 auto 28px;
    text-align:center;
}

.cta__eyebrow{
    margin:0 0 9px;
    color:#dc9e5b;
    font-size:13px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.cta__title{
    margin:0 0 11px;
    color:#0f1b2d;
    font-size:37px;
    line-height:1.08;
    font-weight:800;
    letter-spacing:-1.3px;
}

.cta__subtitle{
    max-width:620px;
    margin:0 auto;
    color:#5a6678;
    font-size:16px;
    line-height:1.6;
}

/* =========================================================
   BANNER
========================================================= */

.cta__banner{
    position:relative;
    width:100%;
    max-width:1350px;
    min-height:410px;
    margin:0 auto;
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 24px 65px rgba(15,30,60,.18);
}

.cta__bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .7s ease;
}

.cta__banner:hover .cta__bg{
    transform:scale(1.02);
}

.cta__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        100deg,
        rgba(7,19,48,.97) 0%,
        rgba(7,19,48,.92) 30%,
        rgba(7,19,48,.72) 50%,
        rgba(7,19,48,.28) 70%,
        rgba(7,19,48,.08) 100%
    );
}

/* =========================================================
   CONTENT
========================================================= */

.cta__content{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:center;
    width:100%;
    max-width:760px;
    min-height:410px;
    padding:38px 42px;
}

/* =========================================================
   LABEL
========================================================= */

.cta__label{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
}

.cta__label-line{
    display:block;
    width:28px;
    height:2px;
    flex-shrink:0;
    background:#ed8936;
}

.cta__label-text{
    color:#ed8936;
    font-size:11px;
    line-height:1.3;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.cta__label-brand{
    color:#5d8fff;
}

/* =========================================================
   MAIN TEXT
========================================================= */

.cta__headline{
    max-width:620px;
    margin:0 0 16px;
    color:#fff;
    font-size:36px;
    line-height:1.08;
    font-weight:800;
    letter-spacing:-1.2px;
}

.cta__desc{
    max-width:560px;
    margin:0 0 26px;
    color:rgba(255,255,255,.82);
    font-size:15px;
    line-height:1.65;
}

/* =========================================================
   CONTACTS
========================================================= */

.cta__contacts{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;

    width:100%;
    max-width:720px;
    margin:34px 0 30px;
}

.cta__contact{
    display:flex;
    flex-direction:column;
    align-items:flex-start;

    gap:14px;

    padding:22px;

    min-height:175px;

    border-radius:22px;

    background:rgba(255,255,255,.09);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(18px);

    transition:.3s;
}

.cta__contact:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.13);
}

.cta__contact-icon{
    width:52px;
    height:52px;
    min-width:52px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.22);

    color:#fff;
}

.cta__contact-icon svg{
    width:22px;
    height:22px;
}

.cta__contact-content{
    min-width:0;
}

.cta__contact-content h4{
    margin:0 0 10px;

    color:#fff;

    font-size:24px;

    font-weight:700;
}

.cta__contact-content p,
.cta__contact-content a{

    display:block;

    margin:0 0 8px;

    color:rgba(255,255,255,.82);

    font-size:13px;

    line-height:1.55;

    text-decoration:none;
}

.cta__contact-content a:hover{
    color:#fff;
}

@media(max-width:1100px){

.cta__contacts{
    grid-template-columns:1fr;
}

.cta__contact{
    min-height:auto;
}

}

/* =========================================================
   BUTTONS
========================================================= */

.cta__actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.cta__btn-primary,
.cta__btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:14px 28px;
    border-radius:13px;
    font-size:14px;
    line-height:1;
    font-weight:600;
    text-decoration:none;
    transition:transform .25s ease,box-shadow .25s ease,background .25s ease,border-color .25s ease;
}

.cta__btn-primary{
    color:#fff;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    box-shadow:0 14px 30px rgba(37,99,235,.3);
}

.cta__btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 38px rgba(37,99,235,.38);
}

.cta__btn-secondary{
    color:#fff;
    border:1px solid rgba(255,255,255,.36);
    background:rgba(255,255,255,.08);
}

.cta__btn-secondary:hover{
    transform:translateY(-3px);
    border-color:rgba(255,255,255,.72);
    background:rgba(255,255,255,.15);
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width:1200px){
    .cta{
        padding:70px 32px 60px;
    }

    .cta__banner,
    .cta__content{
        min-height:400px;
    }

    .cta__content{
        max-width:720px;
        padding:36px 38px;
    }

    .cta__headline{
        font-size:34px;
    }

    .cta__contacts{
        grid-template-columns:1fr 1fr;
        max-width:620px;
    }

    .cta__contact:last-child{
        grid-column:1 / -1;
        min-height:auto;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width:900px){
    .cta{
        padding:64px 20px 54px;
    }

    .cta__heading{
        margin-bottom:24px;
    }

    .cta__title{
        font-size:33px;
    }

    .cta__subtitle{
        font-size:15px;
    }

    .cta__banner{
        min-height:560px;
        border-radius:24px;
    }

    .cta__overlay{
        background:linear-gradient(
            180deg,
            rgba(7,19,48,.28) 0%,
            rgba(7,19,48,.72) 36%,
            rgba(7,19,48,.97) 100%
        );
    }

    .cta__content{
        justify-content:flex-end;
        max-width:100%;
        min-height:560px;
        padding:30px;
    }

    .cta__headline{
        max-width:600px;
        font-size:33px;
    }

    .cta__desc{
        max-width:600px;
    }

    .cta__contacts{
        grid-template-columns:1fr 1fr;
        max-width:100%;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:576px){
    .cta{
        padding:56px 16px 42px;
    }

    .cta__heading{
        margin-bottom:20px;
    }

    .cta__eyebrow{
        margin-bottom:8px;
        font-size:11px;
        letter-spacing:3px;
    }

    .cta__title{
        margin-bottom:10px;
        font-size:28px;
        letter-spacing:-1px;
    }

    .cta__subtitle{
        font-size:14px;
        line-height:1.55;
    }

    .cta__banner{
        min-height:640px;
        border-radius:20px;
    }

    .cta__bg{
        object-position:center;
    }

    .cta__content{
        justify-content:flex-end;
        min-height:640px;
        padding:22px 18px;
    }

    .cta__label{
        margin-bottom:12px;
    }

    .cta__label-text{
        font-size:9px;
        letter-spacing:1.3px;
    }

    .cta__headline{
        margin-bottom:12px;
        font-size:27px;
        line-height:1.08;
    }

    .cta__desc{
        margin-bottom:18px;
        font-size:13.5px;
        line-height:1.5;
    }

    .cta__contacts{
        grid-template-columns:1fr;
        gap:9px;
        margin-bottom:18px;
    }

    .cta__contact,
    .cta__contact:last-child{
        grid-column:auto;
        min-height:auto;
    }

    .cta__contact{
        padding:11px 12px;
        border-radius:14px;
    }

    .cta__contact-icon{
        width:36px;
        height:36px;
        min-width:36px;
    }

    .cta__contact-content h4{
        font-size:12px;
    }

    .cta__contact-content p,
    .cta__contact-content a{
        font-size:11px;
    }

    .cta__actions{
        flex-direction:column;
        align-items:stretch;
        gap:9px;
    }

    .cta__btn-primary,
    .cta__btn-secondary{
        width:100%;
        min-height:48px;
    }
}

/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width:390px){
    .cta{
        padding-right:14px;
        padding-left:14px;
    }

    .cta__title{
        font-size:26px;
    }

    .cta__banner,
    .cta__content{
        min-height:650px;
    }

    .cta__content{
        padding:20px 15px;
    }

    .cta__headline{
        font-size:24px;
    }

    .cta__desc{
        font-size:13px;
    }
}
