/* Shared navigation for the homepage, customer story and booking page. */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  padding-inline: max(20px, calc((100% - 1677.5px) / 2));
  background: rgb(255 255 255 / 78%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 rgb(17 24 39 / 4%);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
}
.nav-button:hover {
  background: #286be4;
  border-color: #286be4;
  text-decoration: none;
}
.nav-button--secondary {
  background: #fff;
  border-color: #d7dee9;
  color: #111827;
}
.nav-button--secondary:hover {
  background: #f4f8ff;
  border-color: var(--blue);
}
.skip-link {
  z-index: 30;
}
#main-content,
#integrations,
#booking-form {
  scroll-margin-top: 125px;
}
.facts-rail {
  top: 130px;
}
@media (max-width: 760px) {
  header.site-header {
    padding-inline: 12px;
  }
  .header-actions {
    gap: 8px;
  }
  #main-content,
  #integrations,
  #booking-form {
    scroll-margin-top: 105px;
  }
}
@media (max-width: 480px) {
  header.site-header img {
    width: 105px;
  }
  .nav-button {
    padding: 9px 11px;
    font-size: 12px;
  }
}
