/* =============================================
   FINERO 피네로 — 철문보수 퍼포먼스 사이트
   ============================================= */

/* ---- CSS 변수 ---- */
:root {
  --primary:       #1C2E44;
  --primary-dark:  #111d2c;
  --primary-light: #2a4560;
  --secondary:     #3A5A78;
  --accent:        #E06020;
  --accent-dark:   #c04e14;
  --bg-light:      #f5f6f8;
  --bg-section:    #eef0f3;
  --bg-dark:       #0f1b28;
  --text-dark:     #1a2533;
  --text-body:     #3c4a5a;
  --text-light:    #7a8a9a;
  --border:        rgba(0,0,0,.08);
  --radius:        0px;
  --radius-sm:     4px;
  --shadow:        0 4px 24px rgba(0,0,0,.06);
  --shadow-md:     0 8px 40px rgba(0,0,0,.1);
  --transition:    all .35s cubic-bezier(.4,0,.2,1);
}

/* ---- 리셋 ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--bg-light);
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- 공통 컨테이너 ---- */
.cc-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   헤더
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 900;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
#site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 16px rgba(28,46,68,.1);
}
#site-header.scrolled .cc-nav-list li a,
#site-header.scrolled .cc-nav-list li a:hover { color: var(--text-dark); }
#site-header.scrolled .cc-nav-list .cc-nav-cta { color: #fff; }
#site-header.scrolled .cc-hamburger span { background: var(--text-dark); }
#site-header.scrolled .cc-logo-svg .cc-logo-text,
#site-header.scrolled .cc-logo-svg .cc-logo-fill { fill: var(--primary); }
#site-header.scrolled .cc-logo-svg .cc-logo-stroke { stroke: var(--primary); }

.cc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.cc-logo { display: flex; align-items: center; }
.cc-logo-svg .cc-logo-text { fill: #fff; transition: fill .3s; }
.cc-logo-svg .cc-logo-stroke { stroke: #fff; transition: stroke .3s; }
.cc-logo-svg .cc-logo-fill { fill: #fff; transition: fill .3s; }

.cc-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.cc-nav-list li a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  transition: color .2s;
  white-space: nowrap;
}
.cc-nav-list li a:hover { color: #fff; }
.cc-nav-list .cc-nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 13px;
  transition: background .2s;
}
.cc-nav-list .cc-nav-cta:hover { background: var(--accent-dark); }

/* 햄버거 */
.cc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.cc-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}
.cc-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cc-hamburger.open span:nth-child(2) { opacity: 0; }
.cc-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 메뉴 */
.cc-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
}
.cc-mobile-menu.open { display: block; }
.cc-mobile-menu ul { padding: 8px 0; }
.cc-mobile-menu li a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.cc-mobile-menu .cc-nav-cta {
  display: block;
  margin: 12px 24px;
  padding: 12px;
  text-align: center;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  border-bottom: none;
}

/* =============================================
   히어로 슬라이더
   ============================================= */
.cc-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--bg-dark);
}
.cc-hero-slides { position: relative; width: 100%; height: 100svh; }
.cc-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.cc-hero-slide.active { opacity: 1; }
.cc-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cc-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,27,40,.6);
}
.cc-hero-content {
  position: absolute;
  bottom: 15%;
  left: 0; right: 0;
  padding: 0 40px;
  max-width: 1120px;
  margin: 0 auto;
  color: #fff;
}
.cc-hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cc-hero-content .cc-hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.9;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 560px;
}
.cc-hero-notice {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 28px;
  padding: 12px 16px;
  border-left: 3px solid var(--accent);
  background: rgba(224,96,32,.12);
  max-width: 480px;
}

/* 슬라이더 도트 */
.cc-hero-dots {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.cc-hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background .3s, transform .3s;
}
.cc-hero-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* 슬라이더 화살표 */
.cc-hero-prev, .cc-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.cc-hero-prev { left: 20px; }
.cc-hero-next { right: 20px; }
.cc-hero-prev:hover, .cc-hero-next:hover { background: rgba(255,255,255,.3); }

/* =============================================
   버튼
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.btn-primary.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* =============================================
   섹션 공통
   ============================================= */
.cc-section {
  padding: 80px 0;
}
.cc-section-sm { padding: 56px 0; }
.cc-section-dark {
  background: var(--bg-dark);
  color: #fff;
}
.cc-section-gray { background: var(--bg-section); }

.cc-section-heading {
  text-align: center;
  margin-bottom: 56px;
}
.cc-section-heading h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.cc-section-dark .cc-section-heading h2 { color: #fff; }
.cc-section-heading p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   시공사례 갤러리 카드
   ============================================= */
.cc-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cc-case-card {
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.cc-case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cc-case-card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cc-case-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.cc-case-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cc-case-card:hover .cc-case-card-img-wrap img { transform: scale(1.05); }
.cc-case-img-label {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: .05em;
}
.cc-case-img-label.after { background: var(--accent); }
.cc-case-card-body {
  padding: 16px 20px 20px;
}
.cc-case-card-cat {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.cc-case-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.cc-case-card-meta {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.cc-case-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* =============================================
   서비스 카드 그리드
   ============================================= */
.cc-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cc-service-card {
  background: #fff;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
  transition: var(--transition);
}
.cc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--accent);
}
.cc-service-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  color: var(--primary);
}
.cc-service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.cc-service-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}
.cc-service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* =============================================
   신뢰 통계
   ============================================= */
.cc-stats {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 72px 0;
}
.cc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.cc-stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.cc-stat-unit {
  font-size: 18px;
  color: var(--accent);
  margin-left: 2px;
}
.cc-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

/* =============================================
   FAQ
   ============================================= */
.cc-faq-list { max-width: 800px; margin: 0 auto; }
.cc-faq-item {
  border-bottom: 1px solid var(--border);
}
.cc-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
}
.cc-faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--primary);
  transition: transform .3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cc-faq-icon::after {
  content: '';
  display: block;
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}
.cc-faq-item.open .cc-faq-icon { transform: rotate(180deg); }
.cc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.cc-faq-item.open .cc-faq-answer { max-height: 400px; padding-bottom: 20px; }
.cc-faq-answer p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
}

/* =============================================
   지역 카드 그리드
   ============================================= */
.cc-region-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.cc-region-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 14px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  display: block;
}
.cc-region-card:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* =============================================
   CTA 섹션
   ============================================= */
.cc-cta-section {
  background: var(--accent);
  padding: 72px 0;
  text-align: center;
  color: #fff;
}
.cc-cta-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}
.cc-cta-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: rgba(255,255,255,.9);
}
.cc-cta-section .btn-primary {
  background: #fff;
  color: var(--accent);
}
.cc-cta-section .btn-primary:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-2px);
}

/* =============================================
   서브페이지 히어로
   ============================================= */
.cc-subhero {
  position: relative;
  height: 380px;
  overflow: hidden;
  margin-top: -64px;
}
.cc-subhero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.cc-subhero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,27,40,.65);
}
.cc-subhero-content {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  padding: 0 24px;
  max-width: 1120px;
  margin: 0 auto;
  color: #fff;
}
.cc-subhero-content h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}
.cc-subhero-content p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
}

/* =============================================
   서브페이지 본문
   ============================================= */
.cc-subpage-body {
  padding: 64px 24px;
}
.cc-content-section {
  margin-bottom: 56px;
}
.cc-content-section h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.cc-content-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.cc-content-section p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 12px;
}
.cc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.cc-list li {
  font-size: 15px;
  color: var(--text-body);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}
.cc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px; height: 6px;
  background: var(--accent);
}

/* 증상 목록 */
.cc-symptom-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.cc-symptom-item {
  background: var(--bg-section);
  padding: 20px;
  border-left: 4px solid var(--accent);
}
.cc-symptom-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.cc-symptom-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
}

/* 체크리스트 */
.cc-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.cc-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
}
.cc-checklist-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.cc-checklist-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.cc-checklist-text span {
  font-size: 13px;
  color: var(--text-body);
}

/* 정보 카드 */
.cc-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.cc-info-card {
  background: var(--primary);
  color: #fff;
  padding: 28px 24px;
  text-align: center;
}
.cc-info-card-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.cc-info-card-label {
  font-size: 13px;
  color: rgba(255,255,255,.8);
}

/* 시공 과정 스텝 */
.cc-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
}
.cc-steps li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: step;
}
.cc-steps li::before {
  content: counter(step, decimal-leading-zero);
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-step-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.cc-step-content span {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
}

/* 연관 서비스 */
.cc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.cc-related-card {
  border: 1px solid var(--border);
  padding: 20px;
  transition: var(--transition);
  display: block;
}
.cc-related-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.cc-related-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.cc-related-card-desc {
  font-size: 13px;
  color: var(--text-light);
}

/* 서브페이지 CTA */
.cc-subpage-cta {
  background: var(--bg-section);
  padding: 48px 40px;
  text-align: center;
  margin-top: 40px;
}
.cc-subpage-cta p {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* =============================================
   갤러리 페이지
   ============================================= */
.cc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cc-gallery-card {
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.cc-gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cc-gallery-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.cc-gallery-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.cc-gallery-card:hover .cc-gallery-img-wrap img { transform: scale(1.06); }
.cc-gallery-cat-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: .04em;
}
.cc-gallery-card-body { padding: 16px 20px 20px; }
.cc-gallery-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.cc-gallery-card-meta { font-size: 13px; color: var(--text-light); margin-bottom: 14px; }
.cc-gallery-card-link { font-size: 13px; font-weight: 700; color: var(--accent); }

/* =============================================
   포트폴리오 상세
   ============================================= */
.cc-pd-hero {
  position: relative;
  height: min(800px, 60svh);
  overflow: hidden;
  margin-top: -64px;
}
.cc-pd-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cc-pd-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,27,40,.55);
}
.cc-pd-hero-content {
  position: absolute;
  bottom: 40px;
  padding: 0 24px;
  max-width: 1120px;
  margin: 0 auto;
  left: 0; right: 0;
  color: #fff;
}
.cc-pd-hero-content h1 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
}
.cc-pd-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  height: min(800px, 50svh);
  margin: 0 0 40px;
  background: var(--bg-dark);
}
.cc-pd-img-panel { position: relative; overflow: hidden; }
.cc-pd-img-panel img { width: 100%; height: 100%; object-fit: cover; }
.cc-pd-img-label {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  letter-spacing: .05em;
}
.cc-pd-img-label.after-label { background: var(--accent); }

.cc-pd-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.cc-pd-summary-item {
  background: var(--bg-section);
  padding: 20px;
  text-align: center;
}
.cc-pd-summary-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.cc-pd-summary-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.cc-pd-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.cc-pd-nav-item {
  padding: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: block;
}
.cc-pd-nav-item:hover { border-color: var(--primary); }
.cc-pd-nav-dir { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.cc-pd-nav-title { font-size: 15px; font-weight: 700; color: var(--text-dark); }

/* =============================================
   상담 페이지
   ============================================= */
.cc-consultation-page { padding: 40px 0 80px; }
.cc-consultation-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 40px;
}
.cc-contact-card {
  background: #fff;
  border: 2px solid var(--border);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.cc-contact-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cc-contact-card-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-contact-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.cc-contact-card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.cc-contact-card-btn {
  display: block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  transition: background .2s;
}
.cc-contact-card-btn:hover { background: var(--accent-dark); }
.cc-contact-card.sms .cc-contact-card-btn { background: var(--primary); }
.cc-contact-card.sms .cc-contact-card-btn:hover { background: var(--primary-dark); }

.cc-consultation-notice {
  max-width: 720px;
  margin: 0 auto 40px;
  background: var(--bg-section);
  padding: 24px;
  border-left: 4px solid var(--accent);
}
.cc-consultation-notice p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 6px;
}

.cc-biz-info {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px;
}
.cc-biz-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.cc-biz-row {
  display: flex;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-section);
  font-size: 14px;
}
.cc-biz-row:last-child { border-bottom: none; }
.cc-biz-label {
  flex-shrink: 0;
  width: 120px;
  color: var(--text-light);
  font-weight: 600;
}
.cc-biz-value { color: var(--text-dark); }

/* =============================================
   사이트맵 페이지
   ============================================= */
.cc-sitemap-page { padding: 40px 0 80px; }
.cc-sitemap-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cc-filter-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-body);
  background: #fff;
  transition: var(--transition);
}
.cc-filter-btn.active, .cc-filter-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cc-sitemap-search {
  width: 100%;
  max-width: 400px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  font-size: 14px;
  margin-bottom: 32px;
  outline: none;
  font-family: inherit;
}
.cc-sitemap-search:focus { border-color: var(--primary); }
.cc-sitemap-count {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.cc-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cc-sitemap-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px;
  transition: var(--transition);
  display: block;
}
.cc-sitemap-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.cc-sitemap-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.cc-sitemap-card-cat {
  font-size: 12px;
  color: var(--text-light);
}

/* =============================================
   관리자 대시보드
   ============================================= */
.cc-admin-body {
  font-family: 'Noto Sans KR', sans-serif;
  background: #f4f6f9;
  min-height: 100vh;
  padding: 32px 24px;
  color: var(--text-dark);
}
.cc-admin-container { max-width: 1200px; margin: 0 auto; }
.cc-admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.cc-admin-header h1 { font-size: 22px; font-weight: 700; }
.cc-admin-logout {
  font-size: 13px;
  color: var(--text-light);
  padding: 6px 14px;
  border: 1px solid var(--border);
  background: #fff;
}
.cc-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.cc-admin-card {
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
}
.cc-admin-card h2 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.cc-admin-stat { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.cc-admin-stat span:first-child { color: var(--text-light); }
.cc-admin-stat span:last-child { font-weight: 700; }
.cc-admin-log { font-size: 12px; font-family: monospace; line-height: 1.7; color: var(--text-body); }
.cc-admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.cc-admin-table th {
  background: var(--bg-section);
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
  color: var(--text-dark);
}
.cc-admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--bg-section);
  color: var(--text-body);
}
.cc-badge { display: inline-block; padding: 2px 8px; font-size: 11px; font-weight: 700; }
.cc-badge-on { background: #d1fae5; color: #065f46; }
.cc-badge-off { background: #fee2e2; color: #991b1b; }
.cc-badge-cat { background: var(--bg-section); color: var(--text-body); }

/* =============================================
   404 페이지
   ============================================= */
.cc-404 {
  text-align: center;
  padding: 120px 24px 80px;
}
.cc-404 h1 { font-size: 80px; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 16px; }
.cc-404 h2 { font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.cc-404 p { font-size: 15px; color: var(--text-light); margin-bottom: 32px; }
.cc-404-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   Floating CTA + Back to top + Mobile CTA bar
   ============================================= */
.cc-floating-cta {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 56px; height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(224,96,32,.4);
  z-index: 800;
  transition: background .2s, transform .2s;
  animation: pulse-ring 2.5s ease infinite;
}
.cc-floating-cta:hover { background: var(--accent-dark); transform: scale(1.08); }
.cc-floating-cta span { font-size: 10px; font-weight: 700; }

@keyframes pulse-ring {
  0%, 70%, 100% { box-shadow: 0 4px 20px rgba(224,96,32,.4); }
  35% { box-shadow: 0 4px 20px rgba(224,96,32,.4), 0 0 0 12px rgba(224,96,32,.15); }
}

.cc-back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 700;
  transition: background .2s;
}
.cc-back-top.visible { display: flex; }
.cc-back-top:hover { background: var(--primary-dark); }

.cc-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 850;
  grid-template-columns: 1fr 1fr;
}
.cc-mcta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.cc-mcta-btn--tel { background: var(--accent); }
.cc-mcta-btn--sms { background: var(--primary); }

/* =============================================
   애니메이션 (data-anim)
   ============================================= */
[data-anim] {
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}
[data-anim="fade-up"]   { transform: translateY(30px); }
[data-anim="slide-left"]{ transform: translateX(-30px); }
[data-anim="scale-in"]  { transform: scale(.95); }
[data-anim].animated   { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }

/* =============================================
   푸터
   ============================================= */
.cc-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  padding: 56px 0 0;
}
.cc-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.cc-footer-brand {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.cc-footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.cc-footer-col p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
}
.cc-footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cc-footer-links { display: flex; flex-direction: column; gap: 8px; }
.cc-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.cc-footer-links a:hover { color: #fff; }
.cc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* =============================================
   반응형
   ============================================= */
@media (max-width: 1024px) {
  .cc-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-service-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cc-region-grid { grid-template-columns: repeat(4, 1fr); }
  .cc-sitemap-grid { grid-template-columns: repeat(3, 1fr); }
  .cc-info-cards { grid-template-columns: 1fr 1fr; }
  .cc-pd-summary { grid-template-columns: repeat(2, 1fr); }
  .cc-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { padding-top: 108px; }
  .cc-hamburger { display: flex; }
  .cc-nav { display: none; }
  .cc-hero-content { padding: 0 20px; bottom: 18%; }
  .cc-cases-grid { grid-template-columns: 1fr; }
  .cc-service-grid { grid-template-columns: 1fr; }
  .cc-stats-grid { grid-template-columns: 1fr 1fr; }
  .cc-region-grid { grid-template-columns: repeat(3, 1fr); }
  .cc-sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-info-cards { grid-template-columns: 1fr; }
  .cc-symptom-list { grid-template-columns: 1fr; }
  .cc-pd-summary { grid-template-columns: 1fr 1fr; }
  .cc-pd-nav { grid-template-columns: 1fr; }
  .cc-pd-before-after { height: 300px; }
  .cc-consultation-cards { grid-template-columns: 1fr; max-width: 400px; }
  .cc-related-grid { grid-template-columns: 1fr 1fr; }
  .cc-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cc-mobile-cta-bar { display: grid; }
  .cc-floating-cta { bottom: 72px; right: 16px; width: 50px; height: 50px; }
  .cc-back-top { bottom: 72px; right: 72px; }
  .cc-section { padding: 56px 0; }
  .cc-hero-dots { bottom: 5%; }
  .cc-admin-grid { grid-template-columns: 1fr; }
  .cc-gallery-grid { grid-template-columns: 1fr; }
  .cc-subhero { height: 280px; }
  .cc-subhero-content h1 { font-size: clamp(22px, 5vw, 32px); }
  .cc-subpage-body { padding: 40px 16px; }
}

@media (max-width: 480px) {
  .cc-region-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-sitemap-grid { grid-template-columns: 1fr 1fr; }
  .cc-stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cc-case-card-images { grid-template-columns: 1fr; }
  .cc-consultation-cards { max-width: 100%; }
  .cc-404 h1 { font-size: 60px; }
}

/* =============================================
   보완 / 별칭 클래스
   ============================================= */

/* 컨테이너 */
.cc-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 버튼 */
.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  transition: background .2s, transform .2s, color .2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.cc-btn-primary {
  background: var(--accent);
  color: #fff;
}
.cc-btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.cc-btn-accent {
  background: var(--accent);
  color: #fff;
}
.cc-btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.cc-btn-secondary {
  background: var(--primary);
  color: #fff;
}
.cc-btn-secondary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.cc-btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 28px;
}
.cc-btn-outline:hover { background: var(--primary); color: #fff; }

/* 섹션 제목 */
.cc-section-title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.cc-section-sub {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.cc-section-more {
  text-align: center;
  margin-top: 36px;
}

/* 서비스 카드 래퍼 */
.cc-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.cc-service-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

/* 시공사례 그리드 (별칭) */
.cc-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.cc-case-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cc-case-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .4s ease;
}
.cc-case-img-wrap .cc-case-after {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s ease;
}
.cc-case-img-wrap:hover .cc-case-after { opacity: 1; }
.cc-case-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  letter-spacing: .04em;
  pointer-events: none;
}
.cc-case-info { padding: 14px 18px 18px; }
.cc-case-cat {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px;
}
.cc-case-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
  line-height: 1.4;
}
.cc-case-title a { color: inherit; }
.cc-case-title a:hover { color: var(--accent); }
.cc-case-meta { font-size: 13px; color: var(--text-light); }

/* 통계 섹션 (별칭) */
.cc-stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 64px 0;
}
.cc-stats-list {
  display: flex;
  justify-content: center;
  gap: 64px;
  text-align: center;
}
.cc-stat-item { display: flex; flex-direction: column; align-items: center; }

/* 서브히어로 별칭 */
.cc-subhero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px;
  color: #fff;
}
.cc-subhero--sm { height: 260px; }
.cc-subhero-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}
.cc-subhero-desc {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
}

/* 브레드크럼 */
.cc-breadcrumb {
  margin-bottom: 14px;
}
.cc-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.cc-breadcrumb ol li a { color: rgba(255,255,255,.65); }
.cc-breadcrumb ol li a:hover { color: #fff; }
.cc-breadcrumb ol li + li::before { content: '/'; margin-right: 6px; opacity: .5; }

/* 히어로 타이포 */
.cc-hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 8px;
}
.cc-hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cc-hero-title-sub {
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

/* CTA 텍스트 */
.cc-cta-title { font-size: clamp(22px, 3vw, 34px); font-weight: 700; margin-bottom: 14px; }
.cc-cta-sub { font-size: 15px; margin-bottom: 28px; line-height: 1.75; opacity: .9; }

/* 스텝 번호 수동 표기 지원 */
.cc-step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-steps li:has(.cc-step-num)::before { display: none; }

/* 체크 아이콘 */
.cc-check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.cc-check-icon::after { content: '\2713'; }

/* 연관 서비스 래퍼 */
.cc-related-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.cc-related-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: block;
}
.cc-related-desc {
  font-size: 13px;
  color: var(--text-light);
  display: block;
}

/* 서브페이지 CTA v2 */
.cc-subpage-cta-v2 {
  background: var(--bg-section);
  padding: 48px 40px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 8px;
}
.cc-subpage-cta-text {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 20px;
  display: block;
}

/* 포트폴리오 상세 */
.cc-portfolio-detail { padding-bottom: 80px; }
.cc-pd-body { padding: 48px 24px 64px; }
.cc-pd-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.cc-pd-img-wrap { position: relative; }
.cc-pd-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.cc-pd-label {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: .05em;
}
.cc-pd-img-wrap:last-child .cc-pd-label { background: var(--accent); }
.cc-pd-summary {
  background: var(--bg-section);
  padding: 28px 32px;
  margin-bottom: 40px;
}
.cc-pd-dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px 16px;
  font-size: 14px;
  margin-bottom: 16px;
}
.cc-pd-dl dt { font-weight: 700; color: var(--text-dark); }
.cc-pd-dl dd { color: var(--text-body); }
.cc-pd-summary-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-body);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.cc-pd-steps { margin-bottom: 40px; }
.cc-pd-steps-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.cc-pd-back { text-align: center; margin-top: 24px; }

/* 상담 페이지 */
.cc-consultation-page { padding: 40px 0 80px; }
.cc-consult-body { padding: 40px 24px 64px; max-width: 900px; margin: 0 auto; }
.cc-consult-notice {
  background: #fff8e1;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 40px;
}
.cc-consult-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.cc-consult-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cc-consult-card-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  color: var(--primary);
}
.cc-consult-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.cc-consult-card-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.cc-consult-btn { width: 100%; justify-content: center; }
.cc-consult-sms-hint {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
}
.cc-consult-info {
  background: var(--bg-section);
  padding: 32px;
  margin-top: 40px;
}
.cc-consult-info-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.cc-consult-dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px 16px;
  font-size: 15px;
}
.cc-consult-dl dt { font-weight: 700; color: var(--text-dark); }
.cc-consult-dl dd { color: var(--text-body); line-height: 1.75; }

/* 404 페이지 */
.cc-404-page { min-height: 60vh; display: flex; align-items: center; }
.cc-404-inner { padding: 80px 24px; text-align: center; width: 100%; }
.cc-404-code {
  font-size: 96px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .15;
}
.cc-404-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.cc-404-desc {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}
.cc-404-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 갤러리 필터 */
.cc-gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.cc-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* 사이트맵 툴바 */
.cc-sitemap-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

/* 히어로 컨트롤 래퍼 — 포지셔닝 없음, 자식 요소들이 cc-hero 기준으로 위치함 */
.cc-hero-controls { display: contents; }

/* 지역 카드 이름 */
.cc-region-name { font-size: 13px; font-weight: 600; color: var(--text-dark); }

/* 서브히어로 기본 배경 (이미지 없는 경우) */
.cc-subhero { background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%); }
.cc-subhero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px;
  color: #fff;
}

/* 사이트맵 배지 */
.cc-sitemap-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  background: #fff3cd;
  color: #856404;
  margin-top: 6px;
}

/* 갤러리 필터 wrapper (별칭 cc-sitemap-filter) */
.cc-gallery-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.cc-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* 반응형 보완 */
@media (max-width: 768px) {
  .cc-service-cards { grid-template-columns: repeat(2, 1fr); }
  .cc-case-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cc-pd-images { grid-template-columns: 1fr; }
  .cc-pd-dl { grid-template-columns: 80px 1fr; }
  .cc-consult-cards { grid-template-columns: 1fr; }
  .cc-consult-dl { grid-template-columns: 90px 1fr; }
  .cc-stats-list { gap: 32px; }
  .cc-related-cards { grid-template-columns: 1fr; }
  .cc-subpage-cta-v2 { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .cc-service-cards { grid-template-columns: 1fr; }
  .cc-case-grid { grid-template-columns: 1fr; }
  .cc-stats-list { flex-direction: column; gap: 24px; }
}
