/* =============================================
   PPCS (피피씨에스) - Main Stylesheet
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol { list-style: none; }

img { display: block; max-width: 100%; }

/* =============================================
   NAVIGATION
   ============================================= */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 92px;
}

.nav-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid #b0daf7; */
  justify-content: space-between;
  gap: 24px;
}

/* ---- Logo ---- */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* hn-nav(랜딩): 로고 흰색 */
.hn-nav .nav-logo img {
  filter: brightness(0) invert(1);
}

/* ---- Center Menu ---- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.nav-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  /* border-radius: 6px; */
  white-space: nowrap;
  /* transition: background 0.2s, color 0.2s; */
}

.nav-menu li a:hover,
.nav-menu li a.active {
  /* background: #f0f4ff; */
  color: #1b4dca;
}

/* ---- Right Actions ---- */
.nav-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions .btn-login {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #1b4dca;
  border: 1.5px solid #1b4dca;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-actions .btn-login:hover {
  background: #1b4dca;
  color: #fff;
}

.nav-actions .btn-join {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #1b4dca;
  border: 1.5px solid #1b4dca;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
}

.nav-actions .btn-join:hover {
  background: #1340a8;
  border-color: #1340a8;
}

/* ---- Hamburger (mobile) ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- Mobile Nav Overlay ---- */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav-mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 360px;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.nav-mobile-overlay.open { display: block; }
.nav-mobile-overlay.open .nav-mobile-panel { transform: translateX(0); }

/* 패널 헤더 */
.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.mobile-panel-logo img {
  height: 36px;
  display: block;
}

.mobile-panel-close {
  position: relative;
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-panel-close::before,
.mobile-panel-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  background: #555;
  border-radius: 2px;
}

.mobile-panel-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-panel-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* 패널 메뉴 본문 */
.mobile-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
}

.nav-mobile-panel ul { display: flex; flex-direction: column; gap: 0; list-style: none; margin: 0; padding: 0; }

.nav-mobile-panel ul li a {
  display: block;
  padding: 13px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s, background 0.2s;
}

.nav-mobile-panel ul li a:hover { color: #1b4dca; background: #f7f8ff; }

/* 하단 액션 */
.nav-mobile-panel .mobile-actions {
  display: flex;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.nav-mobile-panel .mobile-actions a {
  flex: 1;
  text-align: center;
  padding: 11px 0;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
}

.nav-mobile-panel .mobile-actions .btn-login {
  color: #1b4dca;
  border: 1.5px solid #1b4dca;
}

.nav-mobile-panel .mobile-actions .btn-join {
  color: #fff;
  background: #1b4dca;
  border: 1.5px solid #1b4dca;
}

/* 햄버거 → X 애니메이션 */
.nav-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* =============================================
   HN-NAV (랜딩페이지 전용 상단 고정 네비)
   ============================================= */

/* nav 래퍼 */
.hn-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
}

.hn-nav .nav-inner {
  height: 92px;
  justify-content: space-between;
  position: relative;
}

/* 메뉴 가운데 절대배치 (subnav 동일) */
.hn-nav .nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hn-nav .nav-menu li a {
  display: block;
  padding: 7px 15px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.hn-nav .nav-menu li a:hover,
.hn-nav .nav-menu li a.active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* 오른쪽 그룹 (카카오 + 햄버거) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  z-index: 1;
}

/* 카카오 */
.nav-kakao {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 10px;
}
.nav-kakao img {
  height: 36px;
  width: auto;
  display: block;
}

/* 햄버거 (항상 표시) */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 드로어 */
.drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  padding: 76px 24px 40px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  transition: right 0.32s ease;
  overflow-y: auto;
}
.drawer.open { right: 0; }
.drawer ul { list-style: none; margin: 0; padding: 0; }
.drawer ul li { border-bottom: 1px solid #f0ece5; }
.drawer ul li a {
  display: block;
  padding: 14px 4px;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s;
}
.drawer ul li a:hover { color: #b89a68; }
.drawer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: 1px solid #e0dbd4;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 1rem;
  color: #555;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-close:hover { background: #f5f0e8; color: #b89a68; }

/* 드로어 백드롭 */
.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1500;
}
.drawer-backdrop.open { display: block; }

/* 반응형 */
@media (max-width: 960px) {
  .hn-nav .nav-menu { display: none !important; }
}
}
@media (max-width: 640px) {
  .hn-nav .nav-inner { height: 58px; padding: 0 16px; }
  .hn-nav .nav-logo img { height: 44px; }
  .hn-nav .nav-right { right: 16px; }
}

/* =============================================
   HERO SWIPER
   ============================================= */

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100 - 72px);
  min-height: 420px;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-swiper .swiper-slide img.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}

/* Ken Burns 효과 */
.hero-swiper .swiper-slide-active img.slide-bg {
  transform: scale(1.07);
}

/* Gradient Overlay */
.hero-swiper .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 30, 80, 0.72) 0%,
    rgba(13, 30, 80, 0.35) 60%,
    transparent 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 860px;
}

.slide-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
  backdrop-filter: blur(4px);
}

.slide-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.slide-title em {
  font-style: normal;
  color: #7eb3ff;
}

.slide-desc {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 32px;
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #1b4dca;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  width: fit-content;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(27, 77, 202, 0.45);
}

.slide-cta:hover {
  background: #1340a8;
  transform: translateY(-2px);
}

.slide-cta i { font-size: 13px; }

/* Swiper navigation buttons */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* Swiper pagination */
.hero-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  transition: width 0.3s, background 0.3s;
  border-radius: 4px;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 28px;
  background: #fff;
}

/* =============================================
   SLIDE ANIMATION
   ============================================= */

.swiper-slide .slide-content > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.swiper-slide-active .slide-content .slide-badge  { opacity: 1; transform: none; transition-delay: 0.15s; }
.swiper-slide-active .slide-content .slide-title  { opacity: 1; transform: none; transition-delay: 0.3s; }
.swiper-slide-active .slide-content .slide-desc   { opacity: 1; transform: none; transition-delay: 0.45s; }
.swiper-slide-active .slide-content .slide-cta    { opacity: 1; transform: none; transition-delay: 0.6s; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .nav-menu li a { padding: 8px 10px; font-size: 14px; }
}

@media (max-width: 900px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }

  .nav-hamburger { display: flex; }

  .slide-content { padding: 0 40px; }
}

@media (max-width: 600px) {
  .site-nav { height: 62px; }

  .nav-inner { padding: 0 20px; }

  .nav-logo img { height: 52px; }

  .hero-swiper { height: calc(var(--vh, 1vh) * 100 - 62px); min-height: 320px; }

  .slide-content { padding: 0 24px; }

  .slide-cta { padding: 11px 22px; font-size: 14px; }

  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next { display: none; }
}

/* =============================================
   MEMBER AUTH PAGES
   ============================================= */

.auth-wrap {
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(27, 77, 202, 0.1);
  padding: 52px 44px 44px;
}

.auth-card.wide {
  max-width: 760px;
}

/* 2열 그리드 row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.auth-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.auth-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 8px;
}

.auth-sub {
  font-size: 13.5px;
  color: #888;
  text-align: center;
  line-height: 1.65;
  margin-bottom: 52px;
}

.auth-form .form-group {
  margin-bottom: 18px;
}

.auth-form label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="tel"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde2ee;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: #1a1a2e;
  background: #fafbff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.auth-form input:focus {
  border-color: #1b4dca;
  box-shadow: 0 0 0 3px rgba(27, 77, 202, 0.1);
  background: #fff;
}

.auth-form input.is-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.auth-hint {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
}

.auth-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #1b4dca;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}

.auth-btn:hover  { background: #1340a8; transform: translateY(-1px); }
.auth-btn:active { transform: none; }
.auth-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.auth-alert {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.5;
}

.auth-alert.error {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
}

.auth-alert.success {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
}

.auth-links {
  text-align: center;
  margin-top: 24px;
  font-size: 13.5px;
  color: #888;
}

.auth-links a {
  color: #1b4dca;
  font-weight: 600;
  margin-left: 4px;
}

.auth-links a:hover { text-decoration: underline; }

.auth-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 28px 0;
}

/* ---- Agreement checkboxes (register) ---- */
.agree-section {
  margin: 4px 0 20px;
  padding: 14px 16px;
  background: #f8faff;
  border: 1.5px solid #dde2ee;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.agree-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13.5px;
  color: #444;
  user-select: none;
}

.agree-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #1b4dca;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

.agree-item a {
  color: #1b4dca;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 520px) {
  .auth-card {
    padding: 36px 24px 32px;
    border-radius: 16px;
  }

  .auth-title { font-size: 21px; }

  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   SITE FOOTER
   ============================================= */

.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 0;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-area {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 140px;
}

.footer-logo-area img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo-area img[src=""] ,
.footer-logo-area img:not([src]) { display: none; }

.footer-brand {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.footer-info {
  flex: 1;
}

.footer-info p {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}

.footer-info .fi-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11.5px;
  margin-right: 4px;
  letter-spacing: 0.02em;
}

.footer-info .f-sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.18);
}

.footer-info a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-info a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-policy {
  display: flex;
  gap: 18px;
}

.footer-policy li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-policy li a:hover { color: #fff; }

.footer-policy li:first-child a {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .footer-inner { padding: 0 20px; }
  .footer-top { flex-direction: column; gap: 16px; }
  .footer-info .f-sep { display: none; }
  .footer-info p { line-height: 1.9; }
  .footer-bottom { flex-direction: column-reverse; gap: 10px; text-align: center; }
}

/* =============================================
   더휴먼컨설팅 FOOTER (footer2.php)
   ============================================= */
.hf-footer {
  background: #111827;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* 상단 정책 링크 바 */
.hf-policy-bar {
  background: #0d1321;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hf-policy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hf-policy-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 8px 0;
  transition: color 0.2s;
  font-family: inherit;
}
.hf-policy-btn:hover { color: #e8b84b; }
.hf-policy-btn--bold { font-weight: 700; color: rgba(255,255,255,0.75); }
.hf-policy-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.18);
  margin: 0 14px;
  vertical-align: middle;
}

/* 본문 */
.hf-main { padding: 44px 0 36px; }
.hf-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 200px 1fr 300px;
  gap: 50px;
  align-items: start;
}

/* 브랜드 영역 */
.hf-logo-link { display: inline-block; margin-bottom: 14px; }
.hf-logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.hf-slogan {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

/* 회사 정보 */
.hf-info p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.55);
}
.hf-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  margin-right: 5px;
  letter-spacing: 0.02em;
}
.hf-sep {
  margin: 0 10px;
  color: rgba(255,255,255,0.18);
}
.hf-info a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.hf-info a:hover { color: #e8b84b; }

/* 요금 안내 */
.hf-price {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px 22px;
}
.hf-price-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e8b84b;
  margin-bottom: 12px;
}
.hf-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hf-price-list li { font-size: 13px; color: rgba(255,255,255,0.6); }
.hf-price-label {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  margin-right: 5px;
}
/* 오른쪽 컬럼: 무통장 + CS */
.hf-right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 무통장 박스 */
.hf-bank-box {
  background: rgba(232,184,75,0.07);
  border: 1px solid rgba(232,184,75,0.20);
  border-radius: 10px;
  padding: 16px 18px;
}
.hf-bank-box-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #e8b84b;
  margin-bottom: 8px;
}
.hf-bank-box-num {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.hf-bank-box-holder {
  font-size: 14px;
  margin-top: 10px;
  color: rgba(255,255,255);
}

/* CS 센터 박스 */
.hf-cs-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 16px 18px;
}
.hf-cs-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.hf-cs-tel a {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 4px;
}
.hf-cs-tel a:hover { color: #e8b84b; }
.hf-cs-hours {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.hf-cs-email a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.hf-cs-email a:hover { color: #e8b84b; }

/* 카피라이트 */
.hf-copy-bar {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
}
.hf-copy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  font-size: 12px;
  color: rgba(235, 235, 235);
}

/* ── 모달 ── */
.hf-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.hf-modal-overlay.active { display: flex; }
.hf-modal-box {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px 44px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.hf-cert-wrap .hf-cert-img {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 4px;
}
.hf-modal-box[data-type="cert"] {
  width: fit-content;
  max-width: 92vw;
  max-height: 94vh;
  padding: 12px 12px 16px;
  overflow: visible;
}
.hf-modal-box[data-type="cert"] .hf-modal-close {
  top: -14px;
  right: -14px;
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  font-size: 14px;
}
.hf-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.hf-modal-close:hover { color: #1a1a2e; }
.hf-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.hf-modal-date {
  font-size: 12.5px;
  color: #aaa;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}
.hf-modal-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 22px 0 8px;
}
.hf-modal-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.85;
}
.hf-modal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin: 8px 0 16px;
}
.hf-modal-table th {
  background: #f5f4f0;
  font-weight: 700;
  color: #1a1a2e;
  padding: 9px 14px;
  border: 1px solid #e5e0d8;
  text-align: left;
}
.hf-modal-table td {
  padding: 9px 14px;
  border: 1px solid #e5e0d8;
  color: #555;
}

/* 자격증 이미지 */
.hf-cert-wrap { text-align: center; padding: 10px 0; }
.hf-cert-img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

/* 반응형 */
@media (max-width: 960px) {
  .hf-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hf-right-col { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .hf-bank-box, .hf-cs-box { flex: 1; min-width: 220px; }
  .hf-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .hf-policy-inner { padding: 12px 20px; gap: 0; }
  .hf-policy-sep { margin: 0 10px; }
  .hf-policy-btn { font-size: 12px; }
  .hf-inner { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
  .hf-right-col { flex-direction: column; }
  .hf-info p { font-size: 15px; }
  .hf-label { font-size: 13px; }
  .hf-bank-box-num { font-size: 16px; }
  .hf-bank-box-holder { font-size: 13px; }
  .hf-cs-tel a { font-size: 22px; }
  .hf-cs-hours { font-size: 13px; }
  .hf-cs-email a { font-size: 14px; }
  .hf-brand { display: none; }
  .hf-main { padding: 28px 0 24px; }
  .hf-copy-inner { padding: 0 20px; }
  .hf-modal-box { padding: 28px 20px; max-height: 90vh; }
}

/* =============================================
   TERMS / PRIVACY PAGES
   ============================================= */

.terms-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.terms-wrap h1 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.terms-wrap .terms-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 2px solid #eef0f6;
}

.terms-wrap h2 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 36px 0 10px;
}

.terms-wrap p {
  font-size: 14px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 8px;
}

.terms-wrap ul,
.terms-wrap ol {
  padding-left: 20px;
  margin: 8px 0 12px;
}

.terms-wrap ul { list-style: disc; }
.terms-wrap ol { list-style: decimal; }

.terms-wrap li {
  font-size: 14px;
  color: #444;
  line-height: 1.9;
}

.terms-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 12px 0 20px;
}

.terms-wrap th,
.terms-wrap td {
  border: 1px solid #dde2ee;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

.terms-wrap th {
  background: #f0f4ff;
  font-weight: 600;
  color: #333;
}

.terms-highlight {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: #92400e;
  line-height: 1.7;
  margin: 16px 0;
}

@media (max-width: 600px) {
  .terms-wrap { padding: 40px 16px 80px; }
  .terms-wrap h1 { font-size: 22px; }
  .terms-wrap table { font-size: 12px; }
  .terms-wrap th, .terms-wrap td { padding: 8px 10px; }
}

/* =============================================
   CONTACT PAGE
   ============================================= */

/* ---- Hero ---- */
.contact-hero {
  width: 100%;
  max-width: 1920px;
  height: 380px;
  margin: 0 auto;
  background: url('/images/contact_bg.png') center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 24, 65, 0.78) 0%, rgba(13, 30, 80, 0.45) 100%);
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.contact-hero-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}

.contact-hero-inner h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.contact-hero-inner .hero-desc {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
}

/* ---- Section Wrapper ---- */
.contact-section {
  padding: 72px 20px 100px;
  background: #fff;
}

.contact-outer {
  max-width: 980px;
  margin: 0 auto;
}

/* ---- Inquiry Type Cards ---- */
.inq-type-header {
  margin-bottom: 48px;
}

.inq-type-label {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.inq-type-label .req { color: #e53e3e; margin-left: 2px; }

.inq-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.inquiry-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 26px 12px 22px;
  border: 2px solid #dde2ee;
  border-radius: 16px;
  background: #fafbff;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.inquiry-type-btn:hover {
  border-color: #1b4dca;
  background: #f0f4ff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(27, 77, 202, 0.12);
}

.inquiry-type-btn.active {
  border-color: #1b4dca;
  background: #eff4ff;
  box-shadow: 0 0 0 3px rgba(27, 77, 202, 0.13);
  transform: translateY(-2px);
}

.inquiry-type-btn i       { font-size: 26px; color: #c0c8dd; transition: color 0.2s; }
.inquiry-type-btn span    { font-size: 14px; font-weight: 700; color: #444; line-height: 1; transition: color 0.2s; }
.inquiry-type-btn small   { font-size: 11.5px; color: #aab; }
.inquiry-type-btn.active i    { color: #1b4dca; }
.inquiry-type-btn.active span { color: #1b4dca; }

.cf-block { display: none; }

.cf-block.active {
  display: block;
  background: #f7f9ff;
  border: 1.5px solid #e2e8f8;
  border-radius: 16px;
  padding: 32px 36px 28px;
  margin-bottom: 28px;
}

.cf-section-title {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 24px;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid #e2e8f8;
  border-radius: 10px;
  letter-spacing: -0.01em;
}

.cf-section-title i {
  width: 32px;
  height: 32px;
  background: #eff4ff;
  color: #1b4dca;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ---- Form Groups ---- */
.cf-row { display: grid; gap: 16px; }
.cf-row-2 { grid-template-columns: 1fr 1fr; }
.cf-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.cf-group { margin-bottom: 18px; }

.cf-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}

.cf-group label .req { color: #e53e3e; margin-left: 2px; font-size: 13px; }

.cf-group input[type="text"],
.cf-group input[type="tel"],
.cf-group input[type="email"],
.cf-group input[type="date"],
.cf-group select,
.cf-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dde2ee;
  border-radius: 8px;
  font-size: 14.5px;
  font-family: inherit;
  color: #1a1a2e;
  background: #fafbff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: #1b4dca;
  box-shadow: 0 0 0 3px rgba(27, 77, 202, 0.1);
  background: #fff;
}

.cf-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.65;
}

.cf-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Gender radio */
.gender-group {
  display: flex;
  gap: 20px;
  padding: 11px 14px;
  border: 1.5px solid #dde2ee;
  border-radius: 8px;
  background: #fafbff;
}

.gender-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.gender-group input[type="radio"] {
  accent-color: #1b4dca;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* File upload */
.cf-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px dashed #b0bcda;
  border-radius: 8px;
  background: #f8faff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.cf-file-label:hover,
.cf-file-label.dragover { border-color: #1b4dca; background: #eff4ff; }
.cf-file-label i  { color: #1b4dca; font-size: 20px; flex-shrink: 0; }
.cf-file-label span { font-size: 14px; color: #555; flex: 1; }
.cf-file-label small { font-size: 11.5px; color: #aaa; white-space: nowrap; }
.cf-file-name { font-size: 12.5px; color: #1b4dca; margin-top: 5px; min-height: 18px; }

/* Divider */
.cf-divider { border: none; border-top: 1px solid #eef0f6; margin: 28px 0 24px; }

/* Privacy Agree */
.cf-privacy-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 0 18px;
  border-top: 1px solid #eef0f6;
  margin-bottom: 20px;
}

.cf-privacy-agree input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #1b4dca;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 3px;
}

.cf-privacy-agree p {
  font-size: 13.5px;
  color: #444;
  line-height: 1.7;
}

/* =============================================
   HOME - Why PPCS Section
   ============================================= */
.why-section {
  padding: 80px 24px;
  background: #f8fafc;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.why-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1b4dca;
  background: #eff4ff;
  border: 1px solid #c7d7fc;
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 8px;
}
.why-title {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
}
/* 공지사항 컬럼 */
.why-notice-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-notice-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}
.why-notice-more {
  font-size: .8rem;
  font-weight: 700;
  color: #1b4dca;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 2px;
  border-bottom: 1px solid #c7d7fc;
  transition: gap .15s;
}
.why-notice-more:hover { gap: 9px; }
.why-notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 2px solid #0f172a;
}
.why-notice-item {
  border-bottom: 1px solid #e9eef8;
}
.why-notice-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px;
  text-decoration: none;
  transition: background .15s;
}
.why-notice-item a:hover .why-notice-title { color: #1b4dca; }
.why-notice-title {
  font-size: .9rem;
  font-weight: 500;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  transition: color .15s;
}
.why-notice-date {
  font-size: .78rem;
  color: #94a3b8;
  white-space: nowrap;
  flex-shrink: 0;
}
.why-notice-empty {
  padding: 32px 0;
  text-align: center;
  color: #94a3b8;
  font-size: .88rem;
}
/* 강점 카드 컬럼 */
.why-cards-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid #e9eef8;
  box-shadow: 0 2px 12px rgba(27,77,202,.05);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27,77,202,.12);
  border-color: #c7d7fc;
}
.why-card-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.why-card-num {
  font-size: 1.1rem;
  font-weight: 900;
  color: #c7d7fc;
  letter-spacing: -.02em;
  line-height: 1;
  flex-shrink: 0;
}
.why-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
  margin: 0;
}
.why-card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}
@media (max-width: 960px) {
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .why-section { padding: 56px 20px; }
  .why-cards-col { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-card { padding: 18px 14px; }
  .why-card-title { font-size: 14px; }
  .why-card-desc { font-size: 12.5px; }
}

/* =============================================
   HOME - Our Services Section
   ============================================= */
.svc-section {
  padding: 96px 24px;
  background: #fff;
}
.svc-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.svc-header {
  text-align: center;
  margin-bottom: 56px;
}
.svc-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1b4dca;
  background: #eff4ff;
  border: 1px solid #c7d7fc;
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.svc-title {
  font-size: 36px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 14px;
}
.svc-sub {
  font-size: 14px;
  color: #64748b;
  line-height: 1.75;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-height: 360px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  transition: transform .28s, box-shadow .28s;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(27,77,202,.18);
}
.svc-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.svc-card:hover .svc-card-bg {
  transform: scale(1.06);
}
.svc-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,23,42,.35) 0%, rgba(15,23,42,.75) 100%);
}
.svc-card-body {
  position: relative;
  z-index: 1;
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
}
.svc-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 16px;
}
.svc-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}
.svc-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 20px;
}
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 2px;
  transition: border-color .2s, gap .2s;
}
.svc-card:hover .svc-more {
  gap: 10px;
  border-color: #fff;
}
@media (max-width: 960px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { min-height: 300px; }
}
@media (max-width: 540px) {
  .svc-section { padding: 64px 20px; }
  .svc-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-card { min-height: 260px; }
}

/* =============================================
   HOME - Process Section
   ============================================= */
.proc-section {
  padding: 96px 24px;
  background: #ffffff;
}
.proc-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.proc-header {
  text-align: center;
  margin-bottom: 64px;
}
.proc-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1b4dca;
  background: #eff4ff;
  border: 1px solid #c7d7fc;
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.proc-title {
  font-size: 36px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
}
.proc-sub {
  font-size: 14px;
  color: #64748b;
  line-height: 1.75;
}
.proc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.proc-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1b4dca;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(27,77,202,.12);
}
.proc-circle.last {
  background: linear-gradient(135deg, #1b4dca 0%, #0ea5e9 100%);
  box-shadow: 0 0 0 6px rgba(14,165,233,.15);
}
.proc-circle span {
  font-size: .85rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .03em;
}
.proc-line {
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(90deg, #c7d7fc 0%, #e2e8f0 100%);
  z-index: 0;
}
.proc-line.hidden { display: none; }
.proc-step-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin: 20px 0 8px;
}
.proc-step-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .proc-steps {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
  }
  .proc-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding: 0 0 40px;
  }
  .proc-line {
    top: 64px;
    left: 31px;
    right: auto;
    width: 2px;
    height: calc(100% - 32px);
    background: linear-gradient(180deg, #c7d7fc 0%, #e2e8f0 100%);
  }
  .proc-step:last-child { padding-bottom: 0; }
  .proc-step-title { margin-top: 4px; }
  .proc-circle { flex-shrink: 0; }
}
@media (max-width: 540px) {
  .proc-section { padding: 64px 20px; }
}

/* =============================================
   HOME - Slogan Banner Section
   ============================================= */
.slogan-section {
  background: url('/images/banner_bg.png') center center / cover no-repeat;
  padding: 30px 24px;
  overflow: hidden;
}
.slogan-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.slogan-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #020202;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(147,197,253,.25);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 16px;
}
.slogan-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.slogan-title em {
  font-style: normal;
  color: #60a5fa;
}
.slogan-desc {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 10px;
}
.slogan-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.slogan-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #1b4dca;
  color: #fff;
  font-size: .92rem;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid #3b6ef0;
  transition: background .2s, transform .2s;
}
.slogan-btn-primary:hover {
  background: #1340a8;
  border-color: #1340a8;
  transform: translateY(-2px);
}
.slogan-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  color: #e2e8f0;
  font-size: .92rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.2);
  transition: border-color .2s, color .2s;
}
.slogan-btn-secondary:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.slogan-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slogan-img {
  width: 100%;
  max-width: 280px;
  height: auto;
}
@media (max-width: 860px) {
  .slogan-inner { text-align: center; align-items: center; }
  .slogan-actions { justify-content: center; }
}
@media (max-width: 540px) {
  .slogan-section { padding: 56px 20px; }
}

/* =============================================
   HOME - 주요거래처 Section
   ============================================= */
/* ── 주요거래처 ── */
/* ===== 주요거래처 ===== */
.client-section {
  padding: 110px 24px;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.12), transparent 34%),
    linear-gradient(180deg, #f7fafc 0%, #edf3f9 100%);
}
.client-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.client-header {
  text-align: center;
  margin-bottom: 52px;
}
.client-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1b4dca;
  background: #eff4ff;
  border: 1px solid #c7d7fc;
  border-radius: 20px;
  padding: 3px 14px;
  margin-bottom: 14px;
}
.client-title {
  font-size: 36px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.25;
}
.client-title strong {
  font-weight: 900;
  color: #1b4dca;
}
.client-sub {
  font-size: 14px;
  color: #64748b;
  line-height: 1.75;
}

.ci-wrap {
  display: block;
}

.ci-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.ci-card {
  width: auto;
  min-width: 0;
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.98));
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ci-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15,23,42,.12);
}

.ci-card-media {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.ci-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.08) 0%, rgba(15,23,42,.58) 100%);
}
.ci-card-media img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
  transition: transform .6s ease;
}
.ci-card:hover .ci-card-media img {
  transform: scale(1.04);
}

.ci-card-body {
  position: relative;
  padding: 20px 18px 18px;
}

.ci-card-title {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.2;
}
.ci-card-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
}
.ci-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ci-card-tags li {
  font-size: .7rem;
  font-weight: 700;
  color: #1b4dca;
  background: #eff4ff;
  border: 1px solid #c7d7fc;
  border-radius: 20px;
  padding: 4px 10px;
}

.ci-card-semiconductor .ci-card-media::after {
  background: linear-gradient(180deg, rgba(8,47,73,.08) 0%, rgba(8,47,73,.62) 100%);
}
.ci-card-aerospace .ci-card-media::after {
  background: linear-gradient(180deg, rgba(30,41,59,.08) 0%, rgba(30,41,59,.62) 100%);
}
.ci-card-retail .ci-card-media::after {
  background: linear-gradient(180deg, rgba(120,53,15,.08) 0%, rgba(120,53,15,.60) 100%);
}
.ci-card-logistics .ci-card-media::after {
  background: linear-gradient(180deg, rgba(20,83,45,.08) 0%, rgba(20,83,45,.60) 100%);
}

@media (max-width: 1080px) {
  .ci-grid         { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ci-card-media   { height: 210px; }
}

@media (max-width: 860px) {
  .ci-grid         { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ci-card-media   { height: 250px; }
}

@media (max-width: 560px) {
  .ci-grid         { grid-template-columns: 1fr; }
  .ci-card-body    { padding: 24px 18px 20px; }
  .ci-card-media   { height: 220px; }
}
@media (max-width: 560px) {
  .client-section   { padding: 78px 16px; }
  .ci-wrap          { gap: 16px; }
  .ci-card          { border-radius: 22px; }
}

/* =============================================
   HOME - 숫자로 보는 매칭 파워 (주요거래처 하단)
   ============================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.stats-card {
  background: #fff;
  border: 1px solid rgba(27,77,202,.15);
  border-radius: 16px;
  min-height: 5px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 24px rgba(15,23,42,.06);
  transition: transform .25s, box-shadow .25s;
}
.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(15,23,42,.10);
}
.client-section .stats-grid > .stats-card:first-child {
  background: #fff !important;
  border: 1px solid rgba(27,77,202,.15) !important;
  border-radius: 16px !important;
  min-height: 5px;
  padding: 18px 14px;
  box-shadow: 0 6px 24px rgba(15,23,42,.06);
}
.stats-icon {
  font-size: 1.3rem;
  color: #1b4dca;
  margin-bottom: 8px;
}
.stats-value-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}
.stats-num {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -.02em;
}
.stats-unit {
  font-size: .72rem;
  font-weight: 700;
  color: #1b4dca;
}
.stats-label {
  font-size: .7rem;
  color: #64748b;
  line-height: 1.4;
  margin-top: 6px;
}
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { gap: 12px; }
}

/* =============================================
   HOME - 자주 묻는 질문 (FAQ) Section
   ============================================= */
.faq-section {
  background: #fff;
  padding: 100px 24px;
}
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}
.faq-title em {
  font-style: normal;
  color: #1b4dca;
}
.faq-sub {
  font-size: .9rem;
  color: #64748b;
  line-height: 1.7;
}
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}
.faq-col-title {
  font-size: .78rem;
  font-weight: 800;
  color: #1b4dca;
  background: #eff4ff;
  border: 1px solid #c7d7fc;
  border-radius: 20px;
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 20px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid #e2e8f0;
}
.faq-item:first-of-type {
  border-top: 1px solid #e2e8f0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 700;
  color: #1e293b;
  padding: 15px 36px 15px 0;
  cursor: pointer;
  position: relative;
  line-height: 1.5;
  transition: color .2s;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 400;
  color: #94a3b8;
  transition: color .25s;
}
.faq-item.open .faq-question { color: #1b4dca; }
.faq-item.open .faq-question::after { content: '−'; color: #1b4dca; }
.faq-answer {
  display: none;
  font-size: .83rem;
  color: #475569;
  line-height: 1.8;
  padding: 0 36px 14px 0;
}
.faq-item.open .faq-answer { display: block; }
@media (max-width: 860px) {
  .faq-cols { grid-template-columns: 1fr; gap: 32px; }
  .faq-section { padding: 72px 20px; }
}


.cf-privacy-agree .btn-privacy-view {
  background: none;
  border: none;
  color: #1b4dca;
  font-weight: 700;
  font-size: 13.5px;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

/* Submit */
.cf-submit {
  display: block;
  width: 100%;
  padding: 15px;
  background: #1b4dca;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.cf-submit:hover    { background: #1340a8; transform: translateY(-1px); }
.cf-submit:active   { transform: none; }
.cf-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Success Result */
.cf-result {
  display: none;
  text-align: center;
  padding: 80px 20px;
}

.cf-result i    { font-size: 56px; color: #1b4dca; margin-bottom: 18px; display: block; }
.cf-result h3   { font-size: 22px; font-weight: 800; color: #1a1a2e; margin-bottom: 10px; }
.cf-result p    { font-size: 15px; color: #666; line-height: 1.75; }

/* ---- Privacy Modal (bottom sheet) ---- */
.privacy-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9000;
  align-items: flex-end;
  justify-content: center;
}

.privacy-modal-overlay.open { display: flex; }

.privacy-modal-box {
  background: #fff;
  width: 100%;
  max-width: 700px;
  max-height: 82vh;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-modal-overlay.open .privacy-modal-box { transform: translateY(0); }

.privacy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.privacy-modal-header h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; }

.privacy-modal-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #888;
  line-height: 1;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background 0.2s;
}

.privacy-modal-close:hover { background: #f4f4f4; }

.privacy-modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 13px;
  color: #444;
  line-height: 1.9;
  flex: 1;
}

.privacy-modal-body h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 18px 0 7px;
}

.privacy-modal-body h4:first-child { margin-top: 0; }

.privacy-modal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 4px;
}

.privacy-modal-body th,
.privacy-modal-body td {
  border: 1px solid #dde2ee;
  padding: 9px 12px;
  font-size: 12.5px;
  text-align: left;
  vertical-align: top;
}

.privacy-modal-body th { background: #f0f4ff; font-weight: 600; color: #333; }

.privacy-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.privacy-modal-footer .btn-modal-agree {
  flex: 1;
  padding: 13px;
  background: #1b4dca;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.privacy-modal-footer .btn-modal-agree:hover { background: #1340a8; }

.privacy-modal-footer .btn-modal-close {
  padding: 13px 20px;
  background: #f4f4f6;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.privacy-modal-footer .btn-modal-close:hover { background: #eaeaee; }

@media (max-width: 860px) {
  .contact-section { padding: 48px 20px 80px; }
  .inq-type-grid { grid-template-columns: repeat(2, 1fr); }
  .cf-block.active { padding: 24px 24px 20px; }
}

@media (max-width: 640px) {
  .contact-hero { height: 300px; }
  .inq-type-grid { gap: 10px; }
  .inquiry-type-btn { padding: 20px 10px 16px; }
  .cf-row-2, .cf-row-3 { grid-template-columns: 1fr; }
  .privacy-modal-box { max-height: 90vh; border-radius: 16px 16px 0 0; }
}

@media (max-width: 480px) {
  .inquiry-type-btn { padding: 18px 8px 14px; gap: 7px; }
  .inquiry-type-btn i { font-size: 22px; }
  .inquiry-type-btn span { font-size: 13px; }
  .cf-block.active { padding: 20px 18px 16px; }
}

/* =============================================
   더휴먼컨설팅 - index2 (Human Landing)
   ============================================= */

/* ---- Hero ---- */
.hero-stage {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero {
  position: absolute;
  inset: 0;
}
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide { width: 100%; height: 100%; }
.hero-swiper .swiper-slide { overflow: hidden; }

/* Ken Burns 애니메이션 */
@keyframes heroBurns {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
}
.swiper-slide-active .hero-bg {
  animation: heroBurns 8s ease-in-out forwards;
}

/* 하단 중앙 페이지네이션 */
.hero-pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  z-index: 10;
}
.hero-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  opacity: 1;
  margin: 0 !important;
  transition: width 0.4s ease, background 0.4s ease;
}
.hero-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #e8b84b;
  border-radius: 4px;
}

/* 히어로 CTA 버튼 */
.hero-cta-btns {
  display: none;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.hcta-btn-lecture {
  background: #e8b84b;
  color: #ffffff;
  width: 180px;
  height: 50px;
  font-weight: 900;
  font-size: 22px;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(232,184,75,0.35);
}
.hcta-btn-lecture:hover {
  background: #d4a43c;
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(232,184,75,0.45);
}
.hcta-btn-consult {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.hcta-btn-consult:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(10,10,28,0.82) 0%, rgba(10,10,28,0.45) 55%, rgba(10,10,28,0.15) 100%),
    linear-gradient(to top,    rgba(10,10,28,0.6)  0%, transparent 50%);
}

/* 장식 Orb */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 480px;
  height: 480px;
  top: -80px;
  left: -100px;
  background: radial-gradient(circle, rgba(184,154,104,0.18) 0%, transparent 65%);
  animation: orbFloat1 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 320px;
  height: 320px;
  bottom: 60px;
  right: 380px;
  background: radial-gradient(circle, rgba(55,231,164,0.12) 0%, transparent 65%);
  animation: orbFloat2 11s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(30px) scale(1.06); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-24px) scale(1.04); }
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-content-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-top-cols {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a1a2e;
  background: #5cdee7;

  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title .sub {
  display: block;
  font-size: 48px;
  font-weight: 900;
  /* color: rgba(55, 231, 164, 0.62); */
  color: rgba(255, 255, 255);
  margin-bottom: 8px;
}
.hero-title em { font-style: normal; }
.hero-divider {
  width: 44px;
  height: 3px;
  background: #b89a68;
  margin: 20px 0;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  max-width: 580px;
}

/* 스크롤 큼 */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 80px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll-cue span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e8b84b;
  animation: scrollSlide 2s ease-in-out infinite 1.2s;
}
@keyframes scrollSlide {
  0%   { top: -100%; }
  100% { top: 100%; }
}
@media (max-width: 960px) {
  .hero-scroll-cue { display: none; }
}

/* 1분 빠른 상담 폼 */
.hero-quick-form {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
}
.hero-quick-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}
.hero-quick-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.hero-quick-form .hq-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 9px;
}
.hero-quick-form .hq-label {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.hero-quick-form .hq-select,
.hero-quick-form .hq-textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: 8px 11px;
  font-size: 13px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.hero-quick-form .hq-input {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 11px;
  font-size: 13px;
  color: #333;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.hero-quick-form .hq-select option { color: #333; background: #fff; }
.hero-quick-form .hq-select:focus,
.hero-quick-form .hq-textarea:focus {
  border-color: #e8b84b;
  background: rgba(255,255,255,0.18);
}
.hero-quick-form .hq-input:focus {
  border-color: #e8b84b;
  background: #fff;
}
.hero-quick-form .hq-textarea::placeholder { color: rgba(255,255,255,0.35); }
.hero-quick-form .hq-input::placeholder { color: #aaa; }
.hero-quick-form .hq-textarea {
  resize: none;
  height: 76px;
  line-height: 1.6;
}
.hero-quick-form .hq-submit {
  margin-top: 6px;
  width: 100%;
  padding: 11px 0;
  background: #e8b84b;
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
}
.hero-quick-form .hq-submit:hover { background: #d4a43c; transform: translateY(-1px); }

@media (max-width: 960px) {
  .hero-content-inner { flex-direction: column; padding: 0 24px; gap: 20px; }
  .hero-top-cols { grid-template-columns: 1fr; }
  .hero-form-col { display: none; }
  .hero-desc { white-space: normal; font-size: 14px; }
}

/* 모바일 빠른 상담 섭션 */
.hm-quick-wrap {
  display: none;
  background: #1a1a2e;
  padding: 32px 20px;
}
.hm-quick-wrap .hero-quick-form {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
}
/* .hm-quick-wrap 모바일에서 숨김 */
/* @media (max-width: 960px) { .hm-quick-wrap { display: block; } } */

/* ---- 소개 (About) ---- */
.hb-about {
  padding: 100px 0;
  background: #fff;
}
.hb-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 200px;
  align-items: center;
}
.hb-about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hb-about-photo-wrap {
  position: relative;
  width: 220px;
  height: 220px;
}
.hb-about-photo-ring {
  position: absolute;
  inset: -10px;
  border: 2px solid #e8e0d4;
  border-radius: 50%;
}
.hb-about-photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.hb-about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.hb-about-ceo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hb-about-ceo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #1a1a2e;
}
.hb-about-ceo-label { font-size: 13px; color: #999; }
.hb-about-ceo-sep { color: #ccc; }
.hb-about-ceo-name { font-weight: 700; }
.hb-about-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #b89a68;
  border: 1px solid #b89a68;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hb-about-profile-btn:hover { background: #b89a68; color: #fff; }
.hb-about-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b89a68;
  margin-bottom: 14px;
}
.hb-about-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 20px;
}
.hb-about-title em { font-style: normal; color: #b89a68; }
.hb-about-quote {
  border-left: 6px solid #b89a68;
  padding: 14px 0 14px 20px;
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 600;
  color: #555;
  font-style: italic;
  line-height: 1.7;
}
.hb-about-desc {
  font-size: 15.5px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 26px;
}
.hb-about-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hb-about-tags span {
  font-size: 13px;
  font-weight: 600;
  color: #b89a68;
  background: #fdf8f2;
  border: 1px solid #e8ddd0;
  padding: 6px 16px;
  border-radius: 20px;
}

/* ---- 연구소 리스트 ---- */
.hb-labs {
  padding: 100px 0;
  background: #f9f8f6;
}
.hb-labs-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  margin-bottom: 48px;
}
.hb-labs-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b89a68;
  margin-bottom: 14px;
}
.hb-labs-title {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 12px;
}
.hb-labs-desc {
  font-size: 15.5px;
  color: #666;
  line-height: 1.8;
}
.hb-labs-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hb-lab {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e3dc;
  border-radius: 16px;
  padding: 40px 34px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}
.hb-lab:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-4px); }
.hb-lab-img {
  width: calc(100% + 68px);
  margin: -40px -34px 24px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.hb-lab-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.hb-lab-icon {
  width: 54px;
  height: 54px;
  background: #fdf8f2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: #b89a68;
  margin-bottom: 22px;
}
.hb-lab-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b89a68;
  margin-bottom: 8px;
}
.hb-lab-title {
  font-size: 19px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.35;
}
.hb-lab-desc {
  font-size: 14.5px;
  color: #666;
  line-height: 1.85;
  flex: 1;
  margin-bottom: 28px;
}
.hb-lab-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  /* margin-top: 20px; */
  font-size: 14px;
  font-weight: 700;
  color: #b89a68;
}

/* ---- 강의 진행절차 ---- */
.hb-process {
  padding: 100px 0;
  background: #fff;
}
.hb-process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.hb-process-head {
  text-align: left;
  margin-bottom: 64px;
}
.hb-process-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b89a68;
  margin-bottom: 14px;
}
.hb-process-title {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.3;
}
.hb-process-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.8;
}
.hb-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.hb-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  background: none;
  border: none;
}
.hb-process-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e8e3dc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.hb-process-step:hover .hb-process-circle {
  border-color: #b89a68;
  box-shadow: 0 8px 28px rgba(184,154,104,0.20);
  transform: translateY(-4px);
}
.hb-process-num {
  font-size: 20px;
  font-weight: 900;
  color: #b89a68;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0;
}
.hb-process-icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #c8aa80;
  margin-bottom: 0;
}
.hb-process-step-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.35;
}
.hb-process-step-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.75;
}
.hb-process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  align-self: flex-start;
  margin-top: 78px;
  color: #d4c4a8;
  font-size: 15px;
  flex-shrink: 0;
}

/* ---- 갤러리 ---- */
.hb-gallery { padding: 100px 0; background: #f9f8f6; }
.hb-gallery-head {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hb-gallery-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b89a68;
  margin-bottom: 10px;
}
.hb-gallery-title { font-size: 30px; font-weight: 800; color: #1a1a2e; }
.hb-gallery-more-link {
  font-size: 13px;
  font-weight: 700;
  color: #b89a68;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 4px;
  border-bottom: 1px solid #b89a68;
  white-space: nowrap;
}
.hb-gallery-more-link:hover { color: #1a1a2e; border-color: #1a1a2e; }
.hb-gallery-swiper-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
}
.hb-gallery-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e5e0d8;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.hb-gallery-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.hb-gallery-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0;
}
.hb-gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.hb-gallery-img-wrap:hover img { transform: scale(1.04); }
.hb-gallery-img-ov {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.hb-gallery-img-wrap:hover .hb-gallery-img-ov { opacity: 1; }
.hb-gallery-img-ov span { color: #fff; font-size: 14px; font-weight: 600; }
.hb-gallery-info { padding: 16px 16px 18px; }
.hb-gallery-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hb-gallery-meta {
  font-size: 12.5px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}
.hb-gallery-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #b89a68;
  margin-top: 14px;
}
.hb-gallery-pagination {
  text-align: center;
  margin-top: 28px;
  padding-bottom: 4px;
}
.hb-gallery-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
  margin: 0 4px;
  border-radius: 4px;
  transition: width 0.3s, background 0.3s;
}
.hb-gallery-pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: #b89a68;
  border-radius: 4px;
}

/* ---- CTA 배너 ---- */
.hb-cta-banner { background: #5cdee7; min-height: 300px; display: flex; align-items: center; }
/* .hb-cta-banner { background: #0ea54d; min-height: 300px; display: flex; align-items: center; } */
.hb-cta-banner-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 60px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 60px;
  align-items: center;
}
.hb-cta-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b89a68;
  margin-bottom: 14px;
}
.hb-cta-slogan { font-size: 32px; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 14px; }
.hb-cta-sub { font-size: 15px; color: rgba(44, 43, 43, 0.6); line-height: 1.8; font-weight: 600; margin-bottom: 32px; }
.hb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #b89a68;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.hb-cta-btn:hover { background: #a0855a; }
.hb-cta-right { display: flex; justify-content: center; align-items: center; }
.hb-cta-book-swiper-wrap {
  width: 200px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,154,104,0.3);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(184,154,104,0.12);
  backdrop-filter: blur(6px);
}
.hb-cta-book-swiper { width: 100%; }
.hb-cta-book-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hb-cta-book-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
}

/* ---- 상담후기 ---- */
.hb-reviews { padding: 100px 0; background: #f9f8f6; overflow: hidden; }
.hb-reviews-head { max-width: 1200px; margin: 0 auto 44px; padding: 0 60px; }
.hb-reviews-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b89a68;
  margin-bottom: 10px;
}
.hb-reviews-title { font-size: 30px; font-weight: 800; color: #1a1a2e; }
.hb-reviews-rows { display: flex; flex-direction: column; gap: 18px; max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.hb-reviews-swiper-wrap { overflow: hidden; }
.hb-review-card {
  background: #fff;
  border: 1px solid #ece8e1;
  border-radius: 12px;
  padding: 26px 24px;
}
.hb-review-stars { display: flex; gap: 2px; font-size: 17px; margin-bottom: 10px; }
.hb-star-full { color: #e8b84b; }
.hb-star-half { color: #e8b84b; opacity: 0.5; }
.hb-review-text {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hb-review-name { font-size: 12.5px; color: #aaa; font-weight: 600; }

/* ---- FAQ ---- */
.hb-faq { padding: 100px 0; background: #fff; }
.hb-faq-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.hb-faq-head { margin-bottom: 48px; }
.hb-faq-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b89a68;
  margin-bottom: 10px;
}
.hb-faq-title { font-size: 30px; font-weight: 800; color: #1a1a2e; }
.hb-faq-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; }
.hb-faq-item { border-top: 1px solid #e5e0d8; border-bottom: 1px solid #e5e0d8; }
.hb-faq-item:nth-child(-n+2) { border-top: 2px solid #1a1a2e; }
.hb-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15.5px;
  font-weight: 600;
  color: #1a1a2e;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.hb-faq-q:hover { color: #b89a68; }
.hb-faq-icon { flex-shrink: 0; font-size: 15px; color: #b89a68; transition: transform 0.25s; }
.hb-faq-item.open .hb-faq-icon { transform: rotate(45deg); }
.hb-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.hb-faq-item.open .hb-faq-a { max-height: 300px; }
.hb-faq-a p { font-size: 15px; color: #666; line-height: 1.85; padding: 0 0 24px; }

/* ---- 흐르는 배너 ---- */
.hb-ticker {
  overflow: hidden;
  background: #f5f0e8;
  border-top: 1px solid #e8e0d4;
  border-bottom: 1px solid #e8e0d4;
  padding: 13px 0;
}
.hb-ticker-track {
  display: flex;
  width: max-content;
  animation: hbTickerScroll 20s linear infinite;
}
.hb-ticker-track span { white-space: nowrap; font-size: 13px; font-weight: 600; color: #888; padding: 0 20px; }
.hb-ticker-dot { color: #b89a68 !important; font-size: 9px !important; vertical-align: middle; }
@keyframes hbTickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- index2 반응형 ---- */
@media (max-width: 1080px) {
  .hb-labs-grid { grid-template-columns: repeat(2, 1fr); }
  .hb-cta-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .hb-cta-right { display: none; }
  .hb-process-steps { flex-wrap: wrap; gap: 24px; }
  .hb-process-step { flex: 1 1 calc(33% - 24px); min-width: 160px; }
  .hb-process-circle { width: 130px; height: 130px; }
  .hb-process-arrow { display: none; }
}
@media (max-width: 860px) {
  .hb-about-title {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 20px;
}
  .hero-title { font-size: 40px; }
  .hero-title .sub { font-size: 26px; }
  .hb-about-inner { grid-template-columns: 1fr; gap: 44px; }
  .hb-about-photo-col { flex-direction: row; justify-content: flex-start; gap: 28px; }
  .hb-about-photo-wrap { width: 160px; height: 160px; }
  .hb-reviews-rows { padding: 0 24px; }
  .hb-faq-list { grid-template-columns: 1fr; }
  .hb-faq-item:nth-child(-n+2) { border-top: 1px solid #e5e0d8; }
  .hb-faq-item:nth-child(1) { border-top: 2px solid #1a1a2e; }
  .hb-labs-grid { grid-template-columns: 1fr; }
  .hb-labs-head, .hb-labs-grid { padding: 0 24px; }
  .hb-process-inner { padding: 0 24px; }
  .hb-process-steps { flex-wrap: wrap; gap: 20px; }
  .hb-process-step { flex: 1 1 calc(50% - 20px); min-width: 140px; }
  .hb-process-circle { width: 120px; height: 120px; }
  .hb-gallery-head, .hb-gallery-swiper-wrap { padding: 0 32px; }
  .hb-reviews-head { padding: 0 24px; }
  .hb-faq-inner { padding: 0 24px; }
}
@media (max-width: 640px) {
  .hero-stage { min-height: 500px; }
  .hero-content-inner { padding: 80px 24px 0; }
  .hero-title { font-size: 34px; }
  .hero-title .sub { font-size: 28px; }
  .hero-desc { font-size: 14.5px; font-weight: 800;}
  .hero-tag { display: none; }
  .hb-process { padding: 64px 0; }
  .hb-process-step { flex: 1 1 100%; }
  .hb-process-circle { width: 120px; height: 120px; }
  .hb-process-num { font-size: 26px; }
  .hero-cta-btns { display: flex; flex-direction: row; gap: 10px; margin-top: 80px; }
  .hero-cta-btns .hcta-btn { flex: 1; justify-content: center; padding: 12px 10px; font-size: 14px; }
  .hero-cta-btns .hcta-btn-lecture { width: 180px; flex: 0 0 180px; }
  .hero-scroll-cue { display: none; }
  .hb-about { padding: 64px 0; }
  .hb-about-inner { padding: 0 24px; }
  .hb-about-photo-col { flex-direction: column; align-items: center; }
  .hb-about-photo-wrap { width: 180px; height: 180px; }
  .hb-about-tag { display: none; }
  .hb-about-quote { display: none; }
  .hb-about-title::before {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: #b89a68;
    border-radius: 2px;
    margin-bottom: 14px;
  }
  .hb-labs { padding: 64px 0; }
  .hb-gallery { padding: 64px 0; }
  .hb-gallery-head, .hb-gallery-swiper-wrap { padding: 0 20px; }
  .hb-gallery-img-wrap { aspect-ratio: 3/2; }
  .hb-cta-banner { min-height: auto; padding: 48px 0; }
  .hb-cta-banner-inner { grid-template-columns: 1fr; gap: 0; padding: 0 24px; }
  .hb-cta-right { display: none; }
  .hb-cta-banner { padding: 56px 0; }
  .hb-cta-banner-inner { padding: 0 24px; }
  .hb-cta-slogan { font-size: 20px; }
  .hb-reviews { padding: 64px 0; }
  .hb-faq { padding: 64px 0; }
  .hb-faq-q { font-size: 14.5px; }
}

/* =============================================
   더휴먼컨설팅 - About Page
   ============================================= */

/* ---- 공통 섹션 타이포 ---- */
.about-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #3c6e3f;
  margin-bottom: 14px;
}
.about-section-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  color: #1a1a2e;
  margin-bottom: 14px;
}
.about-section-heading em { color: #3c6e3f; font-style: normal; }
.about-section-sub {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 52px;
}

/* ---- Hero ---- */
.about-hero {
  position: relative;
  height: 380px;
  background: #1a1a2e url('/images/about_bg1.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.82) 0%, rgba(44,62,80,0.62) 55%, rgba(30,58,47,0.78) 100%);
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
.about-hero-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3c6e3f;
  margin-bottom: 20px;
}
.about-hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}
.about-hero-title .sub {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}
.about-hero-title em { font-style: normal; color: #fff; }
.about-hero-divider {
  width: 44px;
  height: 3px;
  background: #3c6e3f;
  margin: 20px 0;
}
.about-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
}

/* ---- 흐르는 키워드 바 ---- */
.about-tag-bar {
  overflow: hidden;
  background: #f5f7f5;
  border-top: 1px solid #dde8de;
  border-bottom: 1px solid #dde8de;
  padding: 14px 0;
}
.about-tag-track {
  display: flex;
  width: max-content;
  animation: aboutTagScroll 22s linear infinite;
}
.about-tag-item {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: #777;
  padding: 0 28px;
  letter-spacing: 0.03em;
}
.about-tag-dot {
  margin-left: 28px;
  color: #3c6e3f;
  font-size: 9px;
  vertical-align: middle;
}
@keyframes aboutTagScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- 인사말 ---- */
.about-greeting {
  padding: 100px 0;
  background: #fff;
}
.about-greeting-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 380px 1px 1fr;
  gap: 0 72px;
  align-items: start;
}
.greeting-sep {
  background: #d1d5db;
  align-self: stretch;
  min-height: 300px;
}
.greeting-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #3c6e3f;
  margin-bottom: 22px;
}
.greeting-kicker-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #3c6e3f;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}
.greeting-heading {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  color: #1a1a2e;
  margin-bottom: 18px;
}
.greeting-heading em {
  font-style: normal;
  color: #3c6e3f;
}
.greeting-lead {
  font-size: 15px;
  color: #666;
  line-height: 1.85;
  margin-bottom: 36px;
}
.greeting-sig {
  margin-bottom: 36px;
  padding-left: 2px;
}
.greeting-sig-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
}
.greeting-sig-role {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}
.greeting-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #3c6e3f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.greeting-cta:hover { background: #2d5530; }
.greeting-body p {
  font-size: 15.5px;
  color: #444;
  line-height: 1.95;
  margin-bottom: 22px;
}
.greeting-body p:last-child { margin-bottom: 0; }

/* 스크롤 애니메이션 */
.greeting-left,
.greeting-right {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.greeting-left.visible,
.greeting-right.visible { opacity: 1; transform: translateY(0); }
.greeting-right { transition-delay: 0.14s; }

/* ---- Philosophy (리스트형) ---- */
.about-philosophy {
  padding: 100px 0;
  background: #f8faf8;
}
.about-philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0 72px;
  align-items: stretch;
}

/* 왼쪽 이미지 */
.phil-img-col { position: relative; display: flex; flex-direction: column; }
.phil-img-wrap { position: relative; display: flex; flex-direction: column; flex: 1; }
.phil-img-wrap img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  display: block;
}
.phil-img-deco {
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.phil-img-deco-line {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}
.phil-img-deco-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  text-align: center;
  letter-spacing: -0.01em;
}
.phil-img-deco-text em {
  color: #b89a68;
  font-style: normal;
  font-size: 18px;
}

/* 오른쪽 콘텐츠 */
.phil-content-col { display: flex; flex-direction: column; gap: 36px; }
.phil-head { display: flex; flex-direction: column; gap: 0; }

.phil-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.phil-card-item {
  padding: 28px 12px;
  border: 1px solid #d9e3da;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.phil-card-item.visible { opacity: 1; transform: translateY(0); }
.phil-title {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.35;
}
.phil-desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.85;
}

/* ---- 세 개의 연구원 ---- */
.about-branches {
  padding: 100px 0;
  background: #fff;
}
.about-branches-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.branch-card {
  position: relative;
  padding: 40px 36px;
  background: #fff;
  border: 1px solid #e4e9e5;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.2s;
}
.branch-num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #3c6e3f;
  margin-bottom: 16px;
}
.branch-card.visible { opacity: 1; transform: translateY(0); }
.branch-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); }
.branch-icon {
  width: 52px;
  height: 52px;
  background: #edf4ee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #3c6e3f;
  margin-bottom: 22px;
}
.branch-name {
  font-size: 19px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.branch-name em { color: #3c6e3f; font-style: normal; }
.branch-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* ---- 찾아오시는길 ---- */
.about-location {
  padding: 100px 0;
  background: #f8faf8;
}
.about-location-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: stretch;
}
.location-left {
  display: flex;
  flex-direction: column;
}
.location-map {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
  min-height: 360px;
}
/* Kakao roughmap 연동 사이즈 오버라이드 */
.location-map .root_daum_roughmap {
  width: 100% !important;
}
.location-map .root_daum_roughmap iframe,
.location-map .root_daum_roughmap > div {
  width: 100% !important;
  display: block;
}
.location-right {
  border-radius: 12px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 36px;
}
.location-info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.location-info-icon {
  width: 46px;
  height: 46px;
  background: #edf4ee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #3c6e3f;
  flex-shrink: 0;
  margin-top: 2px;
}
.location-info-key {
  font-size: 11px;
  color: #aaa;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.location-info-val {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
}
.location-info-sub {
  font-size: 13px;
  color: #aaa;
  margin-top: 4px;
}

/* ---- 마감 인용구 ---- */
.about-quote {
  padding: 100px 0;
  background: #1a1a2e;
  text-align: center;
}
.about-quote-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}
.quote-deco {
  font-size: 72px;
  line-height: 1;
  color: #3c6e3f;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 12px;
}
.quote-text {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 20px;
}
.quote-text em { font-style: normal; color: #3c6e3f; }
.quote-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
  margin-bottom: 36px;
}
.quote-divider {
  width: 48px;
  height: 2px;
  background: #3c6e3f;
  margin: 0 auto;
}

/* ---- About 반응형 ---- */
@media (max-width: 1080px) {
  .about-greeting-inner,
  .about-philosophy-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .greeting-sep { display: none; }
  .greeting-right { margin-top: 44px; }
  .phil-img-col { margin-bottom: 44px; }
  .phil-img-col { order: 2; margin-bottom: 0; margin-top: 44px; }
  .phil-content-col { order: 1; }
  .phil-img-wrap { flex: none; }
  .phil-img-wrap img {
    flex: none;
    min-height: unset;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 16px 16px 0 0;
  }
  .branch-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section-heading { font-size: 30px; }
  .about-location-inner { grid-template-columns: 1fr; gap: 40px; }
  .location-right { justify-content: flex-start; padding: 40px 36px; }
}
@media (max-width: 768px) {
  .about-hero { height: 300px; }
  .about-location { padding: 64px 0; }
  .about-location-inner { padding: 0 24px; }
  .about-hero-inner { padding: 0 24px; }
  .about-hero-title { font-size: 36px; }
  .about-hero-title .sub { font-size: 20px; }
  .about-greeting { padding: 64px 0; }
  .about-greeting-inner { padding: 0 24px; }
  .greeting-heading { font-size: 28px; }
  .about-philosophy { padding: 64px 0; }
  .about-philosophy .greeting-heading br { display: none; }
  .about-philosophy-inner { padding: 0 24px; }
  .phil-cards { grid-template-columns: 1fr; }
  .phil-item { grid-template-columns: 64px 1fr; gap: 0 28px; padding: 32px 0; }
  .phil-num { font-size: 34px; }
  .about-branches { padding: 64px 0; }
  .about-branches-inner { padding: 0 24px; }
  .branch-grid { grid-template-columns: 1fr; }
  .about-quote { padding: 64px 0; }
  .quote-text { font-size: 24px; }
}
@media (max-width: 480px) {
  .about-hero-title { font-size: 28px; }
  .greeting-heading { font-size: 24px; }
  .phil-item { grid-template-columns: 52px 1fr; gap: 0 18px; padding: 28px 0; }
  .phil-num { font-size: 28px; }
  .branch-card { padding: 28px 24px; }
}
