body .mobile-menu,
body .mobile-menu-list-wrapper,
body ul.mobile-menu-list,
body li.mobile-menu-list__item,
body .mobile-menu-list__back-btn {
  display: none !important;
  visibility: hidden !important;
}

/* Kill HubSpot DND/header wrapper spacing */
[data-global-resource-path*="site_header.html"] .dnd-section,
[data-global-resource-path*="site_header.html"] .row-fluid-wrapper,
[data-global-resource-path*="site_header.html"] .row-fluid,
[data-global-resource-path*="site_header.html"] .widget-span,
[data-global-resource-path*="site_header.html"] .hs_cos_wrapper {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  min-height: 0 !important;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

/* Hide old/raw HubSpot/previous mobile menu markup */
.mobile-menu,
.nav-list {
  display: none !important;
}

/* Header */
#top {
  height: 63px;
}

.container-wrapper {
  position: fixed !important;
  height: 63px;
  inset: 0 0 auto 0;
  z-index: 9999;
  background: #fff;
  width: 100%;
}

.nav-bar-container {
  position: relative !important;
  height: 63px;
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto !important;
  padding: 0 24px;
  background: transparent;
  z-index: 9999;
  max-width: 1500px;

}

.container {
  max-width: 100%;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 63px;
  width: 100%;
}

.span_3 {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

#logo {
  display: flex;
  align-items: center;
}

#logo img {
  max-height: 27px;
  height: 27px;
  width: auto;
}

.span_9 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

/* Main nav */
/* .lc-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  width: 100%;
  font-family: Rubik, sans-serif;
} */

.lc-nav {
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 32px;
  width: 100%;
  height: 63px !important;
  font-family: Rubik, sans-serif;
}

.lc-nav ul,
.lc-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* .lc-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
} */
.lc-nav__list {
  position: static !important;
  left: auto !important;
  transform: none !important;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 28px;
  height: 63px !important;
  white-space: nowrap;
}

.lc-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.lc-nav__link {
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
   position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 14px;
  height: 100%;
  color: #191919;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.lc-nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 28px;
  bottom: 18px;
  height: 3px;
  background: #00b4df;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.35s ease;
}

.lc-nav__link:hover::after,
.lc-nav__item.is-open > .lc-nav__link::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.lc-nav__item.is-open > .lc-nav__link {
  color: #191919;
}

.lc-nav__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto !important;
  top: -4px;
  margin-left: 4px;
  font-size: 14px;
  line-height: 1;
  transition: color .2s ease;
}

.lc-nav__link:hover .lc-nav__chevron,
.lc-nav__item.is-open > .lc-nav__link .lc-nav__chevron {
  color: #00b4df;
}

/* Buttons */
/* .lc-nav__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
} */

.lc-nav__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 12px;
  height: 63px !important;
  white-space: nowrap;
}

.lc-nav__buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 20px;
  border-radius: 22px;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, opacity .2s ease;
}

.lc-signin {
  position: relative;
  color: #191919;
  overflow: hidden;
}

.lc-signin:hover {
  color: #191919;
}

.lc-signin::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 6px;
  height: 3px;
  background: #00b4df;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.35s ease;
}

.lc-signin:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.lc-demo {
  background: #00468b;
  color: #fff;
  overflow: hidden;
}

.lc-demo:hover {
  background: #003d79;
  color: #fff;
}

@keyframes waveFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  50% {
    opacity: 1;
    transform: translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.lc-hover-wave .char {
  display: inline-block;
  vertical-align: top;
}

.lc-hover-wave:hover .char {
  animation: waveFadeIn 0.6s ease-in-out;
}

.lc-signin .char {
  color: #191919;
}

.lc-demo .char {
  color: #fff;
}

/* Dropdown base */
.lc-dropdown {
  position: absolute;
  top: 63px;
  left: 50%;
  z-index: 10000;
  display: none;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 0, rgba(0, 0, 0, 0.06) 0 38px 38px;
  overflow: hidden;
  font-family: Rubik, sans-serif;
}

.lc-nav__item:hover > .lc-dropdown,
.lc-nav__item.is-open > .lc-dropdown {
  display: flex;
}

.lc-dropdown h5 {
  margin: 0 0 14px;
  color: #191919;
  font-family: Rubik, sans-serif;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Solutions dropdown */
.lc-dropdown--solutions {
  width: min(1120px, calc(100vw - 180px));
  transform: translateX(-30%);
  grid-template-columns: 40% 35% 25%;
}

.lc-nav__item:hover > .lc-dropdown--solutions,
.lc-nav__item.is-open > .lc-dropdown--solutions {
  display: grid;
}

.lc-dropdown--solutions .lc-dropdown__column,
.lc-dropdown--solutions a,
.lc-dropdown--solutions small,
.lc-dropdown--solutions span {
  min-width: 0;
}

.lc-dropdown--solutions a small {
  white-space: normal;
  overflow: visible;
}

.lc-dropdown__column {
  padding: 24px;
}

.lc-dropdown__column--focus {
  background: #fff;
}

.lc-dropdown__column--features {
  background: #f5f5f5;
}

.lc-dropdown__column--community {
  background: #fff;
}

/* About dropdown */
.lc-dropdown--about {
  width: 840px;
  max-width: calc(100vw - 48px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  grid-template-columns: 60% 40%;
  overflow: visible;
}

.lc-dropdown--about .lc-icon-link {
  width: 100%;
  min-width: 0;
}

.lc-dropdown--about .lc-icon-link span {
  min-width: 0;
}

.lc-dropdown--about .lc-icon-link small {
  white-space: normal;
  overflow: visible;
}

.lc-nav__item:hover > .lc-dropdown--about,
.lc-nav__item.is-open > .lc-dropdown--about {
  display: grid;
}

/* Resources dropdown */
.lc-dropdown--simple {
  width: 840px;
  max-width: calc(100vw - 60px);
  padding: 32px;
  transform: translateX(-38%);
}

.lc-nav__item:hover > .lc-dropdown--simple,
.lc-nav__item.is-open > .lc-dropdown--simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 0;
}

.lc-dropdown--simple .lc-icon-link:nth-child(1) { grid-column: 1; grid-row: 1; }
.lc-dropdown--simple .lc-icon-link:nth-child(2) { grid-column: 1; grid-row: 2; }
.lc-dropdown--simple .lc-icon-link:nth-child(3) { grid-column: 1; grid-row: 3; }
.lc-dropdown--simple .lc-icon-link:nth-child(4) { grid-column: 1; grid-row: 4; }
.lc-dropdown--simple .lc-icon-link:nth-child(5) { grid-column: 2; grid-row: 1; }
.lc-dropdown--simple .lc-icon-link:nth-child(6) { grid-column: 2; grid-row: 2; }
.lc-dropdown--simple .lc-icon-link:nth-child(7) { grid-column: 2; grid-row: 3; }

/* Small dropdowns */
.lc-dropdown--small {
  width: 520px;
  padding: 24px;
  flex-direction: column;
  transform: translateX(-40%);
  overflow: visible;
}

.lc-dropdown--small .lc-icon-link {
  width: 100%;
  min-width: 0;
}

.lc-dropdown--small .lc-icon-link span {
  min-width: 0;
}

.lc-dropdown--small .lc-icon-link small {
  white-space: normal;
  overflow: visible;
}

.lc-dropdown--right {
  right: 0;
  left: auto;
  transform: none;
}

/* Dropdown links */
.lc-dropdown a {
  display: block;
  padding: 7px 14px;
  color: #00468b;
  font-family: Rubik, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  line-height: 1.25;
}

.lc-dropdown a:hover {
  background: #f7f7f7;
  color: #00b4df;
}

.lc-dropdown a small {
  display: block;
  margin-top: 5px;
  color: #999;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
}

.lc-dropdown a:hover small {
  color: #b7b7b7;
}

.lc-dropdown a em {
  color: #f47920;
  font-style: italic;
  font-weight: 700;
}

/* Feature cards */
.lc-feature-card {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  margin-bottom: 20px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255,255,255,0.04), rgba(255,255,255,0.04)),
    var(--card-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff !important;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lc-dropdown a.lc-feature-card {
  border-radius: 22px !important;
}

.lc-feature-card:hover {
  background-color: transparent !important;
  background-image:
    linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.18)),
    var(--card-bg) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.lc-feature-card img {
  width: 24px;
  height: 24px;
  padding: 12px;
  box-sizing: content-box;
  background: rgba(255, 255, 255, 0.18);
  object-fit: contain;
  flex: 0 0 auto;
}

.lc-dropdown a.lc-feature-card img {
  border-radius: 18px !important;
}

.lc-feature-card span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lc-feature-card strong {
  color: #fff !important;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}

.lc-feature-card small {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.lc-feature-card:hover strong,
.lc-feature-card:hover small {
  color: #fff !important;
}

/* Icon links */
.lc-icon-link {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}

.lc-icon-link img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

/* Header alignment cleanup */
[data-global-resource-path*="site_header.html"] .dnd-section,
[data-global-resource-path*="site_header.html"] .row-fluid-wrapper,
[data-global-resource-path*="site_header.html"] .row-fluid,
[data-global-resource-path*="site_header.html"] .widget-span,
[data-global-resource-path*="site_header.html"] .hs_cos_wrapper {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}

#top {
  height: 63px !important;
}

.nav-bar-container {
  position: relative !important;
  height: 63px;
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto !important;
  padding: 0 24px;
  background: transparent;
  z-index: 9999;
  max-width: 1500px;
  inset: auto;
  max-width: 1500px;
  display: block !important;
}

.nav-bar-container > .row {
  height: 63px !important;

  display: grid !important;
  grid-template-columns: auto 1fr;

  align-items: center !important;

  width: 100%;
}

.nav-bar-container .span_3 {
  display: flex;
  align-items: center;
  height: 63px !important;
}

.nav-bar-container .span_9 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 63px !important;
}

/* centered nav tabs */
/* .lc-nav__list {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 28px;

  width: auto;
  max-width: none;

  height: 63px !important;

  white-space: nowrap;
} */

/* keep buttons right aligned */
/* .lc-nav__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 12px;

  height: 63px !important;
} */

/* wrapper */
/* .lc-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 28px;

  height: 63px !important;
} */

/* nav items */
.lc-nav__item {
  position: relative;

  display: flex;
  align-items: center;

  height: 63px !important;

  white-space: nowrap;
  flex-shrink: 0;
}

/* nav links */
.lc-nav__link {
  position: relative;

  display: flex !important;
  align-items: center !important;

  height: 63px !important;

  line-height: 1 !important;

  padding-top: 0 !important;
  padding-bottom: 0 !important;

  white-space: nowrap;
  flex-shrink: 0;
}

/* chevrons */
.lc-nav__chevron {
  flex-shrink: 0;
}

/* buttons */
.lc-nav__buttons a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 39px !important;
  min-height: 39px !important;
}

/* animated text */
.lc-signin,
.lc-demo,
.lc-hover-wave {
  white-space: nowrap;
}

.lc-hover-wave .lc-space {
  width: 0.25em;
}

/* Mobile button */
.mobile-nav-toggle {
  display: none;
  width: 28px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  height: 2.2px;
  margin: 4px 0;
  background: #191919;
  border-radius: 10px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}

.mobile-nav-toggle span:nth-child(3) {
  width: 75%;
  margin-left: auto;
}

.mobile-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-open span:nth-child(3) {
  width: 100%;
  transform: translateY(-6px) rotate(-45deg);
}

/* New mobile menu */
.lc-mobile-menu {
  position: fixed;
  inset: 63px 0 0;
  z-index: 9998;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 70, 139, .94);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  overflow-y: auto;

  transition: opacity .35s ease, visibility .35s ease;
}

.lc-mobile-panel-content {
  flex: 1;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 32px;
 padding: 48px 24px 80px;
}

.lc-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lc-mobile-panel {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-height: 100%;
  width: 100%;
  padding: 48px 24px;
  overflow-y: auto;
  max-height: calc(100vh - 67px);
 
}

.lc-mobile-panel.is-active {
  display: flex;
}

.lc-mobile-panel a,
.lc-mobile-panel button {
  color: #fff;
  font-family: Rubik, sans-serif;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: center;
  width: 100%;
  margin: 0;
}

/* Long menus: start at top and scroll naturally */
.lc-mobile-panel[data-panel="solutions-feature"] .lc-mobile-panel-content,
.lc-mobile-panel[data-panel="resources"] .lc-mobile-panel-content {
  justify-content: flex-start;
  gap: 28px;
  padding-top: 48px;
}

.lc-mobile-demo {
  margin-top: 8px;
  padding: 10px 24px;
  background: #fff;
  color: #00468b !important;
  border-radius: 24px;
  font-size: 22px !important;
}

.lc-mobile-back {
  font-size: 18px !important;
  margin-bottom: 16px;
  align-self: flex-start;
}

.lc-mobile-panel small {
  display: block;
  margin-top: 6px;

  max-width: 280px;
  margin-left: auto;
  margin-right: auto;

  text-align: center;

  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.lc-mobile-open {
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 1450px) {
  .lc-nav__list {
    position: static;
    left: auto;
    transform: none;

    margin-right: 24px;
  }

  .lc-nav {
    justify-content: flex-end;
  }

  
@media only screen and (max-width: 1300px) {
  .lc-dropdown--about {
    left: 50%;
    right: auto;
    transform: translateX(-65%);
    width: min(840px, calc(100vw - 48px));
  }
}

@media only screen and (max-width: 1250px) {
   .nav-bar-container {
    padding: 0 24px;
  }
}

/* Responsive */
@media only screen and (max-width: 1200px) {
  .nav-bar-container {
    padding: 0 24px;
  }

  .lc-nav {
    gap: 10px;
  }

  .lc-nav__list {
    gap: 10px;
    margin-right: 12px;
  }

  .lc-nav__link {
    padding: 0 7px;
    font-size: 14px;
  }

  .lc-nav__buttons {
    gap: 8px;
  }

  .lc-nav__buttons a {
    padding-left: 14px;
    padding-right: 14px;
  }
  
    .lc-dropdown--solutions {
    width: calc(100vw - 48px);
    transform: translateX(-30%);
    grid-template-columns: 38% 37% 25%;
  }

  .lc-dropdown__column {
    padding: 20px;
  }

  .lc-dropdown--solutions .lc-dropdown__column--community {
    min-width: 240px;
  }
}

@media only screen and (max-width: 1050px) {
  #top {
    height: 67px;
  }

  .nav-bar-container {
    padding: 0 22px;
  }

  .row {
    height: 67px;
  }

  #logo img {
    width: 190px;
    height: auto;
  }

  .lc-nav,
  .lc-nav__list,
  .lc-nav__buttons {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: block !important;
  }

  .nav-bar-container .span_9 {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  .lc-mobile-menu {
    inset: 67px 0 0;
  }
}

@media only screen and (max-width: 690px) {
  .lc-mobile-menu a {
    font-size: 25px;
  }

  .lc-mobile-demo {
    font-size: 19px !important;
  }
}

