.grecaptcha-badge {
  visibility: hidden !important;
}


.webarty-mobile-bottom-cta {
  display: none;
}

@media (max-width: 767px) {
  .webarty-mobile-bottom-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 9997;

    height: 50px;
    border-radius: 999px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: #00A78E;
    color: #ffffff !important;
	text-transform: Uppercase;
    text-decoration: none;

    font-size: 16px;
    font-weight: 700;
    line-height: 1;

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
    -webkit-tap-highlight-color: transparent;
  }

  .webarty-mobile-bottom-cta:hover,
  .webarty-mobile-bottom-cta:focus {
    background: #36C88A;
    color: #ffffff;
	text-transform: Uppercase;
  }

  .webarty-mobile-bottom-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.wa-card > .e-con-inner,
.wa-card > .elementor-widget-container,
.wa-card .elementor-element-populated {
  border-top: none !important;
  box-shadow: none !important;
}












/* ===== Webarty cards ===== */

.wa-card {
  position: relative;
  overflow: hidden;
  border: none !important;
  border-radius: 16px !important;

  box-shadow:
    inset 1px 0 0 rgba(32, 42, 74, 0.12),
    inset -1px 0 0 rgba(32, 42, 74, 0.12),
    inset 0 -1px 0 rgba(32, 42, 74, 0.12),
    0 10px 26px rgba(20, 31, 56, 0.07) !important;

  transition: box-shadow 0.22s ease;
}

/* отключаем старую линию, если была */
.wa-card::before {
  content: none !important;
  display: none !important;
}

/* верхний бордер в обычном состоянии */
.wa-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;

  width: 100%;
  height: 1px;

  background: rgba(32, 42, 74, 0.12);
  pointer-events: none;

  transition:
    height 0.22s ease,
    background-color 0.22s ease;
}

/* hover карточки */
.wa-card:hover,
.wa-card:focus-within {
  box-shadow:
    inset 1px 0 0 rgba(54, 200, 138, 0.32),
    inset -1px 0 0 rgba(54, 200, 138, 0.32),
    inset 0 -1px 0 rgba(54, 200, 138, 0.32),
    0 16px 38px rgba(20, 31, 56, 0.13) !important;
}

/* зелёная линия сверху при hover */
.wa-card:hover::after,
.wa-card:focus-within::after {
  height: 4px;
  background: #36C88A;
}

/* иконки: без бордера, без фона, без увеличения */
.wa-card .elementor-icon,
.wa-card .elementor-icon-wrapper {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  transform: none !important;
}

/* не даём Elementor увеличивать иконку */
.wa-card:hover .elementor-icon,
.wa-card:hover .elementor-icon-wrapper,
.wa-card:focus-within .elementor-icon,
.wa-card:focus-within .elementor-icon-wrapper {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  transform: none !important;
}

/* текст */
.wa-card .elementor-heading-title {
  letter-spacing: -0.01em;
}

.wa-card p {
  line-height: 1.55;
}

/* mobile */
@media (max-width: 767px) {
  .wa-card {
    border-radius: 14px !important;

    box-shadow:
      inset 1px 0 0 rgba(32, 42, 74, 0.12),
      inset -1px 0 0 rgba(32, 42, 74, 0.12),
      inset 0 -1px 0 rgba(32, 42, 74, 0.12),
      0 8px 22px rgba(20, 31, 56, 0.08) !important;
  }

  .wa-card:hover,
  .wa-card:focus-within {
    box-shadow:
      inset 1px 0 0 rgba(54, 200, 138, 0.32),
      inset -1px 0 0 rgba(54, 200, 138, 0.32),
      inset 0 -1px 0 rgba(54, 200, 138, 0.32),
      0 8px 22px rgba(20, 31, 56, 0.08) !important;
  }
}