/* HS PRO Global Layout
   Shared page shell, canvas layers and footer layout. */

button {
  font-family: inherit;
}

#codeRain {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.35;
}

.page {
  padding-top: 80px;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


/* FOOTER */

.hs-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 34px;
  padding: 44px 32px 28px;
  margin-top: auto;
  background: #000000;
  color: var(--hs-footer-text);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 12px;
  font-size: 34px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.footer-logo span {
  color: #ffffff;
}

.footer-logo strong {
  color: var(--hs-red);
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column h4 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a {
  color: #bdbdbd;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #858585;
  font-size: 12px;
}

.include-error {
  padding: 18px 24px;
  background: #d11328;
  color: #ffffff;
  font-weight: 900;
}

