/* ==========================================================================
   정원엔시스 메인 페이지 리뉴얼
   ========================================================================== */

.ze-main { font-family: 'Pretendard', sans-serif; color: #181924; overflow-x: hidden; font-size: 15px; }
.ze-main * { box-sizing: border-box; }
.ze-main img { max-width: none; }

/* ==========================================================================
   헤더 / 전체메뉴 (Figma: Component > header, main-menu)
   ========================================================================== */
.ze-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 500;
  transition: background .25s ease, box-shadow .25s ease;
}

.ze-site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .32) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
  transition: opacity .25s ease;
  opacity: 1;
}

.ze-site-header.scrolled,
.ze-site-header.menu-open {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.ze-site-header.scrolled::before,
.ze-site-header.menu-open::before {
  opacity: 0;
}

/* 전체메뉴 open: header blends into the dark modal instead of turning white,
   regardless of scroll position */
.ze-site-header.mainmenu-open {
  background: transparent;
  box-shadow: none;
}
.ze-site-header.mainmenu-open::before {
  opacity: 0;
}

.ze-header-inner {
  position: relative;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.ze-header-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.ze-header-logo img {
  height: 26px;
  width: auto;
  display: block;
}

.ze-header-logo .icon-dark {
  display: none;
}

.ze-site-header.scrolled .ze-header-logo .icon-light,
.ze-site-header.menu-open .ze-header-logo .icon-light {
  display: none;
}

.ze-site-header.scrolled .ze-header-logo .icon-dark,
.ze-site-header.menu-open .ze-header-logo .icon-dark {
  display: block;
}

.ze-site-header.mainmenu-open .ze-header-logo .icon-light {
  display: block;
}
.ze-site-header.mainmenu-open .ze-header-logo .icon-dark {
  display: none;
}

/* 전체메뉴 open: 로고는 header(z-index:500)의 자식이라 z-index만으로는
   전체메뉴(z-index:490) 뒤로 보낼 수 없으므로 아예 숨겨서 뒤로 간 것과
   같은 효과를 낸다 */
.ze-site-header.mainmenu-open .ze-header-logo {
  visibility: hidden;
}

.ze-header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.ze-nav-primary,
.ze-nav-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.ze-nav-primary {
  gap: 35px;
}

.ze-nav-pills {
  gap: 0;
  background: rgba(255, 255, 255, .3);
  border-radius: 50px;
  height: 38px;
  padding: 0 40px;
  transition: background .25s ease;
}

.ze-site-header.scrolled .ze-nav-pills,
.ze-site-header.menu-open .ze-nav-pills {
  background: #f6f8fa;
}

.ze-nav-pills li+li::before {
  content: '';
}

.ze-nav-pills li {
  position: relative;
}

.ze-nav-pills li+li {
  margin-left: 50px;
}

.ze-nav-primary>li,
.ze-nav-pills>li {
  position: relative;
}

.ze-nav-primary>li>a,
.ze-nav-pills>li>a {
  display: block;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.18px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  padding: 30px 0;
  transition: color .2s ease;
}

.ze-site-header.scrolled .ze-nav-primary>li>a,
.ze-site-header.scrolled .ze-nav-pills>li>a,
.ze-site-header.menu-open .ze-nav-primary>li>a,
.ze-site-header.menu-open .ze-nav-pills>li>a {
  color: #181924;
}

.ze-nav-primary>li:hover>a,
.ze-nav-pills>li:hover>a,
.ze-nav-primary>li.active>a,
.ze-nav-pills>li.active>a {
  color: #2c66cf;
}

.ze-header-hamburger {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-left: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 20;
  outline: none;
}

.ze-header-hamburger:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.ze-header-hamburger .bar {
  position: absolute;
  left: 2px;
  width: 28px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transition: transform .3s ease, opacity .3s ease, background .25s ease, width .3s ease, top .3s ease;
}
.ze-header-hamburger .bar1 { top: 6px; }
.ze-header-hamburger .bar2 { top: 15px; }
.ze-header-hamburger .bar3 { top: 24px; }

.ze-site-header.scrolled .ze-header-hamburger .bar,
.ze-site-header.menu-open .ze-header-hamburger .bar {
  background: #181924;
}

/* 전체메뉴 open: header shows only logo + close button, hamburger morphs into X */
.ze-site-header.mainmenu-open .ze-header-inner {
  justify-content: space-between;
}
.ze-site-header.mainmenu-open .ze-header-nav {
  display: none;
}
.ze-site-header.mainmenu-open .ze-header-hamburger .bar {
  background: #fff;
}
.ze-site-header.mainmenu-open .ze-header-hamburger .bar1 {
  top: 15px;
  transform: rotate(45deg);
}
.ze-site-header.mainmenu-open .ze-header-hamburger .bar2 {
  opacity: 0;
}
.ze-site-header.mainmenu-open .ze-header-hamburger .bar3 {
  top: 15px;
  width: 28px;
  transform: rotate(-45deg);
}

/* dropdown panel */
.ze-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  /* JS overrides left with a fixed px value once open */
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.ze-nav-primary>li:hover .ze-dropdown,
.ze-nav-pills>li:hover .ze-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.ze-dd-group {
  margin-bottom: 6px;
}

.ze-dd-group:last-child {
  margin-bottom: 0;
}

.ze-dd-brands {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
}

.ze-dd-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 15px;
  border-radius: 4px;
  min-width: 120px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.16px;
  color: #181924;
  text-decoration: none;
  white-space: nowrap;
}

.ze-dd-brand:hover,
.ze-dd-brand.active {
  background: #f6f8fa;
}

.ze-dd-brand img {
  width: 6px;
  height: auto;
  flex-shrink: 0;
}

.ze-dd-divider {
  align-self: stretch;
  width: 0;
  margin-left: 0;
  background: #dee2e9;
  overflow: hidden;
  transition: width .3s ease, margin-left .3s ease;
}

.ze-dd-subpanel {
  display: flex;
  flex-direction: column;
  width: 0;
  max-width: 0;
  min-width: 0;
  overflow: hidden;
  transition: max-width .3s ease;
}

.ze-dropdown.has-selection .ze-dd-divider {
  width: 1px;
  margin-left: 15px;
}

.ze-dropdown.has-selection .ze-dd-subpanel {
  width: auto;
  max-width: 220px;
}

.ze-dd-sub {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px 15px;
  white-space: nowrap;
}

.ze-dd-sub.active {
  display: flex;
}

.ze-dd-sub a {
  display: block;
  padding: 8px 0;
  font-weight: 500;
  font-size: 14px;
  color: #606060;
  text-decoration: none;
  white-space: nowrap;
}

.ze-dd-sub a:hover {
  color: #2c66cf;
}

@media (max-width: 1400px) {
  .ze-nav-primary,
  .ze-nav-pills {
    display: none;
  }

  .ze-header-inner {
    justify-content: space-between;
    padding: 0 20px;
  }
}
@media (max-width: 1280px) {
}

.ze-mainmenu-backdrop {
  display: none;
}

/* ===== 전체보기 (main-menu) ===== */
.ze-mainmenu {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(8, 10, 16, .85);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  padding-top: 133px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-32px);
  transition: opacity .5s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1), visibility .55s;
  overflow-y: auto;
}

.ze-mainmenu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body.ze-menu-locked {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

.ze-mm-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px 0px;
}

.ze-mm-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
}

.ze-mm-col {
  flex: 0 0 148px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.ze-mainmenu.open .ze-mm-col {
  opacity: 1;
  transform: translateY(0);
}
.ze-mm-col:nth-child(1) { transition-delay: .15s; }
.ze-mm-col:nth-child(2) { transition-delay: .2s; }
.ze-mm-col:nth-child(3) { transition-delay: .25s; }
.ze-mm-col:nth-child(4) { transition-delay: .3s; }
.ze-mm-col:nth-child(5) { transition-delay: .35s; }
.ze-mm-col:nth-child(6) { transition-delay: .4s; }
.ze-mm-col:nth-child(7) { transition-delay: .45s; }
.ze-mm-col:nth-child(8) { transition-delay: .5s; }
.ze-mm-col:nth-child(9) { transition-delay: .55s; }

.ze-mm-heading {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.56px;
  color: #fff;
}

.ze-mm-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.ze-mm-group {
  width: 100%;
}

.ze-mm-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 5px 0;
  border-bottom: 1px solid rgba(222, 226, 233, .2);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.27px;
  color: #fff;
  text-decoration: none;
}

.ze-mm-item:hover {
  color: #6fa2ff;
}

.ze-mm-item img {
  width: 8px;
  height: auto;
  flex-shrink: 0;
  transform: rotate(90deg);
}

.ze-mm-sub {
  display: flex;
  flex-direction: column;
  width: 100%;
  opacity: .6;
}

.ze-mm-sub a {
  display: block;
  padding: 4px 0;
  opacity: .8;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0px;
  color: #fff;
  text-decoration: none;
}

.ze-mm-sub a:hover {
  opacity: 1;
  color: #6fa2ff;
}

/* ===== 전체메뉴: 반응형(<=1400px)에서는 우측 슬라이드 + 1/2/3depth 아코디언 ===== */
@media (max-width: 1400px) {
  .ze-header-logo{
    z-index: 10;
  }
  .ze-mainmenu {
    left: auto;
    width: min(420px, 88vw);
    padding-top: 100px;
    background: #0b0f1a;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 1;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.22,1,.36,1), visibility .4s;
    box-shadow: -12px 0 40px rgba(0,0,0,.45);
  }
  .ze-mainmenu.open {
    transform: translateX(0);
  }

  .ze-mainmenu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 489;
    background: rgba(5, 7, 12, .6);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
  }
  .ze-mainmenu-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .ze-mm-inner { max-width: none; padding: 0 24px 60px; }
  .ze-mm-grid { display: block; }

  .ze-mm-col {
    flex: none;
    display: block;
    gap: 0;
    opacity: 1;
    transform: none;
    transition: none;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }
  .ze-mm-col:nth-child(n) { transition-delay: 0s; }

  .ze-mm-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0;
    cursor: pointer;
    user-select: none;
  }
  .ze-mm-heading::after {
    content: '';
    width: 9px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform .3s ease;
    flex-shrink: 0;
  }
  .ze-mm-col.open .ze-mm-heading::after { transform: rotate(-135deg); }

  .ze-mm-list {
    max-height: 0;
    overflow: hidden;
    gap: 0;
    transition: max-height .35s ease;
  }

  .ze-mm-item { cursor: pointer; }
  .ze-mm-group:has(> .ze-mm-sub) > .ze-mm-item img { display: none; }
  .ze-mm-group:has(> .ze-mm-sub) > .ze-mm-item::after {
    content: '';
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background-image: url(../images/main/header-chevron-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(90deg);
    transition: transform .3s ease;
  }
  .ze-mm-group.open > .ze-mm-item::after { transform: rotate(-90deg); }

  .ze-mm-sub {
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    transition: max-height .3s ease;
  }
  .ze-mm-sub a { padding: 8px 0 8px 16px; }
}

/* ==========================================================================
   푸터
   ========================================================================== */
.ze-footer {
  background: #0b0f14;
  padding: 72px 20px 48px;
}

.ze-footer * {
  box-sizing: border-box;
}

.ze-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.ze-footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.ze-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 388px;
  max-width: 100%;
}

.ze-footer-brand img {
  height: 26px;
  width: auto;
}

.ze-footer-privacy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 20px;
  border-radius: 50px;
  background: #fff;
  color: #0b0f14;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.24px;
  text-decoration: none;
}

.ze-footer-info {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ze-footer-info .label {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28px;
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

.ze-footer-info .addr {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.24px;
  color: #fff;
  margin: 0;
}

.ze-footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.ze-footer-meta span.item {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.24px;
  color: #fff;
}

.ze-footer-meta span.item a {
  color: #fff;
  text-decoration: none;
}

.ze-footer-meta span.sep {
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, .3);
}

.ze-footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 40px 0 20px;
}

.ze-footer-copyright {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.195px;
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

@media (max-width: 900px) {
  .ze-footer { padding: 56px 20px 36px; }
  .ze-footer-content { gap: 28px; }
  .ze-footer-info { gap: 16px; }
  .ze-footer-info .addr,
  .ze-footer-meta span.item { font-size: 15px; }
  .ze-footer-divider { margin: 32px 0 16px; }
}
@media (max-width:700px) {
  .ze-footer-content {
    flex-direction: column;
  }
  .ze-footer-brand { width: 100%; gap: 12px; }
  .ze-footer-brand img { height: 22px; }
  .ze-footer-privacy { height: 32px; padding: 0 16px; font-size: 14px; }
  .ze-footer-info .label { font-size: 13px; }
  .ze-footer-info .addr,
  .ze-footer-meta span.item { font-size: 14px; }
  .ze-footer-meta { gap: 10px; }
  .ze-footer-copyright { font-size: 12px; }
}
@media (max-width: 480px) {
  .ze-footer { padding: 40px 16px 28px; }
  .ze-footer-brand img { height: 20px; }
  .ze-footer-info .addr,
  .ze-footer-meta span.item { font-size: 13px; }
  .ze-footer-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ze-footer-meta span.sep { display: none; }
  .ze-footer-divider { margin: 24px 0 14px; }
}

/* ===== 헤더: 타블렛 이하 높이 축소 ===== */
@media (max-width: 900px) {
  .ze-site-header { height: 72px; }
  .ze-mainmenu { padding-top: 72px; }
  .ze-header-logo img { height: 22px; }
}

@media (max-width: 480px) {
  .ze-header-logo img { height: 20px; }
}

/* ==========================================================================
   콘텐츠 페이지 공용 스킨 (view.skin.php에서 사용)
   ========================================================================== */

.visual-wrapper {
    overflow: hidden;
    height: 660px;
    margin-bottom: 80px;
    position: relative;
    background-color: #173473;
}
.visual-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(19, 21, 23, 0.50);
    z-index: 1;
}
.sub-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.sub-visual.visual-intro1 {
    background-image: url('../images/company/hero-building-bg.png');
    background-position: center 40%;
}
.visual-img {
    transform: scale(1.2);
    transition: transform 3s ease-out;
}
.visual-img.active {
    transform: scale(1.0);
}
.tit-sub-visu {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 150rem;
    margin: 0 auto;
    padding: 0 5rem;
    box-sizing: border-box;
    text-align: center;
    transform: translateY(-40%);
    opacity: 0;
    color: #fff;
    z-index: 20;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.tit-sub-visu.active {
    opacity: 1;
    transform: translateY(-50%);
}
.tit-sub-visu .h-tit {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 68px;
    letter-spacing: -0.68px;
    line-height: 1.1;
}
.tit-sub-visu .h-desc {
    margin: 0;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 1.1;
}
.nav-sub-visu {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 40px;
    display: flex;
    justify-content: center;
    height: 80px;
    margin: 0;
    padding: 0;
    z-index: 20;
}
.nav-sub-visu .frame-1600 {
    width: fit-content;
    max-width: calc(100% - 40px);
    height: 100%;
    padding: 7px 15px;
    margin: 0;
    border-top: none;
    box-sizing: border-box;
    border-radius: 100px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    overflow: hidden;
}
.nav-sub-visu ul.subnavi3 {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-sub-visu ul.subnavi3 li {
    flex: 0 0 230px;
    max-width: 233px;
    height: 100%;
    border: none;
    border-radius: 50px;
    background: none;
    color: #fff;
    transition: background .2s ease;
}
.nav-sub-visu ul.subnavi3 li.on {
    background: #069f7c;
    color: #fff;
}
.nav-sub-visu ul.subnavi3 li:not(.on):hover {
    background: rgba(255,255,255,.15);
    color: #fff;
}
.nav-sub-visu ul.subnavi3 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.4px;
    color: inherit;
    white-space: nowrap;
}
.layout_default {max-width:1400px; width:100%; margin:0 auto; padding: 0 0px 150px; box-sizing: border-box;}

.page-title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e9;
    margin-bottom: 100px;
}
.page-title-bar .page-title {
    margin: 0;
    font-weight: 800;
    font-size: 46px;
    line-height: 1.3;
    letter-spacing: -1px;
    color: #181924;
    white-space: nowrap;
}
.page-title-bar .page-title-logo {
    display: block;
    height: 71px;
    width: auto;
}
.page-title-bar .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    background: #fff;
}
.page-title-bar .breadcrumb a,
.page-title-bar .breadcrumb span {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.16px;
    color: #606060;
    text-decoration: none;
    white-space: nowrap;
}
.page-title-bar .breadcrumb img.crumb-icon {
    width: 13px;
    height: 14px;
    margin-right: 6px;
}
.page-title-bar .breadcrumb img.crumb-chevron {
    width: 6px;
    height: 10px;
}
.page-title-bar .breadcrumb .crumb-current {
    font-weight: 700;
    color: #181924;
}
@media (max-width: 1280px) {
  .tit-sub-visu{max-width: 100%;}
  .nav-sub-visu{max-width: 100%;}
}

@media (max-width: 900px) {
    .visual-wrapper { height: 480px; margin-bottom: 60px; }
    .tit-sub-visu .h-tit { font-size: 48px; }
    .tit-sub-visu .h-desc { font-size: 17px; }
    .nav-sub-visu ul.subnavi3 li { flex-basis: 180px; max-width: 190px; }
    .nav-sub-visu ul.subnavi3 a { font-size: 17px; }
    .page-title-bar { margin-bottom: 70px; }
    .page-title-bar .page-title { font-size: 36px; }
    .page-title-bar .page-title-logo { height: 38px; }
}

@media (max-width: 768px) {
    .page-title-bar { flex-wrap: wrap;margin-bottom: 50px; }
    .page-title-bar .page-title { font-size: 28px; white-space: normal; }
    .page-title-bar .page-title-logo { height: 30px; }
    .page-title-bar .breadcrumb { display: none; }
}

/* [추가] 모바일 대응 그리드 및 타이틀 */
@media (max-width: 768px) {
    .visual-wrapper { height: 360px; margin-bottom: 40px; }
    .tit-sub-visu { padding: 0 2rem; top: 50%; }
    .tit-sub-visu .h-tit { font-size: 32px; }
    .tit-sub-visu .h-desc { font-size: 14px; }
    .nav-sub-visu {
        left: 0;
        bottom: 16px;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        overflow: visible;
        padding: 0 1.5rem;
    }
    .nav-sub-visu .frame-1600 { width: 100%; height: auto; padding: 0; max-width: 100%; background: none; backdrop-filter: none; -webkit-backdrop-filter: none; border-radius: 0; overflow: visible; }
    .nav-sub-visu ul.subnavi3 {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        height: auto;
        gap: 10px;
        padding: 4px 0;
    }
    .nav-sub-visu ul.subnavi3 li { flex: 0 0 auto; height: auto; border-radius: 50px; background: rgba(255,255,255,.1); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
    .nav-sub-visu ul.subnavi3 li.on { background: #069f7c; }
    .nav-sub-visu ul.subnavi3 a { font-size: 14px; height: auto; padding: 10px 18px; white-space: nowrap; }
    .row:not([class*="row-cols"]) { display: block !important; margin: 0 0 40px!important; }
    .col-6, .col-12 { width: 100% !important; padding: 0 !important; margin-bottom: 40px !important; }
    .subtitle li:first-child { font-size: 3.2em !important; }
    .layout_default{padding: 0 0px 10px;}
}

@media (max-width: 480px) {
    .visual-wrapper { height: 300px; margin-bottom: 30px; }
    .tit-sub-visu { padding: 0 1.5rem; }
    .tit-sub-visu .h-tit { font-size: 26px; }
    .tit-sub-visu .h-desc { font-size: 13px; }
    .nav-sub-visu ul.subnavi3 a { font-size: 13px; padding: 8px 14px; }
    .page-title-bar { margin-bottom: 36px; }
    .page-title-bar .page-title { font-size: 24px; }
    .page-title-bar .page-title-logo { height: 26px; }
}

@media (max-width: 1400px) {
    .layout_default { width: calc(100% - 40px); margin-left: auto; margin-right: auto; padding-left: 0; padding-right: 0; }
}

.progress{ background: transparent !important; height: auto !important;}

/* ==========================================================================
   공통 모달 (개인정보 처리방침 등)
   ========================================================================== */
.ze-modal { position: fixed; inset: 0; z-index: 9999; display: none; }
.ze-modal.is-open { display: block; }
.ze-modal-overlay { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.6); }
.ze-modal-dialog { position: relative; width: 90%; max-width: 800px; max-height: 80vh; margin: 6vh auto 0; background: #fff; border-radius: 12px; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3); }
.ze-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 32px; border-bottom: 1px solid #e6e9ed; flex-shrink: 0; }
.ze-modal-header h3 { font-size: 22px; font-weight: 800; color: #181924; margin: 0; }
.ze-modal-close { background: none; border: none; font-size: 28px; line-height: 1; color: #8a92a3; cursor: pointer; padding: 4px 8px; }
.ze-modal-close:hover { color: #181924; }
.ze-modal-body { padding: 24px 32px 32px; overflow-y: auto; color: #475569; font-size: 14px; line-height: 1.7; word-break: keep-all; }
.ze-modal-body h4 { font-size: 16px; font-weight: 700; color: #181924; margin: 28px 0 10px; }
.ze-modal-body h4:first-child { margin-top: 0; }
.ze-modal-body p { margin: 0 0 12px; }
.ze-modal-body ul { margin: 0 0 12px; padding-left: 20px; }
.ze-modal-body li { margin-bottom: 6px; }
.ze-modal-body .ze-modal-note { color: #8a92a3; font-size: 13px; margin-top: 20px; }

@media (max-width: 600px) {
    .ze-modal-dialog { width: 94%; max-height: 86vh; margin-top: 4vh; }
    .ze-modal-header { padding: 18px 20px; }
    .ze-modal-body { padding: 16px 20px 24px; }
}

/* ==========================================================================
   ZENSYS 메인 페이지 (젠시스-main, Figma node 862:39635)
   ========================================================================== */
.zs-learn-more { display: inline-flex; align-items: center; gap: 16px; padding: 12px 20px 12px 24px; background: #fff; border: 1px solid #069f7c; border-radius: 30px; color: #069f7c; font-weight: 700; font-size: 14px; text-decoration: none; }
.zs-learn-more img { width: 15px; height: 14px; }
.zs-learn-more.on-dark { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }

/* ----- Hero ----- */
.zs-hero { position: relative; height: 1000px; overflow: hidden; }
.zs-hero-swiper, .zs-hero-swiper .swiper-wrapper { height: 100%; }
.zs-hero-swiper .swiper-slide { position: relative; height: 100%; }
.zs-hero-bg { position: absolute; inset: 0; }
.zs-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.zs-hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.zs-hero-txt { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; max-width: 90%; text-align: center; z-index: 2; }
.zs-hero-tit { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.5); }
.zs-hero-tit h1 { margin: 0; color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 70px; letter-spacing: -2.1px; line-height: 1.2; }
.zs-hero-desc { margin: 0; color: #fff; font-size: 22px; line-height: 1.5; letter-spacing: -0.44px; }
.zs-hero-nav { position: absolute; left: 50%; bottom: 60px; transform: translateX(-50%); display: flex; align-items: center; gap: 31px; z-index: 3; }
.zs-hero-nav .arrows { display: flex; align-items: center; gap: 10px; }
.zs-hero-nav .arrows button { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.zs-hero-nav .arrows button:disabled { opacity: .4; cursor: default; }
.zs-hero-nav .arrows img { width: auto; height: auto; }
.zs-hero-progress { display: flex; align-items: center; gap: 35px; }
.zs-hero-progress .bar { position: relative; width: 120px; height: 2px; background: #b6cbdd; }
.zs-hero-progress .bar > span { position: absolute; left: 0; top: 0; height: 2px; width: 30px; background: #fff; transition: transform .4s ease; }
.zs-hero-progress .count { margin: 0; color: #fff; font-weight: 700; font-size: 18px; letter-spacing: -0.36px; white-space: nowrap; }

/* ----- Company Info ----- */
.zs-company { position: relative; height: 1000px; padding: 192px 20px 0; box-sizing: border-box; overflow: hidden; background: #fff; }
.zs-company-bg { position: absolute; inset: 0; }
.zs-company-bg img { width: 100%; height: 100%; object-fit: cover; animation: zsBgZoom 20s ease-in-out infinite alternate; transform-origin: center; }
@keyframes zsBgZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.zs-company-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, #fff 0%, rgba(255,255,255,0) 22%); }
.zs-company-inner { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; }
.zs-company-inner .zs-heading { margin: 0 0 50px; }
.zs-company-body { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.zs-company-body p { margin: 0; color: #27272d; font-size: 24px; line-height: 1.4; letter-spacing: -0.48px; word-break: keep-all; }

.zs-heading { margin: 0; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 54px; color: #181924; }
.zs-heading .accent { color: #069f7c; }
.zs-heading.on-dark { color: #fff; text-align: center; }
.zs-heading.on-dark .accent { color: rgba(255,255,255,.5); }
.zs-heading.on-light-muted .accent { color: #069f7c; }

/* ----- Product Solution ----- */
.zs-product-solution { position: relative; height: 1085px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; padding: 0 20px; overflow: hidden; background: linear-gradient(180deg, #54bebc, #31a78a); }
.zs-product-solution-inner { max-width: 1400px; width: 100%; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 100px; }
.zs-product-solution-head { display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; max-width: 935px; }
.zs-product-solution-head .zs-heading { white-space: nowrap; }
.zs-product-solution-desc { margin: 0; color: #fff; font-size: 18px; line-height: 1.5; letter-spacing: -0.36px; }
.zs-product-grid { display: flex; flex-direction: column; align-items: center; gap: 50px; width: 100%; }
.zs-product-swiper { width: 100%; }
.zs-product-card { display: flex; flex-direction: column; align-items: center; gap: 20px; min-width: 0; height: auto; }
.zs-product-card .thumb { width: 100%; height: 325px; overflow: hidden; border-radius: 10px; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.zs-product-card .thumb img { width: 100%; height: 100%; object-fit: contain; }
.zs-product-card p { margin: 0; color: #fff; font-weight: 800; font-size: 30px; text-align: center; letter-spacing: -0.6px; }
.zs-pagination { height: 16px; }
.zs-pagination img { height: 100%; }
.zs-product-pagination { display: flex; align-items: center; justify-content: center; }
.zs-product-pagination .swiper-pagination-bullet { width: 16px; height: 16px; background: #fff; opacity: 1; margin: 0 5px; cursor: pointer; }
.zs-product-pagination .swiper-pagination-bullet-active { background: #007050; }

/* ----- News & Notice ----- */
.zs-news { padding: 160px 20px; background: #f1f4f8; }
.zs-news-inner { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 100px; }
.zs-news-grid { display: flex; flex-direction: column; align-items: center; gap: 50px; width: 100%; }
.zs-news-swiper { width: 100%; overflow: hidden; }
.zs-news .swiper-wrapper { align-items: stretch; }
.zs-news-card { display: flex; flex-direction: column; height: 508px; background: #fff; border-radius: 10px; overflow: hidden; text-decoration: none; }
.zs-news-card .photo { height: 321px; flex-shrink: 0; overflow: hidden; background: #e9edf2; }
.zs-news-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.zs-news-card .txt { height: 187px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: space-between; gap: 10px; padding: 20px; box-sizing: border-box; }
.zs-news-card .title { margin: 0; color: #181924; font-weight: 500; font-size: 20px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.zs-news-card .date { margin: 0; color: #898a8f; font-size: 18px; line-height: 1.6; }
.zs-news-pagination { display: flex; align-items: center; justify-content: center; }
.zs-news-pagination .swiper-pagination-bullet { width: 16px; height: 16px; background: #c3c8d2; opacity: 1; margin: 0 5px; cursor: pointer; }
.zs-news-pagination .swiper-pagination-bullet-active { background: #007050; }

@media (max-width: 1200px) {
  .zs-hero-tit h1 { font-size: 48px; }
  .zs-hero-desc { font-size: 19px; }
  .zs-heading { font-size: 40px; }
  .zs-company { padding-top: 140px; }
  .zs-company-body p { font-size: 20px; }
  .zs-product-solution-desc { font-size: 17px; }
  .zs-product-card p { font-size: 26px; }
  .zs-news-card .title { font-size: 19px; }
}
@media (max-width: 900px) {
  .zs-hero { height: 820px; }
  .zs-hero-tit h1 { font-size: 40px; }
  .zs-hero-desc { font-size: 17px; }
  .zs-hero-nav { gap: 20px; }
  .zs-company { height: auto; padding: 100px 20px; }
  .zs-company-inner .zs-heading { margin-bottom: 30px; }
  .zs-company-body { gap: 16px; }
  .zs-company-body p { font-size: 18px; }
  .zs-product-solution { height: auto; padding: 100px 20px; }
  .zs-product-solution-inner { gap: 60px; }
  .zs-product-solution-head { gap: 20px; }
  .zs-product-solution-head .zs-heading { white-space: normal; }
  .zs-product-solution-desc { font-size: 16px; }
  .zs-product-card .thumb { height: 260px; }
  .zs-product-card p { font-size: 22px; }
  .zs-news { padding: 100px 20px; }
  .zs-news-inner { gap: 60px; }
  .zs-news-card { height: auto; }
  .zs-news-card .photo { height: 240px; }
  .zs-news-card .txt { height: auto; padding: 16px; }
  .zs-news-card .title { font-size: 18px; }
  .zs-news-card .date { font-size: 15px; }
  .zs-heading { font-size: 34px; }
}
@media (max-width: 700px) {
  .zs-hero { height: 700px; }
  .zs-hero-tit h1 { font-size: 34px; }
  .zs-hero-desc { font-size: 16px; }
  .zs-hero-nav { gap: 16px; max-width: calc(100% - 40px); }
  .zs-hero-progress { gap: 16px; }
  .zs-hero-progress .bar { width: 70px; }
  .zs-hero-progress .count { font-size: 15px; }
  .zs-learn-more { padding: 10px 18px 10px 20px; gap: 12px; font-size: 13px; }
  .zs-company { height: auto; padding: 80px 20px; }
  .zs-company-body p { font-size: 16px; }
  .zs-product-solution { height: auto; padding: 80px 20px; }
  .zs-product-solution-inner { gap: 50px; }
  .zs-product-solution-head { gap: 16px; }
  .zs-product-solution-head .zs-heading { white-space: normal; }
  .zs-product-solution-desc { font-size: 15px; }
  .zs-product-card .thumb { height: 220px; }
  .zs-product-card p { font-size: 20px; }
  .zs-news { padding: 80px 20px; }
  .zs-news-inner { gap: 50px; }
  .zs-news-card .photo { height: 200px; }
  .zs-news-card .title { font-size: 17px; }
  .zs-news-card .date { font-size: 14px; }
  .zs-heading { font-size: 30px; }
}
@media (max-width: 480px) {
  .zs-hero { height: 560px; }
  .zs-hero-tit h1 { font-size: 26px; }
  .zs-hero-tit { padding-bottom: 14px; }
  .zs-hero-txt { gap: 14px; }
  .zs-hero-desc { font-size: 14px; }
  .zs-hero-nav { bottom: 30px; gap: 12px; }
  .zs-learn-more { padding: 9px 16px 9px 18px; font-size: 12px; }
  .zs-heading { font-size: 26px; }
  .zs-company { padding: 60px 16px; }
  .zs-company-inner .zs-heading { margin-bottom: 20px; }
  .zs-company-body p { font-size: 15px; }
  .zs-product-solution { padding: 60px 16px; }
  .zs-product-solution-desc { font-size: 14px; }
  .zs-product-card .thumb { height: 180px; }
  .zs-product-card p { font-size: 18px; }
  .zs-news { padding: 60px 16px; }
  .zs-news-card .photo { height: 160px; }
  .zs-news-card .txt { padding: 14px; }
  .zs-news-card .title { font-size: 16px; }
  .zs-news-card .date { font-size: 13px; }
}

/* ================= Scroll reveal (메인 섹션 등장 애니메이션) ================= */
.zs-reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.zs-reveal.is-visible { opacity: 1; transform: translateY(0); }
.zs-reveal.zs-reveal-delay-1 { transition-delay: .12s; }
.zs-reveal.zs-reveal-fade,
.zs-reveal.zs-reveal-fade.is-visible { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .zs-reveal { opacity: 1; transform: none; transition: none; }
  .zs-company-bg img { animation: none; }
}

/* 히어로 문구 등장 애니메이션 (슬라이드 전환 시 자연스럽게 페이드업) */
@keyframes zsHeroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.zs-hero-txt .zs-hero-tit,
.zs-hero-txt .zs-hero-desc,
.zs-hero-txt .zs-learn-more { opacity: 0; }
.swiper-slide-active .zs-hero-txt .zs-hero-tit { animation: zsHeroIn .8s cubic-bezier(.22,1,.36,1) .2s forwards; }
.swiper-slide-active .zs-hero-txt .zs-hero-desc { animation: zsHeroIn .8s cubic-bezier(.22,1,.36,1) .35s forwards; }
.swiper-slide-active .zs-hero-txt .zs-learn-more { animation: zsHeroIn .8s cubic-bezier(.22,1,.36,1) .5s forwards; }
@media (prefers-reduced-motion: reduce) {
  .zs-hero-txt .zs-hero-tit, .zs-hero-txt .zs-hero-desc, .zs-hero-txt .zs-learn-more { opacity: 1; animation: none; }
}
