:root{
  --rbm-brand:#F0822C;   /* buttons (orange) */
  --rbm-hero:#123E63;    /* deep blue header */
}

/* Chat icon */
#rbm-launcher{
  position:fixed; z-index:99996;
  bottom:24px; right:24px;
  width:56px; height:56px; border-radius:50%; border:none;
  background:var(--rbm-brand); color:#fff; text-align:center; cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.2); padding:0 0 0 2px;
}
#rbm-launcher.bottom-left{ left:24px; right:auto; }

/* Card container aligned to icon */
#rbm-card{
  position:fixed; z-index:99997;
  bottom:92px; right:24px;
  width:304px;              /* matches aspect of your PNG */
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 36px rgba(0,0,0,.24);
  border:1px solid rgba(0,0,0,.06);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
#rbm-card.bottom-left{ left:24px; right:auto; }

/* ---------- HERO (blue cap with deep white arc cut) ---------- */
.rbm-hero{
  position:relative;
  height:178px;            /* overall hero height */
  background:#fff;
  overflow:hidden;
}

/* Big white arc that carves the blue exactly like the screenshot */
.rbm-arc{
  position:absolute;
  left:50%; top:-102px;           /* deeper dip for curvier look */
  transform:translateX(-50%);
  width:380px; height:260px;         /* wider & taller = smoother curve */
  background:var(--rbm-hero);;
  border-radius:50%;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,0); /* keeps edges crisp on some browsers */
}

/* Avatar overlap */
.rbm-avatar-wrap{
  position:absolute; top:18px; left:50%; transform:translateX(-50%);
  width:116px; height:116px; display:flex; align-items:center; justify-content:center;
}
.rbm-avatar{
  width:110px; height:110px; border-radius:50%; background:#fff; border:2px solid #fff; padding:0; overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,.16);
}
.rbm-avatar img{ width:100%; height:100%; object-fit:cover; display:block; }

/* Close “x” */
.rbm-close{
  position:absolute; top:8px; right:0; border:0; background:transparent; color:#fff; font-size:22px; cursor:pointer;
}

/* ---------- CONTENT ---------- */
.rbm-content{
  padding:10px 16px 18px;
  text-align:center;
}

/* “LET’S CHAT!” strong, all-caps, tight tracking */
.rbm-title{
  margin:2px 0 6px;
  font-weight:800; font-size:24px; line-height:1.05;
  color:#134471;
  letter-spacing:0.4px;
  text-transform:uppercase;
}

/* “We’re here …” lighter and slightly smaller */
.rbm-sub{
  margin:0 0 12px;
  color:#223048; opacity:.9; font-size:15px; line-height:1.35;
}

/* Buttons like PNG: thick, rounded, orange, stacked */
.rbm-actions{ display:flex; flex-direction:column; gap:14px; margin-top:6px; }
.rbm-btn{
  display:block; width:88%; margin:0 auto;
  border-radius:12px; padding:13px 14px;
  font-weight:600; font-size:15px; letter-spacing:.3px;
  text-decoration:none; cursor:pointer; border:none;
  background:var(--rbm-brand); color:#fff !important;
  box-shadow:0 4px 10px rgba(240,130,44,.25);
  transition:transform .06s ease, filter .12s ease;
}
.rbm-btn:active{ transform:translateY(1px); }
.rbm-primary{ /* same orange per screenshot */ }
.rbm-secondary{ /* same orange for “CLICK TO CALL” per your PNG */ }

/* Mobile */
@media (max-width:480px){
  #rbm-card{ width:88vw; }
}
