@charset "utf-8";

/* 서브페이지 기본 설정 */
.sub-content-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 135px 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* 서브 비주얼 영역 */
.sub-visual {
  position: relative;
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.sub-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.4); */
  /* 어두운 오버레이 */
  z-index: 1;
}

.sub-visual-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 100%;
  /* 헤더 높이만큼 띄워줌 */
}

.sub-visual-title {
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 서브 탭 (2-depth 메뉴) */
.sub-tab-wrap {
  position: sticky;
  top: var(--header-height, 80px);
  width: 100%;
  margin-top: -70px;
  z-index: 99;
  transition: top 0.3s ease;
}

/* 스크롤 다운 시 헤더가 숨겨진 상태일 때 */
#header.header-hidden ~ .sub-tab-wrap {
  top: 0;
}

.sub-tab {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
  background: var(--theme-navy);
}

.sub-tab li {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.sub-tab li:last-child {
  /* border-right: none; */
  /* border-bottom: 1px solid #00225e; */
}

.sub-tab li a {
  display: block;
  padding: 20px 10px;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sub-tab li.active a,
.sub-tab li a:hover {
  background: #fff;
  color: #00225e;
  font-weight: 700;
  border-bottom: 1px solid #00225e;
}

/* color */
.dark_gray {
  color: #525253 !important;
}

.orange {
  color: var(--color-orange) !important;
}

.blue {
  color: var(--theme-blue) !important;
}

.green {
  color: var(--theme-green) !important;
}

.deep_blue {
  color: var(--color-primary) !important;
}

/* ── 공통 컴포넌트 ──────────────────────────── */
.sub-page-header {
  text-align: center;
  margin-bottom: 100px;
}

.sub-page-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.sub-page-desc {
  font-size: 22px;
  color: #333;
}

/* ── CEO 인사말 ──────────────────────────── */
.ceo-wrap {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.ceo-text {
  flex: 1;
  padding-top: 80px;
}

.ceo-text h3 {
  font-size: 38px;
  color: var(--theme-deepblue);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.ceo-text h3 span {
  color: #1148a9;
}

.ceo-text h3 span.txt {
  color: #7d7c7c;
}

.ceo-text h3 span.bold {
  font-weight: 600;
  font-size: 43px
}

.ceo-text .ceo-slogan {
  font-size: 28px;
  color: var(--theme-blue);
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.4;
}

.ceo-text p {
  font-size: 18px;
  color: #2f2f2f;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.ceo-sign {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ceo-sign img {
  height: 50px;
}

.ceo-img {
  flex: 1;
  text-align: right;
}

.ceo-img img {
  max-width: 100%;
  background: #f8f8f8;
}

/* ── 회사 연혁 ──────────────────────────── */
.history-wrap {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 0;
}

.history-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #eee;
  transform: translateX(-50%);
}

.history-year-group {
  margin-bottom: 60px;
  position: relative;
}

.history-now {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.history-now span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 125px;
  height: 125px;
  background: var(--theme-orange);
  color: #fff;
  border-radius: 50%;
  line-height: 1.3;
  font-size: 24px;
  font-weight: 700;
  font-family: 'GmarketSans', 'Noto Sans KR', sans-serif;
}

.history-item {
  margin-bottom: 30px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.history-item.left {
  padding-right: 40px;
  margin-left: 0;
  text-align: right;
}

.history-item.right {
  padding-left: 40px;
  margin-left: 50%;
  text-align: left;
}

.h-year,
.h-desc {
  width: 100%;
}

.h-year {
  font-size: 40px;
  font-weight: 700;
  color: #2f2f2f;
  position: relative;
  font-family: 'GmarketSans', 'Noto Sans KR', sans-serif;
}

.h-year::before {
  content: '';
  position: absolute;
  top: 10px;
  width: 16px;
  height: 16px;
  background: url('/images/sub/ico_dot.png') no-repeat center center;
  background-size: contain;
  border: none;
  border-radius: 0;
}

.history-item.left .h-year::before {
  left: auto;
  right: -48px;
}

.history-item.right .h-year::before {
  right: auto;
  left: -48px;
}

.h-desc {
  padding-top: 10px;
  font-size: 16px;
  color: #2f2f2f;
}

.h-desc img {
  margin-top: 20px;
  max-width: 100%;
  border: 1px solid #eee;
  box-sizing: border-box;
}

/* ── 창업주 ──────────────────────────── */
.founder-sec {
  margin-bottom: 120px;
}

.founder-sec1 {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #f9f9f9;
  padding: 60px;
}

.f-text1 {
  flex: 1;
  padding-right: 50px;
  word-break: auto-phrase;
}

.f-text1 h3 {
  font-size: 43px;
  color: var(--theme-orange);
  font-weight: 700;
  margin-bottom: 30px;
}

.f-text1 h3 span {
  color: #333;
  font-size: 38px;
}

.f-text1 p {
  font-size: 18px;
  color: #2f2f2f;
  line-height: 1.8;
  margin-bottom: 30px;
}

.f-img1 {
  flex: 1;
  text-align: right;
}

.f-img1 img {
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-sec2 h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  /* text-align: center; */
}

.f-sec2-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
}

.f-img2 {
  /* flex: 3; */
}

.f-img2 img {
  max-width: 100%;
}

.f-list2 {
  /* flex: 1; */
  list-style: none;
  padding: 0;
  margin: auto;
}

.f-list2 li {
  margin-bottom: 30px;
}

.f-list2 h4 {
  font-size: 25px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 10px;
}

.f-list2 h4 span {
  color: var(--theme-orange);
  margin-right: 10px;
}

.f-list2 p {
  font-size: 18px;
  color: #2f2f2f;
}

.founder-sec3 h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}

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

.cert-grid img {
  width: 100%;
  border: 1px solid #eee;
}

.founder-sec4 {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #333;
  margin-bottom: -50px;
}

.founder-sec4 .f-quote {
  position: relative;
  z-index: 2;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.founder-sec4 p {
  position: relative;
  z-index: 2;
  font-size: 18px;
}

/* ── 그룹사 현황 ──────────────────────────── */
.group-item {
  margin-bottom: 80px;
}

.group-top {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}

.group-info {
  flex: 1;
}

.group-info h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.group-info img {
  max-height: 50px;
  margin-bottom: 30px;
}

.group-info p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.group-img {
  flex: 1;
}

.group-img img {
  max-width: 100%;
}

.group-bottom {
  /* border-top: 1px solid #333; */
  border-bottom: 1px solid #333;
  padding: 50px;
  display: flex;
  align-items: center;
  margin-top: 50px;
  /* justify-content: space-between; */
  gap: 14%;
}

.group-bottom dl {
  display: flex;
  gap: 20px;
  font-size: 15px;
  margin: 0;
}

.group-bottom dt {
  font-weight: 700;
  color: #333;
  min-width: 30px;
}

.group-bottom dd {
  color: #666;
  margin: 0;
}

.group-bottom dt:nth-child(3) {
  margin-left: 15px
}

/* ── 관계사 ──────────────────────────── */
.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.affiliate-item {
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.affiliate-item:hover {
  border-color: #ccc;
}

.affiliate-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* ── 사업장 안내 ──────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px 50px;
}

.loc-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.loc-info {
  margin-bottom: 20px;
  font-size: 15px;
  color: #555;
  min-height: 56px;
}

.loc-info p {
  margin-bottom: 8px;
}

.loc-info span {
  display: inline-block;
  width: 40px;
  font-weight: 700;
  color: #333;
}

.loc-map {
  width: 100%;
  /* height: 300px; */
  background: #eee;
  /* border:1px solid #ddd; */
}

@media (max-width: 1024px) {

  .ceo-wrap,
  .founder-sec1,
  .f-sec2-wrap,
  .group-top {
    flex-direction: column;
  }

  .history-item {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .history-item.left,
  .history-item.right {
    padding-left: 40px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .h-year,
  .h-desc {
    width: 100%;
    text-align: left !important;
    padding: 0 !important;
  }

  .history-item.left .h-year::before,
  .history-item.right .h-year::before {
    left: -48px !important;
    right: auto !important;
  }

  .history-wrap::before {
    left: 0;
  }

  .h-desc {
    padding-left: 0;
    margin-bottom: 30px;
  }

  .h-year {
    padding-left: 0;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .group-bottom {
    flex-wrap: wrap;
    gap: 15px;
    padding: 5px;
  }

  .group-bottom dl {
    gap: 10px
  }
}

/* ── 제품소개 (Product Introduction) ──────────────────────────── */
.product-detail-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-info-sec {
  margin-bottom: 50px;
  text-align: left;
}

.product-info-sec .product-title {
  font-size: 35px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-family: var(--font-title);
}

.product-info-sec .product-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  /* background: var(--theme-orange, #f26522); */
}

.product-info-sec .product-title span {
  font-size: 25px;
  color: #2f2f2f;
  font-weight: 500;
  margin-left: 8px;
  font-family: 'GmarketSans', 'Noto Sans KR', sans-serif;
}

.product-info-sec .product-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  word-break: keep-all;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.product-img-item {
  width: 100%;
  max-width: 900px;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-img-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 1024px) {
  .product-detail-wrap {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .ceo-text h3 span.bold {
    font-size: 28px;
  }

  .product-info-sec .product-title {
    font-size: 26px;
  }

  .product-info-sec .product-title span {
    font-size: 18px;
  }

  .product-info-sec .product-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .product-images {
    gap: 25px;
  }
}

/* ==========================================================================
   인재채용 (Recruitment) 스타일 & 스크롤 애니메이션
   ========================================================================== */

/* ── 스크롤 애니메이션 공통 ──────────────────────────── */
.ani-init {
  opacity: 0;
  will-change: transform, opacity;
}

/* 페이드인 + 위에서 아래로 */
.ani-fade-down {
  transform: translateY(-40px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 슬라이드인 왼쪽에서 오른쪽 */
.ani-slide-left {
  transform: translateX(-80px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 슬라이드인 오른쪽에서 왼쪽 */
.ani-slide-right {
  transform: translateX(80px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 페이드 업 (순차적 카드) */
.ani-fade-up {
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 애니메이션 실행 상태 */
.ani-animate {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ── 1. 인재상 (talent.php) ──────────────────────────── */
.talent-intro {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 80px auto;
  font-size: 20px;
  line-height: 1.8;
  color: #60605f;
  word-break: keep-all;
}

.talent-intro strong {
  color: var(--theme-orange, #f26522);
  font-weight: 700;
  font-size: 26px;
}

.talent-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 50px;
}

.talent-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.talent-row.reverse {
  flex-direction: row-reverse;
  padding-left: 50px;
}

.talent-media {
  flex: 1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.talent-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.talent-media:hover img {
  transform: scale(1.05);
}

.talent-info {
  flex: 1;
}

.talent-num {
  font-size: 84px;
  font-weight: 800;
  color: #f1f1f1;
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'GmarketSans', sans-serif;
}

.talent-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--theme-orange, #f26522);
  margin-bottom: 8px;
}

.talent-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-deepblue, #1148a9);
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-family: 'GmarketSans', sans-serif;
}

.talent-desc {
  font-size: 20px;
  line-height: 1.75;
  color: #585555;
  word-break: keep-all;
}

@media (max-width: 991px) {
  .talent-list {
    gap: 80px;
  }

  .talent-row,
  .talent-row.reverse {
    flex-direction: column;
    gap: 40px;
  }

  .talent-media,
  .talent-info {
    width: 100%;
    flex: none;
  }

  .talent-num {
    font-size: 60px;
  }

  .talent-title {
    font-size: 26px;
  }
}

/* ── 2. 복리후생 (welfare.php) ──────────────────────────── */
.welfare-intro {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 80px auto;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  word-break: keep-all;
}

.welfare-intro strong {
  color: var(--theme-blue, #005bac);
  font-weight: 700;
  font-size: 26px;
}

.welfare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 50px;
}

.welfare-card {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}

.welfare-card:hover {
  /* box-shadow: 0 15px 45px rgba(0,0,0,0.05); */
}

.welfare-oval-wrap {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto 35px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.welfare-svg {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 380px;
  height: 380px;
  pointer-events: none;
  z-index: 10;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.welfare-svg-path {
  stroke-dasharray: 590;
  stroke-dashoffset: 590;
  transition: stroke-dashoffset 2s cubic-bezier(0.25, 1, 0.5, 1);
}

.welfare-card.ani-animate .welfare-svg-path {
  stroke-dashoffset: 0 !important;
}

.welfare-oval {
  width: 320px;
  height: 320px;
  background: #f8f9fa;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px 20px 20px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.welfare-card:hover .welfare-oval {
  transform: scale(1.04);
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.welfare-card:hover .welfare-svg {
  transform: scale(1.04);
}

.welfare-oval img {
  width: 125px;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.welfare-card:hover .welfare-oval img {
  transform: translateY(-8px);
}

.welfare-h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0;
  font-family: 'GmarketSans', 'Noto Sans KR', sans-serif;
  transition: color 0.3s ease;
}

.welfare-card:hover .welfare-h3 {
  color: var(--theme-blue, #005bac);
}

.welfare-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.welfare-list li {
  font-size: 16px;
  color: #555;
  text-align: center;
  position: relative;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.welfare-card:hover .welfare-list li {
  color: #333;
}

@media (max-width: 991px) {
  .welfare-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .welfare-card {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .welfare-oval-wrap {
    width: 280px;
    height: 280px;
    margin-bottom: 25px;
  }

  .welfare-svg {
    width: 304px;
    height: 304px;
    top: -12px;
    left: -12px;
  }

  .welfare-oval {
    width: 256px;
    height: 256px;
    gap: 15px;
    padding: 30px 15px 15px 15px;
  }

  .welfare-oval img {
    width: 95px;
  }

  .welfare-h3 {
    font-size: 19px;
  }

  .welfare-list li {
    font-size: 14px;
  }
}

/* ── 3. 채용안내 (guide.php) ──────────────────────────── */
.guide-banner {
  width: 100%;
  margin-bottom: 80px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.guide-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 100px;
}

.guide-card {
  background: #fff;
  /* border: 1px solid #eaeaea; */
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.guide-info {
  flex: 1;
}

.guide-h3 {
  font-size: 35px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  position: relative;
}

.guide-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 30px;
}

.guide-info li {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  word-break: keep-all;
  list-style: initial;
}

.guide-info li strong {
  display: block;
  font-size: 18px;
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
}

.guide-card-img {
  flex: 0 0 140px;
  text-align: center;
}

.guide-card-img img {
  max-width: 100%;
  height: auto;
  /* box-shadow: 0 5px 15px rgba(0,0,0,0.08); */
  padding-top: 95px;
}

/* 채용 절차 */
.process-sec {
  margin-top: 80px;
}

.process-h3 {
  font-size: 35px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.process-step {
  flex: 1;
  background: #f8f9fa;
  border: 1px solid #eee;
  padding: 35px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: #fff;
  border-color: #ccc;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.process-step.active {
  background: var(--theme-blue, #005bac);
  border-color: var(--theme-blue, #005bac);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 91, 172, 0.25);
}

.process-step .step-num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.process-step.active .step-num {
  color: rgba(255, 255, 255, 0.7);
}

.process-step .step-name {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.process-step.active .step-name {
  color: #fff;
}

.process-arrow {
  flex: 0 0 30px;
  text-align: center;
  font-size: 24px;
  color: #ccc;
  font-weight: 300;
}

@media (max-width: 991px) {
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .guide-card {
    padding: 30px;
  }

  .process-flow {
    flex-direction: column;
    gap: 15px;
    padding: 5px 20px;
  }

  .process-step {
    width: 100%;
  }

  .process-arrow {
    transform: rotate(90deg) !important;
    margin: 5px 0;
  }
}

/* ── 4. 채용공고 (notice.php) ──────────────────────────── */
.board-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.board-search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.board-search-input {
  width: 260px;
  height: 40px;
  padding: 0 45px 0 15px;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.board-search-input:focus {
  border-color: #333;
}

.board-search-btn {
  position: absolute;
  right: 5px;
  width: 35px;
  height: 35px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.board-search-btn svg {
  width: 18px;
  height: 18px;
}

.board-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #333;
  margin-bottom: 40px;
}

.board-table th {
  background: #f8f9fa;
  color: #333;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 10px;
  border-bottom: 1px solid #ddd;
}

.board-table td {
  padding: 18px 10px;
  border-bottom: 1px solid #eee;
  color: #555;
  font-size: 15px;
  text-align: center;
  transition: background 0.2s;
}

.board-table tr:hover td {
  background: #fdfdfd;
}

.board-table td.al {
  text-align: left;
  padding-left: 20px;
}

.board-table td a {
  color: #333;
  transition: color 0.2s;
}

.board-table td a:hover {
  color: var(--theme-blue, #005bac);
  text-decoration: underline;
}

.badge-status {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
  margin-right: 8px;
}

.badge-status.recruiting {
  background: #e3f2fd;
  color: #0d47a1;
}

.badge-status.closed {
  background: #ffebee;
  color: #c62828;
}

/* ── 5. 채용공고 상세 (notice_view.php) ──────────────────────────── */
.view-header {
  border-top: 2px solid #333;
  background: #f8f9fa;
  padding: 30px 25px;
  border-bottom: 1px solid #eaeaea;
}

.view-title-row {
  margin-bottom: 12px;
}

.view-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.view-meta-row {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #777;
}

/* 기업 프로필 카드 */
.corp-card {
  display: none;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 35px;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.corp-card-header {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.corp-logo {
  width: 140px;
  height: auto;
}

.corp-summary {
  display: flex;
  flex-direction: column;
}

.corp-name {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.corp-key-stats {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.corp-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.corp-stat-item img {
  width: 18px;
  height: 18px;
}

.corp-stat-label {
  font-weight: 600;
  color: #333;
}

/* 상세 정보 그리드 */
.corp-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
}

.corp-detail-row {
  display: flex;
  border-bottom: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
}

.corp-detail-row dt {
  width: 130px;
  background: #f7fafc;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  display: flex;
  align-items: center;
}

.corp-detail-row dd {
  flex: 1;
  padding: 12px 15px;
  font-size: 14px;
  color: #2d3748;
  margin: 0;
  display: flex;
  align-items: center;
}

.view-body {
  padding: 40px 25px;
  line-height: 1.8;
  font-size: 16px;
  color: #444;
  border-bottom: 1px solid #eaeaea;
  min-height: 300px;
  word-break: break-all;
}

.view-attach {
  padding: 20px 25px;
  background: #f8f9fa;
  border-bottom: 1px solid #eaeaea;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.view-attach a {
  color: var(--theme-blue, #005bac);
  font-weight: 600;
}

.view-attach a:hover {
  text-decoration: underline;
}

/* 이전/다음 글 */
.view-nav {
  margin-top: 40px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.view-nav-item {
  display: flex;
  padding: 15px 25px;
  font-size: 14px;
  transition: background 0.2s;
  align-items: center;
}

.view-nav-item:hover {
  background: #fcfcfc;
}

.view-nav-item+.view-nav-item {
  border-top: 1px solid #eee;
}

.view-nav-label {
  width: 80px;
  color: #888;
  font-weight: 600;
}

.view-nav-title {
  flex: 1;
  color: #333;
}

.view-nav-title a {
  color: #333;
}

.view-nav-title a:hover {
  color: var(--theme-blue, #005bac);
}

.view-nav-date {
  color: #999;
}

.view-btn-area {
  margin-top: 30px;
  text-align: center;
}

.btn-list-go {
  display: inline-block;
  padding: 12px 40px;
  background: var(--theme-navy, #00205b);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-list-go:hover {
  background: #001235;
}

@media (max-width: 768px) {
  .view-header {
    padding: 10px 4px;
  }

  .view-meta-row {
    font-size: 11px;
    gap: 10px;
    font-weight: 400;
  }

  .view-meta-row strong {
    font-weight: 400;
    color: #000
  }

  .corp-card {
    display: none;
    padding: 20px;
  }

  .corp-card-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .corp-details-grid {
    grid-template-columns: 1fr;
  }

  .view-body {
    padding: 20px 10px
  }

  .view-nav-item {
    padding: 8px;
    font-size: 12px;
  }
}

/* ==========================================================================
   지속가능경영 (Sustainability Management) 스타일
   ========================================================================== */

.esg-intro-text {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 50px auto;
  font-size: 20px;
  line-height: 1.8;
  color: #333;
  word-break: keep-all;
}

.esg-intro-text strong {
  color: var(--theme-orange, #f26522);
  font-size: 26px;
}

.esg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
}

.esg-card-wrap {
  perspective: 1000px;
  background: url(/images/sub/box_bg.png) no-repeat;
  background-size: 100% 100%;
}

.esg-card {
  /* background: #fff; */
  /* border: 1px solid #eaeaea; */
  /* border-radius: 8px; */
  padding: 50px 30px;
  text-align: center;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02); */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.esg-card:hover {
  /* transform: translateY(-8px); */
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06); */
  /* border-color: var(--theme-blue, #005bac); */
}

.esg-icon-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.esg-card:hover .esg-icon-wrap {
  background: #f1f6fc;
  transform: scale(1.05);
}

.esg-icon-wrap img {
  max-width: 60px;
  height: auto;
}

.esg-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  font-family: 'GmarketSans', 'Noto Sans KR', sans-serif;
  transition: color 0.3s ease;
}

.esg-card:hover .g {
  color: var(--theme-green, #005bac);
}

.esg-card:hover .o {
  color: var(--theme-orange, #005bac);
}

.esg-card:hover .b {
  color: var(--theme-blue, #005bac);
}

.esg-card-text {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  word-break: keep-all;
}

.esg-bottom-intro {
  text-align: center;
  max-width: 1000px;
  margin: 50px auto 100px auto;
  font-size: 18px;
  color: #2f2f2f;
  line-height: 1.8;
  padding: 25px;
  background: #fdfdfd;
  border-radius: 8px;
  /* border: 1px dashed #ddd; */
  word-break: keep-all;
}

/* 하단 상세 레이아웃 */
.esg-detail-block {
  display: flex;
  gap: 100px;
  align-items: center;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #eee;
}

.esg-detail-info {
  flex: 1.2;
}

.esg-detail-media {
  flex: 1;
  overflow: hidden;
  /* border-radius: 8px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.esg-detail-media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.esg-detail-media:hover img {
  transform: scale(1.05);
}

/* 카테고리 헤더 */
.esg-detail-badge-title {
  font-size: 35px;
  font-weight: 700;
  color: var(--theme-navy, #00205b);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  font-family: 'GmarketSans', 'Noto Sans KR', sans-serif;
}

.esg-detail-badge-title.g-sec {
  color: var(--theme-blue, #0081e9);
}

.esg-detail-badge-title.e-sec {
  color: #2e7d32;
}

.esg-detail-badge-title.s-sec {
  color: var(--theme-orange, #f26522);
}

.esg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.esg-badge.g {
  background: var(--theme-blue, #005bac);
}

.esg-badge.e {
  background: #2e7d32;
}

.esg-badge.s {
  background: var(--theme-orange, #f26522);
}

.esg-detail-h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2f2f2f;
  line-height: 1.5;
  margin-bottom: 20px;
  word-break: keep-all;
}

.esg-detail-h3 strong {
  color: inherit;
}

.esg-detail-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
  word-break: keep-all;
}

.esg-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 50px;
}

.esg-detail-list li {
  font-size: 16px;
  color: #444;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  line-height: 1.6;
  font-weight: 500;
}

.esg-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.esg-detail-list.g li::before {
  background: var(--color-text-sub, #005bac);
}

.esg-detail-list.e li::before {
  background: var(--color-text-sub, #005bac);
}

.esg-detail-list.s li::before {
  background: var(--color-text-sub, #005bac);
}

/* 모바일 대응 */
@media (max-width: 991px) {
  .esg-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .esg-detail-block {
    flex-direction: column;
    gap: 40px;
    padding-top: 50px;
    margin-top: 50px;
  }

  .esg-detail-media {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .sub-tab-wrap {
    margin-top: 0;
  }

  .esg-intro-text {
    font-size: 16px;
  }

  .esg-card {
    padding: 35px 20px;
  }

  .esg-icon-wrap {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }

  .esg-icon-wrap img {
    max-width: 50px;
  }

  .esg-card-title {
    font-size: 20px;
  }

  .esg-card-text {
    font-size: 14px;
  }

  .esg-bottom-intro {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .esg-detail-badge-title {
    font-size: 26px;
  }

  .esg-detail-h3 {
    font-size: 18px;
  }

  .esg-detail-list li {
    font-size: 14px;
  }

  .esg-intro-text strong {
    font-size: 20px;
  }
}

/* ── ESG 특화 스크롤 애니메이션 ──────────────────────────── */
.ani-esg-card {
  opacity: 0;
  transform: scaleX(0.8) translateX(-50px);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.ani-esg-card.ani-animate {
  opacity: 1 !important;
  transform: scaleX(1) translateX(0) !important;
}

/* 카드 순차 딜레이 */
.esg-grid>.esg-card-wrap:nth-child(1) {
  transition-delay: 0s;
}

.esg-grid>.esg-card-wrap:nth-child(2) {
  transition-delay: 0.3s;
}

.esg-grid>.esg-card-wrap:nth-child(3) {
  transition-delay: 0.6s;
}

/* 내부 카드 요소 페이드 폭포수 효과 */
.esg-card .ani-cascade {
  opacity: 0;
  transform: translateY(-25px);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.ani-animate .esg-card .ani-cascade {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 1번째 카드 내부 딜레이 */
.esg-grid>.esg-card-wrap:nth-child(1).ani-animate .esg-icon-wrap {
  transition-delay: 0.2s;
}

.esg-grid>.esg-card-wrap:nth-child(1).ani-animate .esg-card-title {
  transition-delay: 0.4s;
}

.esg-grid>.esg-card-wrap:nth-child(1).ani-animate .esg-card-text {
  transition-delay: 0.6s;
}

/* 2번째 카드 내부 딜레이 (카드가 0.3초 딜레이되므로 시작점을 미룸) */
.esg-grid>.esg-card-wrap:nth-child(2).ani-animate .esg-icon-wrap {
  transition-delay: 0.5s;
}

.esg-grid>.esg-card-wrap:nth-child(2).ani-animate .esg-card-title {
  transition-delay: 0.7s;
}

.esg-grid>.esg-card-wrap:nth-child(2).ani-animate .esg-card-text {
  transition-delay: 0.9s;
}

/* 3번째 카드 내부 딜레이 (카드가 0.6초 딜레이되므로 시작점을 미룸) */
.esg-grid>.esg-card-wrap:nth-child(3).ani-animate .esg-icon-wrap {
  transition-delay: 0.8s;
}

.esg-grid>.esg-card-wrap:nth-child(3).ani-animate .esg-card-title {
  transition-delay: 1.0s;
}

.esg-grid>.esg-card-wrap:nth-child(3).ani-animate .esg-card-text {
  transition-delay: 1.2s;
}

/* ==========================================================================
   커뮤니티 - 공지사항 리스트 (notice.php)
   ========================================================================== */

.notice-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.notice-count {
  font-size: 14px;
  color: #666;
}

.notice-count strong {
  color: #333;
  font-weight: 700;
}

.notice-search-form {
  display: flex;
  align-items: center;
  position: relative;
}

.notice-search-input {
  width: 0;
  height: 36px;
  padding: 0;
  border: none;
  border-bottom: 1px solid transparent;
  background: transparent;
  font-size: 14px;
  outline: none;
  transition: width 0.4s ease, padding 0.4s ease, border-color 0.3s ease;
  overflow: hidden;
}

.notice-search-form:focus-within .notice-search-input,
.notice-search-form.active .notice-search-input,
.notice-search-input:not(:placeholder-shown) {
  width: 200px;
  padding: 0 10px;
  border-color: #ccc;
}

.notice-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #555;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.notice-search-btn:hover {
  color: var(--theme-blue, #005bac);
}

.notice-search-btn svg {
  width: 18px;
  height: 18px;
}

.notice-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #222;
  margin-bottom: 40px;
}

.notice-table thead th {
  background: #f8f9fa;
  color: #555;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 12px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.notice-table thead th:nth-child(2) {
  text-align: left;
}

.notice-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.notice-table tbody tr:hover {
  background: #fafafa;
}

.notice-table tbody tr.row-top {
  background: #fffaf5;
}

.notice-table .td-num {
  text-align: center;
  font-size: 14px;
  color: #888;
  padding: 16px 12px;
}

.notice-table .td-title {
  text-align: left;
  padding: 16px 12px;
  font-size: 15px;
}

.notice-table .td-title a {
  color: #333;
  transition: color 0.2s;
}

.notice-table .td-title a:hover {
  color: var(--theme-blue, #005bac);
}

.notice-table .td-date {
  text-align: center;
  font-size: 14px;
  color: #888;
  padding: 16px 12px;
}

.badge-notice {
  display: inline-block;
  background: var(--theme-navy, #00205b);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
}

.attach-icon {
  font-size: 14px;
}

.td-empty {
  text-align: center;
  padding: 50px 0;
  color: #aaa;
  font-size: 15px;
}

/* ==========================================================================
   커뮤니티 - 공지사항 상세 (notice_view.php)
   ========================================================================== */

.notice-view-wrap {
  max-width: 1500px;
  margin: 0 auto;
}

.notice-view-header {
  border-top: 2px solid #222;
  border-bottom: 1px solid #ddd;
  background: #f8f9fa;
  padding: 20px 25px;
}

.notice-view-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.4;
}

.notice-view-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #888;
}

.notice-view-body {
  padding: 40px 25px;
  line-height: 1.9;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #eee;
  min-height: 250px;
  word-break: break-all;
}

.notice-view-file {
  padding: 15px 25px;
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #555;
}

.notice-view-file a {
  color: var(--theme-blue, #005bac);
  font-weight: 600;
}

.notice-view-file a:hover {
  text-decoration: underline;
}

.notice-view-list-btn {
  text-align: right;
  padding: 15px 0;
}

.notice-view-list-btn .btn-list-go {
  display: inline-block;
  padding: 8px 28px;
  background: var(--theme-navy, #00205b);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.notice-view-list-btn .btn-list-go:hover {
  background: #001235;
}

.notice-view-nav {
  border-top: 1px solid #ddd;
  margin-top: 10px;
}

.notice-view-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  transition: background 0.2s;
}

.notice-view-nav .nav-item:hover {
  background: #fafafa;
}

.notice-view-nav .nav-label {
  width: 60px;
  font-size: 13px;
  color: #888;
  flex-shrink: 0;
}

.notice-view-nav .nav-title {
  flex: 1;
  color: #333;
}

.notice-view-nav .nav-title a {
  color: #333;
}

.notice-view-nav .nav-title a:hover {
  color: var(--theme-blue, #005bac);
}

.notice-view-nav .nav-none {
  color: #bbb;
}

.notice-view-nav .nav-date {
  width: 80px;
  color: #aaa;
  font-size: 13px;
  flex-shrink: 0;
  text-align: right;
}

/* ==========================================================================
   커뮤니티 - 문의하기 폼 (board.php)
   ========================================================================== */

.inquiry-err-msg {
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 30px;
}

.inquiry-form {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 2px solid #222;
}

.inquiry-section-label {
  padding: 15px 0 10px;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.req-note {
  font-size: 13px;
  color: #888;
}

.req-star {
  color: var(--theme-orange, #f26522);
  font-size: 13px;
}

.inquiry-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #eee;
}

.inquiry-row.two-col {}

.inquiry-field {
  display: flex;
  align-items: stretch;
  flex: 1;
  border-right: 1px solid #eee;
}

.inquiry-field:last-child {
  border-right: none;
}

.inquiry-field.full {
  flex: 1;
  border-right: none;
}

.inquiry-label {
  width: 115px;
  flex-shrink: 0;
  padding: 14px 15px;
  /* background: #f8f9fa; */
  font-size: 14px;
  font-weight: 600;
  color: #444;
  display: flex;
  align-items: center;
  border-right: 1px solid #eee;
}

.inquiry-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 12px;
}

.inquiry-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333;
  background: transparent;
  padding: 11px 25px 9px 5px;
  border: 1px solid #ddd;
}

.inquiry-input::placeholder {
  color: #bbb;
}

.inquiry-select {
  width: 100%;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
  color: #333;
  background: transparent;
  padding: 9px 30px 9px 5px;
  /* appearance: none; */
  cursor: pointer;
}

.inquiry-textarea {
  width: 100%;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
  color: #333;
  background: transparent;
  padding: 5px 25px 5px 5px;
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
  font-family: inherit;
}

.inquiry-textarea::placeholder {
  color: #bbb;
}

.req-star.corner {
  position: absolute;
  top: 12px;
  right: 15px;
  color: var(--theme-orange, #f26522);
  font-size: 8px;
}

/* 파일 업로드 */
.inquiry-file-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  flex-wrap: wrap;
}

.inquiry-file-name {
  flex: 1;
  min-width: 160px;
  border: 1px solid #ddd;
  padding: 11px 12px;
  font-size: 13px;
  color: #888;
  outline: none;
  background: #f9f9f9;
}

.inquiry-file-btn {
  padding: 11px 16px;
  background: var(--theme-navy, #00205b);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.inquiry-file-btn:hover {
  background: #001235;
}

.inquiry-file-hidden {
  display: none;
}

.inquiry-file-note {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
}

/* 개인정보 박스 */
.inquiry-privacy-box {
  border: 1px solid #eee;
  margin: 20px 0;
}

.inquiry-privacy-title {
  background: #f8f9fa;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #eee;
}

.inquiry-privacy-scroll {
  padding: 15px 18px;
  height: 140px;
  overflow-y: auto;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.inquiry-privacy-scroll p {
  margin-bottom: 8px;
}

.inquiry-privacy-scroll ul {
  padding-left: 18px;
}

.inquiry-privacy-scroll li {
  margin-bottom: 4px;
}

.inquiry-privacy-agree {
  padding: 12px 18px;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.inquiry-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.inquiry-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--theme-navy, #00205b);
}

/* 버튼 */
.inquiry-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 50px;
}

.inquiry-btn {
  display: inline-block;
  padding: 14px 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
}

.inquiry-btn-primary {
  background: var(--theme-orange, #f26522);
  color: #fff;
}

.inquiry-btn-primary:hover {
  background: #d94f10;
}

.inquiry-btn-cancel {
  background: #888;
  color: #fff;
}

.inquiry-btn-cancel:hover {
  background: #666;
}

.inquiry-btn-outline {
  background: #fff;
  color: var(--theme-navy, #00205b);
  border: 2px solid var(--theme-navy, #00205b);
}

.inquiry-btn-outline:hover {
  background: var(--theme-navy, #00205b);
  color: #fff;
}

/* 성공 화면 */
.inquiry-success {
  text-align: center;
  padding: 80px 30px;
  max-width: 600px;
  margin: 0 auto;
}

.inquiry-success-icon {
  font-size: 60px;
  margin-bottom: 25px;
}

.inquiry-success-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.inquiry-success-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
}

.inquiry-success-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* 반응형 통합 (우선순위를 위해 최하단에 배치) */
@media (max-width: 768px) {
  br.pc_only {
    display: none;
  }

  /* 상단 공통 타이틀 및 여백 */
  .sub-content-inner {
    padding: 70px 15px;
  }

  .sub-visual {
    height: 200px;
  }

  .sub-visual-title {
    font-size: 28px;
    margin-top: 40px;
  }

  .sub-tab {
    margin-bottom: 30px;
  }

  .sub-tab li {
    flex: 0 0 33.333%;
  }

  .sub-tab li a {
    font-size: 15px;
    padding: 14px 5px;
  }

  .sub-page-header {
    margin-bottom: 40px;
  }

  .sub-page-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .sub-page-desc {
    font-size: 16px;
  }

  /* 글로벌 컨텐츠 스케일링 */
  .ceo-wrap {
    gap: 30px;
  }

  .ceo-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .ceo-text .ceo-slogan {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .ceo-text p {
    font-size: 15px;
  }

  .ceo-sign {
    font-size: 15px;
    margin-top: 20px;
  }

  .ceo-sign img {
    height: 30px;
  }

  .founder-sec {
    margin-bottom: 40px;
  }

  .founder-sec1 {
    padding: 30px 20px;
    gap: 20px;
  }

  .f-text1 {
    padding-right: 0
  }

  .f-text1 h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .f-text1 h3 span {
    font-size: 18px
  }

  .f-text1 p {
    font-size: 15px;
  }

  .founder-sec2 h3 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .f-sec2-wrap {
    gap: 20px;
  }

  .f-list2 li {
    margin-bottom: 20px;
  }

  .f-list2 h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .f-list2 p {
    font-size: 14px;
  }

  .founder-sec3 h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .founder-sec4 {
    padding: 50px 0;
  }

  .founder-sec4 .f-quote {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .founder-sec4 p {
    font-size: 15px;
  }

  .group-top {
    gap: 20px;
    margin-bottom: 30px;
  }

  .group-item {
    margin-bottom: 40px;
  }

  .group-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .group-info p {
    font-size: 15px;
  }

  .group-info img {
    max-height: 40px;
    margin-bottom: 20px;
  }

  .location-grid {
    gap: 60px;
  }

  .loc-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .loc-info {
    font-size: 14px;
    margin-bottom: 15px;
    min-height: auto;
  }

  .loc-map {
    height: 200px;
  }

  .affiliate-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .affiliate-item {
    padding: 25px 15px;
  }

  .affiliate-item img {
    max-height: 40px;
  }

  .talent-intro {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .talent-intro strong {
    font-size: 18px;
  }

  .talent-list {
    gap: 50px;
    margin-top: 30px;
  }

  .talent-num {
    font-size: 50px;
    margin-bottom: 5px;
  }

  .talent-title {
    font-size: 22px;
    margin-bottom: 5px;
  }

  .talent-desc {
    font-size: 15px;
  }

  .welfare-intro {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .welfare-intro strong {
    font-size: 18px;
  }

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

  .guide-banner {
    margin-bottom: 40px;
  }

  .guide-grid {
    gap: 20px;
    margin-bottom: 50px;
  }

  .guide-card {
    padding: 25px 10px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .guide-card-img {
    flex: auto;
  }

  .guide-card-img img {
    padding-top: 20px
  }

  .guide-h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .guide-info li {
    font-size: 14px;
    text-align: left
  }

  .guide-info li strong {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .guide-info li br {
    display: none
  }

  .process-sec {
    margin-top: 40px;
  }

  .process-h3 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .process-step {
    padding: 20px 15px;
  }

  .process-step .step-name {
    font-size: 16px;
  }

  .product-info-sec .product-title {
    font-size: 24px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .product-info-sec .product-title span {
    font-size: 16px;
  }

  .product-info-sec .product-desc {
    font-size: 15px;
  }

  .history-now {
    margin-bottom: 40px;
  }

  .notice-table thead th {
    font-size: 13px;
    padding: 8px 2px;
  }

  .notice-table thead th:nth-child(1) {
    width: 50px !important
  }

  .notice-table thead th:nth-child(2) {
    text-align: center !important
  }

  .notice-table thead th:nth-child(3) {
    width: 100px !important
  }

  .notice-table .td-num {
    text-align: center;
    font-size: 12px;
    color: #888;
    padding: 16px 6px;
  }

  .notice-table .td-title {
    text-align: left;
    padding: 16px 12px;
    font-size: 13px;
  }

  .notice-table .td-title a {
    color: #333;
    transition: color 0.2s;
  }

  .notice-table .td-title a:hover {
    color: var(--theme-blue, #005bac);
  }

  .notice-table .td-date {
    text-align: center;
    font-size: 12px;
    color: #888;
    padding: 16px 12px;
  }

  .notice-meta-bar {
    /* flex-direction: column; */
    /* align-items: flex-start; */
    gap: 10px;
    margin-bottom: 0;
  }

  .notice-search-form:focus-within .notice-search-input,
  .notice-search-form.active .notice-search-input,
  .notice-search-input:not(:placeholder-shown) {
    width: 140px;
  }

  .notice-table .td-date {
    /* display: none; */
  }

  .notice-view-meta {
    flex-direction: column;
    gap: 5px;
  }

  .inquiry-row {
    flex-direction: column;
    border-bottom: 0;
  }

  .inquiry-field {
    flex-direction: column;
    border-right: none;
    margin-bottom: 10px;
  }

  .inquiry-label {
    width: 100%;
    border-right: none;
    /* border-bottom: 1px solid #eee; */
    /* background: #f8f9fa; */
    padding: 4px;
  }

  .inquiry-input-wrap {
    /* border-bottom: 1px solid #eee; */
    padding: 4px;
  }

  .inquiry-file-wrap {
    /* flex-direction: column; */
    align-items: flex-start;
    padding: 4px;
  }

  .inquiry-file-note {
    white-space: normal;
  }

  .inquiry-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .inquiry-btns {
    /* flex-direction: column; */
    align-items: center;
  }
}

@media (max-width: 480px) {
  .sub-content-inner {
    padding: 50px 15px;
  }

  .sub-tab li {
    flex: 0 0 50%;
    background: var(--theme-navy);
    border-bottom: 1px solid #00225e;
  }

  .sub-page-title {
    font-size: 28px;
  }

  .sub-page-desc {
    font-size: 15px;
    word-break: auto-phrase;
  }
}

/* ── 실적자료 (Performance) ──────────────────────────── */
.performance-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.performance-banner {
  position: relative;
  width: 100%;
  height: 260px;
  background-image: url('/images/sub/tech_img01.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 60px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  padding: 0 60px;
  box-sizing: border-box;
}

.perf-banner-text {
  text-align: left;
  color: #fff;
}

.perf-banner-title {
  font-size: 38px;
  font-weight: 300;
  margin: 50px 0 10px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.perf-banner-desc {
  font-size: 24px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.performance-table-container {
  display: flex;
  /* max-width: 800px; */
  /* margin: 0 auto; */
  overflow-x: auto;
  justify-content: flex-end;
}

.performance-table {
  width: 100%;
  max-width: 1000px;
  border-collapse: collapse;
  text-align: center;
  font-size: 20px;
}

.performance-table thead tr {
  /* border-top: 2px solid var(--theme-navy, #00225e); */
  border-bottom: 1px solid #00225e;
}

.performance-table th {
  padding: 18px 10px;
  font-weight: 400;
  color: #333;
  font-size: 18px;
}

.performance-table th.col-no,
.performance-table td.cell-no {
  width: 15%;
}

.performance-table td.cell-no {
  color: #8b8a8a;
}

.performance-table th.col-agency,
.performance-table td.cell-agency {
  text-align: left;
  padding-left: 30px;
}

.performance-table td.cell-agency {
  font-weight: 700;
  color: #333;
  font-size: 20px;
}

.performance-table th.col-qty,
.performance-table td.cell-qty {
  width: 25%;
  text-align: right;
  padding-right: 30px;
}

.performance-table td.cell-qty {
  color: #555;
}

.performance-table tbody tr {
  border-bottom: 1px solid #eee;
}

.performance-table tbody tr.row-last-item {
  border-bottom: 1px solid #00225e;
}

.performance-table tbody td {
  padding: 16px 10px;
}

.performance-table tr.total-row {
  border-bottom: 0;
  background: #fdfdfd;
  font-weight: bold;
}

.performance-table tr.total-row td {
  /* padding: 18px 10px; */
  color: #333;
}

.performance-table tr.total-row td.cell-qty {
  font-size: 18px;
}

@media (max-width: 768px) {
  .performance-wrap{
    padding:0;
  }
  .performance-banner {
    height: 180px;
    padding: 0 30px;
    margin-bottom: 40px;
  }

  .perf-banner-title {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .perf-banner-desc {
    font-size: 15px;
  }

  .performance-table {
    font-size: 14px;
  }

  .performance-table th,
  .performance-table tbody td,
  .performance-table tr.total-row td {
    padding: 12px 6px;
    font-size: 14px;
  }

  .performance-table th.col-agency,
  .performance-table td.cell-agency,
  .performance-table tr.total-row td.cell-agency 
  {
    padding-left: 15px;
    font-size: 14px;
  }

  .performance-table th.col-qty,
  .performance-table td.cell-qty {
    padding-right: 15px;
  }

  .performance-table tr.total-row td.cell-qty {
    font-size: 16px;
    padding-right: 15px;
  }
}

/* ── 시설장비 (Equipment) ──────────────────────────── */
.equipment-grid-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.eq-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.eq-card:hover {
  transform: translateY(-5px);
}

.eq-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fdfdfd;
}

.eq-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eq-info {
  padding: 24px 20px;
  text-align: center;
}

.eq-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #161616;
  margin-bottom: 0;
  font-family: 'GmarketSans', 'Noto Sans KR', sans-serif;
}

.eq-info p {
  font-size: 20px;
  color: #161616;
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
}

@media (max-width: 768px) {
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .eq-info h3 {
    font-size: 18px;
  }

  .eq-info p {
    font-size: 14px;
  }
}