.w-webflow-badge {
    display: none!Important;
}

.faq-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0;
}


.faq-dropdown-toggle {
  cursor: pointer;
}

.faq-dropdown-toggle.active .faq-drop-ico {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

:root{
  --cta-color: #ffc158;
  --cta-text: #111;
}

.call-sticky-wrap{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,.08);
  transform: translateY(120%);
  transition: transform .25s ease;
  display: none;
}

.call-sticky-wrap.is-visible{
  transform: translateY(0);
}

.call-sticky-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 10px;
  background: #ffc158;
  color: var(--cta-text);
  font-weight: 800;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

.call-sticky-sub{
  margin-top: 6px;
  text-align: center;
  font-size: 14px;
  color: rgba(0,0,0,.65);
  font-weight: 600;
}

.call-sticky-icon{
  width: 18px;
  height: 18px;
  display: inline-block;
}

@media (max-width: 767px){
  .call-sticky-wrap{ display: block; }
}
