/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
  --primary:        #0D3B6E;
  --primary-dark:   #092d56;
  --primary-light:  #1a5fa8;
  --secondary:      #1565C0;
  --accent:         #E07B00;
  --accent-light:   #f59e0b;

  --bg-base:        #ffffff;
  --bg-light:       #f4f6f9;
  --bg-mid:         #e9edf3;
  --bg-dark:        #0D3B6E;

  --text-dark:      #111827;
  --text-body:      #374151;
  --text-light:     #6b7280;
  --text-white:     #ffffff;

  --border:         rgba(0,0,0,.08);
  --radius:         0px;
  --shadow:         0 4px 24px rgba(0,0,0,.06);
  --shadow-md:      0 8px 32px rgba(0,0,0,.10);
  --transition:     all .35s cubic-bezier(.4,0,.2,1);
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::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', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--bg-base);
  overflow-x: hidden;
}
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; }

/* ========================================
   Typography
   ======================================== */
h1,h2,h3,h4 { font-weight: 700; line-height: 1.3; color: var(--text-dark); }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.875rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
p  { font-size: 16px; line-height: 1.8; }

/* ========================================
   Layout Utilities
   ======================================== */
.cc-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.cc-section {
  padding: 72px 0;
}
.cc-section-title {
  text-align: center;
  margin-bottom: 12px;
}
.cc-section-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 48px;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--text-white);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--primary); color: var(--text-white); }
.btn-sm  { padding: 8px 18px; font-size: 13px; }
.btn-lg  { padding: 16px 40px; font-size: 17px; }

/* ========================================
   Header
   ======================================== */
#site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
#site-header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.5) 0%, transparent 100%);
  transition: opacity .3s;
  pointer-events: none;
  z-index: 0;
}
#site-header.scrolled::before { opacity: 0; }
#site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.cc-header-inner, .cc-mobile-menu { position: relative; z-index: 1; }
.cc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

/* Logo SVG */
.cc-logo-svg .cc-logo-stroke { stroke: #fff; transition: stroke .3s; }
.cc-logo-svg .cc-logo-text   { fill: #fff; transition: fill .3s; }
#site-header.scrolled .cc-logo-svg .cc-logo-stroke { stroke: var(--primary); }
#site-header.scrolled .cc-logo-svg .cc-logo-text   { fill: var(--primary); }

/* Nav */
.cc-nav-list {
  display: flex; align-items: center; gap: 32px;
}
.cc-nav-list li a {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9);
  transition: var(--transition);
}
#site-header.scrolled .cc-nav-list li a { color: var(--text-dark); }
.cc-nav-list li a:hover { color: var(--accent); }
.cc-nav-list li a.cc-nav-cta {
  padding: 8px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 2px;
}
#site-header.scrolled .cc-nav-list li a.cc-nav-cta { background: var(--accent); color: #fff; }
.cc-nav-cta:hover { background: #c06b00 !important; }

/* Hamburger */
.cc-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
}
.cc-hamburger span { display: block; width: 22px; height: 2px; background: #fff; transition: var(--transition); }
#site-header.scrolled .cc-hamburger span { background: var(--text-dark); }

/* Mobile Menu */
.cc-mobile-menu {
  display: none;
  position: absolute; top: 64px; left: 0; width: 100%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  padding: 16px 0;
}
.cc-mobile-menu.open { display: block; }
.cc-mobile-menu ul { display: flex; flex-direction: column; }
.cc-mobile-menu ul li a {
  display: block; padding: 12px 24px;
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  border-bottom: 1px solid var(--bg-mid);
}
.cc-mobile-menu ul li a.cc-nav-cta {
  margin: 12px 24px 0; background: var(--accent); color: #fff;
  text-align: center; border-bottom: none;
}

@media (max-width: 768px) {
  .cc-nav   { display: none; }
  .cc-hamburger { display: flex; }
}

/* ========================================
   Hero Slider
   ======================================== */
.cc-hero {
  position: relative; width: 100%; min-height: 100svh;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.cc-hero-slider { position: absolute; inset: 0; }
.cc-hero-slide  {
  position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease;
}
.cc-hero-slide.active { opacity: 1; }
.cc-hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.cc-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
}
.cc-hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px; max-width: 720px;
}
.cc-hero-h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff; font-weight: 700; margin-bottom: 12px;
}
.cc-hero-sub  { color: rgba(255,255,255,.85); font-size: 18px; margin-bottom: 16px; }
.cc-hero-notice {
  color: rgba(255,255,255,.7); font-size: 14px;
  line-height: 1.7; margin-bottom: 28px;
  padding: 12px 20px; border: 1px solid rgba(255,255,255,.25);
}
.cc-hero-cta { background: var(--accent); border-color: var(--accent); }
.cc-hero-cta:hover { background: #c06b00; border-color: #c06b00; }
.cc-hero-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 10px;
}
.cc-hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4); transition: background .3s;
}
.cc-hero-dot.active { background: #fff; }

/* ========================================
   시공사례 미리보기 (홈)
   ======================================== */
.cc-cases-preview { background: var(--bg-light); }
.cc-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.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-imgs {
  display: grid; grid-template-columns: 1fr 1fr;
}
.cc-case-img-wrap {
  position: relative; overflow: hidden;
}
.cc-case-img-wrap img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .4s ease;
}
.cc-case-card:hover .cc-case-img-wrap img { transform: scale(1.04); }
.cc-case-label {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 8px;
  letter-spacing: .05em;
}
.cc-case-label--after { background: var(--primary); }
.cc-case-info {
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.cc-case-cat {
  font-size: 11px; font-weight: 700; color: var(--primary);
  background: var(--bg-mid); padding: 3px 10px; border-radius: 20px;
}
.cc-case-title { font-size: 14px; font-weight: 700; flex: 1; }
.cc-case-link {
  font-size: 13px; color: var(--accent); font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.cc-section-cta { text-align: center; margin-top: 16px; }

/* ========================================
   서비스 카드
   ======================================== */
.cc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.cc-service-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 28px 16px;
  background: #fff; border: 2px solid var(--border);
  text-align: center; transition: var(--transition);
}
.cc-service-card:hover {
  border-color: var(--primary); transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cc-service-icon { color: var(--primary); }
.cc-service-card:hover .cc-service-icon { color: var(--accent); }
.cc-service-name { font-size: 14px; font-weight: 700; }
.cc-service-arrow { color: var(--accent); font-size: 18px; }

/* ========================================
   통계
   ======================================== */
.cc-stats {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}
.cc-stats .cc-section-title { color: #fff; }
.cc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cc-stat-item { text-align: center; padding: 24px 16px; }
.cc-stat-num {
  display: block; font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; color: var(--accent-light); margin-bottom: 6px;
}
.cc-stat-label { font-size: 14px; color: rgba(255,255,255,.8); }

/* ========================================
   FAQ 아코디언
   ======================================== */
.cc-faq-list { max-width: 760px; margin: 0 auto; }
.cc-faq-item {
  border-bottom: 1px solid var(--border);
}
.cc-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 18px 4px;
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  text-align: left;
}
.cc-faq-chevron { flex-shrink: 0; transition: transform .3s; }
.cc-faq-item.open .cc-faq-chevron { transform: rotate(180deg); }
.cc-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s;
  padding: 0 4px;
}
.cc-faq-item.open .cc-faq-a {
  max-height: 400px; padding-bottom: 18px;
}
.cc-faq-a p { color: var(--text-body); font-size: 15px; }

/* ========================================
   지역 카드
   ======================================== */
.cc-regions-grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.cc-region-card {
  padding: 10px 18px;
  background: var(--bg-light); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; transition: var(--transition);
}
.cc-region-card:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

/* ========================================
   CTA 섹션
   ======================================== */
.cc-cta-section {
  background: var(--bg-light);
  text-align: center;
  padding: 80px 0;
}
.cc-cta-title { margin-bottom: 12px; }
.cc-cta-sub   { color: var(--text-light); margin-bottom: 32px; }

/* ========================================
   Floating CTA
   ======================================== */
.cc-floating-cta {
  position: fixed; bottom: 88px; right: 24px; z-index: 800;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  width: 56px; height: 56px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(224,123,0,.4);
  font-size: 11px; font-weight: 700;
  transition: var(--transition);
}
.cc-floating-cta:hover { background: #c06b00; transform: scale(1.08); }
.cc-floating-cta::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid var(--accent);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Back to top */
.cc-back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 44px; height: 44px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.cc-back-top.visible { opacity: 1; pointer-events: auto; }
.cc-back-top:hover { background: var(--primary-dark); }

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

/* ========================================
   Page Hero (서브페이지 상단)
   ======================================== */
.cc-page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; text-align: center;
}
.cc-page-hero--sm { padding: 72px 0 48px; }
.cc-page-hero h1  { color: #fff; margin-bottom: 8px; }
.cc-page-hero p   { color: rgba(255,255,255,.8); }

/* ========================================
   서브페이지 (서비스·지역)
   ======================================== */
.cc-subhero {
  position: relative; min-height: 420px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.cc-subhero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.cc-subhero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, transparent 35%, rgba(0,0,0,.2) 60%, rgba(0,0,0,.7) 100%);
}
.cc-subhero-content {
  position: relative; z-index: 2;
  padding: 40px 32px; color: #fff;
  max-width: 1100px; margin: 0 auto; width: 100%;
}
.cc-subhero-content h1 { color: #fff; margin-bottom: 8px; }
.cc-subhero-content p  { color: rgba(255,255,255,.85); }

.cc-subpage-body { padding: 56px 24px; }
.cc-content-section { margin-bottom: 48px; }
.cc-content-section h2 { margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); }
.cc-content-section p  { margin-bottom: 12px; }

.cc-list { display: flex; flex-direction: column; gap: 8px; }
.cc-list li { padding-left: 16px; position: relative; }
.cc-list li::before { content: ''; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }

.cc-steps { display: flex; flex-direction: column; gap: 16px; counter-reset: steps; }
.cc-steps li {
  counter-increment: steps;
  padding: 16px 16px 16px 56px; position: relative;
  background: var(--bg-light); border-left: 3px solid var(--primary);
}
.cc-steps li::before {
  content: counter(steps); position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; line-height: 1;
}

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

.cc-info-card {
  padding: 24px; background: var(--bg-light);
  border-top: 3px solid var(--primary);
}
.cc-info-card--highlight { border-top-color: var(--accent); }
.cc-info-card h3 { font-size: 15px; margin-bottom: 12px; }
.cc-info-card ul { display: flex; flex-direction: column; gap: 6px; }
.cc-info-card ul li { font-size: 14px; padding-left: 12px; position: relative; }
.cc-info-card ul li::before { content: ''; position: absolute; left: 0; top: .6em; width: 5px; height: 5px; background: var(--primary); border-radius: 50%; }
.cc-info-card--highlight ul li::before { background: var(--accent); }

.cc-related-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.cc-related-card {
  padding: 12px 22px; border: 2px solid var(--primary);
  font-size: 14px; font-weight: 700; color: var(--primary);
  transition: var(--transition);
}
.cc-related-card:hover { background: var(--primary); color: #fff; }

.cc-subpage-cta {
  text-align: center; padding: 48px 24px;
  background: var(--bg-light); margin-top: 8px;
}
.cc-subpage-cta p { margin-bottom: 20px; font-size: 17px; font-weight: 600; }

/* ========================================
   Gallery 페이지
   ======================================== */
.cc-gallery-body { padding: 48px 24px; }
.cc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.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 img { width: 100%; height: 220px; object-fit: cover; }
.cc-gallery-card-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.cc-gallery-card-title { font-size: 15px; font-weight: 700; }
.cc-gallery-card-meta  { font-size: 13px; color: var(--text-light); }

/* ========================================
   Portfolio Detail
   ======================================== */
.cc-pd-hero { position: relative; min-height: 500px; overflow: hidden; }
.cc-pd-hero-img { width: 100%; height: 500px; object-fit: cover; }
.cc-pd-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.cc-pd-hero-content {
  position: absolute; bottom: 40px; left: 0; right: 0;
  z-index: 2; padding: 0 32px; max-width: 1100px; margin: 0 auto;
}
.cc-pd-hero-content h1 { color: #fff; margin-top: 8px; }

.cc-pd-body { padding: 56px 24px; }
.cc-pd-ba h2 { margin-bottom: 24px; }
.cc-ba-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.cc-ba-item { position: relative; overflow: hidden; }
.cc-ba-item img { width: 100%; height: 400px; object-fit: cover; }
.cc-ba-label {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: 12px; font-weight: 700; padding: 4px 10px;
}
.cc-ba-label--after { background: var(--primary); }

.cc-pd-meta { margin: 40px 0; }
.cc-pd-meta-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.cc-pd-meta-item {
  padding: 16px; background: var(--bg-light); text-align: center;
  border-top: 3px solid var(--primary);
}
.cc-pd-meta-label { display: block; font-size: 11px; font-weight: 700; color: var(--text-light); text-transform: uppercase; margin-bottom: 6px; }
.cc-pd-meta-val   { display: block; font-size: 15px; font-weight: 700; }

.cc-pd-steps { margin: 40px 0; }
.cc-pd-steps h2 { margin-bottom: 20px; }

.cc-pd-nav {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.cc-pd-nav-item {
  flex: 1; padding: 16px;
  background: var(--bg-light); transition: var(--transition);
}
.cc-pd-nav-item--next { text-align: right; }
.cc-pd-nav-item:hover { background: var(--primary); color: #fff; }
.cc-pd-nav-dir   { display: block; font-size: 11px; color: var(--text-light); margin-bottom: 4px; }
.cc-pd-nav-item:hover .cc-pd-nav-dir { color: rgba(255,255,255,.7); }
.cc-pd-nav-title { display: block; font-size: 14px; font-weight: 700; }

/* ========================================
   상담 페이지
   ======================================== */
.cc-consult-body { padding: 48px 24px; max-width: 680px; }
.cc-contact-card {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 28px; margin-bottom: 20px;
  border: 2px solid var(--border); background: #fff;
  box-shadow: var(--shadow);
}
.cc-contact-card--tel { border-top: 4px solid var(--primary); }
.cc-contact-card--sms { border-top: 4px solid var(--accent); }
.cc-contact-icon { color: var(--primary); flex-shrink: 0; }
.cc-contact-card--sms .cc-contact-icon { color: var(--accent); }
.cc-contact-info { flex: 1; }
.cc-contact-label { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.cc-contact-sub   { font-size: 13px; color: var(--text-light); }
.cc-contact-btn   { white-space: nowrap; }

.cc-consult-notice {
  padding: 24px; background: var(--bg-light);
  margin-bottom: 28px;
}
.cc-consult-notice h2 { font-size: 16px; margin-bottom: 12px; }
.cc-consult-notice ul { display: flex; flex-direction: column; gap: 8px; }
.cc-consult-notice ul li { font-size: 14px; padding-left: 14px; position: relative; }
.cc-consult-notice ul li::before { content: ''; position: absolute; left: 0; top: .6em; width: 5px; height: 5px; background: var(--primary); border-radius: 50%; }
.cc-biz-hours { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.cc-biz-hours h3 { font-size: 14px; margin-bottom: 8px; }
.cc-biz-hours p  { font-size: 14px; }

.cc-biz-info { margin-bottom: 28px; }
.cc-biz-info h2 { font-size: 16px; margin-bottom: 12px; }
.cc-biz-dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; }
.cc-biz-dl div { display: contents; }
.cc-biz-dl dt { font-size: 13px; font-weight: 700; color: var(--text-light); white-space: nowrap; }
.cc-biz-dl dd { font-size: 14px; }
.cc-consult-back { text-align: center; padding-top: 16px; }

/* ========================================
   사이트맵 페이지
   ======================================== */
.cc-sitemap-body { padding: 48px 24px; }
.cc-sitemap-filters {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px;
}
.cc-filter-btn {
  padding: 8px 18px; border: 2px solid var(--border);
  font-size: 13px; font-weight: 600; transition: var(--transition);
}
.cc-filter-btn.active, .cc-filter-btn:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.cc-sitemap-search { margin-bottom: 28px; }
.cc-sitemap-search input {
  width: 100%; max-width: 320px;
  padding: 10px 16px; border: 2px solid var(--border);
  font-size: 14px; outline: none;
  transition: border-color .2s;
}
.cc-sitemap-search input:focus { border-color: var(--primary); }
.cc-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.cc-sitemap-card {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; background: var(--bg-light);
  border: 1px solid var(--border); transition: var(--transition);
}
.cc-sitemap-card:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cc-sitemap-card:hover .cc-sitemap-icon { stroke: #fff; }
.cc-sitemap-icon { flex-shrink: 0; stroke: var(--primary); margin-top: 2px; }
.cc-sitemap-card-title { font-size: 14px; font-weight: 600; flex: 1; }
.cc-sitemap-card-cat   { font-size: 11px; color: var(--text-light); display: block; }
.cc-sitemap-card:hover .cc-sitemap-card-cat { color: rgba(255,255,255,.7); }
.cc-sitemap-empty { text-align: center; padding: 40px; color: var(--text-light); }

/* ========================================
   404 페이지
   ======================================== */
.cc-404-body {
  padding: 100px 24px; text-align: center;
}
.cc-404-body h1 { margin-bottom: 12px; }
.cc-404-body p  { margin-bottom: 32px; color: var(--text-light); }
.cc-404-links   { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   Empty State
   ======================================== */
.cc-empty-state, .cc-empty {
  text-align: center; padding: 60px 24px;
  color: var(--text-light);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .cc-section { padding: 48px 0; }
  .cc-stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .cc-cases-grid     { grid-template-columns: 1fr; }
  .cc-two-col, .cc-three-col { grid-template-columns: 1fr; }
  .cc-ba-grid        { grid-template-columns: 1fr; }
  .cc-pd-meta-grid   { grid-template-columns: repeat(2, 1fr); }
  .cc-footer-inner   { grid-template-columns: 1fr; gap: 28px; }
  .cc-pd-nav         { flex-direction: column; }
  .cc-pd-nav-item--next { text-align: left; }
  .cc-contact-card   { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .cc-services-grid  { grid-template-columns: repeat(2, 1fr); }
  .cc-stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .cc-pd-meta-grid   { grid-template-columns: 1fr 1fr; }
  .cc-gallery-grid   { grid-template-columns: 1fr; }
}
