/* Care-level lens — pill + first-visit prompt. Paired with fc-care-lens.js */

.fcl-wrap{position:relative;flex:0 0 auto}
.fcl-pill{
  display:inline-flex;align-items:center;gap:8px;
  min-height:44px;padding:8px 14px 8px 12px;
  font-family:inherit;font-size:14px;font-weight:600;line-height:1.2;
  color:#16232b;background:#fff;border:1px solid #d6e0e3;border-radius:999px;
  cursor:pointer;box-shadow:0 1px 2px rgba(22,35,43,.05);
  transition:border-color .12s ease,background .12s ease,box-shadow .12s ease;
}
.fcl-pill:hover{border-color:#1f6b6b;background:#f3faf9}
.fcl-pill:focus-visible{outline:3px solid #1f6b6b;outline-offset:2px}
.fcl-ico{flex:0 0 auto;color:#1f6b6b}
.fcl-pill-label{max-width:42vw;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.fcl-caret{font-size:11px;color:#5a6b73;margin-left:2px}

.fcl-menu{
  position:absolute;right:0;top:calc(100% + 6px);z-index:30;
  min-width:min(260px,92vw);margin:0;padding:6px;
  list-style:none;background:#fff;border:1px solid #d6e0e3;border-radius:12px;
  box-shadow:0 10px 28px rgba(22,35,43,.16);
}
.fcl-opt{
  display:block;width:100%;box-sizing:border-box;
  min-height:44px;padding:11px 14px;border-radius:8px;
  font-size:15px;font-weight:500;color:#16232b;cursor:pointer;
  border:0;background:transparent;text-align:left;
}
.fcl-opt:hover,.fcl-opt:focus-visible{background:#e4efee;outline:none}
.fcl-opt.on{font-weight:700;color:#1f6b6b}
.fcl-opt.on::after{content:" ✓";font-weight:700}

/* First-visit home prompt — inline, not a modal */
.fcl-prompt{
  max-width:760px;margin:0 auto 18px;padding:16px 18px 14px;
  background:rgba(255,255,255,.96);color:#16232b;border-radius:14px;
  border:1px solid rgba(255,255,255,.2);
  box-shadow:0 2px 10px rgba(0,0,0,.18);
}
.fcl-prompt-copy{margin:0 0 12px;font-size:15px;line-height:1.45;color:#2a333f}
.fcl-prompt-actions{display:flex;flex-wrap:wrap;gap:8px}
.fcl-prompt-btn,.fcl-prompt-skip{
  min-height:44px;padding:10px 14px;border-radius:999px;
  font-family:inherit;font-size:14px;font-weight:600;cursor:pointer;
  border:1px solid #cfe3e0;background:#e4efee;color:#1f6b6b;
}
.fcl-prompt-btn:hover{background:#d5e8e6}
.fcl-prompt-btn:focus-visible,.fcl-prompt-skip:focus-visible{
  outline:3px solid #1f6b6b;outline-offset:2px;
}
.fcl-prompt-skip{
  background:transparent;border-color:#c5ced2;color:#5a6b73;font-weight:500;
}
.fcl-prompt-skip:hover{background:#f1f5f6;color:#16232b}

/* Services page section labels */
.fcl-sec-label{
  margin:8px 0 4px;font-size:.72rem;font-weight:700;letter-spacing:.08em;
  text-transform:uppercase;color:#5a6b73;
}
.fcl-sec-divider{
  display:flex;align-items:center;gap:12px;margin:8px 0 2px;
  font-size:.78rem;font-weight:600;color:#5a6b73;
}
.fcl-sec-divider::before,.fcl-sec-divider::after{
  content:"";flex:1;height:1px;background:#d6e0e3;
}

@media (max-width:600px){
  .fcl-pill{padding:8px 12px;gap:6px}
  .fcl-pill-label{max-width:34vw;font-size:13px}
}
