:root {
  --nx-navy-950: #04111d;
  --nx-navy-900: #071a2a;
  --nx-navy-800: #0b263a;
  --nx-navy-700: #143b53;
  --nx-ink: #10202d;
  --nx-muted: #5f6f7a;
  --nx-line: #dbe3e7;
  --nx-soft: #f2f6f7;
  --nx-white: #ffffff;
  --nx-cyan: #27c9d1;
  --nx-cyan-dark: #087f8b;
  --nx-mint: #77e4c6;
  --nx-lime: #b8e66c;
  --nx-shell: 1280px;
  --nx-header-height: 80px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--nx-ink);
  background: var(--nx-white);
  font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

.nx-modern-home,
.nx-modern-home * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.nx-modern-home a,
.nx-header a,
.nx-footer a {
  color: inherit;
  text-decoration: none;
}

.nx-modern-home h1,
.nx-modern-home h2,
.nx-modern-home h3,
.nx-modern-home p,
.nx-modern-home ol,
.nx-modern-home ul,
.nx-modern-home dl,
.nx-modern-home dd,
.nx-modern-home address {
  margin: 0;
  padding: 0;
}

.nx-modern-home button,
.nx-header button {
  font: inherit;
}

.nx-shell {
  width: min(calc(100% - 48px), var(--nx-shell));
  margin: 0 auto;
}

.nx-skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2147483647;
  padding: 10px 16px;
  color: #04111d;
  background: #77e4c6;
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

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

html.nx-route-home app-root,
html.nx-route-sub .nx-modern-home {
  display: none !important;
}

html.nx-route-home .nx-modern-home,
html.nx-route-sub app-root {
  display: block;
}

app-header,
app-root .header {
  display: none !important;
}

html.nx-route-sub app-root {
  padding-top: var(--nx-header-height);
}

.nx-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2147483000;
  height: var(--nx-header-height);
  color: var(--nx-white);
  background: rgba(4, 17, 29, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.nx-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1440px);
  height: 100%;
  margin: 0 auto;
}

.nx-brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 170px;
  line-height: 1;
}

.nx-brand__wordmark {
  color: #ffffff;
  font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.nx-brand__wordmark span {
  color: var(--nx-cyan);
}

.nx-brand__ko {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 600;
}

.nx-nav {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: auto;
}

.nx-nav__list {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nx-nav__item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nx-nav__topline {
  display: flex;
  align-items: stretch;
}

.nx-nav__topline > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.nx-nav__topline > a::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -1px;
  left: 24px;
  height: 2px;
  background: var(--nx-mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.nx-nav__item:hover .nx-nav__topline > a,
.nx-nav__item:focus-within .nx-nav__topline > a {
  color: var(--nx-white);
}

.nx-nav__item:hover .nx-nav__topline > a::after,
.nx-nav__item:focus-within .nx-nav__topline > a::after,
.nx-nav__item.is-active .nx-nav__topline > a::after {
  transform: scaleX(1);
}

.nx-nav__item.is-active .nx-nav__topline > a {
  color: var(--nx-mint);
}

.nx-nav__expand {
  display: none;
}

.nx-nav__dropdown {
  position: absolute;
  top: var(--nx-header-height);
  left: 50%;
  display: grid;
  width: 226px;
  padding: 18px;
  color: var(--nx-ink);
  background: var(--nx-white);
  border: 1px solid rgba(16, 32, 45, 0.1);
  border-top: 3px solid var(--nx-cyan);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 20px 45px rgba(4, 17, 29, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nx-nav__dropdown--right {
  right: 0;
  left: auto;
  transform: translate(0, -8px);
}

.nx-nav__item:hover .nx-nav__dropdown,
.nx-nav__item:focus-within .nx-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nx-nav__item:hover .nx-nav__dropdown--right,
.nx-nav__item:focus-within .nx-nav__dropdown--right {
  transform: translate(0, 0);
}

.nx-nav__eyebrow {
  padding: 0 10px 10px;
  color: var(--nx-cyan-dark);
  font-size: 10px;
  font-weight: 800;
}

.nx-nav__dropdown a {
  padding: 9px 10px;
  border-radius: 4px;
  color: #354651;
  font-size: 14px;
  font-weight: 550;
  transition: color 0.15s ease, background 0.15s ease;
}

.nx-nav__dropdown a:hover,
.nx-nav__dropdown a:focus {
  color: #046b75;
  background: #edf9f7;
}

.nx-header__contact {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 142px;
  height: 42px;
  margin-left: 24px;
  padding: 0 16px;
  color: #04111d !important;
  background: var(--nx-mint);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nx-header__contact:hover,
.nx-header__contact:focus {
  background: #9bf0d8;
  transform: translateY(-1px);
}

.nx-menu-toggle {
  display: none;
}

.nx-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: max(620px, calc(100svh - 42px));
  overflow: hidden;
  color: var(--nx-white);
  background: var(--nx-navy-950);
}

.nx-hero__media,
.nx-hero__shade {
  position: absolute;
  inset: 0;
}

.nx-hero__media {
  background: url("/assets/img/sub/visual_bg04.jpg") center center / cover no-repeat;
}

.nx-hero__shade {
  background: rgba(3, 15, 27, 0.38);
}

.nx-hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nx-header-height) + 52px);
  padding-bottom: 110px;
}

.nx-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a9f3df;
  font-size: 12px;
  font-weight: 750;
}

.nx-kicker span {
  display: block;
  width: 38px;
  height: 2px;
  background: var(--nx-mint);
}

.nx-hero h1 {
  max-width: 850px;
  margin-top: 24px;
  font-size: 56px;
  font-weight: 350;
  line-height: 1.24;
  word-break: keep-all;
}

.nx-hero h1 strong {
  color: var(--nx-white);
  font-weight: 750;
}

.nx-hero__lead {
  max-width: 760px;
  margin-top: 28px !important;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.75;
  word-break: keep-all;
}

.nx-hero__actions {
  display: flex;
  gap: 10px;
  margin-top: 38px;
}

.nx-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 174px;
  min-height: 52px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.nx-button:hover,
.nx-button:focus {
  transform: translateY(-2px);
}

.nx-button--primary {
  color: #04111d !important;
  background: var(--nx-mint);
}

.nx-button--primary:hover,
.nx-button--primary:focus {
  background: #9bf0d8;
}

.nx-button--outline {
  color: var(--nx-white) !important;
  background: rgba(4, 17, 29, 0.26);
  border-color: rgba(255, 255, 255, 0.42);
}

.nx-button--outline:hover,
.nx-button--outline:focus {
  border-color: var(--nx-mint);
  background: rgba(4, 17, 29, 0.5);
}

.nx-hero__capabilities {
  position: absolute;
  bottom: 32px;
  left: 24px;
  display: flex;
  gap: 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
}

.nx-hero__capabilities span {
  position: relative;
}

.nx-hero__capabilities span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 3px;
  height: 3px;
  background: var(--nx-cyan);
  border-radius: 50%;
}

.nx-hero__scroll {
  position: absolute;
  right: 28px;
  bottom: 30px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 10px;
  font-weight: 700;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: right bottom;
}

.nx-hero__scroll span {
  width: 38px;
  height: 1px;
  background: currentColor;
}

.nx-section {
  padding: 120px 0;
}

.nx-section-heading__eyebrow {
  margin-bottom: 18px !important;
  color: var(--nx-cyan-dark);
  font-size: 11px;
  font-weight: 800;
}

.nx-section-heading h2,
.nx-strength__heading h2,
.nx-contact h2 {
  color: var(--nx-ink);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.36;
  word-break: keep-all;
}

.nx-section-heading--row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.nx-section-heading--row > p,
.nx-cases__lead > p {
  color: var(--nx-muted);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.nx-intro {
  background: var(--nx-white);
}

.nx-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 100px;
}

.nx-intro__copy {
  padding-top: 35px;
}

.nx-intro__copy p {
  color: var(--nx-muted);
  font-size: 17px;
  line-height: 1.9;
  word-break: keep-all;
}

.nx-intro__copy p + p {
  margin-top: 18px;
}

.nx-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 76px;
  border-top: 1px solid var(--nx-line);
  border-bottom: 1px solid var(--nx-line);
}

.nx-stats div {
  min-height: 142px;
  padding: 32px;
  border-right: 1px solid var(--nx-line);
}

.nx-stats div:first-child {
  border-left: 1px solid var(--nx-line);
}

.nx-stats strong,
.nx-stats span {
  display: block;
}

.nx-stats strong {
  color: var(--nx-navy-800);
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.nx-stats span {
  margin-top: 16px;
  color: var(--nx-muted);
  font-size: 13px;
}

.nx-business {
  background: var(--nx-soft);
}

.nx-business__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.nx-business-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 334px;
  padding: 30px;
  overflow: hidden;
  color: var(--nx-ink) !important;
  background: var(--nx-white);
  border: 1px solid transparent;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nx-business-card:hover,
.nx-business-card:focus {
  border-color: rgba(39, 201, 209, 0.55);
  box-shadow: 0 18px 40px rgba(7, 26, 42, 0.09);
  transform: translateY(-4px);
}

.nx-business-card--featured {
  color: var(--nx-white) !important;
  background: var(--nx-navy-800);
  border-color: var(--nx-navy-800);
}

.nx-business-card__number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #d4dfe3;
  font-family: Arial, sans-serif;
  font-size: 44px;
  font-weight: 800;
}

.nx-business-card--featured .nx-business-card__number {
  color: rgba(255, 255, 255, 0.15);
}

.nx-business-card__code {
  color: var(--nx-cyan-dark);
  font-size: 10px;
  font-weight: 800;
}

.nx-business-card--featured .nx-business-card__code {
  color: var(--nx-mint);
}

.nx-business-card h3 {
  margin-top: 62px;
  font-size: 23px;
  font-weight: 750;
}

.nx-business-card p {
  margin-top: 18px;
  color: var(--nx-muted);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.nx-business-card--featured p {
  color: rgba(255, 255, 255, 0.68);
}

.nx-business-card__link {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 28px;
  color: #244657;
  font-size: 12px;
  font-weight: 750;
}

.nx-business-card--featured .nx-business-card__link {
  color: var(--nx-mint);
}

.nx-strength {
  color: var(--nx-white);
  background: var(--nx-navy-900);
}

.nx-strength__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 110px;
}

.nx-strength__heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.nx-strength__heading .nx-section-heading__eyebrow {
  color: var(--nx-mint);
}

.nx-strength__heading h2 {
  color: var(--nx-white);
}

.nx-strength__heading > p:not(.nx-section-heading__eyebrow) {
  max-width: 470px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.85;
  word-break: keep-all;
}

.nx-text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding-bottom: 7px;
  color: var(--nx-cyan-dark) !important;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 750;
}

.nx-strength .nx-text-link {
  color: var(--nx-mint) !important;
}

.nx-strength__list {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.nx-strength__list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  min-height: 145px;
  padding: 30px 10px 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.nx-strength__list > li > span {
  padding-top: 3px;
  color: var(--nx-mint);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.nx-strength__list h3 {
  font-size: 19px;
  font-weight: 700;
}

.nx-strength__list p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.nx-solutions {
  background: var(--nx-white);
}

.nx-solution-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--nx-line);
  border-bottom: 1px solid var(--nx-line);
}

.nx-solution-tabs button {
  min-height: 66px;
  padding: 12px 14px;
  color: #687882;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--nx-line);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.nx-solution-tabs button:first-child {
  border-left: 1px solid var(--nx-line);
}

.nx-solution-tabs button[aria-selected="true"] {
  color: #061926;
  background: var(--nx-mint);
}

.nx-solution-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
  padding: 60px 0 0;
}

.nx-solution-panel[hidden] {
  display: none;
}

.nx-solution-panel__intro > span {
  color: var(--nx-cyan-dark);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.nx-solution-panel__intro h3 {
  margin-top: 18px;
  font-size: 30px;
  font-weight: 750;
  line-height: 1.45;
  word-break: keep-all;
}

.nx-solution-panel__intro p {
  margin-top: 22px;
  color: var(--nx-muted);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.nx-solution-panel__flow {
  border-top: 2px solid var(--nx-navy-800);
}

.nx-solution-panel__flow > div {
  display: grid;
  grid-template-columns: 80px 1fr 1.25fr;
  gap: 26px;
  align-items: start;
  min-height: 132px;
  padding: 28px 0;
  border-bottom: 1px solid var(--nx-line);
}

.nx-solution-panel__flow span {
  color: var(--nx-cyan-dark);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.nx-solution-panel__flow strong {
  font-size: 15px;
  line-height: 1.55;
  word-break: keep-all;
}

.nx-solution-panel__flow p {
  color: var(--nx-muted);
  font-size: 13px;
  line-height: 1.7;
  word-break: keep-all;
}

.nx-cases {
  background: #edf2f3;
}

.nx-cases__lead .nx-text-link {
  margin-top: 22px;
}

.nx-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.nx-case {
  min-height: 390px;
  padding: 30px;
  background: var(--nx-white);
  border: 1px solid rgba(16, 32, 45, 0.08);
  border-radius: 6px;
}

.nx-case__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--nx-cyan-dark);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.nx-case__top b {
  padding: 6px 8px;
  color: #2f4653;
  background: var(--nx-soft);
  border-radius: 3px;
  font-size: 9px;
}

.nx-case h3 {
  margin-top: 58px;
  font-size: 23px;
  line-height: 1.45;
  word-break: keep-all;
}

.nx-case > p {
  margin-top: 18px;
  color: var(--nx-muted);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.nx-case dl {
  margin-top: 28px;
  border-top: 1px solid var(--nx-line);
}

.nx-case dl div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--nx-line);
  font-size: 12px;
}

.nx-case dt {
  color: #84919a;
}

.nx-case dd {
  color: #334853;
  font-weight: 650;
}

.nx-project-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid #c9d5d9;
}

.nx-project-timeline div {
  position: relative;
  padding: 25px 24px 0 0;
}

.nx-project-timeline div::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--nx-cyan-dark);
  border-radius: 50%;
}

.nx-project-timeline time,
.nx-project-timeline span {
  display: block;
}

.nx-project-timeline time {
  color: var(--nx-navy-800);
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.nx-project-timeline span {
  margin-top: 12px;
  color: var(--nx-muted);
  font-size: 12px;
  line-height: 1.6;
}

.nx-contact {
  padding: 100px 0;
  color: #061926;
  background: var(--nx-mint);
}

.nx-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 110px;
  align-items: center;
}

.nx-contact .nx-section-heading__eyebrow {
  color: #086d71;
}

.nx-contact__copy > p:not(.nx-section-heading__eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: #28605b;
  font-size: 15px;
  line-height: 1.85;
  word-break: keep-all;
}

.nx-button--dark {
  width: 186px;
  margin-top: 32px;
  color: var(--nx-white) !important;
  background: var(--nx-navy-900);
}

.nx-button--dark:hover,
.nx-button--dark:focus {
  background: #133449;
}

.nx-contact__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-style: normal;
  border-top: 1px solid rgba(4, 17, 29, 0.28);
}

.nx-contact__details div {
  min-height: 112px;
  padding: 22px 20px 20px 0;
  border-bottom: 1px solid rgba(4, 17, 29, 0.28);
}

.nx-contact__details div:nth-child(odd) {
  border-right: 1px solid rgba(4, 17, 29, 0.28);
}

.nx-contact__details div:nth-child(even) {
  padding-left: 20px;
}

.nx-contact__details span,
.nx-contact__details a,
.nx-contact__details p {
  display: block;
}

.nx-contact__details span {
  margin-bottom: 14px;
  color: #126d6b;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.nx-contact__details a {
  color: #061926 !important;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 750;
}

.nx-contact__details p {
  color: #234e4b;
  font-size: 12px;
  line-height: 1.65;
}

.nx-footer {
  padding: 52px 0 36px;
  color: rgba(255, 255, 255, 0.64);
  background: var(--nx-navy-950);
}

.nx-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nx-brand--footer .nx-brand__wordmark {
  font-size: 20px;
}

.nx-footer__links {
  display: flex;
  gap: 28px;
  font-size: 12px;
}

.nx-footer__links a:hover,
.nx-footer__links a:focus {
  color: var(--nx-mint);
}

.nx-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.nx-footer__bottom p:last-child {
  margin-left: auto;
}

.nx-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.nx-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.nx-subpage app-root .visual {
  display: flex !important;
  align-items: center !important;
  height: 360px !important;
  margin-top: 0 !important;
  background-color: rgba(4, 17, 29, 0.58) !important;
  background-position: center center !important;
  background-size: cover !important;
  background-blend-mode: multiply;
}

body.nx-route-loading::after {
  content: "";
  position: fixed;
  top: var(--nx-header-height);
  left: 0;
  z-index: 2147483100;
  width: 38%;
  height: 3px;
  background: var(--nx-mint);
  animation: nx-route-progress 0.85s ease both;
}

@keyframes nx-route-progress {
  from { transform: translateX(-100%); }
  to { transform: translateX(265%); }
}

body.nx-subpage app-root .visual > .inner {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

body.nx-subpage app-root .visual .el {
  margin-top: -14px !important;
}

body.nx-subpage app-root .visual .el h2 {
  font-size: 46px !important;
  font-weight: 750 !important;
  line-height: 1.25 !important;
}

body.nx-subpage app-root .visual .el span,
body.nx-subpage app-root .visual .el p {
  margin-top: 14px !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 15px !important;
}

body.nx-subpage app-root .breadcrumbs {
  top: 370px !important;
}

body.nx-subpage app-root .breadcrumbs .inner {
  height: 60px !important;
}

body.nx-subpage app-root .breadcrumbs .inner::before {
  background: #0a7691 !important;
  border-radius: 4px !important;
  box-shadow: 0 12px 28px rgba(4, 17, 29, 0.18) !important;
}

body.nx-subpage app-root .breadcrumbs .depth.home {
  width: 60px !important;
}

body.nx-subpage app-root .breadcrumbs .depth.home a {
  border-radius: 4px 0 0 4px !important;
  background-color: var(--nx-cyan) !important;
}

body.nx-subpage app-root .breadcrumbs .depth button {
  height: 60px !important;
  font-weight: 650 !important;
}

body.nx-subpage app-root .container {
  padding-top: 78px !important;
  padding-bottom: 100px !important;
}

body.nx-subpage app-root .container > h3 {
  margin-bottom: 48px !important;
  color: var(--nx-navy-900) !important;
  font-size: 34px !important;
  font-weight: 750 !important;
}

body.nx-subpage app-root .contents {
  color: var(--nx-ink);
  background: var(--nx-white);
}

body.nx-subpage app-root .nxits-container,
body.nx-subpage app-root .nxits-container-l {
  max-width: 1280px !important;
}

body.nx-subpage app-root .nxits-container img,
body.nx-subpage app-root .nxits-container-l img {
  max-width: 100%;
  height: auto;
}

body.nx-subpage app-root .nxits-gttxteng {
  color: var(--nx-cyan-dark) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

body.nx-subpage app-root .nxits-gttxt {
  color: var(--nx-navy-900) !important;
  font-size: 32px !important;
  font-weight: 750 !important;
  line-height: 1.4 !important;
}

body.nx-subpage app-root .h3-stxt,
body.nx-subpage app-root .nxits-desc,
body.nx-subpage app-root .desc {
  color: var(--nx-muted) !important;
  font-size: 15px !important;
  line-height: 1.85 !important;
  word-break: keep-all;
}

body.nx-subpage app-root .h3-stxt {
  margin-bottom: 42px !important;
  padding: 24px 26px !important;
  background: var(--nx-soft) !important;
  border-left: 3px solid var(--nx-cyan) !important;
}

body.nx-subpage app-root .h4 {
  color: var(--nx-navy-800) !important;
  font-size: 22px !important;
  font-weight: 750 !important;
}

body.nx-subpage app-root .nxits-bdbox1,
body.nx-subpage app-root .nxits-bdbox2 {
  padding: 24px !important;
  background: var(--nx-white) !important;
  border: 1px solid var(--nx-line) !important;
  border-radius: 6px !important;
}

body.nx-subpage app-root .img_clickview {
  display: inline-flex !important;
  align-items: center;
  min-height: 34px;
  margin-top: 12px !important;
  padding: 0 12px !important;
  color: var(--nx-cyan-dark) !important;
  background: #edf9f7 !important;
  border: 1px solid #c7ebe4 !important;
  border-radius: 4px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

body.nx-subpage app-root table {
  border-collapse: collapse !important;
}

body.nx-subpage app-root .nxits-table1 {
  width: 100% !important;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(7, 26, 42, 0.07);
}

body.nx-subpage app-root .nxits-table1 thead th {
  color: var(--nx-white);
  background: var(--nx-navy-800);
}

body.nx-subpage app-root .nxits-table1 tbody tr:nth-child(even) {
  background: #f4f8f8;
}

body.nx-subpage app-root .nxits-table1 th,
body.nx-subpage app-root .nxits-table1 td,
body.nx-subpage app-root .nxits-mse-tbl th,
body.nx-subpage app-root .nxits-mse-tbl td {
  padding: 15px 16px !important;
  border-color: var(--nx-line) !important;
  line-height: 1.55 !important;
}

body.nx-subpage app-root #map {
  overflow: hidden;
  background-color: #dfe9e9 !important;
  border-radius: 6px !important;
}

body.nx-subpage app-root #map .addr {
  border-radius: 4px !important;
  box-shadow: 0 14px 32px rgba(4, 17, 29, 0.2) !important;
}

body.nx-subpage app-root #map .nx-location-map {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1180px) {
  .nx-nav__topline > a {
    padding-right: 17px;
    padding-left: 17px;
  }

  .nx-header__contact {
    width: 128px;
    margin-left: 12px;
  }
}

@media (max-width: 1100px) {
  :root {
    --nx-header-height: 72px;
  }

  /* 모바일 브라우저에서 backdrop-filter가 fixed 자식의 기준 영역을
     헤더 높이로 제한하는 문제를 피하고, 메뉴를 헤더 아래 독립 패널로 표시한다. */
  .nx-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nx-header__inner {
    width: min(calc(100% - 32px), 1440px);
    position: relative;
  }

  .nx-menu-toggle {
    position: relative;
    z-index: 3;
    flex: 0 0 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--nx-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    cursor: pointer;
  }

  .nx-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

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

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

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

  .nx-nav {
    position: absolute;
    top: var(--nx-header-height);
    right: 0;
    bottom: auto;
    z-index: 2;
    display: block;
    width: min(420px, 100%);
    height: calc(100vh - var(--nx-header-height));
    height: calc(100dvh - var(--nx-header-height));
    min-height: calc(100vh - var(--nx-header-height));
    max-height: calc(100vh - var(--nx-header-height));
    max-height: calc(100dvh - var(--nx-header-height));
    padding: 12px 22px 28px;
    overflow-y: auto;
    color: var(--nx-white);
    background: var(--nx-navy-950);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -20px 20px 45px rgba(0, 0, 0, 0.28);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.22s ease, visibility 0.22s ease;
  }

  .nx-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nx-nav__list {
    display: block;
    height: auto;
  }

  .nx-nav__item,
  .nx-nav__topline {
    display: block;
  }

  .nx-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nx-nav__topline {
    position: relative;
  }

  .nx-nav__topline > a {
    min-height: 58px;
    padding: 0 48px 0 4px;
    font-size: 17px;
  }

  .nx-nav__topline > a::after {
    display: none;
  }

  .nx-nav__expand {
    position: absolute;
    top: 8px;
    right: 0;
    display: block;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .nx-nav__expand::before,
  .nx-nav__expand::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 14px;
    width: 14px;
    height: 1px;
    background: var(--nx-mint);
  }

  .nx-nav__expand::after {
    transform: rotate(90deg);
    transition: transform 0.16s ease;
  }

  .nx-nav__expand[aria-expanded="true"]::after {
    transform: rotate(0deg);
  }

  .nx-nav__dropdown,
  .nx-nav__dropdown--right {
    position: static;
    display: none;
    width: auto;
    padding: 0 0 15px;
    color: var(--nx-white);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nx-nav__item:hover .nx-nav__dropdown,
  .nx-nav__item:focus-within .nx-nav__dropdown {
    transform: none;
  }

  .nx-nav__item.is-expanded .nx-nav__dropdown {
    display: grid;
  }

  .nx-nav__eyebrow {
    display: none;
  }

  .nx-nav__dropdown a {
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.6);
  }

  .nx-nav__dropdown a:hover,
  .nx-nav__dropdown a:focus {
    color: var(--nx-mint);
    background: rgba(255, 255, 255, 0.06);
  }

  .nx-header__contact {
    width: 100%;
    height: 50px;
    margin: 22px 0 0;
  }

  .nx-hero h1 {
    font-size: 48px;
  }

  .nx-section-heading--row,
  .nx-intro__grid,
  .nx-strength__grid,
  .nx-contact__grid {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .nx-section {
    padding: 92px 0;
  }

  .nx-section-heading h2,
  .nx-strength__heading h2,
  .nx-contact h2 {
    font-size: 36px;
  }

  .nx-section-heading--row,
  .nx-intro__grid,
  .nx-strength__grid,
  .nx-contact__grid,
  .nx-solution-panel {
    grid-template-columns: 1fr;
  }

  .nx-section-heading--row,
  .nx-intro__grid,
  .nx-strength__grid,
  .nx-contact__grid,
  .nx-solution-panel {
    gap: 40px;
  }

  .nx-intro__copy {
    padding-top: 0;
  }

  .nx-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nx-stats div:nth-child(3) {
    border-left: 1px solid var(--nx-line);
  }

  .nx-business__grid,
  .nx-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nx-strength__heading {
    position: static;
  }

  .nx-solution-tabs {
    display: flex;
    overflow-x: auto;
  }

  .nx-solution-tabs button {
    flex: 0 0 180px;
  }

  .nx-solution-panel {
    padding-top: 42px;
  }

  .nx-project-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 0;
  }
}

@media (max-width: 640px) {
  .nx-shell {
    width: min(calc(100% - 32px), var(--nx-shell));
  }

  .nx-brand {
    min-width: 0;
  }

  .nx-brand__wordmark {
    font-size: 19px;
  }

  .nx-brand__ko {
    font-size: 9px;
  }

  .nx-hero {
    align-items: flex-end;
    min-height: max(610px, calc(100svh - 34px));
  }

  .nx-hero__media {
    background-position: 62% center;
  }

  .nx-hero__shade {
    background: rgba(3, 15, 27, 0.58);
  }

  .nx-hero__content {
    padding-top: 120px;
    padding-bottom: 92px;
  }

  .nx-kicker {
    font-size: 9px;
  }

  .nx-hero h1 {
    margin-top: 18px;
    font-size: 34px;
    line-height: 1.34;
  }

  .nx-hero h1 br {
    display: none;
  }

  .nx-hero__lead {
    margin-top: 20px !important;
    font-size: 15px;
    line-height: 1.7;
  }

  .nx-desktop-only {
    display: none;
  }

  .nx-hero__actions {
    margin-top: 28px;
  }

  .nx-button {
    width: calc(50% - 5px);
    min-height: 50px;
    padding: 0 14px;
    font-size: 12px;
  }

  .nx-hero__capabilities {
    right: 16px;
    bottom: 26px;
    left: 16px;
    gap: 0;
    justify-content: space-between;
    font-size: 8px;
  }

  .nx-hero__capabilities span:not(:last-child)::after,
  .nx-hero__scroll {
    display: none;
  }

  .nx-section {
    padding: 76px 0;
  }

  .nx-section-heading__eyebrow {
    margin-bottom: 14px !important;
    font-size: 9px;
  }

  .nx-section-heading h2,
  .nx-strength__heading h2,
  .nx-contact h2 {
    font-size: 29px;
    line-height: 1.4;
  }

  .nx-section-heading--row {
    margin-bottom: 38px;
  }

  .nx-section-heading--row > p,
  .nx-cases__lead > p,
  .nx-intro__copy p {
    font-size: 14px;
  }

  .nx-stats {
    margin-top: 48px;
  }

  .nx-stats div {
    min-height: 116px;
    padding: 23px 18px;
  }

  .nx-stats strong {
    font-size: 20px;
  }

  .nx-stats span {
    margin-top: 12px;
    font-size: 11px;
  }

  .nx-business__grid,
  .nx-case-grid {
    grid-template-columns: 1fr;
  }

  .nx-business-card {
    min-height: 300px;
    padding: 26px;
  }

  .nx-business-card h3 {
    margin-top: 52px;
    font-size: 21px;
  }

  .nx-strength__list li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .nx-solution-tabs button {
    flex-basis: 158px;
    min-height: 58px;
    font-size: 11px;
  }

  .nx-solution-panel__intro h3 {
    font-size: 25px;
  }

  .nx-solution-panel__flow > div {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 24px 0;
  }

  .nx-solution-panel__flow strong {
    font-size: 14px;
  }

  .nx-case {
    min-height: 360px;
    padding: 26px;
  }

  .nx-case h3 {
    margin-top: 44px;
    font-size: 21px;
  }

  .nx-project-timeline {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-left: 10px;
    border-top: 0;
    border-left: 1px solid #c9d5d9;
  }

  .nx-project-timeline div {
    padding: 0 0 0 22px;
  }

  .nx-project-timeline div::before {
    top: 4px;
    left: -14px;
  }

  .nx-contact {
    padding: 76px 0;
  }

  .nx-contact__details {
    grid-template-columns: 1fr;
  }

  .nx-contact__details div,
  .nx-contact__details div:nth-child(even) {
    min-height: 94px;
    padding: 20px 0;
    border-right: 0;
  }

  .nx-button--dark {
    width: 180px;
  }

  .nx-footer__top,
  .nx-footer__bottom {
    display: block;
  }

  .nx-footer__links {
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 28px;
  }

  .nx-footer__bottom p + p {
    margin-top: 9px;
  }

  .nx-footer__bottom p:last-child {
    margin-top: 18px;
  }
}

@media (max-width: 768px) {
  body.nx-subpage app-root .visual {
    height: 280px !important;
  }

  body.nx-subpage app-root .visual > .inner {
    width: calc(100% - 32px) !important;
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  body.nx-subpage app-root .visual .el h2 {
    font-size: 34px !important;
  }

  body.nx-subpage app-root .visual .el span,
  body.nx-subpage app-root .visual .el p {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }

  body.nx-subpage app-root .breadcrumbs {
    top: 300px !important;
  }

  body.nx-subpage app-root .breadcrumbs .inner {
    width: calc(100% - 32px) !important;
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  body.nx-subpage app-root .container {
    padding-top: 66px !important;
    padding-bottom: 76px !important;
  }

  body.nx-subpage app-root .container > h3 {
    margin-bottom: 34px !important;
    font-size: 28px !important;
  }

  body.nx-subpage app-root .nxits-container,
  body.nx-subpage app-root .nxits-container-l {
    width: calc(100% - 32px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body.nx-subpage app-root .nxits-gttxt {
    font-size: 25px !important;
  }

  body.nx-subpage app-root .h3-stxt {
    padding: 19px 18px !important;
    font-size: 14px !important;
  }

  body.nx-subpage app-root .h4 {
    font-size: 19px !important;
  }

  body.nx-subpage app-root .nxits-table1,
  body.nx-subpage app-root .nxits-mse-tbl {
    display: block;
    width: 100%;
    min-width: 720px;
    overflow-x: auto;
  }

  body.nx-subpage app-root #map {
    height: 480px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nx-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nx-button,
  .nx-business-card,
  .nx-nav__dropdown,
  .nx-menu-toggle span {
    transition: none;
  }
}

/* Modern routed pages */
.nx-custom-page[hidden] {
  display: none !important;
}

html.nx-custom-route app-root {
  display: none !important;
}

html.nx-custom-route .nx-custom-page {
  display: block;
  min-height: 100vh;
  color: #102431;
  background: #fff;
}

.nx-detail-hero {
  position: relative;
  display: flex;
  min-height: 360px;
  padding: calc(var(--nx-header-height) + 72px) 0 56px;
  overflow: hidden;
  color: #fff;
  background-color: #0b1f2b;
  background-position: center;
  background-size: cover;
}

.nx-detail-hero::before {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, rgba(6, 22, 32, 0.95) 0%, rgba(6, 22, 32, 0.8) 48%, rgba(6, 22, 32, 0.42) 100%);
}

.nx-detail-hero--company {
  background-image: url('/assets/img/sub/visual_bg04.jpg');
  background-position: center 46%;
}

.nx-detail-hero--solution {
  background-image: url('/assets/img/sub/visual_bg04.jpg');
  background-position: center 50%;
}

.nx-detail-hero--case {
  background-image: url('/assets/img/sub/visual_bg04.jpg');
  background-position: center 48%;
}

.nx-detail-hero--support {
  background-image: url('/assets/img/sub/visual_bg04.jpg');
  background-position: center 52%;
}

.nx-detail-hero .nx-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nx-detail-hero p,
.nx-overline {
  margin: 0 0 16px;
  color: #6fe4d0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.nx-detail-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
}

.nx-detail-hero > .nx-shell > span {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.75;
}

.nx-detail-hero ol {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.nx-detail-hero li + li::before {
  margin-right: 10px;
  content: '/';
  color: rgba(255, 255, 255, 0.28);
}

.nx-detail-hero a {
  color: inherit;
}

.nx-detail-content {
  padding-bottom: 120px;
  background: #fff;
}

.nx-context-nav {
  position: sticky;
  top: var(--nx-header-height);
  z-index: 20;
  display: flex;
  min-height: 62px;
  margin: 0 0 84px;
  overflow-x: auto;
  border-bottom: 1px solid #dbe4e8;
  background: rgba(255, 255, 255, 0.96);
  scrollbar-width: none;
}

.nx-context-nav::-webkit-scrollbar {
  display: none;
}

.nx-context-nav a {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  min-width: 132px;
  padding: 0 22px;
  place-items: center;
  color: #566b76;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nx-context-nav a::after {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 3px;
  content: '';
  background: #1bbdaf;
  transform: scaleX(0);
  transition: transform 0.16s ease;
}

.nx-context-nav a:hover,
.nx-context-nav a:focus,
.nx-context-nav a[aria-current='page'] {
  color: #087a79;
}

.nx-context-nav a[aria-current='page']::after {
  transform: scaleX(1);
}

.nx-message {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 80px;
  align-items: start;
}

.nx-message__copy h2,
.nx-record-intro h2,
.nx-case-intro h2,
.nx-support-lead h2,
.nx-resource-intro h2,
.nx-faq-intro h2,
.nx-inquiry-guide h2,
.nx-module-section h2 {
  margin: 0;
  color: #102431;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.28;
  letter-spacing: 0;
}

.nx-message__copy > p:not(.nx-overline) {
  margin: 28px 0 0;
  color: #4d626c;
  font-size: 17px;
  line-height: 1.95;
}

.nx-message__signature {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid #dfe7ea;
}

.nx-message__signature span {
  color: #647984;
  font-size: 14px;
}

.nx-message__signature strong {
  color: #102431;
  font-size: 17px;
}

.nx-message__visual {
  position: sticky;
  top: calc(var(--nx-header-height) + 90px);
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #0e2934;
}

.nx-message__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nx-message__visual div {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.nx-message__visual span {
  color: #63dfcb;
  font-size: 11px;
  font-weight: 800;
}

.nx-message__visual strong {
  color: #fff;
  font-size: 18px;
}

.nx-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 92px;
  border: 1px solid #dde6e9;
  background: #dde6e9;
}

.nx-principles article {
  min-height: 240px;
  padding: 34px;
  background: #f8fafb;
}

.nx-principles span,
.nx-delivery li > span {
  color: #08a69f;
  font-size: 12px;
  font-weight: 800;
}

.nx-principles h3 {
  margin: 36px 0 14px;
  color: #102431;
  font-size: 21px;
  letter-spacing: 0;
}

.nx-principles p {
  margin: 0;
  color: #647984;
  line-height: 1.75;
}

.nx-record-intro,
.nx-case-intro,
.nx-resource-intro,
.nx-faq-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.nx-record-intro > p,
.nx-case-intro > p,
.nx-resource-intro > p,
.nx-faq-intro > p {
  margin: 0;
  color: #647984;
  font-size: 16px;
  line-height: 1.85;
}

.nx-filter-panel {
  padding-top: 28px;
  border-top: 1px solid #dce6e9;
}

.nx-filter-toolbar {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.nx-segmented {
  display: flex;
  gap: 4px;
  max-width: 100%;
  overflow-x: auto;
  padding: 4px;
  border: 1px solid #dce6e9;
  border-radius: 6px;
  background: #f4f7f8;
  scrollbar-width: none;
}

.nx-segmented::-webkit-scrollbar {
  display: none;
}

.nx-segmented button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 4px;
  color: #506670;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.nx-segmented button:hover,
.nx-segmented button:focus,
.nx-segmented button[aria-pressed='true'] {
  color: #fff;
  background: #0a7376;
}

.nx-search {
  display: grid;
  width: min(300px, 100%);
}

.nx-search span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nx-search input,
.nx-inquiry-form input,
.nx-inquiry-form select,
.nx-inquiry-form textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #cfdcdf;
  border-radius: 4px;
  color: #16313d;
  background: #fff;
  font: inherit;
  outline: none;
}

.nx-search input {
  height: 50px;
  padding: 0 16px;
}

.nx-search input:focus,
.nx-inquiry-form input:focus,
.nx-inquiry-form select:focus,
.nx-inquiry-form textarea:focus {
  border-color: #09a9a4;
  box-shadow: 0 0 0 3px rgba(9, 169, 164, 0.12);
}

.nx-result-count {
  margin: 28px 0 16px;
  color: #667b85;
  font-size: 13px;
}

.nx-result-count strong {
  margin-right: 3px;
  color: #087b7c;
  font-size: 20px;
}

.nx-performance-list {
  border-top: 2px solid #17343f;
}

.nx-performance-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 30px;
  padding: 32px 20px;
  border-bottom: 1px solid #dfe7ea;
}

.nx-performance-item[hidden],
.nx-case-study[hidden],
.nx-notice-row[hidden],
.nx-faq-row[hidden] {
  display: none !important;
}

.nx-performance-item time {
  color: #0c8f8c;
  font-size: 32px;
  font-weight: 800;
}

.nx-performance-item span,
.nx-case-study__head span {
  color: #0b928e;
  font-size: 12px;
  font-weight: 800;
}

.nx-performance-item h3 {
  margin: 7px 0 10px;
  color: #17313d;
  font-size: 21px;
  letter-spacing: 0;
}

.nx-performance-item p {
  margin: 0;
  color: #647983;
  line-height: 1.7;
}

.nx-empty {
  padding: 64px 20px;
  border: 1px solid #dfe7ea;
  color: #6a7e87;
  text-align: center;
  background: #f7f9fa;
}

.nx-solution-detail__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.nx-solution-detail__intro h2 {
  margin: 0;
  color: #112b37;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.3;
  letter-spacing: 0;
}

.nx-solution-detail__intro > div > p:not(.nx-overline) {
  max-width: 700px;
  margin: 24px 0 32px;
  color: #617680;
  font-size: 16px;
  line-height: 1.85;
}

.nx-system-visual {
  min-height: 390px;
  padding: 34px;
  border-radius: 6px;
  color: #fff;
  background: #102f3b;
}

.nx-system-visual > div:first-child {
  display: grid;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nx-system-visual > div:first-child span,
.nx-system-flow small {
  color: #6ee0cd;
  font-size: 10px;
  font-weight: 800;
}

.nx-system-visual > div:first-child strong {
  color: #fff;
  font-size: 22px;
}

.nx-system-flow {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.nx-system-flow article {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: center;
  min-height: 78px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.nx-system-flow article > span {
  grid-row: 1 / 3;
  color: #6ee0cd;
  font-size: 14px;
  font-weight: 800;
}

.nx-system-flow article > strong {
  color: #fff;
  font-size: 15px;
}

.nx-pse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 84px;
  border: 1px solid #dbe5e8;
  background: #dbe5e8;
}

.nx-pse-grid article {
  min-height: 250px;
  padding: 34px;
  background: #f7f9fa;
}

.nx-pse-grid article:nth-child(2) {
  background: #e9f7f4;
}

.nx-pse-grid article:nth-child(3) {
  background: #fff8e8;
}

.nx-pse-grid span {
  color: #098c89;
  font-size: 11px;
  font-weight: 800;
}

.nx-pse-grid h3 {
  margin: 38px 0 14px;
  color: #15313d;
  font-size: 22px;
}

.nx-pse-grid p {
  margin: 0;
  color: #586e78;
  line-height: 1.75;
}

.nx-module-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: 70px;
  margin-top: 100px;
  padding-top: 76px;
  border-top: 1px solid #dfe7ea;
}

.nx-module-section ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nx-module-section li {
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 76px;
  padding: 18px;
  border: 1px solid #dbe5e8;
  background: #fff;
}

.nx-module-section li span {
  color: #09a29c;
  font-size: 12px;
  font-weight: 800;
}

.nx-module-section li strong {
  color: #1a3540;
  font-size: 15px;
}

.nx-delivery {
  margin-top: 90px;
  padding: 54px;
  color: #fff;
  background: #102a35;
}

.nx-delivery > h2 {
  margin: 0 0 38px;
  color: #fff;
  font-size: 28px;
}

.nx-delivery ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.14);
}

.nx-delivery li {
  min-height: 180px;
  padding: 24px;
  background: #102a35;
}

.nx-delivery strong {
  display: block;
  margin-top: 30px;
  color: #fff;
  font-size: 18px;
}

.nx-delivery p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.nx-case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nx-case-study {
  padding: 30px;
  border: 1px solid #dce5e8;
  border-radius: 6px;
  background: #fff;
}

.nx-case-study__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nx-case-study__head b {
  padding: 6px 9px;
  border-radius: 3px;
  color: #6b5b21;
  background: #fff3c5;
  font-size: 11px;
}

.nx-case-study > h3 {
  margin: 28px 0 12px;
  color: #15313d;
  font-size: 23px;
}

.nx-case-study > p {
  min-height: 54px;
  margin: 0;
  color: #627680;
  line-height: 1.7;
}

.nx-case-study dl {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 20px;
  background: #f4f7f8;
}

.nx-case-study dl div {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 16px;
}

.nx-case-study dt {
  color: #71848c;
  font-size: 12px;
  font-weight: 800;
}

.nx-case-study dd {
  margin: 0;
  color: #2d4854;
  font-size: 13px;
  line-height: 1.6;
}

.nx-case-toggle,
.nx-resource-card button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #0a8f8c;
  border-radius: 4px;
  color: #087d7b;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.nx-case-toggle:hover,
.nx-case-toggle:focus,
.nx-resource-card button:hover,
.nx-resource-card button:focus {
  color: #fff;
  background: #087d7b;
}

.nx-case-study__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #dce5e8;
}

.nx-case-study__detail[hidden] {
  display: none;
}

.nx-case-study__detail strong {
  color: #173540;
  font-size: 13px;
}

.nx-case-study__detail ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #627680;
  font-size: 13px;
  line-height: 1.8;
}

.nx-inline-cta {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 76px;
  padding: 44px 48px;
  color: #fff;
  background: #10303a;
}

.nx-inline-cta span {
  color: #66dfca;
  font-size: 11px;
  font-weight: 800;
}

.nx-inline-cta h2 {
  max-width: 740px;
  margin: 10px 0 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.45;
}

.nx-support-lead {
  display: flex;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.nx-support-lead > a {
  display: grid;
  min-width: 270px;
  padding: 24px;
  border-left: 4px solid #1cc3b4;
  color: #fff;
  background: #15333e;
}

.nx-support-lead > a span {
  color: #76e4d1;
  font-size: 11px;
  font-weight: 800;
}

.nx-support-lead > a strong {
  margin-top: 8px;
  color: #fff;
  font-size: 22px;
}

.nx-notice-list,
.nx-faq-list {
  border-top: 2px solid #17343f;
}

.nx-notice-row,
.nx-faq-row {
  border-bottom: 1px solid #dfe7ea;
}

.nx-notice-row summary,
.nx-faq-row summary {
  display: grid;
  align-items: center;
  padding: 25px 20px;
  cursor: pointer;
  list-style: none;
}

.nx-notice-row summary {
  grid-template-columns: 90px minmax(0, 1fr) 110px;
  gap: 24px;
}

.nx-faq-row summary {
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
}

.nx-notice-row summary::-webkit-details-marker,
.nx-faq-row summary::-webkit-details-marker {
  display: none;
}

.nx-notice-row summary > span,
.nx-faq-row summary > span {
  color: #0a8b88;
  font-size: 12px;
  font-weight: 800;
}

.nx-notice-row h3,
.nx-faq-row h3 {
  margin: 0;
  color: #1a3540;
  font-size: 18px;
}

.nx-notice-row summary p {
  margin: 7px 0 0;
  color: #6a7d86;
  font-size: 13px;
}

.nx-notice-row time {
  color: #7d8e95;
  font-size: 13px;
  text-align: right;
}

.nx-notice-row__body,
.nx-faq-row > div {
  padding: 28px 110px;
  border-top: 1px solid #e5ecee;
  background: #f6f8f9;
}

.nx-notice-row__body p,
.nx-faq-row > div p {
  margin: 0;
  color: #526873;
  line-height: 1.85;
}

.nx-inquiry-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: start;
}

.nx-inquiry-guide > p:not(.nx-overline) {
  margin: 22px 0 0;
  color: #637781;
  line-height: 1.8;
}

.nx-inquiry-guide > ol {
  display: grid;
  gap: 0;
  margin: 40px 0;
  padding: 0;
  border-top: 1px solid #dfe7ea;
  list-style: none;
}

.nx-inquiry-guide > ol li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid #dfe7ea;
}

.nx-inquiry-guide li > span {
  color: #0a9994;
  font-size: 12px;
  font-weight: 800;
}

.nx-inquiry-guide li strong {
  color: #193540;
}

.nx-inquiry-guide li p {
  margin: 6px 0 0;
  color: #71838b;
  font-size: 13px;
}

.nx-contact-box {
  display: grid;
  padding: 28px;
  color: #fff;
  background: #12323d;
}

.nx-contact-box span {
  color: #6ee0cd;
  font-size: 11px;
  font-weight: 800;
}

.nx-contact-box a {
  margin-top: 8px;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

.nx-contact-box p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.nx-inquiry-form {
  padding: 42px;
  border: 1px solid #d8e3e6;
  border-radius: 6px;
  background: #f8fafb;
}

.nx-form-heading {
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dbe5e8;
}

.nx-form-heading > span {
  color: #0a918d;
  font-size: 11px;
  font-weight: 800;
}

.nx-form-heading h2 {
  margin: 8px 0;
  color: #15313d;
  font-size: 28px;
}

.nx-form-heading p,
.nx-form-note {
  margin: 0;
  color: #71838b;
  font-size: 12px;
}

.nx-form-heading b,
.nx-inquiry-form label > span b {
  color: #c44949;
}

.nx-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 16px;
}

.nx-inquiry-form label {
  display: grid;
  gap: 8px;
}

.nx-inquiry-form label > span {
  color: #354f5a;
  font-size: 13px;
  font-weight: 700;
}

.nx-inquiry-form input,
.nx-inquiry-form select {
  height: 48px;
  padding: 0 13px;
}

.nx-inquiry-form textarea {
  min-height: 170px;
  padding: 13px;
  line-height: 1.65;
  resize: vertical;
}

.nx-form-full {
  grid-column: 1 / -1;
}

.nx-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.nx-consent {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px !important;
  margin-top: 26px;
}

.nx-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.nx-consent span {
  color: #60747e !important;
  font-weight: 500 !important;
  line-height: 1.65;
}

.nx-form-note {
  margin-top: 10px;
}

.nx-submit {
  width: 100%;
  margin-top: 26px;
}

.nx-submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.nx-form-status {
  display: none;
  gap: 7px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.nx-form-status.is-success,
.nx-form-status.is-error {
  display: grid;
}

.nx-form-status.is-success {
  border-color: #9ed9cb;
  color: #126558;
  background: #eaf8f3;
}

.nx-form-status.is-error {
  border-color: #e5b7b7;
  color: #8a3636;
  background: #fff0f0;
}

.nx-form-status span {
  font-size: 13px;
  line-height: 1.6;
}

.nx-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.nx-resource-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 190px;
  padding: 28px;
  border: 1px solid #dce5e8;
  border-radius: 6px;
  background: #fff;
}

.nx-resource-card > span {
  color: #0aa39d;
  font-size: 13px;
  font-weight: 800;
}

.nx-resource-card div > p:first-child {
  margin: 0;
  color: #0b918d;
  font-size: 10px;
  font-weight: 800;
}

.nx-resource-card h3 {
  margin: 10px 0;
  color: #183540;
  font-size: 20px;
}

.nx-resource-card div > p:last-child {
  margin: 0;
  color: #687c85;
  font-size: 13px;
  line-height: 1.65;
}

.nx-faq-intro {
  margin-bottom: 58px;
}

.nx-faq-row[open] summary h3,
.nx-notice-row[open] summary h3 {
  color: #07827f;
}

.nx-company-intro,
.nx-certificate-intro,
.nx-location-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 62px;
}

.nx-location-intro,
.nx-legal {
  padding-top: 82px;
}

.nx-company-intro h2,
.nx-certificate-intro h2,
.nx-location-intro h2,
.nx-section-heading h2,
.nx-company-track h2,
.nx-visit-guide h2 {
  margin: 0;
  color: #102431;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.28;
  letter-spacing: 0;
}

.nx-company-intro > p,
.nx-certificate-intro > p,
.nx-location-intro > p {
  margin: 0;
  color: #60757f;
  font-size: 16px;
  line-height: 1.9;
}

.nx-company-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  border: 1px solid #dce5e8;
}

.nx-company-profile__title {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 390px;
  padding: 42px;
  color: #fff;
  background: #12313d;
}

.nx-company-profile__title span {
  color: #6ee0cd;
  font-size: 11px;
  font-weight: 800;
}

.nx-company-profile__title h2 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: 30px;
}

.nx-company-profile__title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.nx-company-profile dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.nx-company-profile dl > div {
  min-width: 0;
  padding: 28px 30px;
  border-bottom: 1px solid #e1e8eb;
  border-left: 1px solid #e1e8eb;
}

.nx-company-profile dt,
.nx-location-details dt,
.nx-legal dt {
  margin-bottom: 9px;
  color: #70838c;
  font-size: 12px;
  font-weight: 800;
}

.nx-company-profile dd,
.nx-location-details dd,
.nx-legal dd {
  margin: 0;
  color: #183641;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.nx-company-profile a,
.nx-location-details a,
.nx-legal a,
.nx-form-note a {
  color: #087f7d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nx-company-capabilities {
  margin-top: 94px;
}

.nx-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid #dce5e8;
  background: #dce5e8;
}

.nx-capability-grid article {
  min-height: 250px;
  padding: 30px;
  background: #f8fafb;
}

.nx-capability-grid span {
  color: #099993;
  font-size: 12px;
  font-weight: 800;
}

.nx-capability-grid h3 {
  margin: 42px 0 14px;
  color: #173540;
  font-size: 20px;
}

.nx-capability-grid p {
  margin: 0;
  color: #637781;
  line-height: 1.75;
}

.nx-company-track {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 72px;
  margin-top: 92px;
  padding: 54px;
  background: #edf6f4;
}

.nx-company-track > div > p:last-child {
  margin: 18px 0 0;
  color: #647a83;
  line-height: 1.75;
}

.nx-company-track ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nx-company-track li {
  position: relative;
  padding: 18px 0 18px 18px;
  border-bottom: 1px solid #cfdfdc;
  color: #284750;
  font-weight: 700;
}

.nx-company-track li::before {
  position: absolute;
  top: 27px;
  left: 0;
  width: 5px;
  height: 5px;
  content: '';
  background: #0aa09a;
}

.nx-certificate-card[hidden] {
  display: none !important;
}

.nx-certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.nx-certificate-card {
  display: grid;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid #dce5e8;
  border-radius: 6px;
  color: #183540;
  text-align: left;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.16s ease, transform 0.16s ease;
}

.nx-certificate-card:hover,
.nx-certificate-card:focus {
  border-color: #12a59f;
  outline: none;
  transform: translateY(-3px);
}

.nx-certificate-card > span {
  margin-bottom: 12px;
  color: #078d89;
  font-size: 11px;
  font-weight: 800;
}

.nx-certificate-card figure {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 18px;
  overflow: hidden;
  place-items: center;
  background: #f2f5f6;
}

.nx-certificate-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nx-certificate-card strong {
  min-height: 44px;
  font-size: 16px;
  line-height: 1.45;
}

.nx-certificate-card small {
  margin-top: 8px;
  color: #7b8d94;
  font-size: 11px;
}

.nx-certificate-dialog {
  width: min(900px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  padding: 24px;
  overflow: auto;
  border: 0;
  border-radius: 6px;
  color: #173540;
  background: #fff;
}

.nx-certificate-dialog::backdrop {
  background: rgba(5, 20, 27, 0.78);
}

.nx-certificate-dialog > button {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 4px;
  place-items: center;
  color: #fff;
  background: #173540;
  font-size: 28px;
  cursor: pointer;
}

.nx-certificate-dialog > div {
  margin: 4px 0 20px;
}

.nx-certificate-dialog span {
  color: #078d89;
  font-size: 11px;
  font-weight: 800;
}

.nx-certificate-dialog h2 {
  margin: 8px 0 0;
  font-size: 25px;
}

.nx-certificate-dialog img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  background: #f4f6f7;
}

.nx-location-map {
  overflow: hidden;
  border: 1px solid #d8e3e6;
  border-radius: 6px;
  background: #edf3f4;
}

.nx-location-map iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

.nx-location-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  border: 1px solid #dbe5e8;
  background: #dbe5e8;
}

.nx-location-details article {
  min-height: 220px;
  padding: 30px;
  background: #fff;
}

.nx-location-details article > span {
  color: #078e8a;
  font-size: 11px;
  font-weight: 800;
}

.nx-location-details h2 {
  margin: 32px 0 18px;
  color: #173540;
  font-size: 23px;
}

.nx-location-details address {
  color: #566d77;
  font-style: normal;
  line-height: 1.8;
}

.nx-location-details address strong {
  color: #173540;
}

.nx-location-details dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.nx-location-details dl > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
}

.nx-location-details dt {
  margin: 0;
}

.nx-visit-guide {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px;
  margin-top: 76px;
  padding-top: 56px;
  border-top: 1px solid #dfe7ea;
}

.nx-visit-guide > div:last-child > p {
  margin: 0;
  color: #5d737d;
  font-size: 16px;
  line-height: 1.9;
}

.nx-map-links {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.nx-button--light {
  border: 1px solid #cbd9dd;
  color: #1b3a45;
  background: #fff;
}

.nx-legal {
  width: min(900px, 100%);
  margin: 0 auto;
}

.nx-legal header {
  padding-bottom: 42px;
  border-bottom: 2px solid #173540;
}

.nx-legal header h2 {
  margin: 0;
  color: #112d38;
  font-size: clamp(32px, 4vw, 48px);
}

.nx-legal header > p:not(.nx-overline) {
  max-width: 760px;
  margin: 20px 0;
  color: #5c727c;
  font-size: 16px;
  line-height: 1.85;
}

.nx-legal time {
  color: #7b8d95;
  font-size: 12px;
}

.nx-legal section {
  padding: 34px 0;
  border-bottom: 1px solid #dfe7ea;
}

.nx-legal section h3 {
  margin: 0 0 16px;
  color: #173540;
  font-size: 20px;
}

.nx-legal section p {
  margin: 0;
  color: #5d727c;
  line-height: 1.9;
}

.nx-legal section .nx-button {
  margin-top: 24px;
  color: #fff;
  text-decoration: none;
}

.nx-legal-table {
  border-top: 1px solid #d7e1e4;
}

.nx-legal-table > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 16px;
  border-bottom: 1px solid #dfe7ea;
}

.nx-legal-table strong {
  color: #23434e;
  font-size: 13px;
}

.nx-legal-table span {
  color: #607680;
  font-size: 14px;
  line-height: 1.7;
}

.nx-legal dl {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.nx-legal dl > div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .nx-detail-hero {
    min-height: 330px;
    padding-top: calc(var(--nx-header-height) + 60px);
  }

  .nx-context-nav {
    top: var(--nx-header-height);
  }

  .nx-message,
  .nx-solution-detail__intro,
  .nx-inquiry-layout {
    gap: 42px;
  }

  .nx-record-intro,
  .nx-case-intro,
  .nx-resource-intro,
  .nx-faq-intro,
  .nx-module-section,
  .nx-company-intro,
  .nx-certificate-intro,
  .nx-location-intro,
  .nx-company-track,
  .nx-visit-guide {
    gap: 44px;
  }

  .nx-capability-grid,
  .nx-certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nx-resource-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .nx-resource-card button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .nx-detail-hero {
    min-height: 300px;
    padding: calc(var(--nx-header-height) + 48px) 0 42px;
  }

  .nx-detail-hero::before {
    background: rgba(7, 24, 34, 0.84);
  }

  .nx-detail-hero h1 {
    font-size: 38px;
  }

  .nx-detail-hero > .nx-shell > span {
    margin-top: 16px;
    font-size: 15px;
  }

  .nx-detail-hero ol {
    margin-top: 22px;
  }

  .nx-detail-content {
    padding-bottom: 80px;
  }

  .nx-context-nav {
    width: calc(100% + 32px);
    min-height: 56px;
    margin: 0 -16px 58px;
    padding: 0 8px;
  }

  .nx-context-nav a {
    min-width: auto;
    padding: 0 14px;
    font-size: 13px;
  }

  .nx-context-nav a::after {
    right: 14px;
    left: 14px;
  }

  .nx-message,
  .nx-record-intro,
  .nx-case-intro,
  .nx-resource-intro,
  .nx-faq-intro,
  .nx-solution-detail__intro,
  .nx-module-section,
  .nx-inquiry-layout,
  .nx-company-intro,
  .nx-certificate-intro,
  .nx-location-intro,
  .nx-company-profile,
  .nx-company-track,
  .nx-visit-guide {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .nx-location-intro,
  .nx-legal {
    padding-top: 58px;
  }

  .nx-message__visual {
    position: static;
  }

  .nx-message__copy h2,
  .nx-record-intro h2,
  .nx-case-intro h2,
  .nx-support-lead h2,
  .nx-resource-intro h2,
  .nx-faq-intro h2,
  .nx-inquiry-guide h2,
  .nx-module-section h2,
  .nx-company-intro h2,
  .nx-certificate-intro h2,
  .nx-location-intro h2,
  .nx-section-heading h2,
  .nx-company-track h2,
  .nx-visit-guide h2 {
    font-size: 31px;
  }

  .nx-company-profile__title {
    min-height: 250px;
  }

  .nx-company-profile dl > div:first-child,
  .nx-company-profile dl > div:nth-child(odd) {
    border-left: 0;
  }

  .nx-capability-grid,
  .nx-location-details {
    grid-template-columns: 1fr;
  }

  .nx-capability-grid article,
  .nx-location-details article {
    min-height: auto;
  }

  .nx-company-track {
    padding: 36px 28px;
  }

  .nx-company-track ul {
    grid-template-columns: 1fr;
  }

  .nx-certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nx-location-map iframe {
    height: 380px;
  }

  .nx-map-links {
    align-items: stretch;
    flex-direction: column;
  }

  .nx-map-links .nx-button {
    width: 100%;
  }

  .nx-message__copy > p:not(.nx-overline) {
    font-size: 16px;
  }

  .nx-message__signature {
    align-items: end;
    flex-direction: column;
  }

  .nx-principles,
  .nx-pse-grid,
  .nx-delivery ol {
    grid-template-columns: 1fr;
  }

  .nx-principles article,
  .nx-pse-grid article {
    min-height: auto;
  }

  .nx-filter-toolbar,
  .nx-support-lead,
  .nx-inline-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .nx-segmented,
  .nx-search {
    width: 100%;
  }

  .nx-performance-item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 18px;
    padding: 26px 4px;
  }

  .nx-performance-item time {
    font-size: 24px;
  }

  .nx-solution-detail__intro h2 {
    font-size: 33px;
  }

  .nx-solution-detail__intro figure {
    order: -1;
  }

  .nx-pse-grid {
    margin-top: 58px;
  }

  .nx-module-section {
    margin-top: 70px;
    padding-top: 54px;
  }

  .nx-module-section ol {
    grid-template-columns: 1fr;
  }

  .nx-delivery {
    margin-top: 64px;
    padding: 34px 24px;
  }

  .nx-delivery li {
    min-height: auto;
  }

  .nx-case-study-grid,
  .nx-resource-grid {
    grid-template-columns: 1fr;
  }

  .nx-case-study > p {
    min-height: auto;
  }

  .nx-inline-cta {
    padding: 34px 26px;
  }

  .nx-support-lead > a {
    min-width: 0;
  }

  .nx-notice-row summary {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
  }

  .nx-notice-row time {
    grid-column: 2;
    text-align: left;
  }

  .nx-faq-row summary {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
  }

  .nx-notice-row__body,
  .nx-faq-row > div {
    padding: 24px;
  }

  .nx-inquiry-form {
    padding: 30px 22px;
  }

  .nx-form-grid {
    grid-template-columns: 1fr;
  }

  .nx-form-full {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .nx-detail-hero h1 {
    font-size: 34px;
  }

  .nx-detail-hero ol li:nth-child(2) {
    display: none;
  }

  .nx-principles article,
  .nx-pse-grid article,
  .nx-case-study,
  .nx-resource-card {
    padding: 24px 20px;
  }

  .nx-performance-item {
    grid-template-columns: 1fr;
  }

  .nx-case-study__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .nx-case-study dl div,
  .nx-case-study__detail {
    grid-template-columns: 1fr;
  }

  .nx-case-study__detail {
    gap: 24px;
  }

  .nx-resource-card {
    grid-template-columns: 1fr;
  }

  .nx-resource-card button {
    grid-column: 1;
    width: 100%;
  }

  .nx-company-profile dl,
  .nx-certificate-grid {
    grid-template-columns: 1fr;
  }

  .nx-company-profile dl > div {
    border-left: 0;
  }

  .nx-company-profile__title,
  .nx-company-profile dl > div,
  .nx-capability-grid article,
  .nx-location-details article {
    padding: 24px 20px;
  }

  .nx-system-visual {
    min-height: 0;
    padding: 24px 18px;
  }

  .nx-system-flow article {
    padding: 14px;
  }

  .nx-location-map iframe {
    height: 330px;
  }

  .nx-certificate-dialog {
    padding: 16px;
  }

  .nx-legal-table > div,
  .nx-legal dl > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

/* PC 바탕화면·휴대폰 홈 화면 바로가기 안내 */
.nx-install {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #071b33;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nx-install__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px 38px;
  align-items: center;
}

.nx-install__eyebrow {
  margin: 0 0 7px;
  color: var(--nx-mint);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.nx-install h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 750;
}

.nx-install__copy > p:last-child {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.65;
  word-break: keep-all;
}

.nx-install__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.nx-install__actions .nx-button {
  width: auto;
  min-width: 154px;
  min-height: 46px;
}

.nx-install__help {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nx-install__help[hidden] {
  display: none;
}

.nx-install__help > div {
  display: grid;
  gap: 5px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
}

.nx-install__help strong {
  color: var(--nx-mint);
  font-size: 12px;
}

.nx-install__help span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
  word-break: keep-all;
}

@media (max-width: 760px) {
  .nx-install__inner {
    grid-template-columns: 1fr;
  }

  .nx-install__actions {
    justify-content: flex-start;
  }

  .nx-install__help {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nx-install {
    padding: 28px 0;
  }

  .nx-install h2 {
    font-size: 19px;
  }

  .nx-install__actions,
  .nx-install__actions .nx-button {
    width: 100%;
  }
}
