.lead-ai-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 99999;
display: flex;
justify-content: center;
align-items: center;
}
.lead-ai-popup {
background: #fff;
padding: 30px;
border-radius: 8px;
width: 90%;
max-width: 500px;
position: relative;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
font-family: inherit;
}
.lead-ai-close {
position: absolute;
top: 10px;
right: 15px;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: #666;
}
.lead-ai-content h3 {
margin-top: 0;
color: #333;
font-size: 22px;
line-height: 1.3;
}
.lead-ai-content p {
color: #666;
margin-bottom: 20px;
}
#lead-ai-form input {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 4px;
box-sizing: border-box;
}
#lead-ai-form button {
width: 100%;
padding: 12px;
background: #0073aa;
color: #fff;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background 0.3s;
}
#lead-ai-form button:hover {
background: #005177;
} .lead-ai-chat-widget {
position: fixed;
bottom: 20px;
right: 20px;
width: 300px;
border-radius: 10px;
box-shadow: 0 5px 25px rgba(0,0,0,0.2);
z-index: 99999;
font-family: inherit;
overflow: hidden;
display: flex;
flex-direction: column;
}
.lead-ai-chat-header {
padding: 15px;
font-weight: bold;
display: flex;
justify-content: space-between;
align-items: center;
}
.lead-ai-chat-close {
background: none;
border: none;
font-size: 20px;
cursor: pointer;
padding: 0;
line-height: 1;
}
.lead-ai-chat-body {
padding: 15px;
flex: 1;
}
.lead-ai-chat-messages {
margin-bottom: 15px;
}
.lead-ai-message-ai {
background: rgba(0,0,0,0.05);
padding: 10px;
border-radius: 8px;
font-size: 14px;
}
.lead-ai-chat-input form {
display: flex;
gap: 5px;
}
.lead-ai-chat-input input {
flex: 1;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 13px;
} .lead-ai-bar-widget {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 99999;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.lead-ai-bar-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
flex-wrap: wrap;
gap: 15px;
}
.lead-ai-bar-text {
flex: 1;
font-weight: bold;
min-width: 200px;
}
.lead-ai-bar-content form {
display: flex;
align-items: center;
gap: 10px;
}
.lead-ai-bar-content input[type="email"] {
padding: 8px;
border: 1px solid rgba(0,0,0,0.1);
border-radius: 4px;
font-size: 14px;
}
.lead-ai-bar-content button[type="submit"] {
padding: 8px 15px;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
}
#lead-ai-bar-close {
background: none;
border: none;
font-size: 24px;
cursor: pointer;
line-height: 1;
opacity: 0.8;
} @media (max-width: 768px) {
.lead-ai-bar-content {
flex-direction: column;
text-align: center;
}
.lead-ai-bar-content form {
width: 100%;
flex-wrap: wrap;
justify-content: center;
}
.lead-ai-bar-content input[type="email"] {
width: 100%;
}
} #lead-ai-social-proof {
position: fixed;
bottom: 20px;
left: 20px;
background: #fff;
padding: 12px 15px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.15);
z-index: 99999;
display: none; align-items: center;
gap: 12px;
max-width: 320px;
animation: slideInLeft 0.5s ease-out;
border-left: 4px solid #00d084;
}
#lead-ai-social-proof img {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
}
.lead-ai-sp-content {
font-size: 13px;
color: #333;
line-height: 1.4;
}
.lead-ai-sp-name {
font-weight: bold;
display: block;
margin-bottom: 2px;
}
.lead-ai-sp-time {
font-size: 11px;
color: #888;
display: block;
margin-top: 2px;
}
@keyframes slideInLeft {
from { transform: translateX(-100%); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}