/* ======== WIDGET ======== */
#floating-widget {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: url("https://sun9-77.userapi.com/impg/zi3FQoUg5VL_GBZtrRdvkFZCZLGpEKdBd2lBIw/lyLUv1wv5Z4.jpg?size=1752x529&quality=95&sign=2ff4e78deae9a62fdfbfce74090b7769&type=album")
              no-repeat center/cover;
  border-radius: 16px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 9999;
  font-family: 'Unbounded', sans-serif;
}

/* ТЕКСТ */
.fw-text {
  color: #FFF;
  margin-right: 32px;
  line-height: 1.2;
}
.fw-title {
  font-size: 20px;
  font-weight: 700;
}
.fw-subtitle {
  font-size: 16px;
}

/* КНОПКИ */
.fw-buttons {
  display: flex;
  gap: 16px;
}
.fw-buttons a {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  padding: 12px 20px;
  white-space: nowrap;
  background-color: rgba(255,255,255,0.1);
  color: #FFF;
}
.fw-buttons img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.btn-telegram {
  background-color: #528BF3;
}
.btn-whatsapp {
  background-color: #25D366;
}
.btn-outline {
  background: transparent;
  border: 2px solid #FFF;
}

/* ======== MOBILE & TABLET (≤1024px) ======== */
@media (max-width: 1024px) {
  #floating-widget {
    width: calc(100% - 40px);
    padding: 8px 16px;
    justify-content: center;
  }
  /* Прячем кнопки чатов */
  .btn-telegram,
  .btn-whatsapp {
    display: none !important;
  }
  /* Оставляем текст и кнопку расчёта */
  .fw-text,
  .btn-outline {
    display: flex !important;
  }
  .fw-buttons {
    gap: 12px;
  }
  .fw-buttons a {
    font-size: 14px;
    padding: 8px 12px;
  }
  .fw-buttons img {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }
@media (max-width: 1024px) {
  #floating-widget {
    display: none !important;
  }
  
/* Скрываем “плавающий” badge reCAPTCHA v2 */
.grecaptcha-badge {
    display: none !important;
}
