
/* IA-NET Proactive Engagement — Il Commesso Digitale */
.ianet-proactive {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 9999;
    max-width: 380px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}
.ianet-proactive-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}
.ianet-proactive-inner {
    background: white;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #00994d;
    position: relative;
}
.ianet-proactive-exit .ianet-proactive-inner {
    border-left-color: #e65100;
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 40%);
}
.ianet-proactive-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s;
}
.ianet-proactive-close:hover {
    color: #333;
    background: #f0f0f0;
}
.ianet-proactive-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00994d;
    margin-bottom: 8px;
}
.ianet-proactive-exit .ianet-proactive-title {
    color: #e65100;
}
.ianet-proactive-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 14px;
}
.ianet-proactive-cta {
    display: inline-block;
    background: linear-gradient(135deg, #00994d, #00b359);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,153,77,0.3);
}
.ianet-proactive-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,153,77,0.4);
    background: linear-gradient(135deg, #00b359, #00cc66);
}
.ianet-proactive-exit .ianet-proactive-cta {
    background: linear-gradient(135deg, #e65100, #ff6d00);
    box-shadow: 0 2px 8px rgba(230,81,0,0.3);
}
.ianet-proactive-exit .ianet-proactive-cta:hover {
    box-shadow: 0 4px 16px rgba(230,81,0,0.4);
}
/* Pulse animation on the chat input to draw attention */
@keyframes ianet-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,153,77,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0,153,77,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,153,77,0); }
}
.ianet-proactive-visible ~ * #ai-input,
.ianet-pulse-active {
    animation: ianet-pulse 2s ease-in-out 3;
}
/* Mobile responsive */
@media (max-width: 480px) {
    .ianet-proactive {
        right: 12px;
        left: 12px;
        max-width: none;
        bottom: 80px;
    }
}
