#cognicert-chatbot-root{
  position:fixed;
  right:clamp(12px,2vw,20px);
  bottom:clamp(12px,2vw,20px);
  z-index:99999;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.cc-bubble{
  width:58px;
  height:58px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  box-shadow:0 14px 34px rgba(10,35,64,.28);
  background:linear-gradient(135deg,#0c2f52 0%,#164a7e 100%);
  color:#fff;
  font-size:18px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
}
.cc-panel{
  width:min(400px, calc(100vw - 24px));
  height:min(80vh, 670px);
  max-height:calc(100vh - 24px);
  display:none;
  flex-direction:column;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 18px 44px rgba(10,35,64,.26);
  background:#fff;
  margin-bottom:12px;
  border:1px solid rgba(12,47,82,.12);
}
.cc-header{
  background:linear-gradient(135deg,#0c2f52 0%,#164a7e 100%);
  color:#fff;
  padding:14px 14px 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.cc-title{font-weight:800;font-size:15px;line-height:1.25;}
.cc-subhead{
  background:#f4f7fb;
  color:#22405f;
  padding:10px 14px;
  border-bottom:1px solid #e4ebf3;
  font-size:12px;
  line-height:1.45;
}
.cc-actions{display:flex;gap:8px;align-items:center;}
.cc-close,.cc-minimize-top,.cc-minimize-bottom{
  border:0;background:transparent;color:#fff;font-size:16px;cursor:pointer;
}
.cc-footer-bar{
  padding:9px 12px;
  background:#0c2f52;
  color:#fff;
  display:flex;
  justify-content:flex-end;
}
.cc-minimize-bottom{font-size:12px;}
.cc-messages{
  flex:1;
  padding:14px;
  overflow:auto;
  background:linear-gradient(180deg,#fbfdff 0%,#f6f9fc 100%);
}
.cc-msg{display:flex;margin:9px 0;}
.cc-msg-bubble{
  max-width:90%;
  padding:11px 13px;
  border-radius:16px;
  font-size:13px;
  line-height:1.5;
  white-space:pre-wrap;
  word-break:break-word;
}
.cc-user{justify-content:flex-end;}
.cc-user .cc-msg-bubble{background:#0c2f52;color:#fff;border-bottom-right-radius:7px;}
.cc-bot{justify-content:flex-start;}
.cc-bot .cc-msg-bubble{background:#fff;color:#172b42;border:1px solid #e5ebf2;border-bottom-left-radius:7px;}
.cc-form{
  display:flex;
  gap:8px;
  padding:12px;
  border-top:1px solid #e5ebf2;
  background:#fff;
}
.cc-input{
  flex:1;
  min-width:0;
  border:1px solid #d3dbe5;
  border-radius:12px;
  padding:11px 12px;
  font-size:13px;
  outline:none;
}
.cc-input:focus,.cc-email-input:focus{border-color:#d09a2d;box-shadow:0 0 0 3px rgba(208,154,45,.14);}
.cc-send{
  border:0;
  border-radius:12px;
  padding:11px 14px;
  cursor:pointer;
  background:#d09a2d;
  color:#172b42;
  font-weight:700;
  white-space:nowrap;
}
.cc-send:disabled{opacity:.6;cursor:not-allowed;}
.cc-cta-wrap{padding:0 12px 12px;background:#fff;}
.cc-cta{
  display:flex;
  padding:11px 14px;
  border-radius:14px;
  text-decoration:none;
  background:#d09a2d;
  color:#172b42;
  font-weight:800;
  font-size:13px;
  align-items:center;
  justify-content:center;
}
.cc-email-gate{
  display:none;
  margin:0 12px 12px;
  padding:13px;
  border:1px solid #e5ebf2;
  border-radius:16px;
  background:#f8fbff;
}
.cc-email-copy{
  font-size:12px;
  line-height:1.45;
  color:#17304a;
  margin-bottom:10px;
}
.cc-email-form{
  display:grid;
  gap:10px;
}
.cc-email-input{
  min-width:0;
  border:1px solid #c7d2df;
  border-radius:12px;
  padding:11px 12px;
  font-size:13px;
}
.cc-email-btn{
  border:0;
  border-radius:12px;
  padding:11px 14px;
  cursor:pointer;
  background:#0c2f52;
  color:#fff;
  font-weight:700;
}
.cc-email-note{
  font-size:12px;
  color:#4a6078;
  margin-top:8px;
}
.cc-consent{
  display:flex;
  gap:8px;
  align-items:flex-start;
  font-size:12px;
  color:#314961;
  line-height:1.4;
}
.cc-consent input{margin-top:2px;}
@media (max-width:640px){
  #cognicert-chatbot-root{left:12px;right:12px;bottom:12px;}
  .cc-panel{
    width:100%;
    height:min(78vh,620px);
    max-height:calc(100vh - 24px);
    border-radius:18px;
    margin-bottom:10px;
  }
  .cc-form{flex-direction:column;}
  .cc-send{width:100%;}
}
