
/* ════════════════════════════════════════
   about_style.css — 멀티프로페셔널 회사소개
   ════════════════════════════════════════ */

:root {
  --navy:         #0a1628;
  --navy-mid:     #112240;
  --blue:         #1565c0;
  --blue-light:   #1e88e5;
  --accent:       #ff6f00;
  --accent-light: #ffa726;
  --white:        #ffffff;
  --off-white:    #f7f8fc;
  --text-dark:    #1a1a2e;
  --text-mid:     #3d4a5c;
  --text-light:   #6b7a90;
  --border:       rgba(21, 101, 192, 0.12);
  --shadow:       0 8px 40px rgba(10, 22, 40, 0.10);
  --shadow-hover: 0 20px 60px rgba(10, 22, 40, 0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }


body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  color: #333;
  background-color: #e9dddd;
}

/* 네비게이션 */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center; /* 중앙 정렬 */
  align-items: center;
  padding: 15px 30px;
  z-index: 1000;
}

.nav-center {
  display: flex;
  flex-direction: column; /* 로고와 메뉴를 위아래 배치 */
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px; /* 로고와 메뉴 간격 */
  
}

.logo a {
  color: #fff;
  text-decoration: none;
  font-size: 30px;
  font-weight: bold;
  display: inline-block; /* transform 적용을 위해 inline-block */
  transition: transform 5s ease, color 5s ease;
}

.logo a:hover {
  
  transform: translateY(10px); /* 위로 5px 이동 */
  color: #1183a8; /* 색상도 바뀌게 */
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-links li {
  margin: 0 15px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #00bfff;
}

/* 슬라이드 배너 */
.hero-header {
  position: relative;
  height: 100vh;
  width: 100vw;
  /* margin-top: -10px; /* 네비게이션 높이만큼 여백 */
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: none; /* 대문자 변환 */
  letter-spacing: 2px;       /* 글자 간격 */
  margin-bottom: 20px;
  animation: fadeInUp 2s ease-in-out;
}

.hero-link { 
  text-decoration: none; 
  background: linear-gradient(90deg, #007bff, #00c6ff); 
  -webkit-background-clip: text; 
  background-clip: text;
  -webkit-text-fill-color: transparent; 
  transition: transform 0.5s ease; 
  font-weight: 7400; 
  letter-spacing: 3px; 
  text-shadow: 4px 4px 10px rgba(0,0,0,0.4); /* 글로우 효과 */ }

.hero-link:hover {
  transform: scale(1.1); /* 호버 시 확대 */
}

.hero-sub {
  font-size: 1.2rem;
  color: #f0f0f0;
  font-weight: 400;
  margin-top: 10px;
  animation: fadeInUp 2s ease-in-out;
}

.slider {
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  width: 100%; height: 100%;
  background-size: cover;
  /*background-size: contain; */ /* 이미지 비율 유지 - 전체가 보이도록 */ 
  /* background-repeat: no-repeat; */
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none; /* 클릭 막기 */
}
.slide.active {
  opacity: 1;
  pointer-events: auto; /* 활성화된 슬라이드만 클릭 가능 */
  filter: brightness(1.0); /* 밝기 조절 */
}

.overlay {  
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.473);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
} 

.hero-content {
  color: #fff;
  animation: fadeInUp 2s ease-in-out;
}

.hero-content h1 {
  color: rgb(255, 255, 255);
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-header2 {
  position: relative;
  height: 100vh;
  width: 100vw;
  /* margin-top: -10px; /* 네비게이션 높이만큼 여백 */
}

.hero-title2 {
  position: relative;
  font-size: 3.5rem;
  font-weight: 700;  
  letter-spacing: 2px;       /* 글자 간격 */
  margin-top: -20px;
  animation: fadeInUp 3s ease-in-out;
}

.hero-link2 { 
  text-decoration: none; 
  background: linear-gradient(90deg, #db0909, #c7298b); 
  -webkit-background-clip: text; 
  background-clip: text;
  -webkit-text-fill-color: transparent; 
  transition: transform 0.5s ease; 
  font-weight: 7400; 
  letter-spacing: 3px; 
  text-shadow: 4px 4px 10px rgba(0,0,0,0.4); /* 글로우 효과 */ }

.hero-link2:hover {
  transform: scale(1.1); /* 호버 시 확대 */
}

.hero-sub2 {
  font-size: 1.2rem;
  color: #f0f0f0;
  font-weight: 400;
  margin-top: 0px;
  animation: fadeInUp 2s ease-in-out;
}

.slider2 {
  height: 100%;
  position: relative;
}
.slide2 {
  position: absolute;
  width: 100%; height: 100%;
  background-size: cover;
  /*background-size: contain; */ /* 이미지 비율 유지 - 전체가 보이도록 */ 
  /* background-repeat: no-repeat; */
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none; /* 클릭 막기 */
}
.slide2.active {
  opacity: 1;
  pointer-events: auto; /* 활성화된 슬라이드만 클릭 가능 */
  filter: brightness(1.0); /* 밝기 조절 */
}

.overlay2 {  
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.473);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
} 

.hero-content2 {
  color: #fff;
  animation: fadeInUp 2s ease-in-out;
}

.hero-content2 h1 {
  color: rgb(255, 255, 255);
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content2 p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 25px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s;
}
.btn:hover {
  transform: scale(1.1);
}

.btn2 {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  background: #07a0c7;      /* 버튼 배경색 */
  color: #fff;              /* 글자색 */
  text-decoration: none;
  border-radius: 6px;
  font-size: 20px;
  font-weight: bold;
  transition: background 1s, transform 1s;
}

.btn2:hover {
  background: #ad0847;      /* 호버 시 색상 변경 */
  transform: translateY(-5px); /* 살짝 위로 올라가는 효과 */
}

.btn3 {
  display: inline-block;
  margin-top: 400px;
  padding: 12px 25px;
  background: #07a0c7;      /* 버튼 배경색 */
  color: #fff;              /* 글자색 */
  text-decoration: none;
  border-radius: 6px;
  font-size: 20px;
  font-weight: bold;
  transition: background 1s, transform 1s;
}

.btn3:hover {
  background: #ad0847;      /* 호버 시 색상 변경 */
  transform: translateY(-5px); /* 살짝 위로 올라가는 효과 */
}

#contact {
  text-align: center; /* 가운데 정렬 */
}

#contact .btn2 {
  margin: 10px 15px; /* 버튼 간격 */
}

#sevice { 
  margin-top: -150px; 
}

#products { 
  margin-top: -150px; 
}

/* 섹션 */
.section {
  padding: 150px 30px;
  text-align: center;
}

/*경영이념 카드*/
.c_cards {
  display: flex;
  flex-wrap: wrap;       /* 줄바꿈 허용 */
  justify-content: center;
  gap:10px;
  }
.c_card {
  background: #f4f4f4;
  box-sizing: border-box;
  flex: 1 1 calc(33.333% - 20px); /* 한 줄에 3개 */
  border-radius: 8px;
  transition: transform 0.3s;
}
.c_card img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.c_card:hover {
  transform: translateY(-10px);
}

/*서비스카드*/
.cards {
  display: flex;
  flex-wrap: wrap;       /* 줄바꿈 허용 */
  justify-content: center;
}
.card {
  background: #f4f4f4;
  margin: 10px;
  padding: 20px;
  flex: 0 0 calc(33.333% - 20px); /* 한 줄에 3개 */
  border-radius: 8px;
  transition: transform 0.3s;
}
.card img {
  max-width: 100%;
  border-radius: 8px;
}
.card:hover {
  transform: translateY(-10px);
}

/* 푸터 */
footer { 
  font-size: 14px; 
  color: #aaa; 
  text-align: center; 
  padding: 20px; 
  background: #111; }

/* 애니메이션 */
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(50px);}
  to {opacity: 1; transform: translateY(0);}
}
.fade-in {
  animation: fadeInUp 5s ease-in-out;
  animation-fill-mode: forwards;
}
.slide-up {
  animation: fadeInUp 5s ease-in-out;
  animation-fill-mode: forwards;
}
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-in-out;
}
.section.visible {
  opacity: 100;
  transform: translateY(0);
}

/* 깜빡이는 애니메이션 정의 */ 
@keyframes blink { 
  0% { opacity: 1; } 
  50% { opacity: 0; } 
  100% { opacity: 1; } 
} 

/* 깜빡임을 적용할 클래스 */ 
.blink-text { animation: blink 5s infinite; /* 1초마다 반복 */ }

/* 슬라이드 버튼 */
.prev, .next { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  width: 50px; /* 버튼 크기 */ 
  height: 50px; /* 버튼 크기 */ 
  background: rgba(192, 192, 192, 0.5); 
  color: #fff; 
  border: none; 
  font-size: 1.5rem; /* 화살표 크기 */ 
  cursor: pointer; 
  border-radius: 50%; /* 완전한 원형 */ 
  transition: background 0.3s, opacity 0.3s; 
  opacity: 0; /* 기본 숨김 */   

  display: flex; /* 가운데 정렬을 위해 flex 사용 */ 
  justify-content: center; /* 가로 중앙 */ 
  align-items: center; /* 세로 중앙 */ 
  text-align: center;
}

.prev:hover, .next:hover {
  background: rgba(204, 204, 204, 0.8);
}
.prev {
  left: 20px;
}
.next {
  right: 20px;
}

/* 기본 상태: 버튼 숨김 */ 
.prev, .next { opacity: 0; transition: opacity 0.3s ease; } 
/* 슬라이드 영역에 마우스 올렸을 때만 표시 */ 
.slider:hover .prev, .slider:hover .next , .slider2:hover .prev, .slider2:hover .next  { 
  opacity: 1; 
}

/* 점표시 */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active {
  background: #007bff;
}
.dot:hover {
  background: #00bfff;
}

/* 서브메뉴 기본 숨김 */
.nav-links .submenu {
  display: none;
  position: absolute;
  top: 100%;   /* 부모 메뉴 바로 아래 */
  left: 50%;   /* 부모 메뉴 가운데 기준 */
  transform: translateX(-50%); /* 가운데 정렬 */
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  padding: 10px 20px;
  white-space: nowrap;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
  z-index: 999;
}

.nav-links li {
  position: relative; /* 각 메뉴 항목을 기준점으로 */
}

.nav-links .submenu li {
  display: inline-block;
  margin: 0 10px;
}

/* 마지막 단계 서브메뉴 (세로) */ 
.nav-links .submenu.vertical li { 
  display: block; /* 세로로 쌓기 */ 
  margin: 5px 0; /* 위아래 간격 */ 
  text-align: center; /* 왼쪽 정렬 (원하면 center로 변경 가능) */ 
}

.nav-links li.has-submenu:hover > .submenu {
  display: block;
}

/* 서브메뉴가 나타날 때 부드럽게 페이드 + 슬라이드 애니메이션 */ 
@keyframes dropdownIn { 
  from { 
    opacity: 0; 
    transform: translateX(-50%) translateY(10px); /* X축 중앙 유지 + Y축 아래에서 시작 */ 
  } 
  to { 
    opacity: 1; 
    transform: translateX(-50%) translateY(0); /* X축 중앙 유지 + 원래 위치 */ 
  } 
} /* hover 시 애니메이션 실행 */ 

.nav-links li.has-submenu:hover > .submenu { 
  display: block; 
  animation: dropdownIn 0.8s ease forwards; /* 애니메이션 적용 */ }

  #about {
  text-align: center;   /* 섹션 안의 모든 텍스트 가운데 */
  padding: 40px 20px;
}

  .points {
  display: flex;
  flex-direction: column;   /* 세로 배치 */
  align-items: center;      /* 가로 가운데 */
  gap: 10px;                /* 항목 간격 */
}
.point {
  font-size: 18px;
}

/* ── 서브 메뉴 바 ── */
.menu-row {
  display: flex;
  justify-content: center;
  margin-top: 109px;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
  overflow-x: auto;
  gap: 0;
}

.menu-box {
  flex: 0 0 auto;
  padding: 0 28px;
  height: 54px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.menu-box:last-child { border-right: none; }
.menu-box a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.menu-box:hover { background: var(--off-white); }
.menu-box:hover a { color: var(--blue); }
.menu-box.current { background: var(--navy); }
.menu-box.current a { color: #fff; font-weight: 700; }

/* CEO 메시지 섹션 */
#ceo-message {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #000000;                /* 텍스트는 짙은 그레이 */
  padding: 80px 20px;
  text-align: center;
  min-height: 300px;
  margin-top: 0px;
}

#ceo-message h2 {
  font-size: 40px;
  margin-bottom: 100px;
  color: #000000;             /* 네이비 블루 포인트 */
}

#ceo-message p {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.0
}

#ceo-message p.tight {
  line-height: 1.0; 
  margin-bottom: 50px; 
} 

#ceo-message p.loose {
  line-height: 1.0; 
  margin-bottom: 100px; 
}

.ceo-sign {
  margin-top: 100px;
  font-weight: bold;
  font-size: 20px;
  color: #000000;             /* 스틸 블루 포인트 */
  font-family: 'Pacifico', cursive; /* 손글씨 느낌 폰트 */
}

/* 비즈니스 섹션 */

.business { padding:60px 20px; }
.business-item { display:flex; justify-content:space-between; align-items:center; margin-top: 100px ;margin-bottom:100px; }
.business-item:nth-child(even) { flex-direction:row-reverse; }
.business-item .text { flex:1; padding:20px; }
.business-item .image { flex:1; }
.business-item img { max-width:100%; border-radius:8px; }

/* 예시: 커졌다가 나타나는 애니메이션 */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.business-item {
  animation: zoomIn 0.6s ease forwards;
}


/* 문의하기위에로고 */
.contactlogo {
  display: block;
  margin: 0 auto 20px auto; /* 위쪽 여백 0, 아래쪽 여백 20px */
  max-width: 300px; /* 최대 너비 */
  height: auto; /* 높이는 자동 */
}

#company-intro img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;  
}

#contact {
  text-align: center;       /* 섹션 안의 모든 텍스트 중앙 정렬 */
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 8px;
}


/* P태그 글씨강조 */
#sp-text {
  font-weight: bold;
  font-size: 16px;
  color: #000000;
}

/* 정책/약관 페이지 공통 스타일 */
.policy, .terms {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  line-height: 1.6;
  font-size: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.policy h2, .terms h2 {
  margin-top: 20px;
  font-size: 18px;
  color: #333;
  border-left: 4px solid #00ff62;
  padding-left: 8px;
}

header h1 {
  text-align: center;
  margin: 30px 0;
  font-size: 24px;
  color: #222;
}

footer a {
  color: #2febac; /* 기본 링크 색상 (연한 회색) */
  text-decoration: none; /* 밑줄 제거 */
}

footer a:hover {
  color: #00bfff; /* 마우스 올렸을 때 포인트 컬러 */
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 12px;
}

.footer-bottom a {
  color: #2febac;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: #00bfff; /* 포인트 컬러 */
}


.sub-navbar {
  background: #222;
  padding: 10px 20px;
}

.sub-navbar .home-link {
  color: #eee;
  text-decoration: none;
  font-size: 14px;
}

.sub-navbar .home-link:hover {
  color: #00bfff; /* 포인트 컬러 */
}
  
/* B2B 섹션 */
.hero3 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); /* 글씨 가독성 향상 */
  animation: moveUp 1.5s ease-out 1; /* 1회만 실행 */
  background-image: url('images/cc2.jpg'); /* 배경 이미지 경로 */ 
  background-size: cover; /* 화면에 맞게 꽉 채움 */ 
  background-position: center;/* 중앙 정렬 */ 
  background-repeat: no-repeat; /* 반복 없음 */
  overflow: hidden; /* 내용이 넘칠 때 숨김 */
  color: #ffffff;                /* 텍스트는 짙은 그레이 */
  padding: 80px 20px;
  text-align: center;
  min-height: 300px;
  margin-top: 0px;
}

@keyframes moveUp { 
  from { transform: translateY(50px); opacity: 0; } 
  to { transform: translateY(0); opacity: 1; } 
}

.hero3 h1 {
  font-size: 40px;
  margin-bottom: 100px;
  color: #ffffff;             /* 네이비 블루 포인트 */
}

.hero3 p {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.0
}

.hero3 p.tight {
  line-height: 1.0; 
  margin-bottom: 50px; 
} 

.hero3 p.loose {
  line-height: 1.0; 
  margin-bottom: 100px; 
}

.hero3::before { 
  content: ""; 
  position: absolute; 
  top: 0; left: 0; 
  right: 0; 
  bottom: 0; 
  background: rgba(0,0,0,0.4); /* 반투명 검정 레이어 */ 
  z-index: 0; } 
  
  .hero3 * { 
    position: relative; 
    z-index: 1; /* 글씨가 오버레이 위에 보이도록 */ 
  }


/* 아카데미 섹션 */
.hero4 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); /* 글씨 가독성 향상 */
  animation: moveUp 1.5s ease-out 1; /* 1회만 실행 */
  background-image: url('images/school.png'); /* 배경 이미지 경로 */ 
  background-size: cover; /* 화면에 맞게 꽉 채움 */ 
  background-position: center;/* 중앙 정렬 */ 
  background-repeat: no-repeat; /* 반복 없음 */
  overflow: hidden; /* 내용이 넘칠 때 숨김 */
  color: #ffffff;                /* 텍스트는 짙은 그레이 */
  padding: 80px 20px;
  text-align: center;
  min-height: 300px;
  margin-top: 0px;
}

@keyframes moveUp { 
  from { transform: translateY(50px); opacity: 0; } 
  to { transform: translateY(0); opacity: 1; } 
}

.hero4 h1 {
  font-size: 40px;
  margin-bottom: 100px;
  color: #ffffff;             /* 네이비 블루 포인트 */
}

.hero4 p {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.0
}

.hero4 p.tight {
  line-height: 1.0; 
  margin-bottom: 50px; 
} 

.hero4 p.loose {
  line-height: 1.0; 
  margin-bottom: 100px; 
}

.hero4::before { 
  content: ""; 
  position: absolute; 
  top: 0; left: 0; 
  right: 0; 
  bottom: 0; 
  background: rgba(0,0,0,0.4); /* 반투명 검정 레이어 */ 
  z-index: 0; } 
  
  .hero4 * { 
    position: relative; 
    z-index: 1; /* 글씨가 오버레이 위에 보이도록 */ 
  }


/* 모바일 반응형 이미지 최적화 */

  .overlay {  
  width: 100%;  
  height: 100%;  
  background: rgba(0, 0, 0, 0.473);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


/* PC에서는 꽉 채우기 */
.hero-header .slide {
  background-size: cover;
  background-position: center;
}

/* 화살표 아이콘 */
.arrow {
  display: inline-block;
  margin-left: 6px;
  font-size: 14px;  
  transition: transform 0.3s ease;
}

.has-submenu.open .arrow {
  transform: rotate(90deg); /* ▶ → ▼ */
}

/* 화살표 아이콘 기본 */
.arrow {
  display: none;
  margin-left: 6px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* li에 open 클래스가 붙었을 때 회전 */
.has-submenu.open > .arrow { 
  transform: rotate(90deg); 
}

.menu-toggle {
    display: none; 
    font-size: 28px;
    color: #fff;
    cursor: pointer;  
}

/* 회사소개 수정*/
/* ── 히어로 배너 ── */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(17,34,64,0.72) 60%,
    rgba(21,101,192,0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 40px 60px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 111, 0, 0.15);
  border: 1px solid rgba(255, 167, 38, 0.35);
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ── 공통 섹션 유틸 ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 14px;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 2px;
  margin-bottom: 44px;
}

/* 스크롤 애니메이션 */
.section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 대표 인사말 섹션 ── */
.greeting-section {
  background: var(--white);
}

.greeting-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 40px 100px;
}

.greeting-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

/* 왼쪽 비주얼 컬럼 */
.visual-col {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 시공 현장 SVG 카드 */
.scene-card {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(10, 22, 40, 0.22);
  aspect-ratio: 4/3;
  position: relative;
}
.scene-card svg { width: 100%; height: 100%; display: block; }

.scene-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

/* 대표 서명 카드 */
.sign-card {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.sign-company {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 600;
}
.sign-name {
  font-family: 'Noto Serif KR', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.sign-title {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.sign-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.sign-slogan {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  line-height: 1.7;
  font-style: italic;
}

/* 핵심 수치 그리드 */
.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini-stat {
  background: var(--off-white);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mini-stat:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.1);
}
.mini-stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.mini-stat-num span { color: var(--accent); font-size: 18px; }
.mini-stat-label {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* 오른쪽 본문 */
.message-col {}

.message-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.message-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}
.message-accent-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 2px;
  margin-bottom: 36px;
}
.message-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.message-lead strong { color: var(--blue); }

.message-body p {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 2.0;
  margin-bottom: 20px;
}
.message-body strong { color: var(--blue); }

/* 강점 리스트 */
.strength-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
}
.strength-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.strength-row:hover {
  border-color: var(--blue);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.08);
}
.strength-icon-wrap {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.strength-info {}
.strength-info strong {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}
.strength-info span {
  font-size: 13px;
  color: var(--text-light);
}

.message-closing {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 2.0;
  margin-top: 8px;
}
.message-closing strong { color: var(--navy); }

/* 서비스 태그 */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}
.service-tag:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.tag-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── 통계 배너 ── */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 72px 40px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num span { color: var(--accent-light); font-size: 32px; }
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.8px;
}

/* ════════════════════════════════════════
  b2b_style.css — B2B 파트너 페이지 전용
   ════════════════════════════════════════ */

/* ── 히어로 ── */
.b2b-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.b2b-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.b2b-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,22,40,0.92) 0%,
    rgba(17,34,64,0.78) 55%,
    rgba(255,111,0,0.15) 100%);
}

.b2b-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 40px 80px;
  max-width: 860px;
  margin: 0 auto;
}

.b2b-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,111,0,0.15);
  border: 1px solid rgba(255,167,38,0.35);
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.b2b-hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: b2b-pulse 2s infinite;
}

@keyframes b2b-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}

.b2b-hero-content h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.b2b-hero-content h1 span { color: var(--accent-light); }

.b2b-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
}

.b2b-hero-products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.b2b-hero-product {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.b2b-hero-product:hover {
  background: rgba(255,111,0,0.2);
  border-color: rgba(255,167,38,0.4);
  color: var(--accent-light);
}

/* ── 공통 섹션 유틸 ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 14px;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 2px;
  margin-bottom: 44px;
}

.section-divider.center { margin-left: auto; margin-right: auto; }
.center-label   { text-align: center; }
.center-title   { text-align: center; }
.center-divider { margin: 0 auto 24px; }

/* ── 가치 제안 섹션 ── */
.value-section {
  background: var(--white);
  padding: 100px 40px;
}

.value-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.value-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}

.value-header-right {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.9;
}

.value-header-right strong { color: var(--blue); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.value-card:hover::before  { transform: scaleX(1); }
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.value-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── 서비스 영역 ── */
.services-section {
  background: var(--off-white);
  padding: 100px 40px;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 72px;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-item:last-child { margin-bottom: 0; }

.service-item.reverse {
  direction: rtl;
}
.service-item.reverse > * { direction: ltr; }

.service-visual {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
  box-shadow: 0 20px 60px rgba(10,22,40,0.18);
  position: relative;
}

.service-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-visual:hover img { transform: scale(1.04); }

.service-visual-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1628, #1a3a6b);
}
.service-visual-placeholder svg { width: 60%; height: 60%; opacity: 0.75; }

.service-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}

.service-text h2 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.service-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}

.service-feature::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── 프로세스 섹션 ── */
.process-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 100px 40px;
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-header .section-label { color: var(--accent-light); }
.process-header .section-title { color: #fff; }
.process-header p { color: rgba(255,255,255,0.5); font-size: 15px; margin-top: 8px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%; right: 10%;
  height: 1px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-light);
  transition: background 0.3s, border-color 0.3s;
}

.process-step:hover .process-step-num {
  background: rgba(255,111,0,0.2);
  border-color: var(--accent-light);
}

.process-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ── 혜택 섹션 ── */
.benefits-section {
  background: var(--white);
  padding: 100px 40px;
}

.benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.benefits-left > p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 32px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.benefit-item:hover {
  border-color: var(--blue);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(21,101,192,0.08);
}

.benefit-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.benefit-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.benefit-info span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* 오른쪽 수치 카드 */
.benefits-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  transition: transform 0.3s;
}

.stat-card:hover { transform: translateY(-6px); }

.stat-card.wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--blue), #1a3a6b);
}

.stat-card-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card-num span { color: var(--accent-light); font-size: 28px; }

.stat-card-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}


/* ════════════════════════════════════════
   academy_style.css — 아카데미 페이지 전용
   ════════════════════════════════════════ */

/* ── 히어로 ── */
.ac-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.ac-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.ac-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,22,40,0.93) 0%,
    rgba(17,34,64,0.80) 55%,
    rgba(21,101,192,0.20) 100%);
}

.ac-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 40px 80px;
  max-width: 820px;
  margin: 0 auto;
}

.ac-hero-tag {
  display: inline-block;
  background: rgba(21,101,192,0.18);
  border: 1px solid rgba(30,136,229,0.35);
  color: #64b5f6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.ac-hero-content h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.ac-hero-content h1 span { color: var(--accent-light); }

.ac-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.58);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 40px;
}

.ac-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 50px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(21,101,192,0.35);
}
.ac-hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(21,101,192,0.45);
}

/* ── 공통 유틸 ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 14px;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 2px;
  margin-bottom: 44px;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ── 아카데미 소개 ── */
.ac-intro-section {
  background: var(--white);
  padding: 100px 40px;
}
.ac-intro-inner { max-width: 1100px; margin: 0 auto; }

.ac-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.ac-intro-left p {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 18px;
}
.ac-intro-left p strong { color: var(--blue); }

.ac-intro-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ac-intro-card {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,22,40,0.2);
}
.ac-intro-svg svg { width: 100%; display: block; }

.ac-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ac-intro-stat {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ac-intro-stat:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(21,101,192,0.1);
}
.ac-intro-stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.ac-intro-stat-num span { color: var(--accent); font-size: 18px; }
.ac-intro-stat-label { font-size: 11px; color: var(--text-light); letter-spacing: 0.5px; }

/* ── 교육 과정 ── */
.ac-courses-section {
  background: var(--off-white);
  padding: 100px 40px;
}
.ac-courses-inner { max-width: 1100px; margin: 0 auto; }

.ac-courses-header { text-align: center; margin-bottom: 60px; }
.ac-courses-desc {
  font-size: 15px;
  color: var(--text-light);
  margin-top: -28px;
  margin-bottom: 0;
}

.ac-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* 5번째 카드: 아래 가운데 2칸 span */
.ac-course-card:nth-child(5) { grid-column: 1 / 2; }
.ac-course-card:nth-child(5) { grid-column: 2 / 4; }


.ac-course-card:nth-child(6) { grid-column: 1 / 2; }
.ac-course-card:nth-child(6) { grid-column: 1 / 4; }


.ac-course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
}
.ac-course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.ac-course-card:hover::before { transform: scaleX(1); }
.ac-course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.ac-course-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  border-color: transparent;
}
.ac-course-card.featured::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(1);
}
.ac-course-card.featured h3 { color: #fff; }
.ac-course-card.featured .ac-course-list li { color: rgba(255,255,255,0.75); }
.ac-course-card.featured .ac-course-badge { color: var(--accent-light); border-color: rgba(255,167,38,0.3); background: rgba(255,111,0,0.15); }
.ac-course-card.featured .ac-course-duration { color: rgba(255,255,255,0.5); border-top-color: rgba(255,255,255,0.1); }

.ac-course-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue);
  border: 1px solid rgba(21,101,192,0.2);
  background: rgba(21,101,192,0.06);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.ac-course-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.ac-course-card h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.ac-course-list {
  list-style: none;
  padding: 0; margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ac-course-list li {
  font-size: 13.5px;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.ac-course-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

.ac-course-duration {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.ac-course-featured-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ── 교육 프로세스 ── */
.ac-process-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 100px 40px;
}
.ac-process-inner { max-width: 1100px; margin: 0 auto; }

.ac-process-header { text-align: center; margin-bottom: 64px; }
.ac-process-header .section-label { color: var(--accent-light); }
.ac-process-header .section-title { color: #fff; }
.ac-process-header p { color: rgba(255,255,255,0.5); font-size: 15px; margin-top: 8px; }

.ac-process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.ac-process-step {
  text-align: center;
  flex: 1;
  max-width: 220px;
}

.ac-process-num {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-light);
  transition: background 0.3s, border-color 0.3s;
}
.ac-process-step:hover .ac-process-num {
  background: rgba(255,111,0,0.2);
  border-color: var(--accent-light);
}

.ac-process-step h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ac-process-step p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

.ac-process-arrow {
  font-size: 24px;
  color: rgba(255,255,255,0.2);
  padding: 0 8px;
  margin-bottom: 52px;
  flex-shrink: 0;
}

/* ── 수료 후 혜택 ── */
.ac-after-section {
  background: var(--white);
  padding: 100px 40px;
}
.ac-after-inner { max-width: 1100px; margin: 0 auto; }
.ac-after-header { text-align: center; margin-bottom: 56px; }

.ac-after-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ac-after-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ac-after-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blue);
}

.ac-after-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.ac-after-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}
.ac-after-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── 모집 안내 ── */
.ac-recruit-section {
  background: var(--off-white);
  padding: 100px 40px;
  text-align: center;
}
.ac-recruit-inner { max-width: 720px; margin: 0 auto; }

.contact-logo {
  display: block;
  max-width: 180px;
  height: auto;
  margin: 0 auto 36px;
}

.ac-recruit-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.ac-recruit-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  text-align: left;
}

.ac-recruit-item {
  display: flex;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  gap: 24px;
}
.ac-recruit-item:last-child { border-bottom: none; }

.ac-recruit-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  min-width: 90px;
  letter-spacing: 0.3px;
}
.ac-recruit-value {
  font-size: 14px;
  color: var(--text-mid);
}

.ac-recruit-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.cta-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.cta-btn.primary { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; }
.cta-btn.kakao   { background: linear-gradient(135deg, #fee500, #ffd000); color: #3b1e08; }
.cta-btn.email   { background: var(--white); color: var(--navy); border: 1px solid var(--border); }

/* ════════════════════════════════════════
   network_style.css — 전국네트워크 페이지
   ════════════════════════════════════════ */

/* ── 히어로 ── */
.nw-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.nw-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.nw-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(10,22,40,0.93) 0%,
    rgba(17,34,64,0.80) 55%,
    rgba(255,111,0,0.12) 100%);
}
.nw-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 100px 40px 80px;
  max-width: 820px; margin: 0 auto;
}
.nw-hero-tag {
  display: inline-block;
  background: rgba(255,111,0,0.15);
  border: 1px solid rgba(255,167,38,0.35);
  color: var(--accent-light);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 50px;
  margin-bottom: 28px;
}
.nw-hero-content h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff; font-weight: 700;
  line-height: 1.18; margin-bottom: 20px;
  letter-spacing: -1px;
}
.nw-hero-content h1 span { color: var(--accent-light); }
.nw-hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.58);
  font-weight: 300; line-height: 1.75; margin-bottom: 40px;
}
.nw-hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent), #ff8f00);
  color: #fff; text-decoration: none;
  font-size: 15px; font-weight: 600;
  padding: 14px 34px; border-radius: 50px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(255,111,0,0.35);
}
.nw-hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255,111,0,0.45);
}

/* ── 통계 배너 ── */
.nw-stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 64px 40px;
}
.nw-stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.nw-stat-item {
  text-align: center; padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.nw-stat-item:last-child { border-right: none; }
.nw-stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 44px; font-weight: 700;
  color: #fff; line-height: 1; margin-bottom: 10px;
}
.nw-stat-num span { color: var(--accent-light); font-size: 28px; }
.nw-stat-label { font-size: 13px; color: rgba(255,255,255,0.48); letter-spacing: 0.5px; }

/* ── 공통 유틸 ── */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.35; margin-bottom: 14px;
}
.section-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 2px; margin-bottom: 44px;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ── 지도 섹션 ── */
.nw-map-section {
  background: var(--white);
  padding: 100px 40px;
}
.nw-map-inner { max-width: 1100px; margin: 0 auto; }
.nw-map-header { margin-bottom: 56px; }

.nw-map-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

.nw-map-card {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10,22,40,0.22);
}
.nw-map-card svg { width: 100%; display: block; }

/* 지도 핀 애니메이션 */
.map-pulse {
  animation: map-ring 2.5s ease-out infinite;
}
@keyframes map-ring {
  0%   { opacity: 0.5; transform: scale(1); }
  70%  { opacity: 0; transform: scale(2.5); }
  100% { opacity: 0; transform: scale(1); }
}

.nw-map-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
}

/* 지역 목록 */
.nw-region-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.nw-region-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nw-region-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nw-region-card:hover {
  border-color: var(--blue);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(21,101,192,0.08);
}
.nw-region-card.active { border-color: rgba(21,101,192,0.3); background: rgba(21,101,192,0.04); }
.nw-region-card.expanding { border-color: rgba(255,111,0,0.25); background: rgba(255,111,0,0.04); }

.nw-region-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 50px; flex-shrink: 0;
}
.nw-region-badge.hq  { background: rgba(21,101,192,0.12); color: var(--blue); border: 1px solid rgba(21,101,192,0.2); }
.nw-region-badge.exp { background: rgba(255,111,0,0.12); color: var(--accent); border: 1px solid rgba(255,111,0,0.2); }

.nw-region-name {
  font-size: 15px; font-weight: 700; color: var(--text-dark);
  min-width: 60px;
}
.nw-region-detail {
  font-size: 13px; color: var(--text-light);
  flex: 1;
}
.nw-region-status {
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 12px; border-radius: 50px; flex-shrink: 0;
}
.nw-region-status.on     { background: rgba(76,175,80,0.12); color: #388e3c; border: 1px solid rgba(76,175,80,0.25); }
.nw-region-status.expand { background: rgba(255,111,0,0.12); color: var(--accent); border: 1px solid rgba(255,111,0,0.25); }

/* ── 가맹 혜택 ── */
.nw-benefit-section {
  background: var(--off-white);
  padding: 100px 40px;
}
.nw-benefit-inner { max-width: 1100px; margin: 0 auto; }
.nw-benefit-header { text-align: center; margin-bottom: 60px; }
.nw-benefit-desc {
  font-size: 15px; color: var(--text-light);
  margin-top: -28px;
}
.nw-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.nw-benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.nw-benefit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nw-benefit-card:hover::before { transform: scaleX(1); }
.nw-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.nw-benefit-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.nw-benefit-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px;
}
.nw-benefit-card p { font-size: 14px; color: var(--text-light); line-height: 1.75; }

/* ── 가맹 절차 ── */
.nw-process-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 100px 40px;
}
.nw-process-inner { max-width: 1100px; margin: 0 auto; }
.nw-process-header { text-align: center; margin-bottom: 64px; }
.nw-process-header .section-label { color: var(--accent-light); }
.nw-process-header .section-title { color: #fff; }
.nw-process-header p { color: rgba(255,255,255,0.5); font-size: 15px; margin-top: 8px; }

.nw-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.nw-process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 1px;
  background: rgba(255,255,255,0.12);
  z-index: 0;
}
.nw-process-step {
  text-align: center; padding: 0 8px;
  position: relative; z-index: 1;
}
.nw-process-num {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--accent-light);
  transition: background 0.3s, border-color 0.3s;
}
.nw-process-step:hover .nw-process-num {
  background: rgba(255,111,0,0.2);
  border-color: var(--accent-light);
}
.nw-process-step h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.nw-process-step p  { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── 모집 안내 ── */
.nw-recruit-section {
  background: var(--white);
  padding: 100px 40px;
  text-align: center;
}
.nw-recruit-inner { max-width: 720px; margin: 0 auto; }
.contact-logo { display: block; max-width: 180px; height: auto; margin: 0 auto 36px; }
.nw-recruit-desc {
  font-size: 16px; color: var(--text-light);
  line-height: 1.8; margin-bottom: 40px;
}
.nw-recruit-info {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  margin-bottom: 40px; text-align: left;
}
.nw-recruit-item {
  display: flex; align-items: flex-start;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  gap: 24px;
}
.nw-recruit-item:last-child { border-bottom: none; }
.nw-recruit-label {
  font-size: 13px; font-weight: 700;
  color: var(--blue); min-width: 90px;
}
.nw-recruit-value { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.nw-recruit-btns {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 14px;
}

/* CTA 버튼 공통 */
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.cta-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.cta-btn.primary { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; }
.cta-btn.kakao   { background: linear-gradient(135deg, #fee500, #ffd000); color: #3b1e08; }
.cta-btn.email   { background: var(--off-white); color: var(--navy); border: 1px solid var(--border); }

