.pricing-promo-popup {
  position: fixed;
  left: clamp(16px, 2.125vw, 60px);
  bottom: clamp(100px, 14vh, 180px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.pricing-promo-popup.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.pricing-promo-popup.is-hidden {
  display: none;
}
.pricing-promo-popup__panel {
  position: relative;
  width: 240px;
  pointer-events: auto;
}
.pricing-promo-popup__bg {
  display: block;
  width: 100%;
  height: auto;
}
.pricing-promo-popup__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}
.pricing-promo-popup__close img {
  display: block;
  width: 22px;
  height: 22px;
}
.pricing-promo-popup__close:focus-visible {
  outline: none;
}
.pricing-promo-popup__items {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-promo-popup__item {
  display: block;
  line-height: 0;
  cursor: pointer;
}
.pricing-promo-popup__item img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .pricing-promo-popup {
    left: 12px;
    bottom: 88px;
  }
  .pricing-promo-popup__panel {
    width: 200px;
  }
  .pricing-promo-popup__items {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .pricing-promo-popup__close {
    width: 24px;
    height: 24px;
  }
  .pricing-promo-popup__close img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 480px) {
  .pricing-promo-popup {
    display: none !important;
  }
}

.floating-toolbar {
  position: fixed;
  right: clamp(16px, 2.125vw, 60px);
  bottom: clamp(22px, 2.208vw, 100px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}
.floating-toolbar__entry {
  position: relative;
  pointer-events: auto;
}
.floating-toolbar__item {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.floating-toolbar__item img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.floating-toolbar__item:hover, .floating-toolbar__item:focus-visible {
  outline: none;
}
.floating-toolbar__item--contact:hover, .floating-toolbar__item--contact:focus-visible, .floating-toolbar__entry:hover .floating-toolbar__item--contact, .floating-toolbar__entry:focus-within .floating-toolbar__item--contact {
  border-color: #000;
  background: #000;
}
.floating-toolbar__icon--active {
  display: none !important;
}
.floating-toolbar__entry:hover .floating-toolbar__icon--default, .floating-toolbar__entry:focus-within .floating-toolbar__icon--default {
  display: none;
}
.floating-toolbar__entry:hover .floating-toolbar__icon--active, .floating-toolbar__entry:focus-within .floating-toolbar__icon--active {
  display: block !important;
}
.floating-toolbar__popover {
  position: absolute;
  right: calc(100% + 16px);
  top: 50%;
  width: 188px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  color: #000;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.floating-toolbar__entry:hover .floating-toolbar__popover, .floating-toolbar__entry:focus-within .floating-toolbar__popover, .floating-toolbar__entry.is-open .floating-toolbar__popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}
.floating-toolbar__popover--qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 220px;
}
.floating-toolbar__popover--qr strong {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.floating-toolbar__popover--qr span {
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}
.floating-toolbar__popover--qr em {
  margin-top: 8px;
  color: #FF4D4F;
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.floating-toolbar__popover--email strong {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.floating-toolbar__popover--email p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
}
.floating-toolbar__popover--email button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 14px;
  width: 14px;
  min-width: 14px;
  height: 14px;
  min-height: 14px;
  line-height: 1;
}
.floating-toolbar__popover--email button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.floating-toolbar__popover--email span {
  display: block;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  line-height: 1.45;
}
.floating-toolbar__qr {
  width: 116px !important;
  height: 116px !important;
}
.floating-toolbar__item--primary {
  border-color: transparent;
  background: #247CFF;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
}
.floating-toolbar__item--top {
  border: 0;
  padding: 0;
  font: inherit;
}
@media (max-width: 768px) {
  .floating-toolbar {
    right: 14px;
    bottom: 20px;
    gap: 14px;
  }
  .floating-toolbar__item {
    width: 54px;
    height: 54px;
  }
  .floating-toolbar__item img {
    width: 24px;
    height: 24px;
  }
  .floating-toolbar__popover {
    right: calc(100% + 12px);
    width: 172px;
    padding: 16px 14px;
  }
  .floating-toolbar__qr {
    width: 104px !important;
    height: 104px !important;
  }
}

.site-footer {
  padding-right: max(20px, (100vw - 1280px) / 2);
  padding-left: max(20px, (100vw - 1280px) / 2);
  background: #191717;
  color: rgba(255, 255, 255, 0.8);
}
body:not(:has(.index-blue-cta)) .site-footer {
  border-radius: 32px 32px 0 0;
}
.site-footer__inner {
  width: 100%;
  margin: 0 auto;
  padding: 4.2rem 0;
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-bottom: 2rem;
}
.site-footer__logo {
  display: block;
  width: auto;
  height: 2.8rem;
  object-fit: contain;
}
.site-footer__email {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 4.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  line-height: 1.4;
}
.site-footer__email-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  object-fit: contain;
}
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.site-footer__social-link img {
  display: block;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.4rem;
  padding-bottom: 3.2rem;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .site-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 3.2rem;
  }
}
@media (min-width: 1100px) {
  .site-footer__columns {
    grid-template-columns: minmax(26rem, 1.9fr) minmax(0, 1.45fr) repeat(3, minmax(0, 1fr));
    column-gap: clamp(4rem, 5vw, 8rem);
    row-gap: 2rem;
  }
}
.site-footer__column {
  min-width: 0;
}
.site-footer__column--brand .site-footer__title {
  margin-bottom: 1rem;
}
.site-footer__title {
  margin: 0 0 2rem;
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.2;
}
.site-footer__title--sm {
  margin-bottom: 1.6rem;
}
.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__link, .site-footer__friend-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__link:hover, .site-footer__friend-link:hover {
  color: #ffffff;
}
.site-footer__link--button {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer__friendship {
  padding: 3.2rem 0 3.2rem;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}
.site-footer__friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem 1.2rem;
}
.site-footer__friend-link {
  white-space: nowrap;
}
.site-footer__friend-separator {
  display: inline-block;
  width: 0;
  height: 1.1rem;
  border-left: 0.5px solid rgba(255, 255, 255, 0.1);
  margin: 0 0.05rem;
  flex: 0 0 auto;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 3.2rem;
}
.site-footer__copyright {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}
.site-footer__disclaimer {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #DF9F50;
}
.site-footer__badges {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer__badges svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 640px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__badges {
    justify-content: flex-start;
  }
}

/*# sourceMappingURL=footer.css.map */
