/* Pico concierge launcher + panel (FAQ, pricing) */
.pico-concierge{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  font-family: inherit;
}
.picoLauncher{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-grad-a), var(--brand-grad-b));
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(242,91,87,.30);
}
.picoLauncher:hover{ filter: brightness(1.04); }
.picoPanel{
  position: absolute;
  right: 0;
  bottom: 60px;
  width: min(360px, calc(100vw - 44px));
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #fff3ef 78%, #ffe9e3 100%);
  border: 1px solid rgba(249,112,95,.28);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(242,91,87,.22), 0 6px 18px rgba(0,0,0,.10);
  overflow: hidden;
}
.picoPanel[hidden]{ display: none; }
.picoHead{
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 16px;
  background: linear-gradient(90deg, var(--brand-grad-a), var(--brand-grad-b));
  color: #fff;
}
.picoHead span{ font-size: 12px; opacity: .85; }
.picoExpand,
.picoClose{
  border: 0;
  background: none;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 6px;
}
.picoExpand{ margin-left: auto; display: inline-flex; align-items: center; }
.picoExpand:hover, .picoClose:hover{ background: rgba(255,255,255,.18); }

/* Expanded state */
.picoPanel--max{
  width: min(560px, calc(100vw - 44px));
}
.picoPanel--max .picoMsgs{
  height: min(58vh, 560px);
}
.picoMsgs{
  height: 300px;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.picoMsg{
  max-width: 85%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
}
.picoMsg--assistant{
  align-self: flex-start;
  background: #fff;
  border: 1px solid rgba(194,194,194,.40);
  box-shadow: 0 3px 10px rgba(0,0,0,.05);
  color: var(--text-1, #303030);
  border-bottom-left-radius: 4px;
}
.picoMsg--user{
  align-self: flex-end;
  background: linear-gradient(90deg, var(--brand-grad-a), var(--brand-grad-b));
  color: #fff;
  border-bottom-right-radius: 4px;
}
.picoMsg--typing{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 15px;
}
.picoDot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--brand-grad-a), var(--brand-grad-b));
  animation: picoDotBounce 1.1s ease-in-out infinite;
}
.picoDot:nth-child(2){ animation-delay: .15s; }
.picoDot:nth-child(3){ animation-delay: .3s; }
@keyframes picoDotBounce{
  0%, 60%, 100%{ transform: translateY(0); opacity: .45; }
  30%{ transform: translateY(-5px); opacity: 1; }
}
.picoChips{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 6px;
}
.picoChip{
  border: 1px solid rgba(194,194,194,.60);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  font-size: 12.5px;
  cursor: pointer;
}
.picoChip:hover{ border-color: var(--brand-solid); color: var(--brand-solid); }
.picoForm{
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid rgba(194,194,194,.40);
}
.picoForm input{
  flex: 1;
  border: 1px solid rgba(194,194,194,.60);
  border-radius: 999px;
  padding: 9px 14px;
  font: inherit;
  font-size: 14px;
}
.picoForm input:focus{ outline: 2px solid var(--brand-solid); border-color: transparent; }
.picoSend{
  border: 0;
  border-radius: 999px;
  width: 38px;
  background: linear-gradient(90deg, var(--brand-grad-a), var(--brand-grad-b));
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
/* Action buttons under replies */
.picoActions{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-self: flex-start;
  max-width: 92%;
  animation: picoFadeIn 1s ease both;
}
@keyframes picoFadeIn{
  from{ opacity: 0; transform: translateY(4px); }
  to{ opacity: 1; transform: none; }
}
.picoEmailForm{
  animation: picoFadeIn 1s ease both;
}
.picoActionBtn{
  display: inline-block;
  border: 1px solid rgba(194,194,194,.60);
  background: #fff;
  border-radius: 999px;
  padding: 7px 13px;
  font: inherit;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-1, #303030);
  text-decoration: none;
  cursor: pointer;
}
.picoActionBtn:hover{ border-color: var(--brand-solid); color: var(--brand-solid); }
.picoActionBtn--primary{
  border: 0;
  background: linear-gradient(90deg, var(--brand-grad-a), var(--brand-grad-b));
  color: #fff;
}
.picoActionBtn--primary:hover{ color: #fff; filter: brightness(1.05); }

/* Inline newsletter form */
.picoEmailForm{
  align-self: flex-start;
  width: 92%;
  padding: 12px;
  border: 1px solid rgba(249,112,95,.35);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(242,91,87,.07), rgba(255,130,102,.07));
}
.picoEmailFormTitle{
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.picoEmailFormRow{
  display: flex;
  gap: 6px;
}
.picoEmailForm input{
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(194,194,194,.60);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  background: #fff;
}
.picoEmailForm input:focus{ outline: 2px solid var(--brand-solid); border-color: transparent; }
.picoEmailForm button{
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, var(--brand-grad-a), var(--brand-grad-b));
  cursor: pointer;
}

/* Scroll nudge bubble above the launcher */
.picoNudge{
  position: absolute;
  right: 0;
  bottom: 60px;
  width: min(300px, calc(100vw - 44px));
  padding: 14px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fff3ef 100%);
  border: 1px solid rgba(249,112,95,.35);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(242,91,87,.24), 0 4px 12px rgba(0,0,0,.10);
  animation: picoNudgeIn 240ms ease-out;
}
@keyframes picoNudgeIn{
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 1; transform: none; }
}
.picoNudge p{
  margin: 0 18px 10px 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-1, #303030);
}
.picoNudgeClose{
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: none;
  font-size: 16px;
  color: var(--text-3, #B0B0B0);
  cursor: pointer;
}
.picoNudgeCta{
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, var(--brand-grad-a), var(--brand-grad-b));
  cursor: pointer;
}
.picoNudgeCta:hover{ filter: brightness(1.05); }

.picoFoot{
  padding: 8px 14px 12px;
  font-size: 11.5px;
  color: var(--text-3, #B0B0B0);
}
.picoFoot a{ color: var(--brand-solid); }
@media (max-width: 520px){
  .picoMsgs{ height: 46vh; }
}
