.company-chat { position: fixed; right: 24px; bottom: 24px; z-index: 10000; font-family: var(--font-body); }
.company-chat [hidden] { display: none !important; }
.company-chat-launcher { display: flex; align-items: center; gap: 12px; min-height: 56px; padding: 14px 22px; color: #fff; background: linear-gradient(120deg,#1557db,#6334cd); border: 1px solid #8aa4ff; border-radius: 30px; box-shadow: 0 8px 30px #152c7040; font-weight: 600; font-size: 14px; }
.company-chat-panel { position: absolute; right: 0; bottom: 72px; width: min(390px,calc(100vw - 32px)); height: min(570px,calc(100dvh - 120px)); display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border-color); border-radius: 20px; background: var(--bg-card); color: var(--text-primary); box-shadow: 0 20px 70px #0003; }
.company-chat-header { display: flex; align-items: center; gap: 12px; padding: 20px; background: var(--bg-secondary); border-bottom: 1px solid var(--border-color); }
.company-chat-mark { display: grid; place-items: center; width: 40px; height: 40px; background: linear-gradient(140deg,#058ef4,#7034df); border-radius: 12px; color: #fff; font-size: 23px; font-weight: 800; }
.company-chat-header h2 { font-size: 15px; margin: 0; color: var(--text-primary); }
.company-chat-header p { font-size: 12px; margin: 2px 0 0; color: var(--text-secondary); }
.company-chat-close { margin-left: auto; font-size: 26px; width: 36px; height: 36px; color: var(--text-secondary); }
.company-chat-body { flex: 1; min-height: 0; overflow-y: auto; padding: 20px; overscroll-behavior: contain; }
.company-chat-eyebrow { font-size: 9px; letter-spacing: 1.6px; color: var(--text-secondary); margin-bottom: 18px; }
.company-chat-message { width: fit-content; max-width: 94%; margin-bottom: 14px; padding: 12px 14px; border-radius: 14px 14px 14px 3px; background: var(--bg-secondary); border: 1px solid var(--border-color); font-size: 13px; line-height: 1.7; overflow-wrap: anywhere; white-space: pre-wrap; }
.company-chat-message.user { margin-left: auto; background: #1a56db; color: #fff; border-color: #1a56db; border-radius: 14px 14px 3px 14px; }
.company-chat-message a { display: block; color: var(--link-color); margin-top: 8px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.company-chat-prompts { display: flex; flex-wrap: wrap; gap: 8px; }
.company-chat-prompts button { padding: 7px 11px; font-size: 12px; border: 1px solid var(--border-color); border-radius: 20px; color: var(--link-color); background: var(--bg-card); }
.company-chat-prompts button:hover { background: var(--bg-tertiary); }
.company-chat-form { display: flex; gap: 8px; padding: 14px 16px 6px; border-top: 1px solid var(--border-color); }
.company-chat-form input { width: 100%; min-width: 0; padding: 12px; border: 1px solid var(--border-color); border-radius: 10px; font-size: 13px; background: var(--bg-secondary); color: var(--text-primary); }
.company-chat-form button { flex-shrink: 0; width: 44px; border-radius: 10px; background: #1a56db; color: #fff; font-size: 24px; }
.company-chat-note { font-size: 10px; padding: 5px 16px 14px; color: var(--text-secondary); margin: 0; }
.company-chat-note a { text-decoration: underline; }
.company-chat-sr { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
@media(max-width: 480px) { .company-chat { right: 16px; bottom: max(16px,env(safe-area-inset-bottom)); } .company-chat-launcher { min-height: 52px; padding: 12px 18px; } }
