/* ================================
   공통 : 상단 비주얼 영역
================================ */
.page-visual-wrap {  padding-top: 80px;}

.page-visual {  height: 350px;  display: flex;  flex-direction: column;  align-items: center;  justify-content: center;  text-align: center;  color: #fff;  background-size: cover;  background-position: center;}

/* 이미지 개별 적용 (필요한 URL만 교체하면 됨) */
.equipment-visual      { background-image: url('/회사소개/img/ceomessagebg.jpg'); }
.engraving-visual      { background-image: url('/회사소개/img/ceomessagebg.jpg'); }
.history-visual  { background-image: url('/회사소개/img/ceomessagebg.jpg'); }
.org-visual     { background-image: url('/회사소개/img/ceomessagebg.jpg'); }
.cert-visual    { background-image: url('/회사소개/img/ceomessagebg.jpg'); }
.location-visual { background-image: url('/회사소개/img/ceomessagebg.jpg'); }

/* 텍스트 스타일 통일 */
.visual-kicker {  font-size: 14px;  letter-spacing: 0.16em;  margin-bottom: 10px;  opacity: 0.8;}
.visual-title {  font-size: 36px;  margin: 0;  font-weight: 600;}

/* 텍스트 스타일 통일 */
.equip-title { font-size: 32px; font-weight: 700; margin-bottom: 5px; }
.equip-sub { font-size: 18px; color:#444; margin-bottom:20px; }
.equipment-section {    max-width: 1200px;    padding: 0 20px;    margin: 80px auto;    text-align: center;}
.equip-title {    font-size: 32px;    font-weight: 700;}
.equip-sub {    font-size: 18px;    margin-bottom: 30px;    color: #555;}

/* Tabs */
.equip-filter {    list-style: none;    padding: 0;    display: flex;    flex-wrap: wrap;    gap: 10px;    justify-content: center;    margin-bottom: 25px; }
.equip-filter li {    padding: 10px 15px;    border: 1px solid #103460;    cursor: pointer;    font-size: 14px;    color: #103460;    border-radius: 4px;    transition: .3s;}
.equip-filter li.active,.equip-filter li:hover {    background: #103460;    color: #fff;}

/* Table */
.equip-table-wrap {    overflow-x: auto;    box-shadow: 0 2px 10px rgba(0,0,0,0.05);}
.equip-table {    width: 100%;    border-collapse: collapse;    min-width: 1000px;}
.equip-table th,.equip-table td {    padding: 14px;    border: 1px solid #e5e5e5;    font-size: 14px;}
.equip-table th {    background: #103460;    color: #fff;    text-align: center;}
.equip-table tbody tr:hover {    background: rgba(0, 123, 255, 0.08);    transition: .2s;}


/* TOP BANNER */
.process-banner {  height: 380px;  background-size: cover;  background-position: center;  background-attachment: fixed;  display:flex;  align-items:center;  justify-content:center;  position:relative;}
.process-banner .overlay {  position:absolute;  inset:0;  background:rgba(0,0,0,0.5);}
.banner-title {  position:relative;  font-size:18px;  color:#fff;  font-weight:600;   text-align:center;}

/* =========================
   Product Card: 대표 이미지 + 배지 + 모달용 이미지 숨김
   (기존 .product-grid/.product-card는 유지)
========================= */
.product-card .thumb{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(0,0,0,0.04);
}

.product-card .thumb > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-top: 0; /* 기존 img margin-top 상쇄 */
  border-radius: 0; /* thumb에서 라운딩 처리 */
}

.product-card .badge{
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

.product-card .meta{
  margin-top: 12px;
}

.product-card .gallery-source{
  display: none;
}

/* =========================
   Modal Gallery (product)
========================= */
.product-modal{
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

.product-modal.open{ display: grid; }

.product-modal .dialog{
  width: min(980px, 100%);
  background: #0f1118;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

.product-modal .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  color: #fff;
}

.product-modal .title{
  font-weight: 800;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-modal .sub{
  font-size: 13px;
  opacity: 0.8;
  margin-top: 2px;
}

.product-modal .close{
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.product-modal .stage{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b0c10;
}

.product-modal .stage img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-modal .nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.35);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  user-select: none;
}

.product-modal .nav:disabled{
  opacity: 0.35;
  cursor: not-allowed;
}

.product-modal .prev{ left: 12px; }
.product-modal .next{ right: 12px; }

.product-modal .thumbs{
  display: flex;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.product-modal .mini{
  flex: 0 0 auto;
  width: 92px;
  height: 58px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  opacity: 0.8;
  cursor: pointer;
}

.product-modal .mini.active{
  opacity: 1;
  border-color: rgba(255,255,255,0.32);
}

.product-modal .mini img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PROCESS FLOW */
.process-flow {  max-width:1200px;  padding:0 20px;
  margin:0 auto;
  text-align:center;
}
.process-list {
  list-style:none;
  padding:0;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}
.process-list li {
  flex:1 1 calc(12.66% - 20px);
  padding:20px 10px;
  background:#fff;
  border-radius:12px;
  border-bottom:5px solid #007ad9;
  transition:.3s;
}
.process-list li:hover {
  transform:translateY(-8px);
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
}
.process-list img {
  height:55px;
  margin-bottom:10px;
}
.process-list strong {
  font-size:18px;
  font-weight:700;
  margin-bottom:8px;
  display:block;
}
.process-list p {
  font-size:13px;
  color:#666;
}


/* DETAIL IMAGES */
.process-detail {
  max-width:1200px;
  padding:50px 20px 20px;
  margin:0 auto;
  text-align:center;
}
.detail-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  margin-bottom:30px;
}
.detail-grid img {
height:280px;
  width:100%;
  border-radius:6px;
  transition:.4s;
}
.detail-grid img:hover {
  transform:scale(1.05);
}


/* TEXT */
.desc {
  font-size:15px;
  color:#333;
  line-height:1.7em;
}


/* SCROLL ANIMATION */
.fade-in, .fade-up, .step-ani, .img-ani {
  opacity:0;
  transform:translateY(30px);
  transition:all .8s ease-out;
}
.show {
  opacity:1 !important;
  transform:translateY(0) !important;
}




.automation-title {
  text-align:center;
  margin-top:60px;
}
.automation-title h2 {
  font-size:26px;
  color:#003b8e;
  font-weight:800;
}
.automation-title p {
  font-size:15px;
  color:#444;
  line-height:1.6;
  margin-top:12px;
}


/* FLOW NAV */
.auto-flow {
  margin-top:40px;
}
.flow-steps {
  display:flex;
  justify-content:center;
  padding:0;
  list-style:none;
}
.flow-steps li {
  background:#0b61c1;
  color:#fff;
  padding:18px 30px;
  margin-right:5px;
  border-radius:3px;
  white-space:nowrap;
  position:relative;
}
.flow-steps li:not(:last-child)::after {
  content:'';
  border-top:22px solid transparent;
  border-bottom:22px solid transparent;
  border-left:16px solid #0b61c1;
  position:absolute;
  right:-16px;
  top:0;
}


/* 아이콘 상세 */
.auto-detail {
  max-width:1200px;
  display:flex;
  justify-content:space-between;
  margin:50px auto;
  gap:20px;
}
.auto-item {
  flex:1;
  background:#fff;
  text-align:center;
  padding:30px 10px;
  border-radius:12px;
  border:2px solid #cce2ff;
  transition:.3s;
}
.auto-item:hover {
  transform:translateY(-6px);
  border-color:#0b61c1;
}
.auto-item img {
  height:55px;
  margin-bottom:10px;
}


/* 고객 혜택 */
.user-benefit {
  display:flex;
  justify-content:center;
  gap:60px;
  margin:60px auto;
}
.user-benefit div {
  text-align:center;
}
.user-benefit img {
  height:45px;
  margin-bottom:8px;
}


/* 제품 카드 그리드 */
.product-grid {
  display:grid;
  max-width:1200px;
  margin:0 auto;
  gap:25px;
  grid-template-columns:repeat(2,1fr);
  padding:50px 20px 100px;
}
.product-card {
  background:#fff;
  border-radius:12px;
  padding:20px;
  text-align:center;
  box-shadow:0 3px 10px rgba(0,0,0,.06);
  transition:.3s;
}
.product-card:hover {
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}
.product-card .num {
  font-size:15px;
  font-weight:700;
  color:#e35000;
  float:right;
}
.product-card h4 {
  font-size:17px;
  font-weight:800;
  margin:10px 0 5px;
}
.product-card img {
  width:100%;
  border-radius:6px;
  margin-top:10px;
}
/* 기본 레이아웃 */
.global-container {
  text-align:center;
  padding:60px 20px 110px;
}
.title-ko {font-size:34px;font-weight:800;margin-bottom:8px;}
.title-en {font-size:18px;color:#4b4b4b;margin-bottom:45px;}

/* 지도 영역 */
.map-section {
  position:relative;
  max-width:1300px;
  margin:0 auto 30px;
}
.map {
  width:100%;
  opacity:0;
  transition:1.2s ease;
}
.map.show { opacity:1; }

/* 핀 공통 */
.pin {
  position:absolute;
  transform:translate(-50%, -100%);
  opacity:0;
  transition:.6s ease-out;
  cursor:pointer;
}
.pin.show {
  opacity:1;
  transform:translate(-50%, -130%);
}
.pin img {
  width:42px;
  z-index:10;
  transition:.3s ease;
}

/* 국가 라벨 */
.pin p {
  font-size:12px;
  background:#002f6c;
  color:#fff;
  padding:3px 8px;
  border-radius:5px;
  margin-top:4px;
  white-space:nowrap;
  z-index:10;
  transition:.3s ease;
}

/* 원형 파동 */
.pulse {
  position:absolute;
  width:45px;height:45px;
  background:rgba(0,123,255,.15);
  border-radius:50%;
  top:24px; left:50%;
  transform:translateX(-50%) scale(0);
  z-index:1;
  opacity:0;
}


@media (hover:hover) and (pointer:fine){
.pin:hover img { transform:scale(1.25); }
.pin:hover p { font-size:13px; transform:translateY(-3px); }

.pin:hover .pulse {
  animation:pulseCircle 1.1s ease-out forwards;
  opacity:1;
}
@keyframes pulseCircle {
  0% { transform:translateX(-50%) scale(0.5); opacity:0.8; }
 65% { opacity:0.4; }
100% { transform:translateX(-50%) scale(2.6); opacity:0; }
}
}
/* Hover Effect (PC 전용) */
@media (hover:hover) and (pointer:fine){
.pin:hover img { transform:scale(1.25); }
.pin:hover p { font-size:13px; transform:translateY(-3px); }

.pin:hover .pulse {
  animation:pulseCircle 1.1s ease-out forwards;
  opacity:1;
}
@keyframes pulseCircle {
  0% { transform:translateX(-50%) scale(0.5); opacity:0.8; }
 65% { opacity:0.4; }
100% { transform:translateX(-50%) scale(2.6); opacity:0; }
}
}

/* 좌표 */
.pin-usa   { left:22%; top:61%; }
.pin-hun   { left:54%; top:35%; }
.pin-china { left:75%; top:38%; }
.pin-indo  { left:72%; top:57%; }
/* RESPONSIVE */
@media(max-width:1024px){
  .process-list li{flex:1 1 calc(33.33% - 20px);}
  .auto-detail {
    flex-wrap:wrap;
  }
  .product-grid {
    grid-template-columns:repeat(2,1fr);
  }


}
@media(max-width:768px){
  .process-list li{flex:1 1 calc(50% - 20px);}
  .banner-title{font-size:20px;}
.product-grid {
    grid-template-columns:repeat(1,1fr);
  }
  .title-ko{font-size:26px;}
  .title-en{font-size:14px;}

  .map-section {
    width:100%;
    overflow:hidden; /* 스크롤 제거 */
  }
  .map {
    width:100%;
    margin:0 auto;
  }

  .pin {
    transform:translate(-50%, -110%);
  }
  .pin.show {
    transform:translate(-50%, -120%);
  }

  /* Pulse 제거 */
  .pulse { display:none; }

  /* 국기 아이콘 제거 */
  .pin img { display:none; }

  /* 텍스트만 표시 + 폰트 10px */
  .pin p {
    font-size:10px;
    padding:4px 8px;
    background:#00438a;
    border-radius:4px;
    margin-top:0;
  }
}

