/* ===========================
   FINAL CTA
=========================== */

.services-cta-section{

    background:
    radial-gradient(circle at center,
    rgba(255,200,0,.14),
    transparent 38%),
    linear-gradient(
        to bottom,
        #080808,
        #030303
    );

    text-align:center;

    overflow:hidden;

}

.services-cta-content{

    max-width:900px;

    margin:auto;

}

.services-cta-content h2{

    font-family:"Playfair Display",serif;

    font-size:clamp(46px,6vw,82px);

    line-height:1.05;

    margin:28px 0;

}

.services-cta-content h2::first-line{

    color:var(--primary);

}

.services-cta-content p{

    max-width:720px;

    margin:0 auto 40px;

    font-size:18px;

    line-height:1.8;

}

.services-cta-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.services-cta-note{

    max-width:720px;

    margin:auto;

    padding:22px 28px;

    border-left:4px solid var(--primary);

    background:rgba(255,255,255,.03);

    text-align:left;

    color:rgba(255,255,255,.72);

    line-height:1.8;

}

.services-cta-note strong{

    color:var(--primary);

}

@media(max-width:768px){

.services-cta-content p{

font-size:16px;

}

.services-cta-buttons{

flex-direction:column;

}

.services-cta-note{

text-align:center;

border-left:none;

border-top:4px solid var(--primary);

}

}