﻿.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg,#1f2329,#2d333b);
    border-radius: 24px;
    padding: 55px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

    .cta-box::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        background: rgba(255,193,7,.08);
        border-radius: 50%;
        top: -160px;
        left: -120px;
    }

    .cta-box::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        background: rgba(255,193,7,.05);
        border-radius: 50%;
        bottom: -120px;
        right: -80px;
    }

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,193,7,.15);
    color: #ffc107;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.cta-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 18px;
}

.cta-content p {
    color: #d6d6d6;
    font-size: 17px;
    line-height: 2;
    margin: 0;
}

.cta-action {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 260px;
}

.btn-demo-lg {
    background: #ffc107;
    color: #222;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: .3s;
}

    .btn-demo-lg:hover {
        background: #ffca2c;
        transform: translateY(-3px);
        color: #222;
    }

.btn-call-lg {
    border: 2px solid rgba(255,255,255,.25);
    color: #fff;
    padding: 15px 28px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: .3s;
}

    .btn-call-lg:hover {
        background: #fff;
        color: #222;
    }

    .btn-demo-lg i,
    .btn-call-lg i {
        margin-left: 8px;
    }

@media(max-width:992px) {

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-content {
        max-width: 100%;
    }

        .cta-content h2 {
            font-size: 28px;
        }

    .cta-action {
        width: 100%;
    }
}
