
/* =========================================
FINAL CTA SECTION
========================================= */

.cta-section{
    position:relative;
    overflow:hidden;

    padding:120px 0;

    background:
    linear-gradient(
        180deg,
        #000000 0%,
        #050505 100%
    );
}

/* =========================================
BACKGROUND GLOW
========================================= */

.cta-glow{
    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:900px;
    height:500px;

    background:
    radial-gradient(
        circle,
        rgba(255,0,0,0.15),
        transparent 70%
    );

    filter:blur(120px);

    pointer-events:none;
}

/* =========================================
CTA WRAPPER
========================================= */

.cta-wrapper{
    position:relative;
    z-index:2;

    max-width:1200px;
    margin:auto;

    background:
    linear-gradient(
        135deg,
        rgba(20,0,0,0.95),
        rgba(0,0,0,0.95)
    );

    border:1px solid rgba(255,255,255,0.06);

    border-radius:40px;

    padding:80px 70px;

    text-align:center;

    overflow:hidden;
}

/* =========================================
ANIMATED LIGHT
========================================= */

.cta-wrapper::before{
    content:'';

    position:absolute;

    top:-200px;
    left:-200px;

    width:400px;
    height:400px;

    background:
    radial-gradient(
        circle,
        rgba(255,0,0,0.2),
        transparent 70%
    );

    animation:ctaMove 8s linear infinite;
}

@keyframes ctaMove{

    0%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(600px,200px);
    }

    100%{
        transform:translate(0,0);
    }

}

/* =========================================
TAG
========================================= */

.cta-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:44px;
    padding:0 24px;

    border-radius:999px;

    background:rgba(255,0,0,0.08);

    border:1px solid rgba(255,0,0,0.2);

    color:#ff2b2b;

    font-size:14px;
    font-weight:600;

    margin-bottom:28px;
}

/* =========================================
TITLE
========================================= */

.cta-title{
    max-width:850px;
    margin:auto;

    font-size:58px;
    line-height:1.2;
    font-weight:800;

    color:#ffffff;

    margin-bottom:28px;
}

/* =========================================
DESCRIPTION
========================================= */

.cta-desc{
    max-width:760px;
    margin:auto;

    font-size:16px;
    line-height:2;

    color:#9f9f9f;

    margin-bottom:50px;
}

/* =========================================
BUTTONS
========================================= */

.cta-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;

    flex-wrap:wrap;
}

.cta-primary-btn,
.cta-secondary-btn{
    height:64px;
    padding:0 38px;

    border-radius:999px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    text-decoration:none;

    font-size:16px;
    font-weight:700;

    transition:0.4s ease;
}

/* PRIMARY */

.cta-primary-btn{
    background:
    linear-gradient(
        135deg,
        #ff5a00,
        #ff1e1e
    );

    color:#ffffff;

    box-shadow:
    0 15px 40px rgba(255,0,0,0.25);
}

.cta-primary-btn:hover{
    transform:translateY(-5px) scale(1.03);
}

/* SECONDARY */

.cta-secondary-btn{
    border:1px solid rgba(255,255,255,0.12);

    background:rgba(255,255,255,0.02);

    color:#ffffff;
}

.cta-secondary-btn:hover{
    background:rgba(255,255,255,0.06);

    transform:translateY(-5px);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:992px){

    .cta-wrapper{
        padding:70px 50px;
    }

    .cta-title{
        font-size:46px;
    }

}

@media(max-width:768px){

    .cta-section{
        padding:90px 0;
    }

    .cta-wrapper{
        padding:60px 30px;
        border-radius:30px;
    }

    .cta-title{
        font-size:36px;
    }

    .cta-desc{
        font-size:14px;
    }

}

@media(max-width:576px){

    .cta-title{
        font-size:30px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-primary-btn,
    .cta-secondary-btn{
        width:100%;
    }

}

