.web-call-widget{
  position:fixed;
  right:18px;
  bottom:92px;
  z-index:79;
}

.web-call-button{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:46px;
  padding:0 16px;
  border:0;
  border-radius:18px;
  background:linear-gradient(145deg,#0f2746,#1a5fa8);
  color:#fff;
  font-weight:800;
  box-shadow:0 18px 36px rgba(15,39,70,.28);
  transition:transform .18s ease,box-shadow .18s ease;
}

.web-call-button:hover{
  transform:translateY(-1px);
  box-shadow:0 22px 40px rgba(15,39,70,.3);
}

.web-call-modal{
  position:fixed;
  inset:0;
  z-index:520;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(4,12,22,.64);
}

.web-call-modal.is-open{
  display:flex;
}

.web-call-modal__panel{
  position:relative;
  width:min(640px, 100%);
  max-height:min(88vh, 820px);
  overflow:auto;
  padding:26px;
  border-radius:32px;
  background:linear-gradient(180deg, #ffffff, #f8fbff);
  border:1px solid var(--public-line);
  box-shadow:0 28px 70px rgba(14,42,71,.24);
}

.web-call-modal__header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}

.web-call-modal__header h3{
  margin:12px 0 8px;
  color:var(--public-navy);
  font-size:clamp(28px,4vw,38px);
  line-height:1;
}

.web-call-modal__header p{
  margin:0;
  color:var(--public-muted);
  line-height:1.6;
  max-width:46ch;
}

.web-call-modal__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.web-call-modal__close{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:1px solid var(--public-line);
  border-radius:14px;
  background:#fff;
  color:var(--public-blue);
}

.web-call-options{
  display:grid;
  gap:12px;
  margin-top:20px;
}

.web-call-option{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px 18px;
  border-radius:20px;
  background:#f6fafe;
  border:1px solid var(--public-line);
}

.web-call-option strong{
  display:block;
  margin-bottom:4px;
  color:var(--public-navy);
}

.web-call-option p{
  margin:0;
  color:var(--public-muted);
  line-height:1.55;
}

.web-call-option i{
  font-size:22px;
  color:var(--ccdres-blue);
}

body.web-call-open{
  overflow:hidden;
}

html.theme-dark .web-call-modal__panel{
  background:var(--theme-surface);
  border-color:var(--theme-line);
  color:var(--theme-ink);
}

html.theme-dark .web-call-modal__header h3{
  color:#edf5ff;
}

html.theme-dark .web-call-option{
  background:#13263b;
  border-color:var(--theme-line);
}

html.theme-dark .web-call-modal__close{
  background:#13263b;
  border-color:var(--theme-line);
  color:#dbe8f6;
}

html.theme-dark .web-call-option strong{
  color:#f1f7ff;
}

html.theme-dark .web-call-option p,
html.theme-dark .web-call-modal__header p{
  color:var(--theme-muted);
}

@media (min-width:1241px){
  .web-call-widget{
    display:none;
  }
}

@media (max-width:740px){
  .web-call-widget{
    right:14px;
    bottom:88px;
  }

  .web-call-button span{
    display:none;
  }

  .web-call-button{
    width:52px;
    justify-content:center;
    padding:0;
  }

  .web-call-modal{
    padding:14px;
    align-items:flex-end;
  }

  .web-call-modal__panel{
    width:100%;
    max-height:88vh;
    padding:20px;
    border-radius:28px 28px 20px 20px;
  }

  .web-call-modal__header{
    gap:12px;
  }

  .web-call-modal__actions .public-button{
    width:100%;
  }
}
