/* =========================================================
   파일명: /assets/css/layout.css
   역할: 공통 레이아웃 / 카드 / 홈 섹션 / 상세페이지
   원칙: 공통 구조만 관리하고 제품/사례 전용 스타일은 각 전용 CSS로 분리
========================================================= */
.container{width:min(94vw,1760px);max-width:none;margin:0 auto}
.main-layout{display:grid;grid-template-columns:clamp(190px,13vw,250px) minmax(0,1fr);gap:clamp(24px,2vw,42px);padding-top:clamp(28px,2.2vw,48px);padding-bottom:clamp(64px,5vw,100px)}
.main-layout.no-sidebar{display:block}
.layout-content{min-width:0}
.content-card{background:#fff;border:1px solid #d9e6f5;border-radius:0;padding:34px;box-shadow:0 14px 34px rgba(15,35,67,.07);line-height:1.75;margin-bottom:28px}
.content-card h2{font-size:34px;line-height:1.28;margin:0 0 14px;color:#102d4c;letter-spacing:-1.2px}
.content-card h3{color:#102d4c}
.content-card p{font-size:16px;line-height:1.8;color:#5b6d80}
.badge{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:0 20px;border-radius:0;background:#1e82e8;color:#fff;font-size:13px;font-weight:900;letter-spacing:.10em;margin-bottom:18px;box-shadow:0 10px 22px rgba(30,130,232,.18)}
.empty-box{grid-column:1/-1;background:#fff;border:1px dashed #bdd3ea;border-radius:0;padding:34px;text-align:center;color:#6b7d90}
.btn{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:0 22px;border-radius:0;font-weight:900}
.btn-primary{background:#0f66bb;color:#fff}
.btn-light{background:#fff;color:#0f66bb}
.section-block{padding:70px 0}
.section-head{text-align:center;margin-bottom:34px}
.section-head span{font-size:12px;font-weight:900;color:#0f66bb;letter-spacing:.12em}
.section-head h2{font-size:40px;margin:10px 0;color:#102d4c;letter-spacing:-1.6px}
.section-head p{color:#66788c;font-size:16px}
.category-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.category-card{display:block;background:#fff;border:1px solid #d9e6f5;border-radius:0;padding:30px;box-shadow:0 14px 34px rgba(15,35,67,.07);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.category-card:hover{transform:translateY(-5px);border-color:#b9d8ff;box-shadow:0 22px 54px rgba(15,35,67,.14)}
.category-card b{display:inline-flex;width:44px;height:44px;align-items:center;justify-content:center;border-radius:0;background:#eaf5ff;color:#0f66bb;margin-bottom:18px}
.category-card h3{font-size:24px;margin:0 0 10px;color:#102d4c}
.category-card p{color:#66788c;line-height:1.7}
.contact-box{margin-top:24px;padding:24px;background:#f5f9fd;border:1px solid #dce7f3;border-radius:0}
.muted{color:#75869a;font-size:14px}
.detail-text{margin-top:24px;font-size:16px;line-height:1.9;color:#334155}
.detail-gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin-top:28px}
.detail-gallery img{width:100%;background:#fff;border:1px solid #dce7f3;border-radius:0}
.quick-menu{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:-42px;position:relative;z-index:3}
.quick-card{display:block;background:#fff;border:1px solid #d9e6f5;border-radius:0;padding:24px 22px;box-shadow:0 12px 24px rgba(15,42,75,.12);transition:transform .2s ease,border-color .2s ease}
.quick-card strong{display:block;font-size:21px;color:#102d4c;margin-bottom:8px}
.quick-card span{display:block;color:#64748b;line-height:1.55;font-size:14px}
.quick-card:hover{border-color:#0f66bb;transform:translateY(-3px)}

/* =========================================================
   PC 사이드바 출력 기준
   - 769px 이상: 좌측 sidebar + 우측 본문 2단 구조 고정
   - 768px 이하: mobile.css에서 sidebar 완전 숨김
   - products / about / cases / tech / customer 모두 동일 구조 사용
========================================================= */
@media (min-width:769px){
  .main-layout.has-sidebar{
    display:grid;
    grid-template-columns:clamp(190px,12vw,240px) minmax(0, 1fr);
    column-gap:clamp(24px,2vw,42px);
    align-items:start;
  }
  .main-layout.no-sidebar{
    display:block;
  }
  .main-layout.has-sidebar .layout-content{
    min-width:0;
  }
}



/* =========================================================
   서브페이지 인트로 카드 공통 디자인
   - 이미지 경로는 /images/page-intro/{번호}.* 기준
   - 프레임 안에 사진이 꽉 차도록 object-fit: cover 적용
========================================================= */
.page-intro-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(460px,56%);
  align-items:start;
  gap:34px;
  padding:18px 24px;
  overflow:hidden;
}
.page-intro-text{
  display:grid;
  grid-template-rows:34px 74px minmax(64px, auto);
  row-gap:12px;
  align-content:start;
  justify-content:start;
  justify-items:start;
  min-height:250px;
  padding-top:0;
}
.page-intro-text h2{
  margin:0 0 14px;
  font-size:38px;
  line-height:1.22;
  font-weight:900;
  color:#102d4c;
  letter-spacing:-1.3px;
}
.page-intro-text p{
  max-width:620px;
  margin:0;
  font-size:17px;
  line-height:1.85;
  color:#5b6d80;
  word-break:keep-all;
}
.page-intro-image{
  position:relative;
  display:block;
  width:fit-content;
  max-width:100%;
  margin-left:auto;
  margin-right:0;
  overflow:hidden;
  border-radius:0;
}

.page-intro-image img{
  display:block;
  width:auto;
  max-width:100%;
  height:auto;
  max-height:230px;
  object-fit:contain;
  object-position:center;
  border-radius:0;
}
/* =========================================================
   회사소개 / 인사말 이전 홈페이지형 본문 디자인
========================================================= */
.about-card{padding:34px 34px 40px}
.about-card > h2,.about-card .sub-section > h2{position:relative;margin:0 0 22px;padding-bottom:12px;font-size:28px;font-weight:900;color:#102d4c;letter-spacing:-.8px}
.about-card > h2::after,.about-card .sub-section > h2::after{content:"";position:absolute;left:0;bottom:0;width:34px;height:3px;background:#0f66bb;border-radius:0}
.about-card > p{margin:0 0 18px;color:#51657c;font-size:15px;line-height:1.9;word-break:keep-all}
.about-visual{margin:26px 0 18px;border:1px solid #d8e7f6;border-radius:0;overflow:hidden;background:#f4f8fd}
.about-visual img{display:block;width:100%;height:auto;max-height:430px;object-fit:cover;object-position:center}
.feature-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin:16px 0 28px}
.feature-grid > div{min-height:110px;padding:18px 16px;border:1px solid #cddff4;background:#f7fbff}
.feature-grid strong{display:block;margin-bottom:8px;color:#0f66bb;font-size:14px;font-weight:900}
.feature-grid span{display:block;color:#26364a;font-size:14px;line-height:1.65;word-break:keep-all}
.sub-section{margin-top:26px}
.history-table{width:100%;border-collapse:collapse;margin-top:8px;border:1px solid #cfdced;background:#fff}
.history-table th,.history-table td{padding:13px 16px;border-bottom:1px solid #dbe6f2;text-align:left;font-size:14px;line-height:1.6}
.history-table th{width:150px;background:#f1f6fc;color:#174676;font-weight:900}
.history-table tr:last-child th,.history-table tr:last-child td{border-bottom:0}


/* =========================================================
   [2026-05-09] 이전 홈페이지 디자인 감성 복원 / 공통 서브페이지 정리
   - page-banner / intro-card / 고객센터 / 자료실 / 공지사항 공통 카드
   - 구조 추가가 아니라 기존 PHP 템플릿 클래스 기준 재정리
========================================================= */
.breadcrumbs{
  background:#f8fbff;
  border-bottom:1px solid #dbe8f5;
  color:#607086;
  font-size:13px;
}
.breadcrumbs .container{
  padding:13px 0;
}

.main-layout.has-sidebar{
  padding-top:34px;
}

.page-intro-card{
  border-radius:0;
  border:1px solid #d7e6f6;
  background:linear-gradient(180deg,#fff 0%,#f9fcff 100%);
  box-shadow:0 14px 34px rgba(15,35,67,.07);
}

.page-intro-card .badge{
  width:max-content;
  min-height:34px;
  padding:0 16px;
  margin:0;
  border-radius:0;
  background:#0f66bb;
  color:#fff;
  font-size:12px;
  letter-spacing:.12em;
  grid-row:1;
  align-self:start;
}

.page-intro-text h2{
  grid-row:2;
  min-height:74px;
  display:flex;
  align-items:flex-start;
  margin:0;
}

.page-intro-text p{
  grid-row:3;
  min-height:64px;
  margin:0;
  align-self:start;
}

.page-intro-text{
  padding-left:4px;
}

.page-intro-text h2{
  font-size:36px;
  letter-spacing:-1.4px;
}

.page-intro-text p{
  font-size:16px;
  color:#586b80;
}

.page-intro-image{
  max-width:100%;
  border:1px solid #d7e6f6;
  background:#eef6ff;
  box-shadow:0 12px 30px rgba(15,35,67,.08);
}

.page-intro-image img{
  max-height:230px;
  object-fit:contain;
  object-position:center;
}

.sub-section{
  margin-top:34px;
}

.feature-grid{
  gap:16px;
  margin-top:30px;
}

.feature-grid > div{
  min-height:116px;
  padding:22px;
  border:1px solid #d9e7f6;
  border-radius:0;
  background:#f8fbff;
}

.feature-grid strong{
  display:block;
  margin-bottom:9px;
  color:#0f5fb5;
  font-size:18px;
  font-weight:900;
}

.feature-grid span{
  display:block;
  color:#607086;
  font-size:14px;
  line-height:1.65;
}

.history-table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border:1px solid #d8e6f5;
  border-radius:0;
  background:#fff;
}

.history-table th,
.history-table td{
  padding:16px 18px;
  border-bottom:1px solid #e5edf6;
  text-align:left;
  vertical-align:top;
}

.history-table th{
  width:190px;
  background:#f2f8ff;
  color:#0f5fb5;
  font-weight:900;
}

.history-table tr:last-child th,
.history-table tr:last-child td{
  border-bottom:0;
}

/* ===== 고객센터 / 자료실 / 공지사항 복원형 공통 ===== */
.contact-panel,
.resource-card,
.notice-card,
.as-card{
  border-radius:0;
}

.contact-info-grid,
.resource-grid,
.notice-summary-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.contact-info-grid > div,
.resource-grid > a,
.notice-summary-grid > div{
  display:block;
  min-height:100px;
  padding:20px;
  border:1px solid #d8e7f6;
  border-radius:0;
  background:#f8fbff;
}

.contact-info-grid strong,
.resource-grid strong,
.notice-summary-grid strong{
  display:block;
  margin-bottom:8px;
  color:#0f5fb5;
  font-size:16px;
  font-weight:900;
}

.contact-info-grid span,
.resource-grid span,
.notice-summary-grid span{
  display:block;
  color:#5d6f84;
  font-size:14px;
  line-height:1.65;
}

.contact-form{
  display:grid;
  gap:16px;
  margin-top:24px;
}

.form-row{
  display:grid;
  gap:8px;
}

.form-row label{
  color:#102d4c;
  font-size:14px;
  font-weight:900;
}

.form-row input,
.form-row select,
.form-row textarea{
  width:100%;
  border:1px solid #cfdeed;
  border-radius:0;
  background:#fff;
  padding:13px 14px;
  color:#24364a;
  font-family:inherit;
  font-size:clamp(15px, 1.02vw, 18px);
  outline:none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  border-color:#0f66bb;
  box-shadow:0 0 0 4px rgba(15,102,187,.10);
}

.button-row{
  display:flex;
  justify-content:flex-end;
}

.product-inquiry-box{
  margin:22px 0;
  padding:20px;
  border:1px solid #cfe2f4;
  border-radius:0;
  background:#f2f8ff;
}

.product-inquiry-meta{
  display:grid;
  gap:8px;
  margin:12px 0;
  color:#53667d;
  font-size:14px;
}

.resource-list{
  display:grid;
  gap:18px;
  margin-top:22px;
}

.resource-item{
  display:grid;
  grid-template-columns:180px minmax(0,1fr);
  gap:20px;
  align-items:start;
  padding:20px;
  border:1px solid #d9e7f6;
  border-radius:0;
  background:#fff;
}

.resource-item img{
  width:100%;
  border:1px solid #dce6f2;
  border-radius:0;
  background:#f8fbff;
}

.resource-item h3{
  margin:0 0 8px;
  color:#102d4c;
  font-size:clamp(19px, 1.25vw, 25px);
}

.notice-box{
  margin-top:20px;
  padding:16px 18px;
  border-radius:0;
  background:#eef7ff;
  color:#31506f;
  font-size:14px;
  line-height:1.7;
}

.notice-table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border:1px solid #d7e6f5;
  border-radius:0;
  background:#fff;
}

.notice-table th,
.notice-table td{
  padding:15px 16px;
  border-bottom:1px solid #e4edf7;
  text-align:left;
}

.notice-table th{
  background:#f2f8ff;
  color:#0f5fb5;
  font-weight:900;
}

.notice-table tr:last-child td{
  border-bottom:0;
}

.notice-table .no{
  width:76px;
  text-align:center;
}

.notice-table .date{
  width:150px;
  text-align:center;
  color:#607086;
}

@media(max-width:768px){
  .contact-info-grid,
  .resource-grid,
  .notice-summary-grid{
    grid-template-columns:1fr;
  }

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

  .button-row{
    justify-content:stretch;
  }

  .button-row .btn{
    width:100%;
  }

  .notice-table th.no,
  .notice-table td.no{
    display:none;
  }

  .notice-table .date{
    width:110px;
  }
}


/* =========================================================
   [99] 페이지별 배경 이미지
   - /templates/layout.php 에서 body 바로 아래 .nb-page-background 실제 출력
   - z-index 음수 사용 금지: 기존 배경 뒤로 숨어 안 보이는 문제 방지
========================================================= */

html{
  min-height:100%;
  background:#eef4fb;
}

body{
  position:relative;
  min-height:100vh;
  background:#eef4fb;
}

.nb-page-background{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  opacity:.30;
}

.nb-page-background::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(238,244,251,.52) 0%,
      rgba(238,244,251,.70) 42%,
      rgba(238,244,251,.88) 100%
    );
}

.site-header,
.page-banner,
.breadcrumbs,
.main-layout,
.site-footer{
  position:relative;
  z-index:1;
}

.main-layout,
.layout-content{
  background:transparent;
}

@media(max-width:768px){
  .nb-page-background{
    position:absolute;
    min-height:100%;
    opacity:.18;
    background-position:center top;
  }
}

/* =========================================================
   [2026-05-09] 문의하기 제품 링크 넘침 방지 PATCH
   - 긴 URL은 href/title 값으로 유지
   - 화면 표시 영역에서는 줄바꿈/넘침 방지
========================================================= */
.product-inquiry-box,
.product-inquiry-meta,
.product-inquiry-meta div{
  max-width:100%;
  min-width:0;
  overflow:hidden;
}
.product-inquiry-meta a,
#product-url-view{
  display:inline-block;
  max-width:100%;
  vertical-align:top;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
#productUrlField{
  max-width:100%;
  min-width:0;
}

/* =========================================================
   [2026-05-09] 하위메뉴 카드 정렬 UX
   - 사이드바 클릭 시 anchor 스크롤 이동 없이 해당 카드만 상단 정렬
   - 배너는 대메뉴 유지, 인트로카드는 선택된 하위메뉴 제목으로 변경
========================================================= */
.section-card-stack{
  display:flex;
  flex-direction:column;
  gap:0;
}
.section-reorder-card{
  position:relative;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}
.section-reorder-card.is-active{
  border-color:#8fc5ff;
  background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);
  box-shadow:0 18px 42px rgba(15,102,187,.12);
}
.section-reorder-card.is-active::before{
  content:"";
  position:absolute;
  top:24px;
  left:0;
  width:4px;
  height:42px;
  border-radius:0;
  background:#0f66bb;
}
.about-location-grid{
  margin-top:10px;
}
@media (max-width:768px){
  .section-reorder-card.is-active::before{
    top:20px;
    height:34px;
  }
}

/* =========================================================
   [2026-05-10] 고객센터 단일 파일 / 하위메뉴 카드 전환
   - /contact.php 안에서 문의하기, A/S 문의, 공지사항을 hash 기반으로 관리
   - 페이지 이동 깜빡임을 줄이고 회사소개와 같은 카드 정렬 UX 적용
========================================================= */
.customer-section-stack .section-reorder-card{
  scroll-margin-top:130px;
}
.customer-section-stack .notice-table-wrap{
  margin-top:22px;
  overflow-x:auto;
  border-radius:0;
}
.customer-contact-box{
  margin-top:22px;
}
.as-info-grid{
  margin-top:22px;
}
@media(max-width:768px){
  .customer-section-stack .section-reorder-card{
    scroll-margin-top:86px;
  }
}

/* =========================================================
   [2026-05-10] 메인페이지 주력 제품군 / 차별화 포인트 정리
   - 기존 6개 주요 제품군 섹션 제거 후 4개 주력 카드 중심 구성
   - 차별화 포인트 카드가 제품 카드와 겹쳐 사진을 가리지 않도록 분리
   - 카드 비율 4:5, 이미지 약 60% 기준으로 사진 노출 강화
========================================================= */
.home-primary-products{
  position:relative;
  z-index:4;
  margin-top:-40px;
  padding-bottom:34px;
}
.home-section-title{
  width:min(760px,100%);
  margin:0 auto 22px;
  padding:22px 24px 0;
  text-align:center;
}
.home-section-title span{
  display:inline-flex;
  margin-bottom:8px;
  color:#0f66bb;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
}
.home-section-title h2{
  margin:0 0 8px;
  color:#102d4c;
  font-size:36px;
  line-height:1.2;
  letter-spacing:-1.4px;
}
.home-section-title p{
  margin:0;
  color:#66788c;
  font-size:16px;
  line-height:1.7;
}
.home-image-card-grid.quick-menu{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:clamp(18px, 1.45vw, 30px);
  margin-top:0;
}

/* =========================================================
   [2026-05-10] 메인 홈 섹션 반응형 확장
   - 주력 제품군: 화면 폭을 더 활용해 카드 크기 확대
   - 납품·수리 사례: 섹션/흐름 카드가 화면 끝까지 자연스럽게 확장
========================================================= */
body.home-page .home-primary-products.container,
body.home-page .home-case-flow-head.container{
  width:min(1920px, calc(100% - clamp(32px, 6vw, 140px)));
  max-width:none;
}

.home-image-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  padding:0;
  aspect-ratio:4 / 5;
  border-radius:0;
  background:#fff;
  box-shadow:0 16px 36px rgba(15,42,75,.10);
}
.quick-card-image{
  display:block;
  flex:0 0 60%;
  width:100%;
  min-height:0;
  background:linear-gradient(135deg,#eaf5ff 0%,#f7fbff 100%);
  overflow:hidden;
}
.quick-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.01);
  transition:transform .25s ease;
}
.home-image-card:hover .quick-card-image img{
  transform:scale(1.05);
}
.quick-card-body{
  display:flex;
  flex:1 1 auto;
  flex-direction:column;
  justify-content:flex-start;
  min-height:0;
  padding:clamp(18px, 1.35vw, 24px) clamp(18px, 1.45vw, 26px);
}
.quick-card-body strong{
  display:-webkit-box;
  overflow:hidden;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  word-break:keep-all;
  overflow-wrap:normal;
  font-size:clamp(20px, 1.24vw, 24px);
  line-height:1.28;
  color:#102d4c;
  margin-bottom:8px;
}
.quick-card-body span{
  display:-webkit-box;
  overflow:hidden;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  word-break:keep-all;
  overflow-wrap:normal;
  color:#64748b;
  line-height:1.52;
  font-size:clamp(13px, .86vw, 15px);
}
.home-difference-section{
  padding:28px 0 76px;
}
.home-difference-card{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(460px,.95fr);
  gap:34px;
  align-items:center;
  padding:42px 48px;
  border:1px solid #d9e6f5;
  border-radius:0;
  background:linear-gradient(135deg,#fff 0%,#f7fbff 100%);
  box-shadow:0 18px 48px rgba(15,42,75,.10);
}
.home-pill{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 18px;
  border-radius:0;
  background:#eaf5ff;
  color:#0f66bb;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  margin-bottom:20px;
}
.home-difference-copy h2{
  margin:0 0 22px;
  color:#111;
  font-size:40px;
  line-height:1.28;
  letter-spacing:-1.9px;
}
.home-difference-copy p{
  margin:0;
  color:#5f6f80;
  font-size:17px;
  line-height:1.9;
}
.home-process-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.home-process-item{
  min-height:154px;
  padding:26px 28px;
  border:1px solid #d6e8fb;
  border-radius:0;
  background:#f4f8fd;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.home-process-item b{
  display:block;
  color:#1472d0;
  font-size:28px;
  line-height:1;
  letter-spacing:-.5px;
}
.home-process-item strong{
  display:block;
  color:#1e293b;
  font-size:18px;
  line-height:1.55;
  letter-spacing:-.5px;
}

/* =========================================================
   [2026-05-10] 메인 차별화 카드 모바일 강제 1열 복구
   - PC용 grid minmax 값이 모바일에서 남을 경우 글자가 세로로 깨지는 문제 방지
   - home-page 범위로 한정하여 다른 페이지 영향 없음
========================================================= */
@media (max-width: 1024px){
  body.home-page .home-difference-section,
  .home-page .home-difference-section{
    padding:24px 0 54px;
  }

  body.home-page .home-difference-card,
  .home-page .home-difference-card{
    display:grid;
    grid-template-columns:1fr;
    gap:24px;
    width:100%;
    min-width:0;
    max-width:100%;
    padding:30px 24px;
    border-radius:0;
    box-sizing:border-box;
    overflow:hidden;
  }

  body.home-page .home-difference-copy,
  .home-page .home-difference-copy,
  body.home-page .home-process-list,
  .home-page .home-process-list{
    width:100%;
    min-width:0;
    max-width:100%;
  }

  body.home-page .home-difference-copy h2,
  .home-page .home-difference-copy h2{
    display:block;
    width:100%;
    max-width:100%;
    margin:0 0 18px;
    font-size:clamp(27px, 7vw, 34px);
    line-height:1.32;
    letter-spacing:-1.2px;
    white-space:normal;
    word-break:keep-all;
    overflow-wrap:break-word;
  }

  body.home-page .home-difference-copy p,
  .home-page .home-difference-copy p{
    width:100%;
    max-width:100%;
    margin:0;
    font-size:15.5px;
    line-height:1.8;
    word-break:keep-all;
    overflow-wrap:break-word;
  }

  body.home-page .home-process-list,
  .home-page .home-process-list{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
  }

  body.home-page .home-process-item,
  .home-page .home-process-item{
    min-height:auto;
    padding:22px;
    gap:14px;
    border-radius:0;
    box-sizing:border-box;
  }

  body.home-page .home-process-item strong,
  .home-page .home-process-item strong{
    font-size:17px;
    line-height:1.55;
    word-break:keep-all;
    overflow-wrap:break-word;
  }
}

@media (max-width: 520px){
  body.home-page .home-difference-card,
  .home-page .home-difference-card{
    padding:28px 20px;
  }

  body.home-page .home-pill,
  .home-page .home-pill{
    margin-bottom:18px;
  }
}

/* =========================================================
   [2026-05-10] 메인 납품·수리 사례 좌→우 흐름 카드
   - 위치: 주력 제품군 사진 카드 아래
   - 데이터: /cases 폴더의 delivery / repair 사례 사용
========================================================= */
.home-case-flow{
  position:relative;
  z-index:3;
  width:100%;
  padding:22px 0 56px;
  overflow:hidden;
  background:linear-gradient(180deg,#fff 0%,#f6faff 100%);
}
.home-case-flow-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}
.home-case-flow-head span{
  display:inline-flex;
  margin-bottom:8px;
  color:#0f66bb;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
}
.home-case-flow-head h2{
  margin:0;
  color:#102d4c;
  font-size:34px;
  line-height:1.25;
  letter-spacing:-1.2px;
}
.home-case-flow-head a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border:1px solid #cfe0f3;
  border-radius:0;
  background:#fff;
  color:#0f66bb;
  font-size:14px;
  font-weight:900;
  box-shadow:0 8px 22px rgba(15,64,120,.08);
}
.home-case-marquee{
  width:min(1920px, calc(100% - clamp(32px, 6vw, 140px)));
  max-width:none;
  margin-left:auto;
  margin-right:auto;
  overflow:hidden;
  padding:22px 20px 26px;
  border:1px solid #d9e6f5;
  border-radius:0;
  background:rgba(255,255,255,.86);
  box-shadow:0 18px 44px rgba(15,42,75,.08);
  box-sizing:border-box;
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 8%,#000 92%,transparent 100%);
  mask-image:linear-gradient(90deg,transparent 0%,#000 8%,#000 92%,transparent 100%);
}
.home-case-marquee-track{
  display:flex;
  width:max-content;
  gap:clamp(22px, 1.6vw, 34px);
  padding-left:0;
  animation:homeCaseFlowRight 42s linear infinite;
  will-change:transform;
}
.home-case-marquee:hover .home-case-marquee-track{
  animation-play-state:paused;
}
.home-case-flow-card{
  display:grid;
  grid-template-columns:clamp(160px, 9.2vw, 200px) minmax(280px, 1fr);
  width:clamp(500px, 28vw, 620px);
  min-height:clamp(160px, 9.2vw, 200px);
  overflow:hidden;
  border:1px solid #d9e6f5;
  border-radius:0;
  background:#fff;
  box-shadow:0 14px 32px rgba(15,42,75,.10);
}
.home-case-flow-thumb{
  display:block;
  width:100%;
  height:100%;
  overflow:hidden;
  background:#edf4fb;
}
.home-case-flow-thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .25s ease;
}
.home-case-flow-card:hover .home-case-flow-thumb img{
  transform:scale(1.05);
}
.home-case-flow-body{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
  padding:22px 24px 22px 26px;
}
.home-case-flow-meta{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:9px;
}
.home-case-flow-meta b{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:0 9px;
  border-radius:0;
  background:#eaf5ff;
  color:#0f66bb;
  font-size:12px;
  font-weight:900;
}
.home-case-flow-meta em{
  color:#7a8797;
  font-size:12px;
  font-style:normal;
  font-weight:800;
}
.home-case-flow-body strong{
  display:-webkit-box;
  overflow:hidden;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  color:#102d4c;
  font-size:clamp(19px, 1.25vw, 25px);
  line-height:1.45;
  font-weight:900;
  letter-spacing:-.5px;
}
@media (max-width: 1180px){
  body.home-page .home-primary-products.container,
  body.home-page .home-case-flow-head.container{
    width:min(100%, calc(100% - 32px));
    max-width:none;
  }

  .home-image-card-grid.quick-menu{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px;
  }

  .home-case-flow-card{
    grid-template-columns:150px 280px;
    width:430px;
    min-height:150px;
  }

  .home-case-flow-thumb{
    width:150px;
    height:150px;
  }
}

@media (max-width: 768px){
  body.home-page .home-primary-products.container,
  body.home-page .home-case-flow-head.container{
    width:min(100%, calc(100% - 28px));
    max-width:none;
  }

  .home-case-flow{
    padding:16px 0 34px;
  }

  .home-case-flow-head{
    align-items:flex-start;
    margin-bottom:14px;
  }

  .home-case-flow-head h2{
    font-size:28px;
  }

  .home-case-flow-card{
    grid-template-columns:124px 226px;
    width:350px;
    min-height:124px;
    border-radius:0;
  }

  .home-case-flow-thumb{
    width:124px;
    height:124px;
  }

  .home-case-flow-body{
    padding:16px 16px 16px 18px;
  }

  .home-case-flow-body strong{
    font-size:16px;
    line-height:1.42;
  }
}


@media (max-width: 560px){
  .home-image-card-grid.quick-menu{
    grid-template-columns:1fr;
  }
}

@keyframes homeCaseFlowRight{
  from{transform:translateX(-50%);}
  to{transform:translateX(0);}
}
@media (prefers-reduced-motion:reduce){
  .home-case-marquee-track{animation:none;}
}


/* =========================================================
   [2026-05-10] 제품 인트로 텍스트 기준선 정렬
   목적:
   - 설명문 줄 수가 다른 카테고리에서도 PRODUCT CATEGORY 배지/제목 시작 위치를 동일하게 유지
   - 특히 소모품처럼 설명문이 짧은 페이지에서 제목이 아래로 내려가 보이는 문제 보정
   범위:
   - 제품소개 계열 인트로 카드 텍스트 영역만 적용
   - 이미지 프레임 높이/비율은 변경하지 않음
========================================================= */
body[data-sidebar-type="products"] .product-intro-card .page-intro-text,
body[data-sidebar-type="products"] .page-intro-card.product-intro-card .page-intro-text{
  justify-content:flex-start;
  align-self:stretch;
  min-height:0;
  padding:44px 0 40px 4px;
}

body[data-sidebar-type="products"] .product-intro-card .page-intro-text .badge,
body[data-sidebar-type="products"] .page-intro-card.product-intro-card .page-intro-text .badge{
  margin-bottom:14px;
}

body[data-sidebar-type="products"] .product-intro-card .page-intro-text h2,
body[data-sidebar-type="products"] .page-intro-card.product-intro-card .page-intro-text h2{
  margin-top:0;
}

/* =========================================================
   [2026-05-11] PC 좌측 sidebar 제거 / 상단 섹션바 전환
========================================================= */
@media (min-width: 769px){
  .main-layout.has-sidebar,
  .main-layout.no-sidebar{
    display:block;
    max-width:min(1680px, calc(100vw - 64px));
    padding-top:clamp(34px, 2.6vw, 58px);
  }

  .main-layout > .sidebar,
  .main-layout.has-sidebar > .sidebar{
    display:none;
  }

  .layout-content{
    width:100%;
    min-width:0;
  }
}

.page-section-bar{
  position:relative;
  z-index:20;
  margin-top:-34px;
  background:transparent;
}

.page-section-bar__inner{
  display:flex;
  align-items:stretch;
  min-height:68px;
  overflow:hidden;
  border-radius:0;
  background:rgba(12,18,28,.92);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 42px rgba(0,0,0,.18);
  backdrop-filter:blur(10px);
}

.page-section-bar__title{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:220px;
  padding:0 28px;
  background:linear-gradient(135deg, rgba(255,126,40,.96), rgba(230,92,20,.96));
  color:#fff;
}

.page-section-bar__title span{
  font-size:11px;
  font-weight:900;
  letter-spacing:.18em;
  opacity:.76;
}

.page-section-bar__title strong{
  margin-top:4px;
  font-size:18px;
  font-weight:900;
  letter-spacing:-.04em;
}

.page-section-bar__links{
  display:flex;
  align-items:center;
  flex:1;
  min-width:0;
  overflow-x:auto;
  scrollbar-width:none;
}

.page-section-bar__links::-webkit-scrollbar{
  display:none;
}

.page-section-bar__link{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:68px;
  padding:0 clamp(16px, 1.3vw, 28px);
  color:rgba(255,255,255,.78);
  font-size:15px;
  font-weight:850;
  white-space:nowrap;
  border-left:1px solid rgba(255,255,255,.08);
  transition:color .22s ease, background .22s ease;
}

.page-section-bar__link::after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  bottom:0;
  height:3px;
  background:#35bdf2;
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .22s ease;
}

.page-section-bar__link:hover,
.page-section-bar__link.is-active{
  color:#fff;
  background:rgba(255,255,255,.07);
}

.page-section-bar__link:hover::after,
.page-section-bar__link.is-active::after{
  transform:scaleX(1);
}

@media (max-width: 768px){
  .page-section-bar{
    display:none;
  }
}


/* =========================================================
   [2026-05-11] WHITE BLUE BRAND LAYOUT OVERRIDE
   - 오렌지 섹션바 제거
   - 흰색 배경 + 파란 포인트
   - PC 전체폭 레이아웃 유지
========================================================= */
body{
  background:#f5f9ff;
  color:#172033;
}

.nb-page-background{
  opacity:.035;
}

@media (min-width:769px){
  .main-layout.has-sidebar,
  .main-layout.no-sidebar{
    max-width:min(1540px, calc(100vw - 96px));
    padding-top:clamp(44px, 3.2vw, 72px);
  }
}

/* 하위메뉴바: 배너 아래 유지 */
.page-section-bar{
  position:relative;
  z-index:30;
  margin-top:0;
  background:#fff;
  border-top:1px solid #e5edf6;
  border-bottom:1px solid #dde8f5;
  box-shadow:0 10px 26px rgba(15,45,80,.045);
}

.page-section-bar__inner{
  display:flex;
  align-items:stretch;
  min-height:64px;
  overflow:visible;
  border-radius:0;
  background:#fff;
  border:0;
  box-shadow:none;
  backdrop-filter:none;
}

.page-section-bar__home{
  display:flex;
  align-items:center;
  justify-content:center;
  width:64px;
  min-width:64px;
  color:#667085;
  background:#fff;
  border-left:1px solid #e5edf6;
  border-right:1px solid #e5edf6;
  font-size:22px;
  font-weight:900;
}

.page-section-bar__current{
  display:flex;
  align-items:center;
  min-width:180px;
  padding:0 28px;
  color:#263446;
  background:#fff;
  border-right:1px solid #e5edf6;
}

.page-section-bar__current strong{
  font-size:15px;
  font-weight:900;
  letter-spacing:-.04em;
}

.page-section-bar__links{
  display:flex;
  align-items:stretch;
  flex:1;
  min-width:0;
  overflow-x:auto;
  scrollbar-width:none;
}

.page-section-bar__links::-webkit-scrollbar{
  display:none;
}

.page-section-bar__link{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:64px;
  padding:0 clamp(18px, 1.6vw, 34px);
  color:#485568;
  background:#fff;
  font-size:15px;
  font-weight:850;
  letter-spacing:-.035em;
  white-space:nowrap;
  border-left:1px solid #e9eff6;
  transition:color .2s ease, background .2s ease;
}

.page-section-bar__link::after{
  content:"";
  position:absolute;
  left:22px;
  right:22px;
  bottom:0;
  height:3px;
  border-radius:0;
  background:linear-gradient(90deg,#126ee2,#23b8ff);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .2s ease;
}

.page-section-bar__link:hover,
.page-section-bar__link.is-active{
  color:#126ee2;
  background:#f7fbff;
}

.page-section-bar__link:hover::after,
.page-section-bar__link.is-active::after{
  transform:scaleX(1);
}

/* breadcrumb */
.breadcrumbs{
  background:#f4f9ff;
  border-bottom:1px solid #e1ebf6;
  color:#6a788b;
  font-size:13px;
}

/* intro card */
.page-intro-card,
.product-intro-card{
  background:#fff;
  border:1px solid #dfeaf6;
  border-radius:0;
  box-shadow:0 18px 48px rgba(15,45,80,.07);
}

.page-intro-text .badge,
.badge{
  background:linear-gradient(90deg,#126ee2,#23a8ff);
  color:#fff;
  box-shadow:0 10px 24px rgba(18,110,226,.18);
}

.page-intro-text h2,
.content-card h2,
.section-head h2{
  color:#12243a;
}

.page-intro-text p,
.content-card p,
.section-head p{
  color:#5c6b7f;
}

/* 카드 공통 */
.content-card,
.category-card,
.quick-card{
  background:#fff;
  border-color:#dfeaf6;
  box-shadow:0 16px 44px rgba(15,45,80,.06);
}

.category-card:hover,
.quick-card:hover{
  border-color:#9ed4ff;
  box-shadow:0 20px 54px rgba(18,110,226,.12);
}

.btn-primary,
.btn-light:hover{
  background:linear-gradient(90deg,#126ee2,#23a8ff);
  color:#fff;
}

@media (max-width:768px){
  .page-section-bar{
    display:none;
  }

  .main-layout.has-sidebar,
  .main-layout.no-sidebar{
    padding-top:24px;
  }

  .page-intro-card,
  .product-intro-card{
    border-radius:0;
  }
}

/* ===== 문의하기 폼 정리 패치: EmailJS 유지 + NAS 업로드 + CSV 기록 ===== */
.contact-panel h2{
  font-size:clamp(42px, 3.4vw, 62px);
  line-height:1.08;
  letter-spacing:-.05em;
  margin-bottom:22px;
}

.contact-lead,
.contact-panel > p{
  font-size:clamp(17px, 1.2vw, 21px);
  line-height:1.85;
  color:#53667d;
  margin-bottom:34px;
}

.contact-form{
  gap:22px;
  margin-top:34px;
}

.form-row{
  gap:10px;
}

.form-row label{
  font-size:16px;
  letter-spacing:-.02em;
}

.form-row label span{
  color:#6f8195;
  font-size:14px;
  font-weight:800;
}

.form-row input,
.form-row select{
  min-height:58px;
  padding:16px 18px;
  font-size:17px;
}

.form-row textarea{
  min-height:280px;
  padding:18px;
  font-size:17px;
  line-height:1.75;
  resize:vertical;
}

.file-row{
  padding:22px;
  border:1px solid #d4e5f6;
  background:#f7fbff;
}

.file-row input[type="file"]{
  min-height:58px;
  padding:14px 16px;
  background:#fff;
}

.form-help{
  margin:2px 0 0;
  color:#6a7d91;
  font-size:14px;
  line-height:1.7;
}

.privacy-consent-box{
  padding:28px;
  border:1px solid #d4e5f6;
  background:#f8fbff;
}

.privacy-consent-box strong{
  display:block;
  margin-bottom:12px;
  color:#102d4c;
  font-size:20px;
  font-weight:900;
  letter-spacing:-.03em;
}

.privacy-consent-box p{
  margin:0 0 18px;
  color:#5e7084;
  font-size:15px;
  line-height:1.8;
}

.privacy-check{
  display:flex;
  align-items:center;
  gap:10px;
  color:#102d4c;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
}

.privacy-check input{
  width:20px;
  height:20px;
  min-height:auto;
  accent-color:#1687e8;
}

.submit-panel{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  padding:34px 28px;
  border:1px solid #cfe2f4;
  background:#f2f8ff;
  text-align:center;
}

.submit-guide{
  margin:0;
  color:#31475f;
  font-size:18px;
  font-weight:900;
  line-height:1.7;
  letter-spacing:-.03em;
}

.contact-submit-button{
  min-width:300px;
  min-height:66px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:0;
  background:#1687e8;
  color:#fff;
  font-size:24px;
  font-weight:900;
  letter-spacing:-.04em;
  box-shadow:none;
}

.contact-submit-button:hover{
  background:#0873cf;
}

.contact-submit-button:disabled{
  opacity:.65;
  cursor:wait;
}

.submit-sub{
  margin:0;
  color:#6a7d91;
  font-size:15px;
  line-height:1.7;
}

.contact-result{
  width:100%;
  margin-top:8px;
  padding:18px 20px;
  border:1px solid #cfe2f4;
  background:#fff;
  color:#31475f;
  font-size:17px;
  font-weight:900;
  line-height:1.6;
}

.contact-result.is-success{
  border-color:#acd9bf;
  background:#f0fbf4;
  color:#136b36;
}

.contact-result.is-error{
  border-color:#f1b4b4;
  background:#fff3f3;
  color:#b52828;
}

.contact-result.is-pending{
  border-color:#b7d8f7;
  background:#f5fbff;
  color:#0f5fb5;
}

@media(max-width:768px){
  .contact-panel h2{
    font-size:38px;
  }

  .contact-lead,
  .contact-panel > p{
    font-size:16px;
  }

  .form-row input,
  .form-row select{
    min-height:54px;
    font-size:16px;
  }

  .form-row textarea{
    min-height:220px;
    font-size:16px;
  }

  .privacy-consent-box,
  .submit-panel,
  .file-row{
    padding:22px 18px;
  }

  .contact-submit-button{
    width:100%;
    min-width:0;
    min-height:62px;
    font-size:22px;
  }
}


/* =========================================================
   [CONTACT SEND BUTTON VISIBILITY FIX]
   문의 보내기 버튼이 기존 .btn/.btn-primary 충돌 또는 캐시로 흐려지는 문제 방지
========================================================= */
.submit-panel #contact-submit-button.contact-submit-button,
#contact-submit-button.contact-send-button,
button#contact-submit-button{
  appearance:none;
  -webkit-appearance:none;
  min-width:320px;
  min-height:68px;
  padding:0 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:0;
  background:#1687e8;
  color:#ffffff;
  font-size:24px;
  font-weight:900;
  line-height:1;
  letter-spacing:-.04em;
  text-align:center;
  text-decoration:none;
  cursor:pointer;
  opacity:1;
  visibility:visible;
  box-shadow:0 14px 28px rgba(22,135,232,.22);
}

.submit-panel #contact-submit-button.contact-submit-button:hover,
#contact-submit-button.contact-send-button:hover,
button#contact-submit-button:hover{
  background:#0873cf;
  color:#ffffff;
}

.submit-panel #contact-submit-button.contact-submit-button:focus-visible,
#contact-submit-button.contact-send-button:focus-visible,
button#contact-submit-button:focus-visible{
  outline:3px solid rgba(35,168,255,.35);
  outline-offset:4px;
}

.submit-panel #contact-submit-button.contact-submit-button:disabled,
#contact-submit-button.contact-send-button:disabled,
button#contact-submit-button:disabled{
  background:#6daee8;
  color:#ffffff;
  opacity:.95;
  cursor:wait;
  box-shadow:none;
}

@media (max-width:768px){
  .submit-panel #contact-submit-button.contact-submit-button,
  #contact-submit-button.contact-send-button,
  button#contact-submit-button{
    width:100%;
    min-width:0;
    min-height:64px;
    font-size:22px;
  }
}

/* =========================================================
   [2026-05-11] 회사소개 페이지 브랜드형 재디자인
   - 파일명: /about.php
   - 적용 범위: body.page-about 전용
   - 목적: 기존 문서형 카드에서 산업자동화 브랜드형 소개 페이지로 전환
========================================================= */
body.page-about .layout-content{
  display:block;
}

body.page-about .about-intro-card{
  margin-bottom:clamp(24px,2.2vw,38px);
}

body.page-about .about-modern-hero,
body.page-about .about-modern-section{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(170,199,231,.9);
  background:#fff;
  box-shadow:0 18px 48px rgba(15,35,67,.08);
  margin-bottom:clamp(24px,2vw,34px);
}

body.page-about .about-modern-hero{
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(360px,.82fr);
  gap:clamp(28px,3vw,58px);
  align-items:stretch;
  padding:clamp(34px,4vw,72px);
  background:
    linear-gradient(135deg,rgba(255,255,255,.96),rgba(244,249,255,.92)),
    radial-gradient(circle at 88% 12%,rgba(15,102,187,.18),transparent 34%),
    linear-gradient(120deg,#fff 0%,#f3f8ff 100%);
}

body.page-about .about-modern-hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(15,102,187,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,102,187,.055) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.15));
}

body.page-about .about-modern-copy,
body.page-about .about-modern-panel{
  position:relative;
  z-index:1;
}

body.page-about .about-kicker,
body.page-about .about-section-head span{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  background:#eaf5ff;
  color:#0f66bb;
  font-size:12px;
  line-height:1;
  font-weight:900;
  letter-spacing:.14em;
}

body.page-about .about-modern-copy h2{
  margin:18px 0 20px;
  color:#0d2744;
  font-size:clamp(34px,3.4vw,58px);
  line-height:1.16;
  letter-spacing:-2.1px;
  font-weight:950;
}

body.page-about .about-modern-copy p{
  max-width:820px;
  margin:0 0 14px;
  color:#53677f;
  font-size:17px;
  line-height:1.9;
  word-break:keep-all;
}

body.page-about .about-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

body.page-about .about-primary-link,
body.page-about .about-secondary-link,
body.page-about .about-location-box a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  font-size:15px;
  font-weight:900;
  text-decoration:none;
  border:1px solid #0f66bb;
}

body.page-about .about-primary-link,
body.page-about .about-location-box a{
  background:#0f66bb;
  color:#fff;
  box-shadow:0 14px 24px rgba(15,102,187,.2);
}

body.page-about .about-secondary-link{
  background:#fff;
  color:#0f66bb;
}

body.page-about .about-modern-panel{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  align-self:center;
}

body.page-about .about-panel-item{
  min-height:148px;
  padding:24px;
  border:1px solid rgba(184,207,233,.9);
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(4px);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

body.page-about .about-panel-item strong{
  display:block;
  margin-bottom:9px;
  color:#0f66bb;
  font-size:clamp(23px,2vw,34px);
  line-height:1.1;
  font-weight:950;
  letter-spacing:-1px;
}

body.page-about .about-panel-item span{
  color:#2f4054;
  font-size:15px;
  line-height:1.55;
  font-weight:800;
  word-break:keep-all;
}

body.page-about .about-modern-section{
  padding:clamp(32px,3.2vw,58px);
}

body.page-about .about-section-head{
  max-width:860px;
  margin:0 auto clamp(24px,2.4vw,38px);
  text-align:center;
}

body.page-about .about-section-head.is-left{
  margin-left:0;
  margin-right:0;
  text-align:left;
}

body.page-about .about-section-head h2{
  margin:14px 0 12px;
  color:#102d4c;
  font-size:clamp(28px,2.6vw,44px);
  line-height:1.22;
  letter-spacing:-1.5px;
  font-weight:950;
}

body.page-about .about-section-head p{
  margin:0;
  color:#5f7186;
  font-size:16px;
  line-height:1.8;
  word-break:keep-all;
}

body.page-about .about-strength-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

body.page-about .about-strength-grid article{
  min-height:250px;
  padding:26px 24px;
  border:1px solid #d7e6f6;
  background:linear-gradient(180deg,#fff 0%,#f7fbff 100%);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}

body.page-about .about-strength-grid article:hover{
  transform:translateY(-4px);
  border-color:#9fcaff;
  box-shadow:0 18px 34px rgba(15,102,187,.1);
}

body.page-about .about-strength-grid b{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  margin-bottom:22px;
  background:#0f66bb;
  color:#fff;
  font-size:13px;
  font-weight:950;
}

body.page-about .about-strength-grid h3{
  margin:0 0 12px;
  color:#102d4c;
  font-size:22px;
  line-height:1.3;
  letter-spacing:-.7px;
  font-weight:950;
}

body.page-about .about-strength-grid p{
  margin:0;
  color:#53677f;
  font-size:15px;
  line-height:1.8;
  word-break:keep-all;
}

body.page-about .about-process-section{
  background:linear-gradient(135deg,#102d4c 0%,#164b78 100%);
  border-color:#164b78;
}

body.page-about .about-process-section .about-section-head span{
  background:rgba(255,255,255,.12);
  color:#bfe0ff;
}

body.page-about .about-process-section .about-section-head h2{
  color:#fff;
}

body.page-about .about-process-list{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:1px;
  background:rgba(255,255,255,.22);
}

body.page-about .about-process-list div{
  min-height:190px;
  padding:24px 20px;
  background:rgba(255,255,255,.08);
}

body.page-about .about-process-list em{
  display:block;
  margin-bottom:18px;
  color:#8fd0ff;
  font-style:normal;
  font-size:13px;
  font-weight:950;
  letter-spacing:.08em;
}

body.page-about .about-process-list strong{
  display:block;
  margin-bottom:10px;
  color:#fff;
  font-size:20px;
  line-height:1.35;
  font-weight:950;
  letter-spacing:-.7px;
}

body.page-about .about-process-list span{
  display:block;
  color:#d8e8f8;
  font-size:14px;
  line-height:1.75;
  word-break:keep-all;
}

body.page-about .about-timeline{
  border-top:2px solid #0f66bb;
}

body.page-about .about-timeline-row{
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  gap:28px;
  padding:26px 0;
  border-bottom:1px solid #d9e6f5;
}

body.page-about .about-timeline-row time{
  color:#0f66bb;
  font-size:18px;
  font-weight:950;
  letter-spacing:-.4px;
}

body.page-about .about-timeline-row strong{
  display:block;
  margin-bottom:8px;
  color:#102d4c;
  font-size:22px;
  line-height:1.35;
  font-weight:950;
  letter-spacing:-.7px;
}

body.page-about .about-timeline-row p{
  margin:0;
  color:#5c6e82;
  font-size:15px;
  line-height:1.75;
  word-break:keep-all;
}

body.page-about .about-location-box{
  display:grid;
  grid-template-columns:1.1fr 1.4fr auto;
  gap:16px;
  align-items:stretch;
  padding:22px;
  background:#f5f9ff;
  border:1px solid #d6e6f7;
}

body.page-about .about-location-box div{
  padding:20px;
  background:#fff;
  border:1px solid #dce9f7;
}

body.page-about .about-location-box strong{
  display:block;
  margin-bottom:8px;
  color:#0f66bb;
  font-size:14px;
  font-weight:950;
}

body.page-about .about-location-box p{
  margin:0;
  color:#2f4054;
  font-size:16px;
  line-height:1.7;
  word-break:keep-all;
}

body.page-about .about-location-box a{
  align-self:center;
  min-width:132px;
}

@media (max-width:1200px){
  body.page-about .about-modern-hero{
    grid-template-columns:1fr;
  }
  body.page-about .about-modern-panel,
  body.page-about .about-strength-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  body.page-about .about-process-list{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width:768px){
  body.page-about .about-modern-hero,
  body.page-about .about-modern-section{
    margin-bottom:18px;
  }
  body.page-about .about-modern-hero{
    padding:26px 20px;
  }
  body.page-about .about-modern-copy h2{
    font-size:31px;
    letter-spacing:-1.4px;
  }
  body.page-about .about-modern-copy p{
    font-size:15px;
    line-height:1.78;
  }
  body.page-about .about-modern-panel,
  body.page-about .about-strength-grid,
  body.page-about .about-process-list,
  body.page-about .about-location-box{
    grid-template-columns:1fr;
  }
  body.page-about .about-panel-item{
    min-height:118px;
  }
  body.page-about .about-modern-section{
    padding:26px 20px;
  }
  body.page-about .about-section-head{
    text-align:left;
    margin-bottom:22px;
  }
  body.page-about .about-strength-grid article{
    min-height:auto;
  }
  body.page-about .about-process-list{
    gap:10px;
    background:transparent;
  }
  body.page-about .about-process-list div{
    min-height:auto;
    border:1px solid rgba(255,255,255,.18);
  }
  body.page-about .about-timeline-row{
    grid-template-columns:1fr;
    gap:10px;
  }
  body.page-about .about-location-box{
    padding:14px;
  }
  body.page-about .about-location-box a{
    width:100%;
  }
}




/* =========================================================
   V8 LAYOUT WIDTH REBUILD
========================================================= */

.wrapper,
.site-wrapper,
.page-wrapper{
    width:100%;
    overflow:hidden;
}

main{
    width:100%;
}

/* ===== [CSS 통합] 공통 구조 CSS 통합: site-structure → layout.css ===== */

/* ---- merged from /assets/css/site-structure.css ---- */
/* =========================================================
   파일명: /assets/css/site-structure.css
   역할: layout 기준(container/header/section/grid/spacing)
   기준: 2026-05-11 CSS ROLE STANDARD v1

   원칙:
   - 폭/간격/정렬/section/container/header/submenu는 이 파일에서만 관리합니다.
   - 페이지별 CSS는 layout을 건드리지 않습니다.
========================================================= */

/* [01] 운영 기준 폭 */
.container,
.page-section-bar__inner,
.header-inner,
.home-main-category__inner,
.home-capability-section__inner,
.home-case-showcase__inner,
.home-final-cta__inner{
  width:var(--nb-page-width);
  max-width:none;
  margin-left:auto;
  margin-right:auto;
}

body.home-page .container,
body.home-page .home-main-category__inner,
body.home-page .home-capability-section__inner,
body.home-page .home-case-showcase__inner,
body.home-page .home-final-cta__inner{
  width:var(--nb-page-width);
}

/* [02] 헤더 기준 고정: 로고와 문의하기 위치 흔들림 방지 */
.site-header .header-inner{
  width:var(--nb-page-width);
  max-width:none;
  min-height:var(--nb-header-height);
  margin-left:auto;
  margin-right:auto;
  display:flex;
  align-items:center;
  gap:clamp(18px,2vw,34px);
}
.site-header .logo{flex:0 0 auto; display:flex; align-items:center;}
.site-header .logo img{display:block; width:auto; max-height:44px; object-fit:contain;}
.site-header .main-nav{min-width:0; flex:1 1 auto; display:flex; justify-content:center;}
.site-header .header-actions{flex:0 0 auto; margin-left:auto; display:flex; align-items:center; gap:12px;}
.header-contact-btn{white-space:nowrap;}

/* [03] 본문 시작 간격: 하위메뉴바와 첫 섹션 사이 과도한 공백 축소 */
.main-layout{
  width:var(--nb-page-width);
  max-width:none;
  margin-left:auto;
  margin-right:auto;
  padding-top:var(--nb-section-gap-tight);
  padding-bottom:clamp(72px,7vw,120px);
}
.main-layout.no-sidebar{display:block;}
.main-layout.has-sidebar{
  display:grid;
  grid-template-columns:260px minmax(0,1fr);
  gap:clamp(28px,3vw,48px);
  align-items:start;
}
.layout-content{width:100%; min-width:0; display:block;}
.layout-content > .content-card,
.layout-content > .page-intro-card,
.layout-content > .section-card-stack,
.layout-content > .customer-section-stack,
.layout-content > .case-overview-intro,
.layout-content > .customer-overview-intro,
.layout-content > .equipment-home-hero,
.layout-content > .line-automation-hero,
.layout-content > .auto-packer-hero,
.layout-content > .category-showcase-hero,
.layout-content > .line-automation-summary,
.layout-content > .auto-packer-summary,
.layout-content > .category-showcase-summary,
.layout-content > .line-filter-intro,
.layout-content > .auto-filter-intro,
.layout-content > .category-filter-intro,
.layout-content > .product-industrial-head,
.layout-content > .product-control-panel,
.layout-content > .product-list-head,
.layout-content > .product-grid{
  width:100%;
  max-width:none;
  margin-left:0;
  margin-right:0;
}
.layout-content > *:first-child{margin-top:0;}
.layout-content > *:last-child{margin-bottom:0;}

/* [04] 하위메뉴바 기준 */
.page-section-bar{
  margin:0;
  border-top:1px solid rgba(15,23,42,.08);
  border-bottom:1px solid rgba(15,23,42,.1);
  background:#fff;
}
.page-section-bar__inner{min-height:var(--nb-subnav-height); align-items:stretch;}
.page-section-bar__current,
.page-section-bar__link,
.page-section-bar__home{
  min-height:var(--nb-subnav-height);
  display:flex;
  align-items:center;
}
.page-section-bar + .mobile-product-search,
.page-section-bar + .breadcrumbs,
.page-section-bar + main,
.mobile-product-search + main,
.breadcrumbs + main{margin-top:0;}

/* [05] 공통 section 간격 */
body:not(.home-page) .layout-content > section,
body:not(.home-page) .layout-content > article,
body:not(.home-page) .layout-content > .content-card,
body:not(.home-page) .layout-content > .section-card-stack{
  margin-top:0;
  margin-bottom:var(--nb-section-gap);
}
body:not(.home-page) .layout-content > section:last-child,
body:not(.home-page) .layout-content > article:last-child,
body:not(.home-page) .layout-content > .content-card:last-child,
body:not(.home-page) .layout-content > .section-card-stack:last-child{margin-bottom:0;}

.section-card-stack,
.customer-section-stack,
.case-sections{
  display:flex;
  flex-direction:column;
  gap:var(--nb-section-gap);
}
.section-card-stack > section,
.customer-section-stack > section,
.case-sections > section{margin:0;}

/* [06] 제품/설비 페이지는 정보 탐색 페이지이므로 간격을 더 조밀하게 */
body.page-products .layout-content > section,
body.page-line .layout-content > section,
body.page-auto .layout-content > section,
body.page-semi_printer .layout-content > section,
body.page-printer .layout-content > section,
body.page-consumable .layout-content > section{
  margin-bottom:clamp(22px,2.4vw,40px);
}
body.page-products .section-card-stack,
body.page-line .section-card-stack,
body.page-auto .section-card-stack,
body.page-semi_printer .section-card-stack,
body.page-printer .section-card-stack,
body.page-consumable .section-card-stack{gap:clamp(22px,2.4vw,40px);}

/* [07] 고객센터 계열 폭 통일 */
body[data-sidebar-type="customer"] .layout-content,
body.page-contact .layout-content,
body.page-as .layout-content,
body.page-notice .layout-content,
body.page-tech .layout-content{max-width:none; width:100%;}
body[data-sidebar-type="customer"] .layout-content > section,
body[data-sidebar-type="customer"] .layout-content > .content-card,
body[data-sidebar-type="customer"] .customer-section-stack,
body[data-sidebar-type="customer"] .contact-panel,
body[data-sidebar-type="customer"] .nb-service-card,
body[data-sidebar-type="customer"] .resource-card,
body[data-sidebar-type="customer"] .notice-card,
body[data-sidebar-type="customer"] .as-card{
  width:100%;
  max-width:none;
}

/* [08] 공통 grid 기준 */
.product-grid,
.case-grid,
.home-case-grid,
.home-solution-grid,
.equipment-home-grid,
.about-strength-grid,
.customer-overview-grid,
.customer-quick-grid,
.nb-info-grid,
.notice-summary-grid{
  display:grid;
  align-items:stretch;
  gap:clamp(18px,2vw,28px);
}
.product-grid,
.case-grid,
.case-paged-grid{grid-template-columns:repeat(5,minmax(0,1fr));}
.home-case-grid,
.equipment-home-grid,
.customer-overview-grid,
.customer-quick-grid,
.about-strength-grid,
.nb-info-grid,
.notice-summary-grid{grid-template-columns:repeat(4,minmax(0,1fr));}

/* [09] 이미지 비율 기준 */
.product-thumb,
.case-thumb,
.home-case-card__thumb,
.equipment-card-image{aspect-ratio:4/3; display:block; overflow:hidden; background:#f8fafc;}
.home-solution-card__media{aspect-ratio:16/10; display:block; overflow:hidden; background:#f8fafc;}
.product-thumb img,
.case-thumb img,
.home-case-card__thumb img,
.home-solution-card__media img,
.equipment-card-image img{display:block; width:100%; height:100%;}
.product-thumb img,
.equipment-card-image img{object-fit:contain; padding:clamp(10px,1.2vw,18px);}
.case-thumb img,
.home-case-card__thumb img,
.home-solution-card__media img{object-fit:cover;}

/* [10] 기존 inner/wrap 중복 폭 흡수 */
.about-inner,.equipment-inner,.product-inner,.case-inner,.customer-inner,.support-inner,.tech-inner,.notice-inner,.as-inner,.contact-inner,.nb-section-inner,.nb-page-inner{
  width:100%; max-width:none; margin-left:auto; margin-right:auto;
}

/* =========================================================
   [2026-05-12] CUSTOMER HEADER/SUBMENU ROOT ALIGNMENT FIX
   원인:
   - /assets/css/support-redesign.css 가 고객센터 계열에서만 로드되며
     .container, .inner { padding:0 32px; max-width:1320px; } 전역 규칙을 다시 주입함.
   - 그 결과 고객센터 페이지만 header-inner / page-hero-inner / page-section-bar 기준선이
     납품·수리 사례 등 다른 서브페이지와 다르게 밀려 보였음.
   처리:
   - 공통 레이아웃 기준선 요소의 padding/max-width를 최종 구조 CSS에서 명확히 원복.
   - Hero 높이와 서브메뉴바 위치도 공통 기준으로 고정하여 페이지 이동 시 흔들림 제거.
========================================================= */
.site-header .header-inner,
.page-hero.page-hero--banner .page-hero-inner,
.page-section-bar .container,
.page-section-bar__inner,
main.container.main-layout,
body.sub-page:not(.home-page) .site-header .header-inner,
body.sub-page:not(.home-page) .page-hero.page-hero--banner .page-hero-inner,
body.sub-page:not(.home-page) .page-section-bar .container,
body.sub-page:not(.home-page) .page-section-bar__inner,
body.sub-page:not(.home-page) main.container.main-layout,
body[data-sidebar-type="customer"] .site-header .header-inner,
body[data-sidebar-type="customer"] .page-hero.page-hero--banner .page-hero-inner,
body[data-sidebar-type="customer"] .page-section-bar .container,
body[data-sidebar-type="customer"] .page-section-bar__inner,
body[data-sidebar-type="customer"] main.container.main-layout{
  width:var(--nb-page-width);
  max-width:none;
  margin-left:auto;
  margin-right:auto;
  padding-left:0;
  padding-right:0;
  box-sizing:border-box;
}

.site-header,
.site-header .header-inner,
body[data-sidebar-type="customer"] .site-header,
body[data-sidebar-type="customer"] .site-header .header-inner{
  height:var(--nb-header-h);
  min-height:var(--nb-header-h);
}

.page-hero.page-hero--banner,
body[data-sidebar-type="customer"] .page-hero.page-hero--banner,
body[data-sidebar-type="cases"] .page-hero.page-hero--banner,
body[data-sidebar-type="products"] .page-hero.page-hero--banner,
body.page-about .page-hero.page-hero--banner{
  height:400px;
  min-height:400px;
  max-height:none;
  margin:0;
  display:flex;
  align-items:center;
}

.page-hero.page-hero--banner .page-hero-inner,
body[data-sidebar-type="customer"] .page-hero.page-hero--banner .page-hero-inner{
  padding-top:var(--nb-header-h);
  padding-bottom:0;
}

.page-section-bar,
body[data-sidebar-type="customer"] .page-section-bar,
body[data-sidebar-type="cases"] .page-section-bar,
body[data-sidebar-type="products"] .page-section-bar,
body.page-about .page-section-bar{
  margin-top:0;
  transform:none;
}

.page-section-bar__inner,
body[data-sidebar-type="customer"] .page-section-bar__inner{
  min-height:var(--nb-subnav-height);
}

@media (max-width:1024px){
  .site-header .header-inner,
  .page-hero.page-hero--banner .page-hero-inner,
  .page-section-bar .container,
  .page-section-bar__inner,
  main.container.main-layout,
  body.sub-page:not(.home-page) .site-header .header-inner,
  body.sub-page:not(.home-page) .page-hero.page-hero--banner .page-hero-inner,
  body.sub-page:not(.home-page) .page-section-bar .container,
  body.sub-page:not(.home-page) .page-section-bar__inner,
  body.sub-page:not(.home-page) main.container.main-layout{
    width:92vw;
    padding-left:0;
    padding-right:0;
  }
}

@media (max-width:768px){
  .page-hero.page-hero--banner,
  body[data-sidebar-type="customer"] .page-hero.page-hero--banner,
  body[data-sidebar-type="cases"] .page-hero.page-hero--banner,
  body[data-sidebar-type="products"] .page-hero.page-hero--banner,
  body.page-about .page-hero.page-hero--banner{
    height:360px;
    min-height:360px;
  }

  .page-hero.page-hero--banner .page-hero-inner{
    padding-top:calc(var(--nb-header-h) + 10px);
    padding-left:0;
    padding-right:0;
  }
}


.quick-menu .active,
.quick-menu .current,
.quick-menu [aria-current="page"],
.quick-menu button.active,
.quick-menu a.active{
  background:#2166f3 !important;
  color:#ffffff !important;
  opacity:1 !important;
  filter:none !important;
  font-weight:900 !important;
  text-shadow:none !important;
}

.quick-menu .active *,
.quick-menu .current *,
.quick-menu [aria-current="page"] *{
  color:#ffffff !important;
  opacity:1 !important;
}
