/* --- Premium CTA Section Styles --- */
.premium-cta-wrap {
    position: relative;
    padding: 60px;
    margin-bottom: 60px;
    margin-top: 0px;
    background: linear-gradient(135deg, #63862a 0%, #2c3124 100%);
    border-radius: 40px;
    overflow: hidden;
}

.cta-background-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(193, 206, 14, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
}


.cta-content-inner {
    position: relative;
    z-index: 10;
}

.cta-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 25px;
}

.cta-heading {
    margin-bottom: 20px;
}

.cta-heading span {
    color: #fff;
    background: -webkit-linear-gradient(left, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.premium-cta-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 16px 45px;
    background: #ffffff;
    color: #1b4a25;
    font-weight: 800;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.btn-cta-primary:hover {
    background: #c1ce0e;
    color: #1b4a25;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    padding: 14px 35px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.cta-mockup-wrap {
    position: absolute;
    bottom: -180px; /* More submerged for large image */
    right: -100px; /* Crosses from the right */
    z-index: 5; /* Behind text but visible */
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    height: 120%;
    pointer-events: none;
    overflow: visible;
}

.cta-mockup-img {
    max-width: 650px; /* Much larger width */
    transform: rotate(-12deg) translateX(40px); /* Right bottom to left top diagonal */
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.9;
}

.cta-visual-node {
    position: absolute;
    bottom: -100px; /* Start from bottom */
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    animation: signal-rise 10s linear infinite;
    z-index: 4; /* Behind mockup (z-index 5) */
    pointer-events: none;
    opacity: 0;
}

.cta-visual-node i {
    font-size: 14px;
    margin-bottom: 2px;
}

.cta-visual-node .node-pct {
    font-size: 8px;
    font-weight: 800;
}

@keyframes signal-rise {
    0% { transform: translateY(0) translateX(0) scale(0.5); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-600px) translateX(-100px) scale(1.2); opacity: 0; }
}


@media (max-width: 991px) {
    .premium-cta-wrap { padding: 60px 20px; text-align: center; }
    .cta-heading { font-size: 32px; }
    .cta-description { margin: 0 auto 30px; }
    .cta-mockup-wrap { position: relative; bottom: -200px; right: 0; margin-top: -100px; justify-content: center; height: auto;}
    .cta-mockup-img { max-width: 150%; transform: rotate(-5deg) !important; }
}