.main-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image: url("/assets/images/main-hero-korea-malaysia.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(16, 26, 43, 0.82) 0%,
    rgba(16, 26, 43, 0.52) 34%,
    rgba(16, 26, 43, 0.16) 62%,
    rgba(16, 26, 43, 0) 82%
  );
}

.main-hero__inner {
  position: relative;
  z-index: 1;
}

.main-hero__content {
  width: min(920px, 100%);
  margin: 0;
  text-align: left;
}

.main-hero__eyebrow {
  margin: 0 0 18px;
  color: var(--brass-400);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.11em;
}

.main-hero h1.main-hero__title {
  margin: 0;
  max-width: 920px;
  color: #ffffff;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.045em;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: unset;
}

.main-hero__title span {
  display: block;
  white-space: nowrap;
}

.main-hero__description {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.015em;
  word-break: keep-all;
}

.main-hero__actions {
  margin-top: 24px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(244, 197, 66, 0.7);
  color: var(--eeum-gold);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
}

.check-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 10px;
}

.section-lavender { background: var(--surface-soft); }
.section-deep,
.section-network {
  background: var(--surface-soft);
  color: var(--text-primary);
}
.section-deep h2,
.section-deep h3,
.section-network h2,
.section-network h3 { color: var(--navy-950); }
.section-deep .lead,
.section-network .lead { color: var(--text-secondary); }

.service-card .thumb {
  border-radius: 12px;
  overflow: hidden;
  margin: -30px -30px 18px;
  aspect-ratio: 16/10;
  background: var(--ivory-100);
}

.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 { margin-bottom: 8px; }

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

.flow-node {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 16px;
  text-align: center;
  min-width: 0;
}

.flow-node strong { display: block; color: var(--eeum-purple); margin-bottom: 6px; }
.flow-arrow { color: var(--eeum-purple); font-size: 1.4rem; }

.partner-disclaimer {
  margin-top: 24px;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.logo-slot {
  border: 1px dashed #c9b3d2;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

@media (max-width: 1023px) {
  .main-hero {
    min-height: 500px;
    align-items: flex-end;
  }
  .main-hero__inner {
    padding: 48px 0 40px;
  }
}

@media (max-width: 980px) {
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; }
}

@media (max-width: 767px) {
  .main-hero {
    min-height: 480px;
    background-position: 58% center;
    align-items: flex-end;
  }

  .main-hero::before {
    background: linear-gradient(
      90deg,
      rgba(15, 20, 32, 0.86) 0%,
      rgba(15, 20, 32, 0.62) 42%,
      rgba(15, 20, 32, 0.22) 72%,
      rgba(15, 20, 32, 0) 100%
    );
  }

  .main-hero__inner {
    width: calc(100% - 40px);
    padding: 40px 0 32px;
  }

  .main-hero__content {
    width: 100%;
  }

  .main-hero h1.main-hero__title {
    max-width: 100%;
    font-size: clamp(27px, calc((100vw - 40px) / 13.8), 30px);
    line-height: 1.28;
    letter-spacing: -0.04em;
  }

  @media (max-width: 412px) {
    .main-hero h1.main-hero__title {
      font-size: calc((100vw - 40px) / 13.8);
    }
  }

  .main-hero__title span {
    display: block;
    max-width: 100%;
    overflow: visible;
    white-space: nowrap;
  }

  .main-hero__description {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  .main-hero__actions {
    margin-top: 20px;
  }

  .main-hero__actions .btn {
    width: 100%;
    min-height: 48px;
  }
}

.home-section {
  padding-block: 100px;
}

.home-section__heading {
  margin-bottom: 42px;
}

.home-section__eyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--purple-700);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.11em;
  font-family: var(--font-en);
}

.home-section__title {
  margin: 0;
  color: #172033;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.32;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.home-section__description {
  margin: 16px 0 0;
  color: #646b77;
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
}

#home-services {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.home-services {
  background: var(--white);
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.moving-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e3dfd8;
  border-radius: 14px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(20, 25, 38, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.moving-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 25, 38, 0.10);
}

.moving-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3f1ed;
}

.moving-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 0.4s ease;
}

.moving-card:hover .moving-card__media img {
  transform: scale(1.025);
}

.moving-card__content {
  flex: 1;
  padding: 26px;
}

.moving-card__number {
  color: #762687;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.moving-card__title {
  margin: 16px 0 10px;
  color: #172033;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.moving-card__description {
  margin: 0;
  color: #646b77;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.015em;
  word-break: keep-all;
}

.moving-card__link {
  display: block;
  margin-top: 20px;
  color: #762687;
  font-size: 14px;
  font-weight: 700;
}

.home-reasons.home-section {
  background: #f6f3ed;
  padding-block: 88px;
}

.home-reasons .home-section__heading {
  margin-bottom: 44px;
}

.home-reasons .home-section__title {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.home-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.home-reason-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(24, 28, 38, 0.05);
}

.home-reason-card__number {
  display: block;
  color: #c9a45c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--font-en);
}

.home-reason-card__icon {
  width: 28px;
  height: 28px;
  margin: 16px 0 0;
  color: var(--purple-700);
}

.home-reason-card__icon svg {
  width: 28px;
  height: 28px;
}

.home-reason-card__title {
  margin: 18px 0 14px;
  color: var(--navy-900);
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.home-reason-card__description {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}

.home-cta {
  background: #101a2b;
  color: #fff;
  padding-block: 64px;
}

.home-cta__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
}

.home-cta__copy {
  max-width: 720px;
  min-width: 0;
}

.home-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.home-cta p {
  margin: 16px 0 0;
  color: #c8cdd6;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.012em;
  word-break: keep-all;
}

.home-cta__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 12px;
}

.home-cta__btn {
  min-width: 168px;
}

.home-cta__btn--primary {
  background: #762687;
  border-color: #762687;
  color: #ffffff;
}

.home-cta__btn--primary:hover {
  background: #8a339c;
  border-color: #8a339c;
  color: #ffffff;
}

.home-cta__btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.88);
  color: #ffffff;
}

.home-cta__btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.home-services__more {
  margin: 28px 0 0;
}

.home-services__more-text {
  display: block;
  margin: 0 0 2px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.home-services__more-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.home-services__more-link:hover {
  color: var(--purple-700);
}

@media (max-width: 1199px) {
  .home-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-reasons__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1023px) {
  .home-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .home-section {
    padding-block: 64px;
  }

  .home-reasons.home-section {
    padding-block: 64px;
  }

  .home-services__grid,
  .home-reasons__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-services__grid {
    gap: 18px;
  }

  .moving-card__media {
    aspect-ratio: 16 / 9;
  }

  .moving-card__content {
    padding: 22px;
  }

  .home-section__title {
    font-size: 26px;
    line-height: 1.35;
    letter-spacing: -0.03em;
  }

  .home-cta {
    padding-block: 72px;
  }

  .home-cta h2 {
    font-size: 26px;
    line-height: 1.35;
  }

  .home-cta p br {
    display: none;
  }

  .home-cta__inner {
    gap: 24px;
  }

  .home-cta__actions,
  .home-cta__btn {
    width: 100%;
  }
}

/* Company about */
.company-hero {
  position: relative;
  height: 400px;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy-950);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.company-hero__media,
.company-hero__media picture,
.company-hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.company-hero__img {
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.company-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(14, 20, 32, 0.84) 0%,
    rgba(14, 20, 32, 0.68) 28%,
    rgba(14, 20, 32, 0.32) 52%,
    rgba(14, 20, 32, 0.08) 72%,
    rgba(14, 20, 32, 0) 88%
  );
}

.company-hero__inner {
  position: relative;
  z-index: 2;
  padding: 48px 0;
}

.company-hero__content {
  width: min(640px, 100%);
  margin: 0;
  text-align: left;
}

.company-hero__eyebrow {
  margin: 0 0 12px;
  color: var(--brass-400);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.11em;
}

.company-hero h1 {
  color: #fff;
  font-size: clamp(46px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.045em;
  word-break: keep-all;
  margin: 10px 0 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

.company-hero__lead {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.015em;
  word-break: keep-all;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

.company-intro {
  padding: 80px 0 48px;
  background: #ffffff;
}

.company-intro__copy {
  width: 100%;
  max-width: 820px;
}

.company-intro__eyebrow {
  margin: 0 0 18px;
  color: var(--purple-700);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.11em;
}

.company-intro__title {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(38px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.company-intro__lead {
  margin: 20px 0 0;
  color: var(--text-secondary);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.company-map {
  background: #ffffff;
}

.company-map__card {
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
  gap: 48px;
  align-items: center;
  box-sizing: border-box;
  min-height: 360px;
  height: 380px;
  padding: 48px;
  border-radius: 12px;
  background: #f6f3ed;
  overflow: hidden;
}

.company-map__copy {
  min-width: 0;
}

.company-map__eyebrow {
  margin: 0 0 14px;
  color: var(--purple-700);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.company-map__title {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(28px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.company-map__lead {
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}

.company-map__visual {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.company-map__svg {
  display: block;
  width: 100%;
  height: 100%;
}

.company-map__svg--mobile {
  display: none;
}

.company-map__land {
  opacity: 0.13;
}

.company-map__curve {
  vector-effect: non-scaling-stroke;
}

.company-map__label {
  font-family: "Montserrat", "Pretendard", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

@media (prefers-reduced-motion: reduce) {
  .company-map__dot {
    display: none;
  }
}

.company-message {
  padding: 64px 0 88px;
  background: #ffffff;
}

.company-message__inner {
  width: 100%;
  max-width: 820px;
  margin: 0;
  text-align: left;
}

.company-message__body p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: -0.012em;
  color: var(--text-secondary);
  word-break: keep-all;
}

.company-message__body p:last-child {
  margin-bottom: 0;
}

.company-message__signature {
  margin: 30px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.018em;
  color: var(--navy-900);
  text-align: right;
}

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

.about-head {
  max-width: 720px;
  margin: 0 0 36px;
}

.about-head h2,
.about-message__head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.4;
  word-break: keep-all;
}

.about-head__lead {
  margin: 14px 0 0;
  color: var(--eeum-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-message {
  background: #fff;
}

.about-message__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  column-gap: 56px;
  row-gap: 28px;
  align-items: start;
}

.about-message__visual {
  min-width: 0;
}

.about-message__visual .media-frame {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
}

.about-message__visual figcaption,
.field-gallery figcaption {
  margin: 10px 0 0;
  font-size: 0.86rem;
  color: var(--eeum-muted);
  word-break: keep-all;
}

.about-message__copy { min-width: 0; }

.about-message__head { margin-bottom: 22px; }

.about-message__accent {
  margin: 16px 0 0;
  color: var(--eeum-deep);
  font-weight: 700;
  line-height: 1.7;
  word-break: keep-all;
}

.about-vline {
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 22px;
  background: var(--eeum-purple);
}

.about-message__visual .media-frame {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
}

.about-message__body {
  max-width: 640px;
  font-size: 1.02rem;
  line-height: 1.85;
  word-break: keep-all;
}

.about-message__body p { margin: 0 0 1.05em; }
.about-message__body p:last-child { margin-bottom: 0; }

.about-field { background: var(--eeum-soft); }

.field-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 0 0 24px;
}

.field-gallery__frame {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
}

.field-gallery__item { margin: 0; }

.about-sign {
  margin-top: 28px !important;
  padding-top: 18px;
  border-top: 1px solid var(--eeum-line);
  text-align: right;
  color: var(--eeum-deep);
  font-size: 19px;
  line-height: 1.5;
}

.about-sign strong {
  font-weight: 800;
}

.about-highlights {
  background: var(--surface-soft);
  color: var(--text-primary);
  padding: 42px 0;
  border-block: 1px solid var(--border);
}

.about-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 24px;
}

.about-highlight {
  min-width: 0;
  padding: 6px 8px;
}

.about-highlight__en {
  margin: 0 0 8px;
  font-family: var(--font-en);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--eeum-gold);
  white-space: nowrap;
}

.about-highlight__ko {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  word-break: keep-all;
}

.about-philosophy { background: var(--eeum-soft); }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.about-value {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 12px 32px rgba(24, 28, 38, 0.05);
}

.about-value__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--eeum-purple);
  margin-bottom: 16px;
}

.about-value__icon svg {
  width: 28px;
  height: 28px;
}

.about-value__en {
  margin: 0 0 8px;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--eeum-gold-dark);
}

.about-value h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.about-value p:last-child {
  margin: 0;
  color: var(--eeum-muted);
  line-height: 1.75;
  flex: 1;
}

.about-role { background: #fff; }

.about-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-step {
  background: var(--eeum-soft);
  border: 1px solid var(--eeum-line);
  border-radius: 10px;
  padding: 22px 18px;
  min-width: 0;
}

.about-step__num {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--eeum-purple);
}

.about-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  word-break: keep-all;
}

.about-step p {
  margin: 0;
  color: var(--eeum-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  word-break: keep-all;
}

.about-step__arrow {
  display: grid;
  place-items: center;
  color: var(--eeum-purple);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 0 2px;
}

.about-network { background: var(--surface-soft); }

.about-network__lead {
  max-width: 760px;
  margin: 0 0 32px;
  font-size: 1.05rem;
  line-height: 1.85;
  word-break: keep-all;
}

.about-chain {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.35fr auto 1fr;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.about-chain__node {
  min-width: 0;
  text-align: center;
  background: #fff;
  border: 1px solid var(--eeum-line);
  border-radius: 10px;
  padding: 18px 12px;
  font-weight: 700;
  color: var(--eeum-deep);
  word-break: keep-all;
  line-height: 1.4;
}

.about-chain__arrow {
  color: var(--eeum-purple);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.about-network__note {
  max-width: 760px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--eeum-deep);
  word-break: keep-all;
}

.about-info { background: #fff; }

.about-info__table-wrap {
  max-width: 860px;
  border: 1px solid var(--eeum-line);
  background: #fff;
}

.about-info__table {
  width: 100%;
  border-collapse: collapse;
}

.about-info__table th,
.about-info__table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--eeum-line);
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.about-info__table tr:last-child th,
.about-info__table tr:last-child td { border-bottom: 0; }

.about-info__table th {
  width: 180px;
  background: var(--eeum-soft);
  color: var(--eeum-deep);
  font-weight: 700;
  white-space: nowrap;
}

.about-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 88px 0;
  background: var(--eeum-deep);
}

.about-cta__media,
.about-cta__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-cta__img {
  object-fit: cover;
}

.about-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(28, 8, 36, 0.88), rgba(62, 23, 72, 0.78));
}

.about-cta__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  text-align: center;
}

.about-cta h2 {
  color: #fff;
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  word-break: keep-all;
}

.about-cta p {
  margin: 0 0 28px;
  color: #f4eaf8;
  line-height: 1.8;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.about-cta .btn { white-space: normal; }

@media (max-width: 1280px) {
  .about-message__grid { column-gap: 40px; }
  .about-highlight__en { font-size: 0.84rem; }
}

@media (max-width: 1023px) {
  .company-hero { height: 400px; min-height: 400px; }
  .company-hero h1 { font-size: 46px; }
  .about-section { padding: 64px 0; }
  .about-highlights__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 16px; }
  .about-steps,
  .about-chain {
    grid-template-columns: 1fr;
  }
  .about-step__arrow,
  .about-chain__arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
  .about-info__table th { width: 150px; }
}

@media (max-width: 980px) {
  .about-message__grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }
  .about-message__body { max-width: none; }
  .field-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .company-hero {
    height: 400px;
    min-height: 400px;
    background-position: 62% center;
  }
  .company-hero__img { object-position: 62% center; }
  .company-hero__inner { padding: 36px 0; }
  .company-hero__content { width: min(92%, 100%); }
  .company-hero::before {
    background: linear-gradient(
      90deg,
      rgba(14, 20, 32, 0.78) 0%,
      rgba(14, 20, 32, 0.52) 42%,
      rgba(14, 20, 32, 0.18) 72%,
      rgba(14, 20, 32, 0.28) 100%
    );
  }
  .company-hero h1 {
    font-size: 30px;
    line-height: 1.3;
  }
  .company-intro {
    padding: 64px 0 32px;
  }
  .company-intro__title {
    font-size: 28px;
  }
  .company-intro__lead {
    font-size: 15px;
  }
  .company-map__card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    padding: 32px 24px;
    gap: 24px;
  }
  .company-map__title {
    font-size: 28px;
  }
  .company-map__lead {
    font-size: 15px;
  }
  .company-map__visual {
    height: 246px;
  }
  .company-map__svg--desktop {
    display: none;
  }
  .company-map__svg--mobile {
    display: block;
  }
  .company-message {
    padding: 64px 0 72px;
  }
  .company-message__inner {
    width: 100%;
  }
  .company-message__body p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
  }
  .company-message__signature {
    margin-top: 30px;
    text-align: right;
  }
  .about-values { grid-template-columns: 1fr; }
  .about-cta { padding: 64px 0 72px; }
  .about-cta__actions { display: grid; grid-template-columns: 1fr; }
  .about-cta .btn { width: 100%; min-height: 48px; }
}

@media (max-width: 430px) {
  .company-hero { height: 400px; min-height: 400px; }
  .about-highlights__grid { grid-template-columns: 1fr 1fr; }
  .about-highlight__en { white-space: normal; letter-spacing: 0.03em; }
  .about-section { padding: 52px 0; }
}

@media (max-width: 360px) {
  .about-highlights__grid { grid-template-columns: 1fr; }
  .company-hero__lead { font-size: 16px; }
}

/* Inner service pages */
.inner-section { padding: 104px 0; }
.inner-section--soft { background: var(--eeum-soft); }

.inner-kicker {
  margin: 0 0 10px;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--eeum-purple);
}

.inner-head { max-width: 960px; margin: 0 0 32px; }
.inner-head h2,
.inner-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.3;
  word-break: keep-all;
}
.inner-head p {
  margin: 0;
  color: var(--eeum-muted);
  font-size: 16.5px;
  line-height: 1.8;
  letter-spacing: -0.012em;
}

.inner-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 64px;
  align-items: center;
}
.inner-intro.is-flip { grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); }
.inner-intro.is-flip .inner-intro__media { order: -1; }

.inner-intro__text p {
  margin: 0 0 20px;
  font-size: 16.5px;
  line-height: 1.8;
  letter-spacing: -0.012em;
  word-break: keep-all;
}
.inner-intro__text p:last-child { margin-bottom: 0; }
.inner-intro h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.inner-photo {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(16, 26, 43, 0.10);
}
.inner-intro__media figcaption {
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--eeum-muted);
}

.inner-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.inner-check {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
  min-height: 100%;
}
.inner-check__icon {
  width: 28px;
  height: 28px;
  color: var(--eeum-purple);
}
.inner-check__icon svg { width: 28px; height: 28px; }
.inner-check h3 {
  margin: 0 0 6px;
  font-size: 21px;
  letter-spacing: -0.025em;
  word-break: keep-all;
}
.inner-check p {
  margin: 0;
  color: var(--eeum-muted);
  font-size: 15.5px;
  line-height: 1.7;
  word-break: keep-all;
}

.inner-steps {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
}
.inner-step {
  background: var(--eeum-soft);
  border: 1px solid var(--eeum-line);
  border-radius: 10px;
  padding: 20px 16px;
  min-width: 132px;
}
.inner-step__num {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-en);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--eeum-purple);
}
.inner-step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  letter-spacing: -0.025em;
  word-break: keep-all;
}
.inner-step p {
  margin: 0;
  color: var(--eeum-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  word-break: keep-all;
}
.inner-step__arrow {
  display: grid;
  place-items: center;
  color: var(--eeum-purple);
  font-size: 1.25rem;
  font-weight: 700;
}

.inner-note-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
}
.inner-note-list li {
  position: relative;
  background: #fff;
  border: 1px solid var(--eeum-line);
  border-radius: 10px;
  padding: 18px 18px 18px 44px;
  word-break: keep-all;
  line-height: 1.7;
}
.inner-note-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--eeum-purple);
  border-bottom: 2px solid var(--eeum-purple);
  transform: rotate(-45deg);
}
.inner-note-extra {
  margin: 22px 0 0;
  color: var(--eeum-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  word-break: keep-all;
}

.inner-table-wrap { overflow-x: auto; }
.inner-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.inner-table th,
.inner-table td {
  border: 1px solid var(--eeum-line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  word-break: keep-all;
  line-height: 1.65;
}
.inner-table thead th { background: var(--eeum-deep); color: #fff; }
.inner-table tbody th { width: 22%; background: var(--eeum-soft); }

.inner-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.inner-related__card {
  display: block;
  background: #fff;
  border: 1px solid var(--eeum-line);
  border-radius: 12px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(24, 28, 38, 0.05);
}
.inner-related__card:hover { border-color: var(--eeum-purple); text-decoration: none; }
.inner-related__thumb { aspect-ratio: 640 / 420; }
.inner-related__card strong {
  display: block;
  padding: 16px 18px 4px;
  font-size: 1.05rem;
  word-break: keep-all;
}
.inner-related__card span {
  display: block;
  padding: 0 18px 18px;
  color: var(--eeum-muted);
  font-size: 0.92rem;
}

.inner-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 88px 0;
  background: var(--eeum-deep);
}
.inner-cta__media,
.inner-cta__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.inner-cta__img { object-fit: cover; }
.inner-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(28, 8, 36, 0.88), rgba(62, 23, 72, 0.76));
}
.inner-cta__content { position: relative; z-index: 1; max-width: none; width: 100%; }
.inner-cta h2 {
  color: #fff;
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  letter-spacing: -0.03em;
  word-break: keep-all;
}
.inner-cta p { margin: 0 0 28px; color: #f4eaf8; line-height: 1.8; }
.inner-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.inner-cta .btn { white-space: normal; }

@media (max-width: 1024px) {
  .inner-section { padding: 64px 0; }
  .inner-intro,
  .inner-intro.is-flip { grid-template-columns: 1fr; gap: 28px; }
  .inner-intro.is-flip .inner-intro__media { order: 0; }
  .inner-intro__media { order: -1; }
  .inner-checks { grid-template-columns: 1fr 1fr; }
  .inner-steps {
    grid-auto-flow: row;
    grid-auto-columns: 1fr;
  }
  .inner-step__arrow { transform: rotate(90deg); padding: 2px 0; }
  .inner-related { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .inner-section { padding: 64px 0; }
  .inner-head { margin-bottom: 24px; }
  .inner-head h2,
  .inner-intro h2 {
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.35;
  }
  .inner-intro__text p,
  .inner-head p {
    font-size: 15.75px;
    letter-spacing: -0.01em;
    line-height: 1.75;
  }
  .inner-check h3 { font-size: 19px; }
  .inner-checks,
  .inner-note-list { grid-template-columns: 1fr; }
  .inner-cta { padding: 64px 0 72px; }
  .inner-cta__actions { display: grid; grid-template-columns: 1fr; }
  .inner-cta .btn { width: 100%; }
  .inner-table thead { display: none; }
  .inner-table tbody th,
  .inner-table tbody td { display: block; width: 100%; }
  .inner-table tbody th { border-bottom: 0; padding-bottom: 4px; }
}

@media (max-width: 360px) {
  .inner-section { padding: 64px 0; }
}

/* Homepage process steps */
.process-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  position: relative;
  max-width: 100%;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  height: 100%;
  padding: 22px 14px;
  background: #fff;
  border: 1px solid var(--eeum-line);
  border-radius: 14px;
  box-sizing: border-box;
  min-width: 0;
}

.process-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  flex: 0 0 36px;
  border-radius: 50%;
  background: var(--eeum-lavender);
  color: var(--eeum-purple);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.process-step__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.9em;
  margin-top: 15px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.025em;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: normal;
  color: var(--eeum-deep);
}

@media (min-width: 1280px) {
  .process-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translate(50%, -50%);
    z-index: 2;
    color: var(--brass-400);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
  }
}

.process-note {
  margin: 26px 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--eeum-muted);
  background: var(--eeum-lavender);
  border-left: 4px solid var(--eeum-purple);
  padding: 15px 16px;
  border-radius: 0 12px 12px 0;
  word-break: keep-all;
}

.process-more { margin: 18px 0 0; }
.process-more .btn { min-height: 48px; }

@media (max-width: 1279px) {
  .process-track {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
  }
  .process-step { grid-column: span 3; }
  .process-step:nth-child(n + 5) { grid-column: span 4; }
}

@media (max-width: 767px) {
  .process-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 0;
  }
  .process-track::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: var(--eeum-line);
    z-index: 0;
  }
  .process-step,
  .process-step:nth-child(n + 5) {
    grid-column: auto;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    min-height: 72px;
    height: auto;
    padding: 12px 16px 12px 14px;
    gap: 14px;
  }
  .process-step__title {
    margin-top: 0;
    min-height: 0;
    justify-content: flex-start;
    text-align: left;
    font-size: 15px;
  }
  .process-note { font-size: 14px; padding: 14px 14px 14px 16px; }
}

/* Guide: overseas moving process cards */
.process-board {
  width: 100%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.process-card {
  display: grid;
  grid-template-rows: 24px 58px 1fr;
  grid-template-columns: minmax(0, 1fr);
  min-height: 210px;
  min-width: 0;
  padding: 22px 16px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-sizing: border-box;
}

.process-card__number {
  margin: 0;
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: var(--purple-700);
}

.process-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  min-width: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--eeum-deep);
}

.process-card__title-text {
  display: block;
  width: 100%;
  min-width: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

.process-card__break {
  display: block;
}

.process-card__description {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.7;
  color: #6b6270;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.process-page-note {
  margin: 20px 0 0;
  padding: 14px 16px;
}

.process-page-cta {
  margin: 16px 0 0;
}

@media (max-width: 1279px) {
  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-card__break {
    display: inline;
  }

  .process-card__break::before {
    content: " ";
  }
}

@media (max-width: 767px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 0;
    min-height: auto;
    padding: 18px;
    text-align: left;
  }

  .process-card__number {
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--purple-100);
  }

  .process-card__title {
    display: block;
    padding: 0 0 6px;
    font-size: 16px;
    line-height: 1.45;
    justify-content: flex-start;
    text-align: left;
  }

  .process-card__description {
    padding: 0;
    border: 0;
    font-size: 14px;
    line-height: 1.65;
  }
}

.network-page {
  background: #f7f5f1;
  padding: 72px 0 80px;
  overflow-x: hidden;
}

.network-page__intro h2 {
  margin: 0 0 20px;
  color: #172033;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.network-page__intro p {
  max-width: 760px;
  margin: 0;
  color: #4a5160;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.012em;
  word-break: keep-all;
}

.network-page__intro p + p {
  margin-top: 14px;
}

.network-diagram {
  position: relative;
  display: grid;
  grid-template-columns: 118px repeat(5, minmax(0, 1fr)) 118px;
  grid-template-rows: minmax(132px, auto) 8px minmax(132px, auto);
  align-items: center;
  justify-items: center;
  min-height: 400px;
  padding: 80px 0;
  overflow: visible;
}

.network-diagram__svg {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  bottom: 80px;
  width: 100%;
  height: calc(100% - 160px);
  pointer-events: none;
  overflow: visible;
}

.network-diagram__glow {
  opacity: 0.16;
  vector-effect: non-scaling-stroke;
}

.network-diagram__curve {
  vector-effect: non-scaling-stroke;
}

.network-node {
  position: relative;
  z-index: 1;
}

.network-node--korea {
  grid-column: 1;
  grid-row: 1 / -1;
}

.network-node--malaysia {
  grid-column: 7;
  grid-row: 1 / -1;
}

.network-node--n1 { grid-column: 2; grid-row: 1; }
.network-node--n2 { grid-column: 3; grid-row: 3; }
.network-node--n3 { grid-column: 4; grid-row: 1; }
.network-node--n4 { grid-column: 5; grid-row: 3; }
.network-node--n5 { grid-column: 6; grid-row: 1; }

.network-node--country {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  padding: 12px;
  background: #1c1430;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
}

.network-node--country .network-node__sep {
  display: none;
}

.network-node__en {
  font-family: "Montserrat", "Pretendard", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
}

.network-node--country .network-node__ko {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.network-node--work {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 168px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-align: center;
  box-sizing: border-box;
}

.network-node__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-bottom: 8px;
  color: #7f268f;
}

.network-node__icon svg {
  width: 22px;
  height: 22px;
}

.network-node__title {
  display: block;
  color: #172033;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.network-node__text {
  margin: 4px 0 0;
  color: #6b717c;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.network-page__close {
  padding-top: 8px;
  text-align: center;
}

.network-page__close p {
  max-width: 640px;
  margin: 0 auto 22px;
  color: #172033;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .network-diagram {
    grid-template-columns: 96px repeat(5, minmax(0, 1fr)) 96px;
    column-gap: 4px;
  }

  .network-node--country {
    width: 92px;
    height: 92px;
  }

  .network-node--work {
    padding: 10px 8px;
  }

  .network-node__title {
    font-size: 14px;
  }

  .network-node__text {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-diagram__dot {
    display: none;
  }
}

@media (max-width: 767px) {
  .network-page {
    padding: 52px 0 64px;
  }

  .network-page__intro h2 {
    font-size: 26px;
  }

  .network-page__intro p,
  .network-page__close p {
    font-size: 15px;
  }

  .network-diagram {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    min-height: 0;
    padding: 48px 0 56px 28px;
  }

  .network-diagram__svg {
    display: none;
  }

  .network-diagram::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 64px;
    bottom: 72px;
    width: 2px;
    background: linear-gradient(180deg, #7f268f, #c7a45d);
    border-radius: 2px;
  }

  .network-node--korea,
  .network-node--malaysia,
  .network-node--n1,
  .network-node--n2,
  .network-node--n3,
  .network-node--n4,
  .network-node--n5 {
    grid-column: auto;
    grid-row: auto;
  }

  .network-node {
    width: auto;
    max-width: none;
  }

  .network-node::before {
    content: "";
    position: absolute;
    top: 18px;
    left: -22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7f268f;
    box-shadow: 0 0 0 3px #f7f5f1;
  }

  .network-node--malaysia::before {
    background: #c7a45d;
  }

  .network-node--country {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    width: auto;
    height: auto;
    min-height: 0;
    padding: 10px 16px;
    border-radius: 999px;
  }

  .network-node--country .network-node__sep {
    display: inline;
    font-size: 13px;
    line-height: 1;
  }

  .network-node--country .network-node__en {
    font-size: 11px;
  }

  .network-node--country .network-node__ko {
    margin-top: 0;
    font-size: 14px;
  }

  .network-node--korea,
  .network-node--malaysia {
    align-self: flex-start;
  }

  .network-node--n1,
  .network-node--n3,
  .network-node--n5 {
    align-self: flex-end;
    width: min(78%, 280px);
  }

  .network-node--n2,
  .network-node--n4 {
    align-self: flex-start;
    width: min(78%, 280px);
  }

  .network-node--n1::before,
  .network-node--n3::before,
  .network-node--n5::before {
    left: auto;
    right: calc(100% + 10px);
  }

  .network-node--work {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 2px;
    align-items: start;
    max-width: none;
    padding: 0;
    text-align: left;
  }

  .network-node__icon {
    grid-row: 1 / span 2;
    margin-bottom: 0;
    margin-top: 2px;
  }

  .network-node__title {
    font-size: 17px;
    line-height: 1.35;
  }

  .network-node__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
  }
}

.location-page__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: stretch;
}

.location-info__title {
  margin: 0 0 18px;
  color: #172033;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.location-info__name {
  margin: 0;
  color: #172033;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.location-info__en {
  margin: 4px 0 0;
  color: #8a8f97;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.location-list {
  margin: 24px 0 0;
  padding: 0;
}

.location-list__item {
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #ece8ee;
}

.location-list__item:last-child {
  border-bottom: 1px solid #ece8ee;
}

.location-list dt {
  margin: 0 0 6px;
  color: #8a8f97;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.location-list dd {
  margin: 0;
  color: #2b303b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.location-list dd span {
  display: block;
}

.location-list dd a,
.location-list__copy {
  color: inherit;
  font: inherit;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.location-list dd a:hover,
.location-list__copy:hover {
  color: #762687;
  text-decoration: none;
}

.location-map {
  position: relative;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  border-radius: 10px;
  background: #f4f2ee;
}

.location-map iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 899px) {
  .location-page__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .location-map {
    min-height: 280px;
  }
}

.checklist-page {
  width: min(var(--site-width), calc(100% - (var(--site-gutter) * 2)));
  max-width: none;
  margin-inline: auto;
  padding: 72px 0 80px;
}

.checklist-page h2 {
  margin: 0 0 16px;
  color: #172238;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.checklist-page__lead {
  margin: 0 0 38px;
  color: #4a5160;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.012em;
  word-break: keep-all;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 18px;
  align-items: stretch;
  width: 100%;
  margin: 0;
}

.checklist-card {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  min-width: 0;
  min-height: 118px;
  height: 100%;
  margin: 0;
  padding: 24px 26px;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #e7e2e8;
  border-radius: 8px;
  box-shadow: none;
  box-sizing: border-box;
}

.checklist-card__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.checklist-card__check {
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid #762687;
  border-radius: 4px;
  background: #ffffff;
  box-sizing: border-box;
}

.checklist-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.checklist-card__num {
  margin: 0 0 8px;
  color: var(--brass-500);
  font-family: "Montserrat", "Pretendard", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.checklist-card__title {
  display: block;
  margin: 0 0 12px;
  color: #172238;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.checklist-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
  color: #4a5160;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.012em;
  word-break: keep-all;
}

.checklist-card:has(.checklist-card__input:checked) {
  background: #f7f2f8;
  border-color: #e4d6ea;
}

.checklist-card:has(.checklist-card__input:checked) .checklist-card__check {
  background: #762687;
  border-color: #762687;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.2 6.4 11.1 12.5 4.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.checklist-card:focus-within {
  outline: none;
  box-shadow: 0 0 0 3px rgba(118, 38, 135, 0.18);
}

.checklist-page__note {
  margin: 30px 0 0;
  color: #3d4450;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.012em;
  word-break: keep-all;
}

@media (max-width: 767px) {
  .checklist-page {
    width: calc(100% - 40px);
    padding: 56px 0 72px;
  }

  .checklist-page h2 {
    font-size: 29px;
    line-height: 1.35;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .checklist-card {
    min-height: auto;
    padding: 21px 20px;
  }
}

.quote-content {
  padding: 72px 0 88px;
  background: #f8f6f2;
}

.quote-content__container {
  width: min(var(--site-width), calc(100% - (var(--site-gutter) * 2)));
  max-width: none;
  margin-inline: auto;
}

.quote-intro {
  margin-bottom: 38px;
}

.quote-intro h2 {
  margin: 0 0 14px;
  color: #172033;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.quote-intro p {
  margin: 0;
  max-width: 720px;
  color: #646b77;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.015em;
  word-break: keep-all;
}

.quote-contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 36px;
  background: #ffffff;
  border: 1px solid #e5e0e6;
  border-radius: 10px;
}

.contact-method {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 34px;
  border-right: 1px solid #e5e0e6;
}

.contact-method:last-child {
  border-right: 0;
}

@supports (grid-template-rows: subgrid) {
  .quote-contact-panel {
    grid-template-rows: auto auto auto auto;
  }

  .contact-method {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    align-items: start;
  }
}

.contact-method__icon {
  display: flex;
  align-items: center;
  width: 24px;
  height: 24px;
  margin: 0 0 16px;
  color: #c9a45c;
}

.contact-method__icon svg {
  width: 24px;
  height: 24px;
}

.contact-method__title {
  margin: 0 0 10px;
  color: #172033;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.contact-method__value {
  margin: 0 0 22px;
  color: #172033;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.contact-method__value a {
  color: inherit;
  text-decoration: none;
}

.contact-action--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border: 1px solid #491451;
  border-radius: 6px;
  background: #491451;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}

.contact-action--primary:hover {
  background: #3a103f;
  border-color: #3a103f;
  color: #fff;
  text-decoration: none;
}

.contact-action--secondary {
  display: inline-flex;
  align-items: center;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #491451;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
  box-sizing: border-box;
}

.contact-action--secondary:hover {
  color: #3a103f;
}

.quote-preparation {
  padding-top: 30px;
  border-top: 1px solid #ded8df;
}

.quote-preparation h3 {
  margin: 0 0 18px;
  color: #172033;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.quote-preparation-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.quote-preparation-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 20px;
  border-right: 1px solid #ded8df;
}

.quote-preparation-list li:first-child {
  padding-left: 0;
}

.quote-preparation-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.quote-preparation__num {
  color: #c9a45c;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.quote-preparation__label {
  color: #172033;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.quote-preparation__note {
  margin: 0;
  color: #6a6f79;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: -0.015em;
  word-break: keep-all;
}

@media (max-width: 767px) {
  .quote-content {
    padding: 52px 0 68px;
  }

  .quote-content__container {
    width: calc(100% - 40px);
  }

  .quote-intro {
    margin-bottom: 28px;
  }

  .quote-intro h2 {
    font-size: 24px;
  }

  .quote-contact-panel {
    grid-template-columns: 1fr;
    padding: 8px 24px 12px;
  }

  .contact-method {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid #e5e0e6;
  }

  .contact-method:last-child {
    border-bottom: 0;
  }

  @supports (grid-template-rows: subgrid) {
    .quote-contact-panel {
      grid-template-rows: none;
    }

    .contact-method {
      display: flex;
      grid-row: auto;
    }
  }

  .quote-preparation-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .quote-preparation-list li,
  .quote-preparation-list li:first-child,
  .quote-preparation-list li:last-child {
    padding: 0;
    border-right: 0;
  }
}

.service-index__lead {
  margin: 0 0 28px;
  max-width: 760px;
  color: #646b77;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.012em;
  word-break: keep-all;
}

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

.service-index-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #e5e0e6;
  border-radius: 10px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.service-index-card:hover {
  text-decoration: none;
  border-color: #d5c8da;
}

.service-index-card__title {
  margin: 0 0 8px;
  color: #172033;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.service-index-card__text {
  margin: 0 0 16px;
  color: #646b77;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: -0.012em;
  word-break: keep-all;
}

.service-index-card__link {
  margin-top: auto;
  color: #762687;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .service-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .service-index__grid {
    grid-template-columns: 1fr;
  }
}
