/* --- Global Engineered CTA Section --- */
.agency-final-cta {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 10;
}

.cta-engineered-box {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #000;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    position: relative;
    clip-path: polygon(100px 0%, 100% 0%, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0% 100%, 0% 100px);
    box-shadow: 30px 30px 0px var(--support-primary, #a3e635);
}

.cta-engineered-box::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -2px;
    width: 60px;
    height: 4px;
    background: #000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.cta-engineered-box::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: -2px;
    width: 60px;
    height: 4px;
    background: #000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.cta-engineered-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-engineered-content span.tag {
    color: var(--support-primary, #a3e635);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 25px;
    display: block;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif !important;
}

.cta-engineered-content h2 {
    font-size: clamp(32px, 5vw, 64px);
    color: #000;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif !important;
}

.cta-engineered-content p {
    color: #444;
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 600;
}

.cta-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.visual-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.cta-engineered-visual {
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 2px solid #000;
}

.cta-engineered-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.7);
    transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-engineered-box:hover .cta-engineered-visual img {
    filter: grayscale(0) brightness(0.9);
    transform: scale(1.1);
}

.btn-cta-lime {
    background: var(--support-primary, #a3e635);
    color: #000;
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif !important;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: 0.3s;
}

.btn-cta-lime:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}

.btn-cta-outline {
    border: 2px solid #000;
    color: #000;
    padding: 18px 38px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif !important;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: 0.3s;
}

.btn-cta-outline:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}

@media (max-width: 1200px) {
    .cta-engineered-box {
        margin: 0 40px;
    }
}

@media (max-width: 991px) {
    .cta-engineered-box {
        grid-template-columns: 1fr;
        clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
        margin: 0 20px;
    }

    .cta-engineered-content {
        padding: 60px 40px;
        text-align: center;
        align-items: center;
    }

    .cta-engineered-visual {
        height: 400px;
        border-left: none;
        border-top: 2px solid #000;
        order: -1;
    }

    .cta-btns {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .cta-engineered-content {
        padding: 50px 20px;
    }

    .cta-engineered-content h2 {
        font-size: 36px;
    }

    .cta-engineered-content p {
        font-size: 16px;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn-cta-lime,
    .btn-cta-outline {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        padding: 15px 30px;
    }

    .cta-engineered-box {
        clip-path: none;
        box-shadow: 15px 15px 0px var(--support-primary, #a3e635);
    }
}