/* ═══════════════════════════════════════
   효산감정평가법인 - 메인 스타일시트
   Design: 고급 로펌/전문기관 스타일
   Primary: 딥 네이비 + 골드 포인트
   ═══════════════════════════════════════ */

:root {
  --navy: #1a3050;
  --navy-mid: #243d5e;
  --navy-light: #2e4b72;
  --gold: #c9a84c;
  --gold-light: #e2c270;
  --gold-pale: #f5e9c8;
  --white: #ffffff;
  --off-white: #fafaf8;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #1a1a2e;
  --text-light: #64748b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(13, 27, 42, 0.10);
  --shadow-lg: 0 12px 48px rgba(13, 27, 42, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Noto Serif KR', Georgia, serif;
  --font-sans: 'Noto Sans KR', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── 헤더 ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* 로고 */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  /* 흰 배경 헤더에 어울리도록 밝기 조정 - 필요시 제거 */
  filter: brightness(0) invert(1);
}

.logo-fallback {
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-ko {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.logo-en {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 3px;
  margin-top: 2px;
}

.logo-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  padding-left: 1px;
  font-weight: 300;
}

/* 네비게이션 */
.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.nav-highlight {
  color: var(--gold) !important;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.nav-highlight:hover {
  background: rgba(201, 168, 76, 0.15) !important;
}

/* 드롭다운 */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--off-white);
  color: var(--navy);
}

/* 헤더 액션 */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.btn-fee {
  display: none;
  /* 차후 수수료 계산 메뉴 추가 시 활성화 */
  padding: 8px 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-fee:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* 햄버거 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── 모바일 메뉴 ─── */
.mobile-menu {
  position: fixed;
  top: 72px;
  right: 0;
  bottom: 0;
  width: 280px;
  background: var(--navy);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-overlay {
  position: fixed;
  inset: 72px 0 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-group {
  margin-bottom: 24px;
}

.mobile-menu-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.mobile-menu-group a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition);
}

.mobile-menu-group a:hover {
  color: var(--gold);
}

.mobile-truevalue {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 15px !important;
}

/* ─── 히어로 (동영상 배경) ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* 슬라이드 컨테이너 */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* 개별 슬라이드 */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 0s;
  will-change: transform, opacity;
}

/* 활성 슬라이드 */
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 25s ease-out;
  z-index: 1;
}

/* Ken Burns 방향 변형 (슬라이드마다 다르게) */
.hero-slide:nth-child(1).active {
  transform-origin: center center;
}

.hero-slide:nth-child(2).active {
  transform-origin: 70% 40%;
}

.hero-slide:nth-child(3).active {
  transform-origin: 30% 60%;
}

.hero-slide:nth-child(4).active {
  transform-origin: 60% 30%;
}

.hero-slide:nth-child(5).active {
  transform-origin: 40% 70%;
}

.hero-slide:nth-child(6).active {
  transform-origin: 50% 50%;
}

/* 나가는 슬라이드 (페이드아웃만) */
.hero-slide.leaving {
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

/* 오버레이 */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg,
      rgba(13, 27, 42, 0.80) 0%,
      rgba(13, 27, 42, 0.50) 55%,
      rgba(13, 27, 42, 0.65) 100%);
}

/* 하단 그라데이션 */
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--navy) 70%);
  z-index: 3;
  pointer-events: none;
}

/* 우측 인디케이터 */
.hero-indicators {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s ease;
}

.hero-indicator.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.4);
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* 하단 슬라이드 캡션 */
.hero-slide-caption {
  position: absolute;
  bottom: 100px;
  right: 44px;
  z-index: 10;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.85;
  transition: opacity 0.5s ease;
}

/* 진행 바 */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.hero-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  transition: width linear;
}

/* 콘텐츠 */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 72px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  animation: fadeInUp 0.8s ease both;
  animation-delay: 0.1s;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.85), 0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-title-accent {
  color: var(--gold);
  animation-delay: 0.2s;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease both;
  animation-delay: 0.3s;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease both;
  animation-delay: 0.4s;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  padding: 14px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 3px;
  z-index: 10;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
}


/* ─── 히어로 동영상 ─── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-video.loaded {
  opacity: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 27, 42, 0.28) 0%,
      rgba(13, 27, 42, 0.08) 50%,
      rgba(13, 27, 42, 0.22) 100%);
}

.hero-video-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--navy) 70%);
  pointer-events: none;
}

.hero-video-toggle {
  position: absolute;
  bottom: 100px;
  right: 40px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.hero-video-toggle:hover {
  background: rgba(201, 168, 76, 0.25);
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── 통계 섹션 ─── */
.stats-section {
  background: var(--navy-mid);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--navy-mid);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-item:hover {
  background: var(--navy-light);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-unit {
  font-size: 20px;
  font-weight: 600;
}

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

/* ─── 섹션 공통 ─── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-left {
  text-align: left;
}

.section-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-badge-light {
  color: rgba(201, 168, 76, 0.8);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title-light {
  color: var(--white);
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
}

/* ─── 서비스 섹션 ─── */
.services-section {
  padding: 100px 0;
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

/* 업무영역 목록 스타일 */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.service-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.service-card:hover .service-list li::before {
  opacity: 1;
}

.service-arrow {
  font-size: 18px;
  color: var(--gold);
  font-weight: 700;
  transition: transform var(--transition);
}

.service-card:hover .service-arrow {
  transform: translateX(6px);
}

.service-card-fee {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
}

.service-card-fee .service-icon {
  background: rgba(201, 168, 76, 0.15);
}

.service-card-fee h3,
.service-card-fee p {
  color: var(--white);
}

.service-card-fee p {
  color: rgba(255, 255, 255, 0.6);
}

.service-card-fee:hover {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
}

/* ─── TrueValue 섹션 ─── */
.truevalue-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3d63 100%);
  overflow: hidden;
}

.truevalue-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.truevalue-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.truevalue-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin: 20px 0 32px;
}

.truevalue-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.truevalue-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.truevalue-features svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.btn-truevalue {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: var(--transition);
}

.btn-truevalue:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

/* 지도 목업 */
.map-mockup {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.map-mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.map-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.map-dot.red {
  background: #ff5f57;
}

.map-dot.yellow {
  background: #ffbd2e;
}

.map-dot.green {
  background: #28ca41;
}

.map-mockup-header span {
  margin-left: 8px;
}

.map-mockup-body {
  height: 340px;
  position: relative;
  overflow: hidden;
}

.map-loading-msg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

#kakaoPreviewMap .map-loading-msg svg {
  opacity: 0.4;
}

/* ─── CTA 섹션 ─── */
.cta-section {
  padding: 80px 0;
  background: var(--off-white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--white);
  padding: 52px 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-200);
}

.cta-text h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 15px;
  color: var(--text-light);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-phone:hover {
  background: var(--navy);
  color: var(--white);
}

/* ─── 공지사항 섹션 ─── */
.notice-section {
  padding: 80px 0;
}

.notice-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.notice-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}

.notice-item:hover .notice-title {
  color: var(--navy);
  text-decoration: underline;
}

.notice-badge {
  flex-shrink: 0;
  padding: 3px 10px;
  background: var(--navy);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.notice-title {
  flex: 1;
  font-size: 15px;
  color: var(--gray-600);
}

.notice-date {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--gray-400);
}

.notice-more {
  align-self: flex-end;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1.5px solid var(--navy);
  transition: var(--transition);
}

.notice-more:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ─── 푸터 ─── */
.site-footer {
  background: var(--navy-mid);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo-ko {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
}

.footer-logo-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.footer-logo-en {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

/* ─── 애니메이션 ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── 반응형 ─── */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .truevalue-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .hero-content {
    padding: 0 20px;
    padding-top: 72px;
  }

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

  .cta-inner {
    flex-direction: column;
    padding: 36px 28px;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions a {
    text-align: center;
    justify-content: center;
  }

  .notice-item {
    flex-wrap: wrap;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════
   업무영역 페이지 (/business)
   ═══════════════════════════════════════ */

/* 서브 비주얼 */
.sub-visual {
  position: relative;
  height: 320px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a5c 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;
}

.sub-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(201, 168, 76, 0.1) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sub-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.6) 0%, transparent 60%);
}

.sub-visual-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.sub-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.sub-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.sub-breadcrumb a:hover {
  color: var(--gold);
}

.sub-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}

.sub-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

/* 업무영역 탭 네비 */
.business-nav {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.business-nav .container {
  padding: 0 40px;
}

.business-nav-list {
  display: flex;
  list-style: none;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.business-nav-list::-webkit-scrollbar {
  display: none;
}

.business-nav-link {
  display: block;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
}

.business-nav-link:hover {
  color: var(--navy);
}

.business-nav-link.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* 업무영역 래퍼 */
.business-wrap {
  padding: 80px 0 60px;
  background: var(--off-white);
}

/* 각 섹션 */
.biz-section {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(13, 27, 42, 0.07);
  border: none;
  transition: all 0.35s ease;
  position: relative;
}

.biz-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 80px;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.biz-section:hover {
  box-shadow: 0 8px 40px rgba(13, 27, 42, 0.13);
  transform: translateY(-3px);
}

.biz-section:hover::after {
  opacity: 1;
}

/* 번호 사이드 - 세련된 골드 액센트 */
.biz-number {
  flex-shrink: 0;
  width: 72px;
  background: var(--navy-mid);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 32px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.9);
  letter-spacing: -1px;
  position: relative;
}

.biz-number::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 60px;
  background: var(--gold);
  opacity: 0.6;
  margin-top: 28px;
}

/* 내용 */
.biz-inner {
  flex: 1;
  padding: 32px 36px 32px 28px;
}

.biz-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 10px;
}

.biz-title::before {
  content: '';
  width: 3px;
  height: 20px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
  flex-shrink: 0;
}

.biz-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 카드 - 미니멀 */
.biz-card {
  border-radius: 10px;
  padding: 18px 22px;
}

.biz-card-def {
  background: #fafaf9;
  border-left: 3px solid var(--navy);
}

.biz-card-benefit {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, rgba(201, 168, 76, 0.01) 100%);
  border-left: 3px solid var(--gold);
}

.biz-card-full {
  background: #fafaf9;
  border-left: 3px solid var(--navy);
}

.biz-card-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gray-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.biz-card-label svg {
  color: var(--gold);
  flex-shrink: 0;
}

.biz-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.9;
}

/* 포인트 박스 */
.biz-point-box {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.biz-point {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
}

.biz-point svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 1px;
}

/* 태그 */
.biz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.biz-tags span {
  padding: 4px 12px;
  background: var(--navy);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* CTA */
.biz-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 40px 48px;
  border-radius: var(--radius-lg);
  margin-top: 20px;
}

.biz-cta-text h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.biz-cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* 푸터 지사 정보 */
.footer-logo-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-offices {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 24px;
}

.footer-office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 32px;
}

.footer-office-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.office-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.office-info {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

/* 반응형 */
@media (max-width: 768px) {
  .sub-visual {
    height: 240px;
  }

  .sub-visual-content {
    padding: 0 20px 32px;
  }

  .biz-section {
    flex-direction: column;
  }

  .biz-number {
    width: 100%;
    height: 56px;
    align-items: center;
    padding: 0 24px;
    flex-direction: row;
    gap: 12px;
    font-size: 20px;
  }

  .biz-inner {
    padding: 24px;
  }

  .biz-cta {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
  }

  .footer-office-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .business-nav .container {
    padding: 0;
  }
}

/* ── 업무영역 포인트 그리드 ── */
.biz-point-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.biz-point-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.75;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.biz-point-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.biz-point-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.12);
  transform: translateY(-2px);
}

.biz-point-item:hover::before {
  opacity: 1;
}

.biz-point-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.biz-point-item:hover .biz-point-icon {
  background: rgba(201, 168, 76, 0.1);
}

.biz-point-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

@media (max-width: 768px) {
  .biz-point-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   회사소개 페이지 (/company)
   ═══════════════════════════════════════ */

/* 지사 제목 */
.company-branch-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 800;
  margin: 36px 0 16px;
  padding: 10px 20px 10px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.company-branch-title::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.company-branch-title:first-child {
  margin-top: 0;
}

/* 구성원 그리드 */
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.member-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.member-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.member-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.10);
  transform: translateY(-4px);
}

.member-card:hover::after {
  transform: scaleX(1);
}

.member-photo {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.member-no-photo {
  font-size: 48px;
  color: var(--gray-400);
}

.member-info {
  padding: 14px 16px;
  flex: 1;
}

.member-role {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.member-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.member-license {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}

.member-career {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.member-career li {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
  padding-left: 10px;
  position: relative;
}

.member-career li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

/* 오시는 길 그리드 */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.location-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 20px;
}

.location-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-title::before {
  content: '';
  width: 4px;
  height: 16px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.location-addr {
  font-size: 13px;
  color: var(--gray-600);
  margin: 10px 0 4px;
  line-height: 1.6;
}

.location-tel {
  font-size: 12px;
  color: var(--text-light);
}

/* 반응형 */
@media (max-width: 1024px) {
  .member-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

/* ═══════════════════════════════════════
   수상·표창 페이지
   ═══════════════════════════════════════ */
.awards-wrap {
  padding: 80px 0 60px;
  background: var(--off-white);
}

.awards-intro {
  text-align: center;
  margin-bottom: 60px;
}

.awards-intro p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.award-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.award-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.award-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  transition: transform 0.4s ease;
}

.award-card:hover .award-card-img img {
  transform: scale(1.04);
}

.award-card-img .award-zoom {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 32px;
}

.award-card:hover .award-zoom {
  background: rgba(13, 27, 42, 0.15);
  opacity: 1;
}

.award-card-body {
  padding: 20px 22px;
  border-top: 2px solid var(--gold-pale);
}

.award-card-body h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.award-card-body .award-meta {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.award-card-body .award-date {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 6px;
}

/* 라이트박스 */
.award-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  justify-content: center;
  align-items: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.award-lightbox.open {
  display: flex;
}

.award-lightbox-inner {
  position: relative;
  max-width: 560px;
  width: 100%;
  animation: fadeInUp 0.3s ease;
}

.award-lightbox-inner img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.award-lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  color: var(--navy);
  font-weight: 700;
}

.award-lightbox-close:hover {
  background: var(--gold);
  color: var(--navy);
}

.award-lightbox-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-top: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* ══ 개인정보처리방침 버튼 & 모달 ═══════════════════════════════ */
.footer-policy-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.footer-policy-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-policy-btn:hover {
  color: #fff;
}

.footer-policy-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

/* 오버레이 */
.prv-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.prv-overlay.open {
  display: flex;
}

/* 모달 박스 */
.prv-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  width: min(820px, 96vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: prvSlideUp 0.25s ease;
}

@keyframes prvSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 헤더 */
.prv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px 16px;
  background: linear-gradient(135deg, #1b3c6e, #2b5ea7);
  flex-shrink: 0;
}

.prv-brand {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 3px;
}

.prv-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.prv-close {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.prv-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* 메인 탭 */
.prv-tabs {
  display: flex;
  border-bottom: 2px solid #e5e7eb;
  background: #f8fafc;
  flex-shrink: 0;
  overflow-x: auto;
}

.prv-tab {
  padding: 12px 18px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 13.5px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.prv-tab:hover {
  color: #1b3c6e;
  background: #f0f4f8;
}

.prv-tab.active {
  color: #1b3c6e;
  border-bottom-color: #1b3c6e;
  background: #fff;
}

/* 서브탭 */
.prv-subtabs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #f0f4f8;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.prv-subtabs.hidden {
  display: none;
}

.prv-subtab {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.18s;
}

.prv-subtab:hover {
  border-color: #1b3c6e;
  color: #1b3c6e;
}

.prv-subtab.active {
  background: #1b3c6e;
  border-color: #1b3c6e;
  color: #fff;
}

/* 본문 */
.prv-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  font-size: 13.5px;
  line-height: 1.85;
  color: #374151;
}

.prv-body h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1b3c6e;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1b3c6e;
}

.prv-body .prv-badge {
  display: inline-block;
  background: #1b3c6e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

.prv-body .prv-info-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  color: #1e40af;
  line-height: 1.75;
  margin-bottom: 20px;
}

.prv-body .prv-section {
  margin-bottom: 20px;
}

.prv-body .prv-section-title {
  font-size: 14px;
  font-weight: 800;
  color: #1b3c6e;
  margin-bottom: 6px;
}

.prv-body p,
.prv-body pre {
  margin: 0 0 8px;
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 13.5px;
}

/* 모달 푸터 */
.prv-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-top: 1px solid #e5e7eb;
  background: #f8fafc;
  flex-shrink: 0;
}

.prv-footer-note {
  font-size: 12px;
  color: #9ca3af;
}

.prv-close-btn {
  padding: 9px 28px;
  background: #1b3c6e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.prv-close-btn:hover {
  background: #2b5ea7;
}

@media (max-width: 600px) {
  .prv-modal {
    border-radius: 12px;
  }

  .prv-body {
    padding: 16px 16px;
    font-size: 12.5px;
  }

  .prv-header {
    padding: 14px 16px;
  }

  .prv-tab {
    padding: 10px 12px;
    font-size: 12px;
  }

  .prv-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ── 주요실적 테이블 ── */
.perf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  overflow: hidden;
}

.perf-table thead tr {
  background: var(--navy, #1b3c6e);
}

.perf-table thead th {
  color: #fff;
  padding: 13px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.perf-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background .12s;
}

.perf-table tbody tr:last-child {
  border-bottom: none;
}

.perf-table tbody tr:nth-child(even) {
  background: #f8faff;
}

.perf-table tbody tr:hover {
  background: #eff4fd;
}

.perf-table tbody td {
  padding: 10px 14px;
  color: #374151;
  vertical-align: middle;
}

.perf-table tbody td:first-child {
  font-weight: 700;
  color: var(--navy, #1b3c6e);
  white-space: nowrap;
  border-right: 1px solid #e5e7eb;
  min-width: 120px;
}

.perf-table tbody td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--gold, #c9a84c);
  white-space: nowrap;
  padding-right: 18px;
}

@media (max-width: 640px) {
  .perf-table {
    font-size: 12px;
  }

  .perf-table tbody td:first-child {
    min-width: 80px;
    white-space: normal;
  }
}