@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@700;800;900&display=swap');:root{--bg:#f8fafc;--border:rgba(15,23,42,0.08);--text:#0f172a;--text-muted:#64748b;--primary:#128c7e;--primary-light:#25d366;--bubble-customer:#dcf8c6;--bubble-agent:#ffffff;--crm-bg:#ffffff;--crm-accent:#0284c7;}*{box-sizing:border-box;margin:0;padding:0;}body{font-family:'Inter',sans-serif;background:var(--bg);color:var(--text);overflow:hidden;height:100vh;display:flex;justify-content:center;align-items:center;position:relative;}.interaction-blocker{position:absolute;inset:0;z-index:999999;background:transparent;cursor:default;pointer-events:auto;}.demo-container{display:flex;width:100%;height:100%;background:radial-gradient(circle at 80% 20%,rgba(37,99,235,0.06),transparent 45%),radial-gradient(circle at 20% 80%,rgba(37,99,235,0.03),transparent 45%);padding:1.5rem;gap:2rem;align-items:center;justify-content:center;}.crm-panel{flex:1.2;height:90vh;max-width:540px;background:var(--crm-bg);border:1px solid var(--border);border-radius:24px;box-shadow:0 20px 40px rgba(15,23,42,0.06);display:flex;flex-direction:column;overflow:hidden;position:relative;}.crm-header{padding:1.25rem 1.5rem;border-bottom:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;}.crm-header h3{font-family:'Sora',sans-serif;font-size:1.05rem;font-weight:800;color:var(--text);display:flex;align-items:center;gap:0.5rem;}.crm-badge{background:#eff6ff;color:var(--crm-accent);font-size:0.72rem;font-weight:700;padding:0.25rem 0.65rem;border-radius:100px;}.crm-body{flex:1;padding:1.5rem;display:flex;flex-direction:column;gap:1.25rem;overflow-y:auto;}.crm-section-title{font-size:0.75rem;text-transform:uppercase;letter-spacing:0.05em;color:var(--text-muted);font-weight:700;}.crm-card{background:#f8fafc;border:1px solid var(--border);border-radius:16px;padding:1rem;}.crm-conversation-status{display:flex;align-items:center;gap:0.75rem;font-size:0.85rem;font-weight:600;color:var(--text-muted);}.crm-conversation-status.active{color:var(--text);}.crm-dot{width:8px;height:8px;border-radius:50%;background:#cbd5e1;}.crm-dot.active{background:var(--crm-accent);box-shadow:0 0 6px var(--crm-accent);}.task-list{display:flex;flex-direction:column;gap:0.6rem;margin-top:0.5rem;}.task-item{display:flex;align-items:center;gap:0.65rem;font-size:0.8rem;color:var(--text);font-weight:550;opacity:0.5;transition:all 0.4s ease;transform:translateX(-5px);}.task-item.active{opacity:1;transform:translateX(0);}.task-checkbox{width:16px;height:16px;border-radius:4px;border:1.5px solid #cbd5e1;display:flex;align-items:center;justify-content:center;transition:all 0.3s;}.task-item.active .task-checkbox{border-color:#10b981;background:#10b981;}.task-checkbox svg{width:10px;height:10px;fill:none;stroke:white;stroke-width:3;display:none;}.task-item.active .task-checkbox svg{display:block;}.assignment-alert{background:#fffbeb;border:1px solid #fef3c7;border-radius:12px;padding:0.75rem 1rem;font-size:0.8rem;font-weight:600;color:#b45309;display:flex;align-items:center;gap:0.5rem;opacity:0;transition:opacity 0.5s ease;}.assignment-alert.show{opacity:1;}.phone-panel{flex:0.8;height:90vh;max-width:330px;background:white;border:1px solid var(--border);border-radius:36px;box-shadow:0 20px 45px rgba(15,23,42,0.08);display:flex;flex-direction:column;overflow:hidden;position:relative;}.phone-header{background:var(--primary);color:white;padding:1.2rem 1rem 0.8rem;display:flex;align-items:center;gap:0.65rem;z-index:10;}.phone-avatar{width:32px;height:32px;border-radius:50%;background:#128c7e;border:1px solid rgba(255,255,255,0.2);color:white;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:0.85rem;}.phone-status h4{font-size:0.82rem;font-weight:600;line-height:1.2;}.phone-status p{font-size:0.65rem;color:#4ade80;font-weight:500;}.phone-body{flex:1;background:#ece5dd;background-image:radial-gradient(rgba(0,0,0,0.03) 15%,transparent 16%);background-size:16px 16px;padding:1rem;display:flex;flex-direction:column;gap:0.8rem;overflow-y:auto;}.bubble{max-width:85%;padding:0.55rem 0.8rem;border-radius:12px;font-size:0.78rem;line-height:1.4;box-shadow:0 1px 2px rgba(0,0,0,0.08);opacity:0;transform:translateY(12px);transition:all 0.4s cubic-bezier(0.16,1,0.3,1);}.bubble.show{opacity:1;transform:translateY(0);}.bubble.customer{background:var(--bubble-customer);align-self:flex-end;border-top-right-radius:0;}.bubble.agent{background:var(--bubble-agent);align-self:flex-start;border-top-left-radius:0;}.bubble-img{width:100%;height:100px;object-fit:cover;border-radius:8px;margin-bottom:0.4rem;}.bubble-time{font-size:0.58rem;color:#8c8c8c;text-align:right;display:block;margin-top:0.2rem;}.typing-badge{background:white;align-self:flex-start;border-radius:12px;border-top-left-radius:0;padding:0.55rem 0.85rem;display:flex;align-items:center;gap:3px;opacity:0;transform:translateY(8px);transition:all 0.3s;}.typing-badge.show{opacity:1;transform:translateY(0);}.dot{width:5px;height:5px;background:#8c8c8c;border-radius:50%;animation:dot-bounce 1s infinite alternate;}.dot:nth-child(2){animation-delay:0.2s;}.dot:nth-child(3){animation-delay:0.4s;}@keyframes dot-bounce{0%{opacity:0.3;transform:translateY(0);}100%{opacity:1;transform:translateY(-3px);}}.phone-footer{background:#f0f0f0;padding:0.5rem 0.75rem;display:flex;align-items:center;gap:0.5rem;border-top:1px solid rgba(0,0,0,0.05);}.phone-input{flex:1;background:white;border-radius:100px;height:32px;padding:0 0.8rem;font-size:0.8rem;color:#8c8c8c;display:flex;align-items:center;border:1px solid rgba(0,0,0,0.05);}.phone-mic{width:32px;height:32px;border-radius:50%;background:var(--primary);display:flex;align-items:center;justify-content:center;}.phone-mic svg{width:15px;height:15px;fill:white;}.simulated-cursor{position:absolute;width:18px;height:18px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black' stroke='white' stroke-width='2'%3E%3Cpath d='M4.5 3v15.3l4.4-4.3h6.3L4.5 3z'/%3E%3C/svg%3E") no-repeat;z-index:10000;pointer-events:none;top:50%;left:50%;transform:translate(-50%,-50%);transition:top 1.8s cubic-bezier(0.25,1,0.5,1),left 1.8s cubic-bezier(0.25,1,0.5,1),transform 0.15s ease,opacity 0.3s ease;opacity:0;}.cursor-label{position:absolute;left:12px;top:12px;background:var(--crm-accent);color:white;font-size:0.68rem;font-weight:700;padding:0.18rem 0.5rem;border-radius:4px;white-space:nowrap;box-shadow:0 4px 10px rgba(0,0,0,0.15);}.simulated-cursor.clicking{transform:scale(0.85) translate(-50%,-50%);}@media (max-width:600px){.crm-panel{display:none !important;}.phone-panel{flex:1 !important;max-width:330px !important;width:100% !important;height:95vh !important;margin:0 auto !important;}.demo-container{padding:0.5rem !important;}}.dropdown-megamenu{min-width:680px !important;left:50% !important;transform:translateX(-50%) translateY(6px) !important;padding:1.25rem !important;}.has-dropdown:hover .dropdown-megamenu{transform:translateX(-50%) translateY(0) !important;display:block !important;}.megamenu-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;}.megamenu-col{display:flex;flex-direction:column;gap:0.4rem;}.megamenu-title{font-size:0.72rem;font-weight:700;color:var(--gray-light);text-transform:uppercase;letter-spacing:0.05em;padding-bottom:0.45rem;border-bottom:1px solid var(--border);margin-bottom:0.45rem;font-family:var(--display);}.megamenu-col a{font-size:0.82rem !important;padding:0.45rem 0.6rem !important;border-radius:8px !important;white-space:normal !important;line-height:1.3 !important;display:inline-flex !important;align-items:center !important;gap:0.6rem !important;transition:all 0.2s !important;}.megamenu-col a:hover{background:var(--blue-bg) !important;color:var(--blue) !important;}.megamenu-col a svg{width:18px !important;height:18px !important;flex-shrink:0 !important;}