/* =========================================================
| CTA SECTION
========================================================= */

.sg-cta-section{

    position:relative;

    padding:100px 0;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #020617 0%,
            #081226 40%,
            #0f172a 100%
        );
}

/* =========================================================
| BACKGROUND GLOW
========================================================= */

.sg-cta-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(40px);

    opacity:.18;

    z-index:1;
}

.sg-cta-glow-1{

    width:340px;
    height:340px;

    top:-120px;
    left:-120px;

    background:
        radial-gradient(
            #2563eb,
            transparent
        );
}

.sg-cta-glow-2{

    width:300px;
    height:300px;

    bottom:-140px;
    right:-100px;

    background:
        radial-gradient(
            #06b6d4,
            transparent
        );
}

/* =========================================================
| CTA BOX
========================================================= */

.sg-cta-box{

    position:relative;

    z-index:5;

    overflow:hidden;

    padding:80px 60px;

    border-radius:40px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.04)
        );

    border:
        1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(16px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.30);
}

/* =========================================================
| TOP LIGHT
========================================================= */

.sg-cta-box::before{

    content:'';

    position:absolute;

    top:-100px;
    right:-100px;

    width:240px;
    height:240px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(255,255,255,.10),
            transparent
        );
}

/* =========================================================
| BADGE
========================================================= */

.sg-cta-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:12px 24px;

    border-radius:60px;

    background:
        rgba(37,99,235,.14);

    border:
        1px solid rgba(255,255,255,.10);

    color:#60a5fa;

    font-size:13px;

    font-weight:700;

    margin-bottom:30px;
}

/* =========================================================
| TITLE
========================================================= */

.sg-cta-title{

    font-size:68px;

    line-height:1.1;

    font-weight:900;

    color:#fff;

    margin-bottom:26px;

    letter-spacing:-2px;
}

.sg-cta-title span{

    background:
        linear-gradient(
            135deg,
            #60a5fa,
            #38bdf8,
            #ffffff
        );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

/* =========================================================
| SUBTITLE
========================================================= */

.sg-cta-subtitle{

    max-width:820px;

    margin:0 auto 42px;

    font-size:19px;

    line-height:1.9;

    color:
        rgba(255,255,255,.80);
}

/* =========================================================
| BUTTONS
========================================================= */

.sg-cta-actions{

    display:flex;

    align-items:center;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;
}

.sg-cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    min-width:230px;

    padding:18px 34px;

    border-radius:60px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    transition:.35s ease;
}

/* =========================================================
| PRIMARY BUTTON
========================================================= */

.sg-cta-btn-primary{

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #38bdf8
        );

    color:#fff;

    box-shadow:
        0 18px 35px rgba(37,99,235,.30);
}

.sg-cta-btn-primary:hover{

    transform:
        translateY(-5px);

    color:#fff;

    box-shadow:
        0 30px 60px rgba(37,99,235,.40);
}

/* =========================================================
| OUTLINE BUTTON
========================================================= */

.sg-cta-btn-outline{

    background:
        rgba(255,255,255,.06);

    border:
        1px solid rgba(255,255,255,.10);

    color:#fff;
}

.sg-cta-btn-outline:hover{

    transform:
        translateY(-5px);

    background:
        rgba(255,255,255,.12);

    color:#fff;
}

/* =========================================================
| STATS
========================================================= */

.sg-cta-stats{

    display:flex;

    align-items:center;

    justify-content:center;

    flex-wrap:wrap;

    gap:40px;

    margin-top:55px;
}

/* =========================================================
| SINGLE STAT
========================================================= */

.sg-cta-stat{

    position:relative;
}

.sg-cta-stat::after{

    content:'';

    position:absolute;

    top:50%;
    right:-20px;

    transform:translateY(-50%);

    width:1px;
    height:40px;

    background:
        rgba(255,255,255,.12);
}

.sg-cta-stat:last-child::after{

    display:none;
}

.sg-cta-stat h4{

    margin:0 0 8px;

    font-size:38px;

    font-weight:900;

    color:#fff;
}

.sg-cta-stat p{

    margin:0;

    font-size:15px;

    color:
        rgba(255,255,255,.72);
}

/* =========================================================
| RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .sg-cta-title{

        font-size:56px;
    }
}

@media(max-width:991px){

    .sg-cta-section{

        padding:80px 0;
    }

    .sg-cta-box{

        padding:70px 40px;
    }

    .sg-cta-title{

        font-size:46px;
    }

    .sg-cta-subtitle{

        font-size:17px;
    }
}

@media(max-width:768px){

    .sg-cta-section{

        padding:70px 0;
    }

    .sg-cta-box{

        padding:55px 28px;

        border-radius:28px;
    }

    .sg-cta-title{

        font-size:36px;

        line-height:1.2;
    }

    .sg-cta-subtitle{

        font-size:15px;

        line-height:1.8;
    }

    .sg-cta-actions{

        flex-direction:column;
    }

    .sg-cta-btn{

        width:100%;
    }

    .sg-cta-stats{

        gap:26px;
    }

    .sg-cta-stat::after{

        display:none;
    }
}

@media(max-width:576px){

    .sg-cta-title{

        font-size:30px;
    }

    .sg-cta-badge{

        width:100%;
    }

    .sg-cta-stat{

        width:100%;
    }
}