/* RAP AI Chatbot — scoped to rap-chat-* */
.rap-chat-launcher{
  position:fixed;right:22px;bottom:22px;z-index:9997;border:0;border-radius:999px;
  background:#185FA5;color:#fff;padding:13px 18px;font-family:'Source Serif 4',Georgia,serif;
  font-size:14px;font-weight:600;cursor:pointer;box-shadow:0 8px 30px rgba(12,35,64,.28);
  display:flex;align-items:center;gap:8px
}
.rap-chat-launcher:hover{background:#0C2340}
.rap-chat-dot{width:8px;height:8px;border-radius:50%;background:#75d59d;box-shadow:0 0 0 4px rgba(117,213,157,.15)}
.rap-chat-panel{
  position:fixed;right:22px;bottom:22px;width:min(420px,calc(100vw - 28px));height:min(690px,calc(100vh - 36px));
  z-index:9999;background:#F8F7F4;border:1px solid #E2E8F0;border-radius:16px;overflow:hidden;
  box-shadow:0 24px 80px rgba(12,35,64,.34);display:none;grid-template-rows:auto 4px 1fr auto;
  font-family:'Source Serif 4',Georgia,serif;color:#1A202C
}
.rap-chat-panel.open{display:grid}
.rap-chat-head{padding:17px 18px;background:#0C2340;color:#fff;display:flex;justify-content:space-between;align-items:center}
.rap-chat-head strong{display:block;font-family:'Playfair Display',Georgia,serif;font-size:16px}
.rap-chat-head small{display:block;margin-top:3px;font-size:11px;color:rgba(255,255,255,.65)}
.rap-chat-close{background:transparent!important;color:#fff!important;border:0!important;padding:0!important;font-size:26px!important;line-height:1;cursor:pointer}
.rap-chat-progress{height:4px;background:#E2E8F0}.rap-chat-progress>div{height:100%;width:10%;background:#378ADD;transition:.25s}
.rap-chat-messages{padding:16px;overflow:auto;display:flex;flex-direction:column;gap:10px}
.rap-chat-msg{max-width:84%;padding:11px 13px;border-radius:12px;line-height:1.48;font-size:14px}
.rap-chat-msg.bot{background:#E6F1FB;color:#1A202C;align-self:flex-start}
.rap-chat-msg.user{background:#185FA5;color:#fff;align-self:flex-end}
.rap-chat-quick{display:flex;flex-wrap:wrap;gap:7px}
.rap-chat-quick button{background:#fff;border:1px solid #B5D4F4;color:#0C2340;border-radius:999px;padding:8px 10px;font-size:12px;cursor:pointer}
.rap-chat-quick button:hover{border-color:#185FA5;background:#E6F1FB}
.rap-chat-cta{align-self:flex-start;display:inline-flex;align-items:center;gap:6px;background:#185FA5;color:#fff!important;
  border:0;border-radius:999px;padding:10px 16px;font-family:inherit;font-size:13px;font-weight:600;cursor:pointer;
  text-decoration:none;box-shadow:0 4px 14px rgba(24,95,165,.25)}
.rap-chat-cta:hover{background:#0C2340}
.rap-chat-composer{display:flex;gap:7px;padding:10px;border-top:1px solid #E2E8F0;background:#fff}
.rap-chat-composer input{flex:1;border:1px solid #CBD5E0;border-radius:8px;padding:11px 12px;font-family:inherit;font-size:14px}
.rap-chat-composer button{border:0;border-radius:8px;background:#185FA5;color:#fff;padding:0 14px;font-family:inherit;font-weight:600;cursor:pointer}
.rap-chat-lead{display:none;padding:16px;overflow:auto}.rap-chat-lead.show{display:block}
.rap-chat-lead h3{font-family:'Playfair Display',Georgia,serif;color:#0C2340;font-size:21px;margin-bottom:6px}
.rap-chat-lead p{font-size:13px;color:#4A5568;line-height:1.5;margin-bottom:12px}
.rap-chat-score{padding:12px;border:1px solid #B5D4F4;background:#E6F1FB;border-radius:10px;margin-bottom:12px}
.rap-chat-score strong{color:#0C2340;font-size:22px}
.rap-chat-lead input{width:100%;display:block;border:1px solid #CBD5E0;background:#fff;border-radius:8px;padding:11px;margin:8px 0;font-family:inherit}
.rap-chat-consent{font-size:10px;color:#718096;display:flex;gap:7px;align-items:flex-start;margin:10px 0}
.rap-chat-consent input{width:auto;margin:2px 0}
.rap-chat-lead .rap-chat-submit{width:100%;background:#185FA5;color:#fff;border:0;border-radius:8px;padding:12px;font-weight:600;cursor:pointer}
.rap-chat-hide{display:none!important}
@media(max-width:520px){
  .rap-chat-launcher{right:12px;bottom:12px}
  .rap-chat-panel{right:8px;bottom:8px;width:calc(100vw - 16px);height:calc(100vh - 16px)}
}
