@font-face {
  font-family: 'NanumGothic';
  src: url('/assets/fonts/NanumGothic-Bold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'NanumGothic';
  src: url('/assets/fonts/NanumGothic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'NanumGothic';
  src: url('/assets/fonts/NanumGothic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'NanumGothic';
  src: url('/assets/fonts/NanumGothic-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* ==================================================
   COMMON BASE
================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'NanumGothic', 'Malgun Gothic', Arial, sans-serif;

/*  font-family: 'Noto Sans KR', Arial, sans-serif;*/
  color: #333;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ==================================================
   HEADER
================================================== */

.header {
  width: 100%;
  background: #ffffff;
  position: relative;
  z-index: 1000;
}

.logo a {
  font-size: 20px;
  font-weight: 700;
  color: #1f4e79;
}

/* ==================================================
   GNB (TOP NAV) – 단일 정의
================================================== */

.main-nav {
  width: 100%;
  height: 56px;
  background: #1f4e79;
}

.gnb {
  max-width: 1200px;
  height: 56px;
  margin: 0 auto;
  display: flex;
}

/* 1차 메뉴 */
.gnb > li {
  position: relative;
}

.gnb > li > a {
  display: block;
  height: 56px;
  line-height: 56px;
  padding: 0 40px;

  color: #ffffff;
  font-size: 15px;
  font-weight: 500;

  position: relative;
}

/* hover / active 배경 */
.gnb > li:hover > a,
.gnb > li.active > a {
  background: #163b5c;
}

/* underline (active만) */
.gnb > li.active > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 3px;
  background: #ffcc33;
}

/* ===============================
   GNB SUBMENU (최종 단일 정의)
=============================== */

.gnb > li {
  position: relative;
}

.gnb-submenu {
  display: none;
  position: absolute;
  top: 100%;          /* 부모 메뉴 바로 아래 */
  left: 0;
  min-width: 200px;
  background: #2f2f2f;
  z-index: 100;       /* nav-dim(90) 위 */
}

.gnb-submenu li a {
  display: block;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14px;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.gnb-submenu li a:hover {
  background: #1f1f1f;
}

/* ===============================
   DIM BACKGROUND (핵심)
=============================== */
.nav-dim {
  position: fixed;
  top: 126px; /* header-inner(70) + main-nav(56) */
  left: 0;
  width: 100vw;
  height: calc(100vh - 126px);
  background: rgba(0, 0, 0, 0.45);
  z-index: 90;
  display: none;
}

/* ==================================================
   SUB PAGE LAYOUT
================================================== */

.sub-wrap {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  gap: 40px;
}

/* ==================================================
   SIDEBAR (서브페이지 전용)
================================================== */

.sub-sidebar {
  width: 240px;
}

.sub-sidebar h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.sub-sidebar ul {
  border-top: 2px solid #1f4e79;
}

.sub-sidebar li {
  border-bottom: 1px solid #ddd;
}

.sub-sidebar li a {
  display: block;
  padding: 14px 12px;
  color: #333;
}

.sub-sidebar li.active a {
  background: #1f4e79;
  color: #ffffff;
  font-weight: 600;
}

/* ==================================================
   SUB CONTENT
================================================== */

.sub-content {
  flex: 1;
}

.page-title {
  font-size: 26px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1f4e79;
}

/* ==================================================
   FOOTER
================================================== */

.footer {
  background: #3a3a3a;
  color: #cccccc;
  padding: 40px 0;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
}

.footer strong {
  color: #ffffff;
}


/* ===== CI LOGO ===== */

.ci-logo {
  display: flex;
  font-family: 'Nanum Gothic', 'Noto Sans KR', Arial, sans-serif !important;
  font-weight: 700;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.ci-mark-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ci-mark {
  height: 25px;
}

.ci-eng {
  position: relative;
  top: -1px;
  margin-top: 0px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0em;
  color: #c58a2b;
}

.ci-ko {
  font-family: 'Nanum Gothic' !important;
  font-weight: 700;
  font-size: 23px;
  color: #111;
  line-height: 1;
  position: relative;
  top: -2px;
}


.board-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.board-table th {
  background: #f3f3f3;
  border-top: 2px solid #555;
  padding: 12px;
  font-weight: 600;
}

.board-table td {
  border-bottom: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.board-table td:nth-child(2) {
  text-align: left;
}

.board-search {
  margin-top: 20px;
  text-align: center;
}

.board-search input {
  padding: 6px;
  width: 200px;
}

.board-search button {
  padding: 7px 16px;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
}


/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}


/* ✅ 하단 5cm만 음영 처리 (최종본) */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0)
  );
  pointer-events: none;
  z-index: 1;
}

/* 히어로 텍스트 */
.hero-text {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;

  max-width: 520px;
  background: rgba(0,0,0,0.35);
  padding: 24px 28px;
  border-left: 4px solid #4fc3f7;
}

.hero-sub {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.8;
  color: #f0c36d;
  margin-bottom: 12px;
}

.hero-text h1 {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

/* ==================================================
   HERO SLIDER
================================================== */

.hero-slider {
  position: relative;
  overflow: hidden;
}


.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* 화살표 */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 3;
}

.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

.hero-arrow:hover {
  background: rgba(255,255,255,0.3);
}

/* 인사말 레이아웃 */
.greeting-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* 왼쪽 텍스트 */
.greeting-text {
  flex: 5;
}

/* 오른쪽 이미지 */
.greeting-image {
  width: 400px;
  flex-shrink: 0;
}

.greeting-image img {
  width: 100%;
  display: block;
  border-radius: 10px;
}


.organization-image {
  margin-top: 30px;
  text-align: center;
}

.organization-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
}


.service-icon-img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

/* 헤더 가로 정렬 */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;

  display: flex;                /* 🔥 핵심 */
  align-items: center;
  justify-content: space-between; /* 🔥 핵심 */
}

/* 오른쪽 상단 HOME / CONTACT */

.top-link:hover {
  color: #000;
}

.content-title {
  font-size: 20px;
  margin: 40px 0 15px;
  color: #1f4e79;
}

.depth-box {
  margin-left: 10px;
  margin-bottom: 20px;
}

.depth-list {
  margin: 10px 0 15px 20px;
  line-height: 1.7;
}

.range-list {
  margin-left: 20px;
  line-height: 1.8;
}

h4 {
  margin-top: 25px;
  font-size: 17px;
}

h5 {
  margin: 10px 0;
  font-size: 15px;
}

.capability-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.capability-text {
  flex: 1.2;
}

.capability-image-box {
  flex: 1;
  margin-top: 100px; /* 약 5cm ≒ 50px */
}

.capability-image-box img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ===============================
   PROCEDURE LAYOUT
================================ */

.procedure-wrap {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  align-items: flex-start;
}

/* 왼쪽 텍스트 */
.procedure-text {
  flex: 1;
}

/* 오른쪽 이미지 */
.procedure-image {
  width: 480px;
  flex-shrink: 0;
  margin-top: 20px; /* 🔹 이미지 아래로 내리기 */
}

.procedure-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* 모바일 대응 */
@media (max-width: 900px) {
  .procedure-wrap {
    flex-direction: column;
  }

  .procedure-image {
    width: 100%;
    margin-top: 30px;
  }
}

/* ===============================
   EQUIPMENT LAYOUT
================================ */

.equipment-wrap {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  align-items: flex-start;
}

/* 왼쪽 텍스트 */
.equipment-text {
  flex: 1;
}

/* 장비 리스트 */
.equipment-list {
  margin: 15px 0 30px;
  padding-left: 20px;
  line-height: 1.8;
}

/* 오른쪽 이미지 */
.equipment-image {
  width: 480px;      /* 🔹 크게 강조 */
  flex-shrink: 0;
  margin-top: 20px;
}

.equipment-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* 모바일 대응 */
@media (max-width: 900px) {
  .equipment-wrap {
    flex-direction: column;
  }

  .equipment-image {
    width: 100%;
    margin-top: 30px;
  }
}

/* ===============================
   TOP UTIL – FORCE RIGHT
================================ */

.header {
  position: relative; /* 기준점 */
}

.top-util {
  position: absolute;
  top: 18px;          /* 헤더 상단 여백 */
  right: 40px;        /* 🔴 무조건 오른쪽 */
  display: flex;
  gap: 18px;
}

.top-link {
  font-size: 13px;
  color: #333;
  text-decoration: none;
}

.top-link:hover {
  color: #0d47a1;
}

/* ===== 더보기 버튼 박스화 ===== */

.more-btn {
  margin-top: 8px;
  padding: 6px 16px;
  display: inline-block;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: #01a029;
  transition: all 0.25s ease;
}

.more-btn.red {
  background: #e53935;
}

.more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  opacity: 0.95;
}

/* ===============================
   HERO SLIDER (MINIMAL)
================================ */

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 화살표 */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 3;
}

.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

.hero-arrow:hover {
  background: rgba(255,255,255,0.3);
}

.hero::before {

    display: none;
}


.feature-box:hover,
.card:hover {
  box-shadow: 0 0 20px rgba(31,78,121,0.35);
  transform: translateY(-4px);
}


/* ===== ICT TYPOGRAPHY ===== */
.hero-text h1 {
  letter-spacing: -0.02em;
}

/* ===== ICT UI BUTTON ===== */
.more-btn {
  border-radius: 6px;        /* 기존 20px보다 ICT */
  letter-spacing: 0.06em;
}

/* ===== ICT HOVER (SAFE) ===== */
.feature-box:hover,
.card:hover {
  transform: translateY(-3px);
}

/* ===== ICT HEADING ===== */
h2, h3 {
  letter-spacing: -0.01em;
}

/* ===== SYSTEM LABEL FEEL ===== */
.hero-sub,
.eng,
.label {
  letter-spacing: 0.12em;
  font-size: 12px;
}

/* ===== ICT SYSTEM OVERLAY ===== */
.hero {
  position: relative;
}


.hero-text {
  max-width: 520px;
}

.hero-sub {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

.hero-text h1 {
  font-weight: 600;
}

.feature-box,
.feature-item {
  position: relative;
}

.feature-box::before,
.feature-item::before {
  content: "MODULE";
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}

.stat,
.highlight {
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
}
.highlight-red {
  color: #e60000;   /* 전문적인 레드 */
  font-weight: 700;
}
.hero-vertical {
  writing-mode: vertical-rl;   /* 핵심 */
  text-orientation: upright;   /* 한글 깨짐 방지 */
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.hero-vertical .highlight-red {
  color: #ff3b3b;
}


/* ===== BUILDING MANAGEMENT ICT FEEL ===== */
.hero-text {
  max-width: 520px;
  background: rgba(0,0,0,0.35);
  padding: 24px 28px;
  border-left: 4px solid #4fc3f7;
}

.feature-item strong::before {
  content: "■ ";
  color: #4fc3f7;
}

.feature-box::after {
  content: "INSPECTION LOG · UPDATED";
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}

.more-btn {
  font-size: 12px;
  border-radius: 4px;
  background: #263238;
  letter-spacing: 0.08em;
}


/* ==================================================
   MOBILE RESPONSIVE (<= 768px)
================================================== */
@media (max-width: 768px) {

  /* 1. 모든 고정 폭 해제 */
  body {
    overflow-x: hidden;
  }

  /* 2. 상단 헤더 */
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 16px;
  }

  .top-util {
    margin-top: 8px;
    align-self: flex-end;
  }

  /* 3. GNB 메뉴 숨김 (모바일) */
  .main-nav {
    display: none;
  }

  /* 4. HERO 영역 */
  .hero {
    height: auto;
  }

  .hero-text h1 {
    font-size: 22px;
    line-height: 1.4;
  }

  .hero-text {
    padding: 20px;
  }

  /* 5. 메인 3분할 → 1열 */
  section > div[style*="display:flex"] {
    flex-direction: column !important;
    gap: 16px !important;
  }

  section > div > div {
    width: 100% !important;
    height: auto !important;
  }

  /* 6. 아이콘 3개 영역 */
  div[style*="justify-content:space-around"] {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  /* 7. NOTICE + GALLERY */
  section div[style*="gap:30px"] {
    flex-direction: column !important;
  }

  /* 8. 갤러리 썸네일 3개 → 1열 */
  div[style*="gap:15px"] {
    flex-direction: column;
  }

  div[style*="gap:15px"] img {
    height: auto !important;
  }

  /* 9. PARTNERS */
  .partner-item {
    min-width: 220px !important;
  }

  /* 10. FOOTER */
  .footer-inner {
    font-size: 13px;
    line-height: 1.6;
    padding: 20px 16px;
  }
}

/* =================================================
   SUB PAGE LAYOUT (공통)
================================================= */
.sub-page {
  width: 100%;
}

.sub-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  gap: 40px;
}

/* =================================================
   SIDEBAR (COMPANY / BUSINESS / PROCEDURE 공통)
================================================= */
.sidebar {
  width: 240px;
  flex-shrink: 0;
}

.sidebar h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1f4e79;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  border-bottom: 1px solid #ddd;
}

.sidebar ul li a {
  display: block;
  padding: 14px 12px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sidebar ul li a:hover,
.sidebar ul li.active a {
  background: #1f4e79;
  color: #fff;
  font-weight: 600;
}

/* =================================================
   SUB CONTENT
================================================= */
.sub-content {
  flex: 1;
}

.sub-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1f4e79;
}

.sub-content h3 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.sub-content p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.sub-content ul {
  padding-left: 20px;
}

.sub-content ul li {
  margin-bottom: 8px;
}

/* =================================================
   PROCEDURE LIST
================================================= */
.procedure-steps {
  margin-top: 30px;
  padding-left: 20px;
}

.procedure-steps li {
  margin-bottom: 25px;
}

.procedure-steps strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #0b3a82;
}

.procedure-steps p {
  margin: 0;
  color: #555;
}

/* =================================================
   FOOTER
================================================= */
.footer {
  background: #333;
  color: #ccc;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-inner strong {
  color: #fff;
}

/* ================================
   PERFORMANCE GALLERY
================================ */

.performance-gallery {
  margin-top: 40px;
}

.performance-gallery h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border: 1px solid #ddd;
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-item .caption {
  padding: 12px;
  font-size: 14px;
  color: #555;
  text-align: center;
}

/* 반응형 */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  max-width: 600px;
  margin-top: 30px;
}

.contact-form div {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
}

.contact-form button {
  margin-top: 10px;
  padding: 12px 30px;
  background: #1f4e79;
  color: #fff;
  border: none;
  cursor: pointer;
}
/* ===== 메인 비주얼 ===== */
.main-visual {
  height: 420px;
  background: url("../images/main.jpg") no-repeat center center / cover;
  display: flex;
  align-items: center;
}

.visual-text {
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
}

.visual-text h2 {
  font-size: 32px;
  line-height: 1.4;
}

.visual-text p {
  margin-top: 10px;
  font-size: 16px;
}

/* ===== 메인 핵심 영역 ===== */
.main-core {
  max-width: 1200px;
  margin: 70px auto;
  display: flex;
  gap: 30px;
}

.core-left,
.core-center,
.core-right {
  flex: 1;
}

/* 좌측 */
.core-left h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.core-left p {
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  background: #1f4e79;
  color: #fff;
}

/* 중앙 아이콘 */
.icon-list {
  display: flex;
  justify-content: space-between;
}

.icon-list li {
  text-align: center;
  flex: 1;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: #1f4e79;
  border-radius: 50%;
  margin: 0 auto 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 우측 상담 */
.core-right {
  background: #f5f5f5;
  padding: 20px;
}

.call-info li {
  margin-bottom: 5px;
}

.call-buttons a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  border: 1px solid #1f4e79;
}

.call-buttons .highlight {
  background: #1f4e79;
  color: #fff;
}

/* ===== 공지/갤러리 ===== */
.main-board {
  max-width: 1200px;
  margin: 70px auto;
  display: flex;
  gap: 40px;
}

.notice,
.gallery {
  flex: 1;
}

/* ===== 협력기관 ===== */
.partners {
  max-width: 1200px;
  margin: 70px auto;
}

.partners ul {
  display: flex;
  gap: 20px;
}
/* ===============================
   MAIN BANNER LAYOUT
================================ */

.main-banner-row {
  display: flex;
  gap: 24px;
  margin-top: 60px;
}

.main-banner {
  flex: 1;
  min-height: 260px;
  position: relative;
  color: #fff;
}

/* ===============================
   CUSTOMER CENTER BOX
================================ */

.customer-box {
  position: absolute;
  right: 40px;
  top: 40px;
  background: rgba(0,0,0,0.6);
  padding: 24px;
}

/* ===============================
   SERVICE ICON AREA
================================ */

.service-item {
  text-align: center;
}

.service-item img {
  width: 56px;
  height: 56px;
}

.service-item strong {
  display: block;
  margin-top: 10px;
  font-size: 17px;
}

.service-item p {
  margin: 6px 0 10px;
  font-size: 14px;
  opacity: 0.9;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }
body { font-family: "Malgun Gothic", Arial, sans-serif; }



/* ===== FONT FORCE (VIEWER FINAL) ===== */
html, body,
button, input, textarea,
a, p, span, li, div,
h1, h2, h3, h4, h5, h6 {
  font-family: 'NanumGothic', 'Malgun Gothic', Arial, sans-serif !important;
}


/* ===============================
   GNB TEXT HARD FIX (FINAL)
   =============================== */

.header,
.main-nav,
.gnb {
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
}

.gnb li,
.gnb a {
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;

  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* === HERO 하단 얼룩(오버레이) 완전 제거 === */
.hero::before,
.hero::after,
.hero-slide::before,
.hero-slide::after {
  content: none !important;
  display: none !important;
}
