/*
 * Olive Mobile shared shell
 *
 * Every selector is scoped to an nts-* hook so page-specific legacy CSS can
 * remain in place without changing the shared header, footer, or CTA.
 */
.nts-site-header,
.nts-site-header *,
.nts-site-footer,
.nts-site-footer *,
.nts-quick-cta,
.nts-quick-cta * {
  box-sizing: border-box;
}

/*
 * The shell must not inherit a page catalogue's typography.  The homepage is
 * the visual source of truth, so every page receives its exact font stack and
 * base rhythm here.
 */
.nts-site-header,
.nts-site-footer,
.nts-quick-cta,
.nts-mobile-menu,
.nts-skip-link {
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  word-break: keep-all;
}

/* app-tone.css reserves a second CTA gutter on legacy pages.  The shared
 * footer already owns that safe space, so remove the duplicate page padding. */
body:has(> .nts-site-footer) {
  padding-bottom: 0 !important;
}

.nts-site-header {
  display: block !important;
  position: sticky !important;
  top: 0;
  z-index: 900;
  width: 100%;
  gap: normal !important;
  height: 78px !important;
  min-height: 78px !important;
  padding: 0 !important;
  border-bottom: 1px solid #dce8e1 !important;
  background: rgba(255, 255, 253, 0.97) !important;
  color: #17352d;
  box-shadow: 0 3px 16px rgba(20, 59, 45, 0.05);
  backdrop-filter: none !important;
}

.nts-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  height: 78px !important;
  margin: 0 auto;
}

.nts-brand {
  display: inline-flex !important;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-width: 192px;
  height: 48px;
  color: #17352d !important;
  text-decoration: none !important;
}

.nts-brand img {
  display: block;
  flex: 0 0 48px;
  width: 48px !important;
  height: 48px !important;
  object-fit: contain;
}

.nts-brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
  letter-spacing: -0.045em;
}

.nts-brand-name b {
  color: #183c31;
  font-size: 18px;
  font-weight: 900;
}

.nts-brand-name em {
  color: #3f6757;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.nts-desktop-nav {
  display: flex !important;
  flex: 1 1 auto;
  align-items: stretch;
  justify-content: center;
  gap: clamp(12px, 1.45vw, 22px);
  min-width: 0;
  height: 100%;
}

.nts-desktop-nav a {
  display: inline-flex !important;
  position: relative;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
  color: #405b51 !important;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.035em;
  text-decoration: none !important;
  white-space: nowrap;
}

.nts-desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: #568b68;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nts-desktop-nav a:hover,
.nts-desktop-nav a.is-current,
.nts-desktop-nav a[aria-current="page"] {
  color: #17683f !important;
}

.nts-desktop-nav a:hover::after,
.nts-desktop-nav a.is-current::after,
.nts-desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nts-header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.nts-header-actions a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #c8dbce;
  border-radius: 6px;
  color: #27553f !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nts-header-actions a:hover {
  border-color: #70a783;
  background: #f0f7f1;
  transform: translateY(-1px);
}

.nts-header-actions .nts-header-open {
  border-color: #286943;
  background: #286943;
  color: #fff !important;
}

.nts-header-actions .nts-header-open:hover {
  border-color: #1d5335;
  background: #1d5335;
}

.nts-menu-toggle {
  display: none !important;
  flex: 0 0 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 8px;
  border: 1px solid #c8dbce;
  border-radius: 6px;
  background: #fff !important;
  color: #17352d;
  cursor: pointer;
}

.nts-menu-toggle span {
  display: block;
  flex: 0 0 2px;
  width: 22px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nts-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nts-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nts-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nts-menu-backdrop {
  position: fixed;
  z-index: 890;
  inset: 0;
  background: rgba(13, 40, 29, 0.42);
}

.nts-mobile-menu {
  display: none;
}

.nts-mobile-menu[hidden],
.nts-menu-backdrop[hidden] {
  display: none !important;
}

body.nts-menu-open {
  overflow: hidden;
}

.nts-skip-link {
  position: fixed;
  z-index: 1200;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 5px;
  background: #17352d;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.nts-skip-link:focus {
  transform: translateY(0);
}

.nts-site-header a:focus-visible,
.nts-site-header button:focus-visible,
.nts-site-footer a:focus-visible,
.nts-quick-cta a:focus-visible,
.nts-skip-link:focus-visible {
  outline: 3px solid #d6a51e !important;
  outline-offset: 3px;
}

.nts-site-footer {
  display: block !important;
  position: relative;
  z-index: 1;
  margin: 0 !important;
  padding: 54px 20px 134px !important;
  border-top: 1px solid #d7e6dc !important;
  background: #17352d !important;
  color: #dce9e1;
  text-align: left !important;
}

body.nts-menu-open {
  overflow: hidden;
}

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

.nts-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.55fr) minmax(0, 0.95fr);
  gap: 34px;
}

.nts-footer-certifications {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.nts-footer-certification-card {
  min-width: 0;
  min-height: 108px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(218, 237, 225, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.065);
  color: #effbf1;
  text-decoration: none !important;
}

a.nts-footer-certification-card {
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

a.nts-footer-certification-card:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nts-footer-certification-logo {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
}

.nts-footer-certification-logo img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.nts-footer-certification-logo--isms {
  position: relative;
  background-color: #fff;
  background-image: url("/isms-logo.png");
  background-repeat: no-repeat;
  background-position: -32px -46px;
  background-size: 150px 157px;
}

.nts-footer-certification-logo--isms img,
.step2-guide-page .nts-footer-certification-logo--isms img {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.nts-footer-certification-copy {
  min-width: 0;
}

.nts-footer-certification-copy strong,
.nts-footer-certification-copy small {
  display: block;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.nts-footer-certification-copy strong {
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.4;
}

.nts-footer-certification-copy small {
  margin-top: 5px;
  color: #b9d1c2;
  font-size: 11px;
  line-height: 1.55;
}

.nts-footer-business {
  margin-top: 30px;
  padding: 18px 0 16px;
  border-top: 1px solid rgba(218, 237, 225, 0.24);
  border-bottom: 1px solid rgba(218, 237, 225, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.nts-footer-business-head {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.nts-footer-business-head h2 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.nts-footer-business-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px 20px;
  margin: 0;
}

.nts-footer-business-item {
  min-width: 0;
}

.nts-footer-business-item dt {
  margin-bottom: 4px;
  color: #e4f1e8;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.nts-footer-business-item dd {
  min-width: 0;
  margin: 0;
  color: #c6dbcc;
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.nts-footer-column {
  min-width: 0;
}

.nts-footer-column + .nts-footer-column {
  padding-left: 34px;
  border-left: 1px solid rgba(218, 237, 225, 0.2);
}

.nts-footer-column h2 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.nts-footer-column h3 {
  margin: 0 0 12px;
  color: #eaf5ed;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.nts-footer-column p,
.nts-footer-column address,
.nts-footer-column dl {
  margin: 0;
  color: #bad0c2;
  font-size: 12px;
  font-style: normal;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.nts-footer-column p + p,
.nts-footer-column p + dl,
.nts-footer-column dl + p {
  margin-top: 7px;
}

.nts-footer-column dl {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 4px 10px;
}

.nts-footer-column dt {
  color: #e4f1e8;
  font-weight: 750;
}

.nts-footer-column dd {
  margin: 0;
}

.nts-footer-column a {
  color: #dff3e4 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nts-footer-column .nts-footer-source {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 13px;
  padding: 8px 11px;
  border: 1px solid rgba(216, 240, 222, 0.33);
  border-radius: 5px;
  color: #effbf1 !important;
  font-weight: 750;
  text-decoration: none;
}

.nts-footer-social {
  margin-top: 20px;
}

.nts-footer-social-title {
  margin: 0 0 10px !important;
  color: #eaf5ed !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  letter-spacing: -0.04em;
}

.nts-footer-social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.nts-footer-social .nts-social-link {
  min-width: 0;
  min-height: 76px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 6px;
  border: 1px solid rgba(216, 240, 222, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #effbf1 !important;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.nts-footer-social .nts-social-link:hover {
  border-color: rgba(216, 240, 222, 0.65);
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  transform: translateY(-2px);
}

.nts-footer-social .nts-social-link:focus-visible {
  outline: 3px solid #d6a51e !important;
  outline-offset: 3px;
}

.nts-footer-social .nts-social-link > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.nts-social-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  border-radius: 8px;
}

.nts-social-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.nts-social-icon-youtube {
  color: #ff4f4a;
}

.nts-social-icon-naver {
  border-radius: 7px;
  background: #03c75a;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.nts-social-icon-naver::before {
  content: 'N';
}

.nts-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(218, 237, 225, 0.2);
}

.nts-footer-nav a {
  color: #c7ded0 !important;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none !important;
}

.nts-footer-nav a:hover {
  color: #fff !important;
}

.nts-footer-copyright {
  margin: 20px 0 0;
  color: #89a99a;
  font-size: 11px;
}

.nts-quick-cta {
  position: fixed;
  z-index: 700;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(430px, calc(100% - 48px));
  overflow: hidden;
  border: 1px solid rgba(10, 41, 25, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(12, 45, 28, 0.2);
}

.nts-quick-cta a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 58px;
  padding: 8px 13px;
  color: #17352d !important;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.045em;
  text-decoration: none !important;
  transition: filter 160ms ease;
}

.nts-quick-cta a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.nts-quick-cta a:hover {
  filter: brightness(0.96);
}

.nts-quick-cta .nts-quick-chat {
  background: #fee500;
  color: #191600 !important;
}

.nts-quick-cta .nts-quick-open {
  background: #2d7148;
  color: #fff !important;
}

.nts-quick-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #286943;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

/* Kakao Channel mark supplied for the shared consultation CTA. */
.nts-quick-chat .nts-quick-mark {
  width: 27px;
  height: 27px;
  border-radius: 0;
  background-color: transparent;
  background-image: url("/kakao-channel-logo.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: transparent;
  font-size: 0;
}

.nts-quick-open .nts-quick-mark {
  background: rgba(255, 255, 255, 0.2);
  font-size: 15px;
}

@media (max-width: 1180px) {
  .nts-header-inner {
    width: calc(100% - 32px);
  }

  .nts-desktop-nav,
  .nts-header-actions {
    display: none !important;
  }

  .nts-menu-toggle {
    display: inline-flex !important;
  }

  .nts-mobile-menu {
    display: block;
    position: fixed;
    z-index: 895;
    top: 78px;
    right: 0;
    left: 0;
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    padding: 20px max(16px, calc((100% - 760px) / 2)) 28px;
    border-bottom: 1px solid #cfe1d5;
    background: #fffffd;
    box-shadow: 0 15px 30px rgba(16, 54, 34, 0.14);
  }

  .nts-mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    color: #183c31;
    font-size: 15px;
    letter-spacing: -0.04em;
  }

  .nts-mobile-menu-head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #c8dbce;
    border-radius: 6px;
    background: #fff;
    color: #17352d;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }

  .nts-mobile-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nts-mobile-menu-grid a {
    display: flex !important;
    align-items: center;
    min-height: 50px;
    padding: 10px 13px;
    border: 1px solid #d9e8dd;
    border-radius: 5px;
    color: #2e5444 !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.045em;
    text-decoration: none !important;
  }

  .nts-mobile-menu-grid a:hover,
  .nts-mobile-menu-grid a.is-current {
    border-color: #8ab69a;
    background: #f1f8f2;
    color: #17683f !important;
  }

  .nts-mobile-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .nts-mobile-actions a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 9px 12px;
    border-radius: 5px;
    background: #e9f5ec;
    color: #24563c !important;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none !important;
  }

  .nts-mobile-actions .nts-mobile-open {
    background: #2d7148;
    color: #fff !important;
  }
}

@media (max-width: 900px) {
  .nts-site-header {
    height: 68px !important;
    min-height: 68px !important;
  }

  .nts-header-inner {
    width: calc(100% - 28px);
    height: 68px !important;
  }

  .nts-brand {
    min-width: 0;
    gap: 8px;
  }

  .nts-brand img {
    flex-basis: 40px;
    width: 40px !important;
    height: 40px !important;
  }

  .nts-brand-name b {
    font-size: 16px;
  }

  .nts-brand-name em {
    font-size: 11px;
  }

  .nts-mobile-menu {
    top: 68px;
    max-height: calc(100dvh - 68px);
    padding-right: 14px;
    padding-left: 14px;
  }

  .nts-footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .nts-footer-business-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 14px;
  }

  .nts-footer-business-item--wide-mobile {
    grid-column: 1 / -1;
  }

  .nts-footer-column + .nts-footer-column {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(218, 237, 225, 0.2);
    border-left: 0;
  }

  .nts-site-footer {
    padding: 42px 16px calc(112px + env(safe-area-inset-bottom)) !important;
  }

  .nts-footer-certifications {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 24px;
  }

  .nts-footer-certification-card {
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    gap: 9px;
    padding: 13px 9px;
    text-align: center;
  }

  .nts-footer-certification-card--ansim {
    grid-column: 1 / -1;
    grid-template-columns: 72px minmax(0, 1fr);
    align-content: center;
    justify-items: stretch;
    text-align: left;
  }

  .nts-footer-certification-card--ansim .nts-footer-certification-logo {
    justify-self: center;
  }

  .nts-footer-certification-logo {
    width: 72px;
    height: 72px;
  }

  .nts-footer-certification-copy strong {
    font-size: 12px;
  }

  .nts-footer-certification-copy small {
    font-size: 10px;
  }

  .nts-quick-cta {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .nts-quick-cta a {
    min-height: 56px;
    font-size: 13px;
  }

  .nts-quick-cta[data-nts-quick-cta-deferred] {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, calc(100% + env(safe-area-inset-bottom)), 0);
    transition: opacity .22s ease, transform .28s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .28s;
  }

  .nts-quick-cta[data-nts-quick-cta-deferred].is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nts-site-header *,
  .nts-site-footer *,
  .nts-quick-cta *,
  .nts-skip-link {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .nts-quick-cta[data-nts-quick-cta-deferred] {
    transition: none !important;
  }
}

/* Desktop floating actions share one compact, expanding capsule system.
 * Mobile keeps the existing full-width two-action bar. */
@media screen and (min-width: 901px) {
  .nts-quick-cta {
    right: 22px;
    bottom: 22px;
    display: flex;
    width: auto;
    overflow: visible;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nts-quick-cta a {
    min-height: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    box-shadow: 0 10px 26px rgba(20, 31, 25, .16);
    filter: none;
    transition: width .22s ease, transform .18s ease, box-shadow .18s ease;
  }

  .nts-quick-cta a + a {
    border-left: 0;
  }

  .nts-quick-cta a:hover {
    filter: none;
    box-shadow: 0 14px 30px rgba(20, 31, 25, .22);
    transform: translateY(-2px);
  }

  .nts-quick-cta .nts-quick-chat,
  .nts-quick-cta .nts-quick-open {
    width: 52px;
    padding: 0 12px;
    overflow: hidden;
    justify-content: flex-start;
    gap: 9px;
    border-radius: 999px;
  }

  .nts-quick-cta .nts-quick-chat {
    order: 1;
    background: #fee500;
  }

  .nts-quick-cta .nts-quick-open {
    order: 2;
    background: #2d7148;
  }

  .nts-quick-chat .nts-quick-mark,
  .nts-quick-open .nts-quick-mark {
    width: 28px;
    height: 28px;
  }

  .nts-quick-chat b,
  .nts-quick-open b {
    flex: 0 0 auto;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    color: #191600;
    white-space: nowrap;
    transition: max-width .22s ease, opacity .16s ease;
  }

  .nts-quick-cta .nts-quick-chat:hover,
  .nts-quick-cta .nts-quick-chat:focus-visible,
  .nts-quick-cta .nts-quick-open:hover,
  .nts-quick-cta .nts-quick-open:focus-visible {
    width: 142px;
  }

  .nts-quick-cta .nts-quick-open:hover,
  .nts-quick-cta .nts-quick-open:focus-visible {
    width: 176px;
  }

  .nts-quick-chat:hover b,
  .nts-quick-chat:focus-visible b,
  .nts-quick-open:hover b,
  .nts-quick-open:focus-visible b {
    max-width: 90px;
    opacity: 1;
  }

  .nts-quick-open:hover b,
  .nts-quick-open:focus-visible b {
    max-width: 116px;
  }

  .nts-quick-open .nts-quick-mark {
    background: rgba(255, 255, 255, .16);
    color: #ffe96c;
  }

  .nts-quick-open b {
    color: #fff;
    font-size: 14px;
    letter-spacing: -.035em;
  }
}

@media screen and (min-width: 901px) and (max-width: 1360px) {
  .nts-quick-cta.nts-quick-cta--collision-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(20px, 0, 0);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }
}

/* Shared five-group navigation.  The panel stays within the established
 * 1180px header rhythm while its surface spans the viewport below it. */
.nts-nav-group {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.nts-desktop-nav > .nts-nav-group > a {
  padding-right: 0;
}

.nts-nav-disclosure {
  display: inline-grid;
  place-items: center;
  width: 28px;
  min-width: 28px;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #405b51;
  cursor: pointer;
}

.nts-nav-disclosure span {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nts-nav-group.is-current > a,
.nts-nav-group.is-active > a,
.nts-nav-group:focus-within > a,
.nts-nav-group:focus-within .nts-nav-disclosure {
  color: #17683f !important;
}

.nts-nav-disclosure[aria-expanded="true"] span {
  margin-top: 4px;
  transform: rotate(225deg);
}

.nts-mega-menu {
  position: absolute;
  z-index: 899;
  top: 100%;
  right: 0;
  left: 0;
  border-top: 1px solid #dce8e1;
  border-bottom: 1px solid #cfe1d5;
  background: #fffffd;
  box-shadow: 0 18px 30px rgba(16, 54, 34, 0.14);
}

.nts-mega-menu[hidden] {
  display: none !important;
}

.nts-mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 25px;
}

.nts-mega-column {
  min-width: 0;
  padding: 1px 20px 4px;
  border-left: 1px solid #e5eee8;
}

.nts-mega-column:first-child {
  border-left: 0;
}

.nts-mega-column h2,
.nts-mobile-menu-group h2 {
  margin: 0 0 11px;
  color: #183c31;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.nts-mega-column h2 {
  min-height: 22px;
}

.nts-mega-column a {
  display: block !important;
  padding: 4px 0;
  color: #547066 !important;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.45;
  text-decoration: none !important;
}

.nts-mega-column a:hover,
.nts-mega-column a:focus-visible,
.nts-mega-column a.is-current,
.nts-mega-column.is-current h2 {
  color: #17683f !important;
}

.nts-mega-column.is-active {
  margin: 0 8px;
  padding: 12px 16px 14px;
  border-left-color: transparent;
  border-radius: 10px;
  background: #087f5b;
}

.nts-mega-column.is-active h2,
.nts-mega-column.is-active a,
.nts-mega-column.is-active a:hover,
.nts-mega-column.is-active a:focus-visible,
.nts-mega-column.is-active a.is-current {
  color: #fff !important;
}

.nts-mega-column.is-active a:hover,
.nts-mega-column.is-active a:focus-visible {
  border-radius: 5px;
  background: #fff;
  color: #087f5b !important;
}

@media (min-width: 1181px) {
  .nts-mobile-menu,
  .nts-menu-backdrop {
    display: none !important;
  }
}

@media (max-width: 1180px) {
  .nts-mobile-menu-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
  }

  .nts-mobile-menu-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    min-width: 0;
    padding: 14px 0;
    border-top: 1px solid #d9e8dd;
  }

  .nts-mobile-menu-group h2 {
    grid-column: 1 / -1;
    margin-bottom: 7px;
  }

  .nts-mobile-menu-group h2 a {
    color: #183c31 !important;
    font-size: 15px;
    font-weight: 900;
  }

  .nts-mobile-menu-group > a {
    display: flex !important;
    align-items: center;
    min-height: 44px;
    padding: 6px 0;
    color: #476257 !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.045em;
    text-decoration: none !important;
  }

  .nts-mobile-menu-group a:hover,
  .nts-mobile-menu-group a:focus-visible,
  .nts-mobile-menu-group a.is-current,
  .nts-mobile-menu-group.is-current h2 a {
    color: #17683f !important;
  }
}

@media (max-width: 640px) {
  .nts-mobile-menu-groups {
    grid-template-columns: 1fr;
  }
}
