.wsp-modern-menu {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 1px 8px rgba(15, 23, 42, .08);
  font-family: inherit;
}

.wsp-modern-menu * {
  box-sizing: border-box;
}

body.wsp-menu-lock {
  overflow: hidden;
}

.wsp-menu-inner {
  position: relative;
  max-width: 1280px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wsp-menu-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.wsp-menu-logo img {
  display: block;
  width: 112px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.wsp-menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #1f2937;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease;
}

.wsp-menu-toggle:hover {
  background: #f3f4f6;
  color: #111827;
}

.wsp-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.wsp-modern-menu.is-menu-open .wsp-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.wsp-modern-menu.is-menu-open .wsp-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.wsp-modern-menu.is-menu-open .wsp-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.wsp-menu-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wsp-nav-link,
.wsp-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 9px;
  border-radius: 6px;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  transition: color .16s ease, background-color .16s ease;
}

.wsp-nav-link {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.wsp-nav-link:hover,
.wsp-nav-link:focus-visible {
  color: #111827;
  background: #f9fafb;
  outline: none;
  text-decoration: none;
}

.wsp-find-link {
  color: #ea580c;
}

.wsp-nav-item {
  position: relative;
}

.wsp-dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: .72;
}

.wsp-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: min(240px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity .16s ease, transform .16s ease;
}

.wsp-dropdown-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.wsp-nav-item:hover .wsp-dropdown-panel,
.wsp-nav-item:focus-within .wsp-dropdown-panel,
.wsp-nav-item.is-open .wsp-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.wsp-nav-item:nth-child(2) .wsp-dropdown-panel,
.wsp-nav-item:nth-child(3) .wsp-dropdown-panel {
  left: 0;
  transform: translateY(6px);
}

.wsp-nav-item:nth-child(2):hover .wsp-dropdown-panel,
.wsp-nav-item:nth-child(2):focus-within .wsp-dropdown-panel,
.wsp-nav-item:nth-child(2).is-open .wsp-dropdown-panel,
.wsp-nav-item:nth-child(3):hover .wsp-dropdown-panel,
.wsp-nav-item:nth-child(3):focus-within .wsp-dropdown-panel,
.wsp-nav-item:nth-child(3).is-open .wsp-dropdown-panel {
  transform: translateY(0);
}

.wsp-nav-item:nth-last-child(-n+3) .wsp-dropdown-panel {
  right: 0;
  left: auto;
  transform: translateY(6px);
}

.wsp-nav-item:nth-last-child(-n+3):hover .wsp-dropdown-panel,
.wsp-nav-item:nth-last-child(-n+3):focus-within .wsp-dropdown-panel,
.wsp-nav-item:nth-last-child(-n+3).is-open .wsp-dropdown-panel {
  transform: translateY(0);
}

.wsp-nav-item.is-open .wsp-dropdown-toggle::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.wsp-dropdown-panel a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.wsp-dropdown-panel a:hover,
.wsp-dropdown-panel a:focus-visible {
  color: #ea580c;
  background: #fff7ed;
  outline: none;
  text-decoration: none;
}

section[id^="footer5"],
section.display-7[style*="height: 4rem"] {
  display: none !important;
}

.wsp-site-footer {
  padding: 46px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #000;
  color: #fff;
  font-family: inherit;
}

.wsp-site-footer * {
  box-sizing: border-box;
}

.wsp-site-footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.wsp-site-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.wsp-site-footer img {
  width: 170px;
  height: auto;
  margin-bottom: 14px;
}

.wsp-site-footer p,
.wsp-site-footer a {
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.55;
}

.wsp-site-footer p {
  margin: 0;
}

.wsp-site-footer a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

.wsp-site-footer a:hover {
  color: #f97316;
  text-decoration: none;
}

.wsp-site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.wsp-site-footer-social {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.wsp-site-footer .wsp-site-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin: 0;
}

.wsp-site-footer-social svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.wsp-site-footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .4);
  text-align: center;
  font-size: 13px;
}

.wsp-landing-hide-source {
  display: none !important;
}

.wsp-landing-hero {
  position: relative;
  overflow: hidden;
  background: #0d0c0c;
  color: #fff;
}

.wsp-landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .96), rgba(13, 12, 12, .86) 58%, rgba(249, 115, 22, .2)),
    radial-gradient(circle at 85% 20%, rgba(249, 115, 22, .26), transparent 34%);
}

.wsp-landing-hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0 58px;
}

.wsp-landing-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: #f97316;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wsp-landing-hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.35rem, 6vw, 5rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}

.wsp-landing-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.wsp-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.wsp-landing-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.wsp-landing-actions a:hover,
.wsp-landing-actions a:focus-visible {
  border-color: rgba(249, 115, 22, .6);
  color: #fff;
  background: rgba(249, 115, 22, .22);
  outline: none;
  text-decoration: none;
}

body.wsp-landing-page:not(.wsp-breakdown-ready) .features10 {
  padding-top: 54px !important;
}

body.wsp-landing-page:not(.wsp-breakdown-ready) .features10 .row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

body.wsp-landing-page:not(.wsp-breakdown-ready) .features10 .row::before,
body.wsp-landing-page:not(.wsp-breakdown-ready) .features10 .row::after {
  display: none !important;
}

body.wsp-landing-page:not(.wsp-breakdown-ready) .features10 .row > .card {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 28px !important;
  flex: none;
}

body.wsp-landing-page:not(.wsp-breakdown-ready) .features10 .card-title {
  padding: 0 !important;
}

body.wsp-landing-page:not(.wsp-breakdown-ready) .features10 .card-box p {
  margin-bottom: 0 !important;
}

body.wsp-landing-page:not(.wsp-breakdown-ready) .features10 .card-box a {
  display: inline-flex;
  margin: 4px 0;
}

.wsp-menu-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.wsp-menu-button {
  padding-left: 14px;
  padding-right: 14px;
  color: #fff;
}

.wsp-support-button {
  background: #16a34a;
}

.wsp-shop-button {
  background: #f97316;
}

.wsp-menu-button:hover {
  color: #fff;
  filter: brightness(.95);
  text-decoration: none;
}

@media (max-width: 1160px) and (min-width: 1024px) {
  .wsp-menu-inner {
    padding: 0 12px;
    gap: 10px;
  }

  .wsp-menu-logo img {
    width: 96px;
  }

  .wsp-nav-link,
  .wsp-menu-button {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 12px;
  }

  .wsp-dropdown-panel {
    width: min(240px, calc(100vw - 24px));
  }

  .wsp-menu-actions {
    gap: 5px;
    margin-left: 4px;
  }
}

@media (max-width: 1023px) {
  .wsp-menu-inner {
    min-height: 64px;
  }

  .wsp-menu-logo img {
    width: 126px;
    max-height: 48px;
  }

  .wsp-menu-toggle {
    display: block;
  }

  .wsp-menu-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin-left: 0;
    padding: 8px 16px 18px;
    border-top: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 20px 34px rgba(15, 23, 42, .14);
  }

  .wsp-modern-menu.is-menu-open .wsp-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .wsp-nav-link {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
    padding: 13px 6px;
    border-bottom: 1px solid #f3f4f6;
    border-radius: 0;
    font-size: 15px;
  }

  .wsp-nav-item {
    border-bottom: 1px solid #f3f4f6;
  }

  .wsp-nav-item > .wsp-nav-link {
    border-bottom: 0;
  }

  .wsp-nav-item:hover .wsp-dropdown-panel,
  .wsp-nav-item:focus-within .wsp-dropdown-panel {
    opacity: 0;
    pointer-events: none;
  }

  .wsp-nav-item.is-open .wsp-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .wsp-dropdown-panel {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 12px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: max-height .2s ease, opacity .16s ease;
  }

  .wsp-dropdown-panel::before {
    display: none;
  }

  .wsp-nav-item.is-open .wsp-dropdown-panel {
    max-height: 720px;
    padding-bottom: 10px;
  }

  .wsp-dropdown-panel a {
    padding: 9px 10px;
    font-size: 14px;
  }

  .wsp-nav-link:hover,
  .wsp-nav-link:focus-visible {
    background: transparent;
    color: #ea580c;
  }

  .wsp-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px 0 0;
  }

  .wsp-menu-button {
    min-height: 44px;
    border-radius: 8px;
    font-size: 14px;
  }

  .wsp-site-footer-grid {
    grid-template-columns: 1fr;
  }

  .wsp-landing-hero-inner {
    padding: 46px 0 42px;
  }

  body.wsp-landing-page:not(.wsp-breakdown-ready) .features10 .row {
    grid-template-columns: 1fr;
  }
}
