/* AI qualification chat widget — Consumer track (w2/sbo/re). Black/yellow brand tokens,
   matches itp-ads/CLAUDE.md (#0a0a0a black, #FFD600 yellow, #ffffff white). */
.chat-log {
  max-height: 380px;
  overflow-y: auto;
  padding: 8px 4px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.chat-msg {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.5;
  white-space: pre-wrap;
}
.chat-msg.bot {
  align-self: flex-start;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  color: #0a0a0a;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  align-self: flex-end;
  background: #FFD600;
  color: #0a0a0a;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.chat-input-row { display: flex; gap: 10px; }
.chat-input-row input {
  flex: 1;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #d4d4d8;
  border-radius: 10px;
  color: #0a0a0a;
  font-size: 15px;
  font-family: inherit;
}
.chat-input-row input:focus { outline: none; border-color: #FFD600; box-shadow: 0 0 0 2px rgba(255,214,0,.4); }
.chat-input-row input:disabled { opacity: .5; }
.chat-send-btn {
  padding: 12px 22px;
  background: #FFD600;
  color: #0a0a0a;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.chat-send-btn:hover { background: #ffdd24; }
.chat-send-btn:disabled { opacity: .5; cursor: not-allowed; }
.chat-typing { color: #71717a; font-size: 14px; padding: 0 4px; margin-bottom: 8px; }
