/* =====================================================
   월드소방(주) — 공통 스타일시트
   - 색상 톤: 신뢰감 있는 블루 + 화이트 + 그레이
   - 분위기: 모던/미니멀 + 친근, 정보 위주의 실용 디자인
   ===================================================== */

:root {
  --blue:        #1c4e80;   /* 메인 딥블루 */
  --blue-700:    #163d65;
  --blue-600:    #225a92;
  --blue-100:    #e7eef7;
  --sky:         #2e86c1;   /* 보조 스카이블루 */
  --sky-accent:  #9bd0ff;   /* 보조 액센트 (히어로 숫자 강조용 단 1곳) */
  --ink:         #1a2330;   /* 본문 텍스트 */
  --ink-2:       #3d4a5c;
  --gray-700:    #5a6473;
  --gray-500:    #8a93a3;
  --gray-300:    #c8cfd9;
  --gray-200:    #dde2ea;
  --gray-100:    #eef1f6;
  --gray-50:     #f6f8fb;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(28, 78, 128, 0.08);
  --shadow-md:   0 10px 28px rgba(28, 78, 128, 0.15);
  --shadow-card: 0 1px 3px rgba(20, 40, 70, 0.09), 0 6px 20px rgba(28, 78, 128, 0.13);
  --shadow-card-hover: 0 2px 6px rgba(20, 40, 70, 0.11), 0 16px 36px rgba(28, 78, 128, 0.22);
  --card-border: #a8bace;
  --radius:      6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-700); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.eng { font-family: "Inter", "Noto Sans KR", sans-serif; letter-spacing: 0.01em; }

/* ===== Top utility bar ===== */
.utilbar {
  background: var(--blue-700);
  color: #d6dde6;
  font-size: 14.5px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.utilbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.utilbar a { color: #d6dde6; }
.utilbar a:hover { color: #fff; }
.utilbar .right { display: flex; gap: 18px; align-items: center; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink); font-weight: 800; font-size: 22px;
}
.brand-mark {
  width: 44px; height: 44px;
  background: transparent;
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 14.5px; letter-spacing: 0.04em;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.brand-mark > span {
  /* fallback (logo.png 파일이 없을 때 'W' 텍스트로 표시됨) */
  width: 100%; height: 100%;
  background: var(--blue);
  display: grid; place-items: center;
  border-radius: 6px;
}
.brand-mark span { line-height: 1; }
.brand-name { line-height: 1.2; white-space: nowrap; }
.brand-name small {
  display: block; font-size: 13.5px; font-weight: 500;
  color: var(--gray-500); letter-spacing: 0.02em; white-space: nowrap;
}

nav.gnb ul {
  display: flex; gap: 2px; list-style: none; padding: 0; margin: 0;
  font-weight: 700;
}
nav.gnb a {
  display: block; padding: 9px 13px;
  color: var(--ink); position: relative;
  white-space: nowrap; border-radius: 6px;
  font-size: 17px;
  transition: background-color 0.13s ease, color 0.13s ease;
}
nav.gnb a:hover {
  color: var(--blue);
  background-color: rgba(28, 78, 128, 0.08);
}
nav.gnb a.active {
  color: var(--blue);
  font-weight: 800;
}
nav.gnb a.active::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 0;
  height: 3px; background: var(--blue); border-radius: 3px 3px 0 0;
}

.header-cta {
  display: flex; gap: 10px; align-items: center;
  margin-left: 20px;
}
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue);
  border: 2px solid var(--blue);
  padding: 9px 16px; border-radius: 4px;
  font-weight: 700; font-size: 14px;
  white-space: nowrap;
}
.btn-call-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; gap: 0; }
.btn-call-num { font-size: 13.5px; font-weight: 800; letter-spacing: 0.04em; white-space: nowrap; }
.btn-call:hover { background: var(--blue); color: #fff; }
.btn-call svg { width: 15px; height: 15px; flex-shrink: 0; }

.menu-toggle {
  display: none; background: none; border: 0;
  width: 36px; height: 36px; cursor: pointer;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 22px; height: 2px; background: var(--ink);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top: 7px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 6px;
  font-weight: 700; font-size: 16px;
  border: 1px solid transparent;
  cursor: pointer; transition: background .15s, color .15s, border-color .15s, transform .15s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-700); color: #fff; }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue-100); color: var(--blue-700); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* ===== Page hero (sub-pages) ===== */
.page-hero {
  background: linear-gradient(180deg, var(--blue-100) 0%, #fff 100%);
  border-bottom: 1px solid var(--gray-200);
  padding: 72px 0 56px;
}
.page-hero .crumb {
  color: var(--gray-500); font-size: 14.5px; margin-bottom: 8px;
  font-weight: 500;
}
.page-hero h1 {
  margin: 0 0 12px; font-size: 38px; color: var(--blue-700);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.25;
}
.page-hero p { font-size: 17px; }
.page-hero p { margin: 0; color: var(--gray-700); }

/* ===== Sections (정돈된 padding 일관화) ===== */
section.block { padding: 76px 0; }
section.block.alt { background: var(--gray-50); }

.section-head {
  margin-bottom: 40px;
}
.section-head .label {
  display: inline-block;
  color: var(--blue); font-weight: 800; font-size: 13.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 12px; background: var(--blue-100); border-radius: 999px;
}
.section-head h2 {
  margin: 0 0 10px; font-size: 30px; color: var(--blue-700, #163d65);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.3;
}
.section-head p { margin: 0; color: var(--gray-700); max-width: 720px; font-size: 16px; line-height: 1.85; }

/* ===== Footer ===== */
footer.site-footer {
  background: #0f1d2e;
  color: #b6c0cc; font-size: 15.5px;
  padding: 44px 0 24px;
  border-top: 4px solid var(--blue);
}
footer.site-footer .grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
footer.site-footer h5 {
  color: #fff; font-size: 15.5px; font-weight: 700;
  margin: 0 0 14px; letter-spacing: 0.02em;
}
footer.site-footer ul {
  list-style: none; padding: 0; margin: 0;
}
footer.site-footer ul li { margin-bottom: 6px; }
footer.site-footer .brand-row {
  color: #fff; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
footer.site-footer .brand-mark { width: 36px; height: 36px; font-size: 12.5px; }
footer.site-footer .info-line { line-height: 1.9; }
footer.site-footer .info-line strong { color: #e3e8ee; font-weight: 600; }
footer.site-footer .copy {
  margin-top: 22px; font-size: 13.5px; color: #6b7785;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
}

/* ===== Floating call ===== */
.float-call {
  position: fixed; bottom: 22px; right: 22px; z-index: 80;
  background: #fff; color: var(--blue);
  border: 2px solid var(--blue);
  padding: 11px 20px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 8px 28px rgba(28,78,128,0.30);
  display: inline-flex; align-items: center; gap: 9px;
  line-height: 1.25; white-space: nowrap;
  transition: opacity .18s ease, transform .18s ease;
}
.float-call:hover { background: var(--blue); color: #fff; }
.float-call svg { width: 18px; height: 18px; flex-shrink: 0; }
.float-num { font-size: 13.5px; font-weight: 800; letter-spacing: 0.04em; }
@media (max-width: 768px) { .float-num { display: none; } }
/* 폼 입력 중에는 floating 숨김 (필드 가림 방지) */
body.form-active .float-call {
  opacity: 0; pointer-events: none; transform: translateY(16px);
}

/* ===== Cards / Lists ===== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: 10px;
  padding: 28px 26px;
  transition: border-color .2s, transform .2s;
}
.card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.card .num {
  display: inline-block; font-family: "Inter", monospace;
  color: var(--blue); font-weight: 700; font-size: 14.5px;
  letter-spacing: 0.1em; margin-bottom: 8px;
}
.card h3, .card h4 {
  margin: 0 0 8px; color: var(--ink); font-weight: 700;
}
.card h3 { font-size: 19px; }
.card h4 { font-size: 17px; }
.card p { margin: 0; color: var(--gray-700); font-size: 16px; }

/* ===== Lists ===== */
ul.checklist { list-style: none; padding: 0; margin: 16px 0; }
ul.checklist li {
  position: relative; padding-left: 24px; margin-bottom: 6px;
  color: var(--ink-2);
}
ul.checklist li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; background: var(--blue);
  border-radius: 50%;
}

/* ===== Hero (homepage) ===== */
/* ===== Hero 배경 (실제 회사 사진 + 시네마틱 오버레이) =====
   회사 건물 사진(hero-bg.jpg)을 흑백 톤으로 깔고, 짙은 블루 그라디언트로
   덮어 "실제 회사 + 영화 같은 분위기" 두 가지를 동시에 표현.
   ===================================================== */
.hero {
  background-color: #0a1421;
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* 1단계: 사진을 흑백/어둡게 처리해서 가장 아래 깔기 */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  /* blur: 글자(T.375-5119)와 나무줄기 식별 불가능 — 분위기만 남음 */
  filter: blur(4.5px) grayscale(0.55) brightness(0.72) contrast(1.06) saturate(0.68);
  z-index: 0;
  /* scale(1.08) 이상이어야 blur 가장자리 잘림 안 보임 */
  transform: scale(1.09);
  animation: heroPan 30s ease-in-out infinite alternate;
}
/* 2단계: 짙은 블루 그라디언트 오버레이 + 광원 */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    /* 좌측 짙은 그라디언트 (텍스트 영역) → 우측 옅게 (사진 분위기 살림) */
    linear-gradient(90deg, rgba(10, 20, 33, 0.85) 0%, rgba(15, 30, 50, 0.7) 35%, rgba(22, 61, 101, 0.55) 65%, rgba(28, 78, 128, 0.4) 100%),
    /* 상단→하단 추가 짙은 베일 */
    linear-gradient(180deg, rgba(10, 20, 33, 0.55) 0%, rgba(10, 20, 33, 0.30) 50%, rgba(10, 20, 33, 0.55) 100%),
    /* 색감 광원 */
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(46, 134, 193, 0.22) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
  animation: heroGlow 10s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.08) translateY(-10px); }
}
@keyframes heroGlow {
  from { opacity: 0.95; }
  to   { opacity: 1; }
}
.hero > * { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
  .hero::before { transform: none; }
}

.hero .inner {
  position: relative; z-index: 2;
  padding: 56px 0 56px;
}

/* ===== 히어로 안 통계 (사진 배경 위) ===== */
.hero-stats {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hs-item {
  text-align: center;
  padding: 4px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hs-item:last-child { border-right: 0; }
.hs-num {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.hs-label {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* ===== 히어로 안 CTA 버튼 (통계 밑) ===== */
.hero-cta-row {
  margin-top: 32px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.hero-cta-row .btn-primary {
  background: #fff;
  color: var(--blue-700, #163d65);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  border: 0;
}
.hero-cta-row .btn-primary:hover {
  background: var(--blue-100);
  color: var(--blue-700, #163d65);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

@media (max-width: 768px) {
  .hs-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .hs-item { padding: 12px 4px; }
  .hs-num { font-size: 26px; }
  .hero-cta-row .btn-primary { width: 100%; max-width: 360px; justify-content: center; }
}
.hero .badge {
  display: inline-block; padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px; font-size: 13.5px; letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 900; line-height: 1.32; letter-spacing: -0.025em;
}
.hero h1 .accent { color: #9bd0ff; }
.hero p.lead {
  margin: 0 0 28px;
  font-size: clamp(16px, 1.5vw, 19.5px);
  color: #e6eef7;
  max-width: 680px;
  line-height: 1.8 !important;
  font-weight: 500;
}
.hero .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero .hero-microproof { margin-top: 14px !important; font-size: 14.5px !important; }
.hero-region { margin-top: 38px !important; padding-top: 24px !important; }

/* ===== Stats strip ===== */
.stats {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.stats .grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stats .item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--gray-200);
}
.stats .item:last-child { border-right: 0; }
.stats .num {
  font-family: "Inter", monospace; font-weight: 800; color: var(--blue);
  font-size: 38px; line-height: 1; display: block;
}
.stats .label { color: var(--gray-700); font-size: 16px; margin-top: 10px; font-weight: 500; }

/* ===== Service cards (homepage) ===== */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-item {
  background: #fff; border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: 12px; padding: 34px 28px;
  transition: border-color .2s, transform .2s;
  display: flex; flex-direction: column;
}
.service-item:hover {
  border-color: var(--blue); transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.service-item .ico {
  width: 56px; height: 56px; border-radius: 10px;
  background: var(--blue-100); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 18px;
}
.service-item .ico svg { width: 28px; height: 28px; }

.service-item .badge-main {
  display: inline-block; font-size: 12.5px; font-weight: 700; color: var(--blue);
  letter-spacing: 0.08em; margin-bottom: 6px;
}
.service-item h3 { font-size: 19px; margin: 0 0 8px; color: var(--ink); font-weight: 800; }
.service-item p { font-size: 16px; color: var(--gray-700); margin: 0 0 16px; flex: 1; line-height: 1.7; }
.service-keys {
  list-style: none; margin: 0 0 16px; padding: 0; flex: 1;
  display: flex; flex-direction: column; gap: 7px;
  font-size: 15px;
}
.service-keys li {
  font-size: inherit; color: var(--gray-700); line-height: 1.55;
  padding-left: 14px; position: relative;
}
.service-keys li::before {
  content: "·"; position: absolute; left: 0;
  color: var(--blue); font-weight: 700;
}
.service-keys--lg {
  font-size: 15.5px; gap: 10px;
}
.service-item .more {
  font-size: 14.5px; font-weight: 600; color: var(--blue);
}
.service-item .more::after { content: " →"; }

/* ===== Strengths ===== */
.strength-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.strength {
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: 14px;
  padding: 38px 32px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.strength:hover {
  border-color: var(--blue); transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.strength .num {
  font-family: "Inter", monospace; font-size: 40px; font-weight: 800;
  color: var(--blue-100); line-height: 1; position: absolute;
  top: 26px; right: 26px;
}
.strength h3 { margin: 0 0 14px; font-size: 20px; color: var(--ink); font-weight: 800; padding-right: 44px; line-height: 1.4; }
.strength p { margin: 0; color: var(--gray-700); font-size: 15.5px; line-height: 1.85; }

/* ===== Tables ===== */
.tbl { width: 100%; border-collapse: collapse; font-size: 16px; }
.tbl th, .tbl td {
  padding: 18px 20px; border-bottom: 1px solid var(--gray-200);
  text-align: left; vertical-align: top; line-height: 1.7;
}
.tbl th {
  background: var(--gray-50); color: var(--ink);
  font-weight: 700; width: 180px; white-space: nowrap;
}
.tbl tr:last-child td, .tbl tr:last-child th { border-bottom: 0; }
.tbl-wrap {
  border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden;
}

/* ===== CTA banner ===== */
.cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%);
  color: #fff;
  padding: 64px 0;
}
.cta .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cta h3 { margin: 0 0 8px; font-size: 28px; font-weight: 800; letter-spacing: -0.01em; }
.cta p { margin: 0; color: #d8e4f1; font-size: 16px; }
.cta .right { display: flex; gap: 10px; flex-wrap: wrap; }
.cta .btn-white {
  background: #fff; color: var(--blue); padding: 16px 30px;
  border-radius: 6px; font-weight: 800; font-size: 17px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.cta .btn-white:hover { background: #eaf2f8; color: var(--blue-700); }
.cta .btn-white svg { width: 18px; height: 18px; }

/* ===== Form ===== */
.form-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 32px;
}
.form-card .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-card label {
  display: block; font-size: 14.5px; font-weight: 700;
  color: var(--ink); margin-bottom: 6px;
}
.form-card label .req { color: var(--blue); }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gray-300); border-radius: 4px;
  font-size: 16px; font-family: inherit;
  background: #fff; color: var(--ink);
  transition: border-color .15s;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: 0; border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-100);
}
.form-card .field { margin-bottom: 14px; }
.form-card textarea { min-height: 110px; resize: vertical; }
.form-card .agree {
  display: flex; gap: 8px; align-items: center;
  font-size: 14.5px; color: var(--gray-700); margin: 12px 0;
}
.form-card .agree input { width: auto; }
.form-card button[type="submit"] {
  width: 100%; padding: 14px; border: 0; cursor: pointer;
  background: var(--blue); color: #fff; font-size: 16px; font-weight: 700;
  border-radius: 4px;
}
.form-card button[type="submit"]:hover { background: var(--blue-700); }

/* ===== Contact / Map ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px;
}
@media (max-width: 980px) {
  .contact-grid { display: flex; flex-direction: column; gap: 28px; }
}
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.info-list li:last-child { border-bottom: 0; }
.info-list .ico {
  width: 36px; height: 36px; border-radius: 4px;
  background: var(--blue-100); color: var(--blue);
  display: grid; place-items: center; flex-shrink: 0;
}
.info-list .ico svg { width: 16px; height: 16px; }
.info-list .k { font-size: 13.5px; color: var(--gray-500); margin-bottom: 2px; }
.info-list .v { font-weight: 600; color: var(--ink); }

/* ===== Process / Timeline ===== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.process .step {
  background: #fff; border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius); padding: 22px 20px; position: relative;
}
.process .step .n {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-size: 14.5px;
  margin-bottom: 10px;
}
.process .step h4 { margin: 0 0 4px; font-size: 16px; }
.process .step p { margin: 0; font-size: 15px; color: var(--gray-700); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; background: #fff;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--blue); font-size: 22px; line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { border-bottom: 1px solid var(--gray-200); }
.faq-item .a {
  padding: 18px 22px; color: var(--gray-700); background: var(--gray-50);
}

/* ===== Project list ===== */
.project-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.project-list .item {
  background: #fff; border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius); padding: 20px 22px;
  display: flex; gap: 18px; align-items: flex-start;
}
.project-list .item .tag {
  display: inline-block; padding: 3px 10px;
  background: var(--blue-100); color: var(--blue);
  font-size: 13.5px; font-weight: 700; border-radius: 999px;
  margin-bottom: 6px;
}
.project-list .item h4 { margin: 0 0 4px; font-size: 16px; color: var(--ink); }
.project-list .item p { margin: 0; font-size: 15px; color: var(--gray-700); }
.project-list .item .date {
  font-family: "Inter", monospace; color: var(--gray-500);
  font-size: 13.5px; margin-left: auto; white-space: nowrap;
  align-self: flex-start;
}

/* ===== Cert list ===== */
.cert-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.cert-grid .item {
  background: #fff; border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius); padding: 22px 20px;
  display: flex; gap: 14px; align-items: center;
}
.cert-grid .ico {
  width: 44px; height: 44px; border-radius: 4px;
  background: var(--blue-100); color: var(--blue);
  display: grid; place-items: center; flex-shrink: 0;
}
.cert-grid .ico svg { width: 22px; height: 22px; }
.cert-grid h4 { margin: 0 0 2px; font-size: 16px; color: var(--ink); }
.cert-grid p { margin: 0; font-size: 14.5px; color: var(--gray-500); }

/* ===== Org chart ===== */
.org {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 44px 36px;
  text-align: center;
}
.org .top {
  display: inline-block; padding: 13px 40px;
  background: var(--blue); color: #fff; font-weight: 700;
  border-radius: 4px; margin-bottom: 28px;
}
.org .level {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; position: relative;
}
.org .level::before {
  content: ""; position: absolute; left: 50%; top: -28px;
  width: 1px; height: 28px; background: var(--gray-300);
}
.org .node {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  padding: 14px 26px; border-radius: 4px; min-width: 152px;
  font-weight: 600; color: var(--ink);
}

/* ===== Region map ===== */
.region-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
}
.region-grid .pill {
  background: var(--blue-100); color: var(--blue-700, #143d66);
  padding: 18px 8px; border-radius: 6px;
  text-align: center; font-weight: 800; font-size: 18px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(28, 78, 128, 0.18);
}
.region-grid .pill.main {
  background: var(--blue); color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .utilbar .container .left { display: none; }
  nav.gnb {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--gray-200); padding: 10px 0;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  }
  nav.gnb.open { display: block; }
  nav.gnb ul { flex-direction: column; gap: 0; }
  nav.gnb li { border-bottom: 1px solid var(--gray-100); }
  nav.gnb a { padding: 14px 22px; }
  .menu-toggle { display: flex; }
  /* 모바일 헤더: 전화 버튼을 아이콘 전용 원형 버튼으로 축소 */
  .header-cta { gap: 8px; }
  .header-cta .btn-call {
    width: 40px; height: 40px; padding: 0;
    border-radius: 50%;
    background: var(--blue); color: #fff; border: 0;
    justify-content: center;
  }
  .header-cta .btn-call:hover { background: var(--blue-700); }
  .header-cta .btn-call .btn-call-text { display: none; }
  .header-cta .btn-call svg { width: 18px; height: 18px; margin: 0; }
  /* 햄버거 메뉴 내 큰 전화 CTA (JS로 삽입됨) */
  nav.gnb .menu-cta-li { border-bottom: 0 !important; padding: 12px 18px 6px; }
  nav.gnb .menu-cta-call {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--blue); color: #fff; padding: 16px 20px;
    border-radius: 10px; text-decoration: none;
    font-size: 16px; font-weight: 800; letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(28,78,128,0.22);
  }
  nav.gnb .menu-cta-call:hover { background: var(--blue-700); color: #fff; }
  nav.gnb .menu-cta-call svg { width: 20px; height: 20px; }
  nav.gnb .menu-cta-call .menu-cta-num { font-size: 14.5px; opacity: 0.95; margin-left: 4px; }
  .hero .inner { grid-template-columns: 1fr; padding: 64px 0 72px; gap: 32px; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .stats .item:nth-child(2) { border-right: 0; }
  .stats .item:nth-child(-n+2) { border-bottom: 1px solid var(--gray-200); }
  .service-grid, .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .strength-grid, .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .project-list { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .region-grid { grid-template-columns: repeat(3, 1fr); }
  footer.site-footer .grid { grid-template-columns: 1fr; }
  section.block { padding: 56px 0; }
  .page-hero { padding: 40px 0 32px; }
  .page-hero h1 { font-size: 26px; }
  .tbl th { width: 110px; font-size: 14.5px; }
}
@media (max-width: 560px) {
  .service-grid, .cards-4 { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .form-card .row { grid-template-columns: 1fr; }
  .form-card { padding: 22px; }
  .cta .container { text-align: center; justify-content: center; }
}

/* ===== Hero entrance animation (페이지 로딩 시 순차 등장) ===== */
@keyframes ws-rise-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ws-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero .badge        { animation: ws-rise-up 0.75s cubic-bezier(.2,.8,.2,1) 0.10s both; }
.hero h1            { animation: ws-rise-up 0.85s cubic-bezier(.2,.8,.2,1) 0.25s both; }
.hero .lead         { animation: ws-rise-up 0.75s cubic-bezier(.2,.8,.2,1) 0.45s both; }
.hero .actions      { animation: ws-rise-up 0.75s cubic-bezier(.2,.8,.2,1) 0.60s both; }
.hero .actions + div { animation: ws-rise-up 0.75s cubic-bezier(.2,.8,.2,1) 0.75s both; }
.hero .inner > div:last-child { animation: ws-rise-up 0.85s cubic-bezier(.2,.8,.2,1) 0.45s both; }

/* 모션 환경 비활성화 시 비활성 */
@media (prefers-reduced-motion: reduce) {
  .hero .badge, .hero h1, .hero .lead, .hero .actions,
  .hero .actions + div, .hero .inner > div:last-child {
    animation: none !important;
  }
}

/* ===== Stats 섹션 (메인 페이지에선 미사용. 다른 페이지에서 흰 배경) ===== */
.stats {
  background: var(--blue);
  border-radius: 10px;
  overflow: hidden;
}
.stats .item {
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stats .item:last-child { border-right: 0; }
.stats .num {
  color: #fff;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stats .label {
  color: rgba(255,255,255,0.78);
  font-size: 15.5px;
  margin-top: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.stats .num[data-count] {
  display: inline-block;
  transition: transform .3s ease;
}

@media (max-width: 980px) {
  .stats .item { padding: 30px 16px; }
  .stats .num { font-size: 40px; }
  .stats .label { font-size: 14.5px; margin-top: 10px; }
}
@media (max-width: 560px) {
  .stats .num { font-size: 34px; }
}

/* ===== Blog feed (RSS) ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.blog-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: flex; flex-direction: column;
  text-decoration: none;
}
.blog-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--blue-100);
  position: relative;
}
.blog-thumb-fallback {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.8);
  font-size: 28px; font-weight: 800;
  letter-spacing: 0.04em;
}
.blog-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-date {
  font-size: 13.5px; color: var(--gray-500); font-weight: 500;
  margin-bottom: 8px; font-family: "Inter", sans-serif;
}
.blog-title {
  font-size: 17px; font-weight: 700; color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-desc {
  font-size: 15.5px; color: var(--gray-700); margin: 0 0 14px;
  line-height: 1.65; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-more {
  font-size: 14.5px; font-weight: 600; color: var(--blue);
  margin-top: auto;
}
/* Skeleton loader (RSS 첫 로딩 시 빈 화면 방지) */
.blog-skeleton { pointer-events: none; }
.blog-skeleton:hover { transform: none; box-shadow: none; border-color: var(--gray-200); }
.skel-block, .skel-line {
  background: linear-gradient(90deg, #eef1f5 0%, #f7f9fb 50%, #eef1f5 100%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.4s ease-in-out infinite;
  border-radius: 4px;
}
.skel-block { width: 100%; height: 100%; }
.skel-line { height: 12px; margin-bottom: 10px; }
.skel-line.w40 { width: 40%; height: 10px; }
.skel-line.w70 { width: 70%; }
.skel-line.w90 { width: 90%; height: 16px; margin-bottom: 12px; }
@keyframes skel-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .skel-block, .skel-line { animation: none; background: #eef1f5; }
}

.blog-loading, .blog-fallback {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px;
  color: var(--gray-500);
  border: 1px dashed var(--gray-300);
  border-radius: 10px;
  background: #fff;
}
.blog-loading::before {
  content: ""; display: inline-block;
  width: 18px; height: 18px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: ws-spin 0.8s linear infinite;
  margin-right: 10px; vertical-align: -4px;
}
@keyframes ws-spin { to { transform: rotate(360deg); } }
.blog-section-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 20px; margin-bottom: 36px;
}
.blog-section-head .left { flex: 1; }
.blog-section-head .label {
  display: inline-block;
  color: var(--blue); font-weight: 700; font-size: 14.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 12px; background: var(--blue-100); border-radius: 999px;
}
.blog-section-head h2 {
  margin: 0 0 8px; font-size: 34px; color: var(--ink);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.3;
}
.blog-section-head p { margin: 0; color: var(--gray-700); font-size: 16.5px; line-height: 1.7; }

@media (max-width: 980px) {
  .blog-grid, .blog-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-grid, .blog-grid.cols-4 { grid-template-columns: 1fr; }
  .blog-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
  }
  .blog-section-head .left { width: 100%; flex: unset; }
  .blog-section-head h2 { font-size: 24px; }
  .blog-section-head p { font-size: 15px; }
  .blog-section-head .label { white-space: nowrap; letter-spacing: 0.12em; font-size: 13px; }
  .blog-section-head > a { width: 100%; text-align: center; justify-content: center; }
}

/* ===== Hero Service Area (헤드라인형) ===== */
.hero-region {
  margin-top: 32px;
  padding: 0;
  background: transparent;
  border: 0;
}
.hero-region-eyebrow {
  font-family: "Inter", "Noto Sans KR", sans-serif;
  font-size: 16px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #c3dcf2;
  margin-bottom: 14px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(155, 208, 255, 0.32);
  display: inline-block;
}
.hero-region-text {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.hero-region-text .region {
  flex: 1;
  text-align: center;
  padding: 8px 0;
}
.hero-region-text .region:not(:last-child) {
  border-right: 1px solid rgba(155, 208, 255, 0.22);
}

@media (max-width: 768px) {
  .hero-region { margin-top: 24px; }
  .hero-region-eyebrow { font-size: 12.5px; }
  .hero-region-text { font-size: 16px; flex-wrap: wrap; }
  .hero-region-text .region { flex: 0 0 33.333%; padding: 6px 4px; font-size: 16px; }
  .hero-region-text .region:first-child, .hero-region-text .region:last-child { text-align: center; }
  .hero-region-text .region:not(:last-child) { border-right: 0; }
}


/* ============================================================
   Commitment Radius (책임 반경) 섹션
   ============================================================ */

/* Hero region 강조 (home pin) */
.hero-region .region.home {
  background: rgba(230, 57, 70, 0.18);
  border-color: rgba(230, 57, 70, 0.55);
  color: #9bd0ff;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.hero-region-caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.65;
  letter-spacing: -0.005em;
}

/* Hub-and-spoke 시각화 */
.radius-visual {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 30px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.rv-hub {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--blue, #1c4e80) 0%, var(--blue-700, #143d66) 100%);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(28, 78, 128, 0.22);
}
.rv-hub-pin {
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid; place-items: center;
}
.rv-hub-pin svg { width: 18px; height: 18px; color: #9bd0ff; }
.rv-hub-label {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.rv-hub-label small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
}
.rv-arrow {
  font-size: 24px;
  color: var(--gray-300);
  font-weight: 700;
  flex-shrink: 0;
}
.rv-spokes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}
.rv-spoke {
  background: var(--blue-100);
  color: var(--blue-700, #143d66);
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 16px;
  border: 1px solid rgba(28, 78, 128, 0.2);
  letter-spacing: -0.005em;
}

/* 3개 약속 카드 */
.radius-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.rad-card {
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: 14px;
  padding: 28px 26px 24px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.rad-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.rad-icon {
  width: 52px; height: 52px;
  background: var(--blue-100);
  color: var(--blue);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.rad-icon svg { width: 26px; height: 26px; }
.rad-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--blue, #1c4e80);
  margin-bottom: 8px;
}
.rad-card h4 {
  margin: 0 0 10px;
  color: var(--blue-700, #143d66);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.rad-card p {
  margin: 0;
  color: var(--ink-2, #455161);
  font-size: 15.5px;
  line-height: 1.7;
  flex: 1;
}

/* 솔직한 거절 멘트 (역설적 후킹) */
.radius-honest {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 28px;
  background: linear-gradient(135deg, #0f1d2e 0%, var(--blue-700, #143d66) 100%);
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(15, 29, 46, 0.25);
}
.rh-mark {
  width: 42px; height: 42px;
  background: rgba(255, 214, 179, 0.18);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: #9bd0ff;
}
.rh-mark svg { width: 24px; height: 24px; }
.rh-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #9bd0ff;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.rh-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
}
.rh-text strong + p strong {
  display: inline;
  color: #fff;
  font-size: inherit;
  margin: 0;
}

@media (max-width: 900px) {
  .radius-grid { grid-template-columns: 1fr; gap: 14px; }
  .radius-visual { padding: 18px 20px; }
  .rv-hub { width: 100%; justify-content: center; }
  .rv-arrow { display: none; }
  .rv-spokes { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .radius-honest { flex-direction: column; gap: 12px; padding: 18px 20px; }
}


/* ============================================================
   EXPERIENCE 카드 — 실제 데이터 카운터 표시
   ============================================================ */
.exp-card .exp-count {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-100);
}
.exp-card .exp-num {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--blue-700, #143d66);
  letter-spacing: -0.02em;
  line-height: 1;
}
.exp-card .exp-pct {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue, #1c4e80);
  letter-spacing: -0.005em;
  background: var(--blue-100);
  padding: 4px 8px;
  border-radius: 4px;
}

/* VOC stat — small caption */
.voc-stat-item .voc-lbl small {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 3px;
  letter-spacing: -0.005em;
}


/* ===== 카운트업 직후 CTA 액션 박스 (stats와 한 패널로 자연스럽게 이어짐) ===== */
.post-stats-actions {
  background: linear-gradient(180deg, #f3f7fc 0%, #fafbfd 100%);
  padding: 18px 0 24px;
  border-bottom: 1px solid rgba(28, 78, 128, 0.08);
}
.post-stats-actions .psa-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
/* post-stats-actions 직후 섹션의 위 padding 축소 (휑함 제거) */
.post-stats-actions + section.block { padding-top: 64px; }
@media (max-width: 768px) {
  .post-stats-actions { padding: 24px 0 28px; }
  .post-stats-actions .psa-inner { flex-direction: column; }
  .post-stats-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .post-stats-actions + section.block { padding-top: 48px; }
}


/* ===== 시설 유형 태그 클라우드 ===== */
.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.exp-tag {
  background: #fff;
  color: var(--blue-700, #143d66);
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -0.005em;
  border: 1px solid rgba(28, 78, 128, 0.18);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, border-color 0.2s;
}
.exp-tag:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .exp-tag { padding: 11px 18px; font-size: 15.5px; }
  .exp-tags { gap: 8px; }
}

/* ===== Scroll Reveal (스크롤 시 등장 애니메이션) ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(.2,.8,.2,1), transform 0.85s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* 그룹 내 시차 효과 (같은 부모 안에서 자식이 차례로 등장) */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }
.reveal[data-delay="7"] { transition-delay: 0.56s; }
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== Service Area Map (SVG 일러스트 지도) ===== */
.region-map-wrap {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.region-map {
  width: 100%;
  height: auto;
  max-height: 480px;
  display: block;
}
.region-map text {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
}
@media (max-width: 768px) {
  .region-map-wrap { padding: 16px 12px; }
  .region-map text { font-size: 26px; }
}

/* ===== 14년 실적 트랙 레코드 섹션 ===== */
.chart-wrap {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px 26px 18px;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.growth-chart {
  width: 100%;
  height: auto;
  display: block;
}

.track-table-title {
  margin: 38px 0 4px;
  color: var(--blue-700, #143d66);
  font-size: 20px;
  font-weight: 800;
}
.track-table-sub {
  margin: 0 0 14px;
  color: var(--gray-500);
  font-size: 14.5px;
}
.track-table-wrap {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}
.track-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
  min-width: 720px;
}
.track-table thead th {
  background: var(--blue, #1c4e80);
  color: #fff;
  font-weight: 700;
  padding: 12px 8px;
  text-align: center;
  letter-spacing: 0.02em;
  font-size: 15.5px;
  border: none;
}
.track-table tbody th {
  background: #f7f9fb;
  color: var(--blue-700, #143d66);
  font-weight: 700;
  padding: 11px 12px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15.5px;
}
.track-table tbody th small {
  display: block;
  font-size: 12.5px;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 1px;
}
.track-table td {
  padding: 11px 8px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  color: var(--ink-2, #455161);
  font-variant-numeric: tabular-nums;
}
.track-table td.total-cell {
  background: #eef4fa;
  color: var(--blue-700, #143d66);
}
.track-table tbody tr:hover td,
.track-table tbody tr:hover th {
  background: #f0f5fa;
}
.track-table tr.grand-row th,
.track-table tr.grand-row td {
  background: var(--blue-700, #143d66) !important;
  color: #fff !important;
  font-size: 16px;
  border-bottom: none;
}

.trust-callout {
  margin-top: 38px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--blue, #1c4e80);
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-grid > div h4 {
  margin: 0 0 8px;
  color: var(--blue-700, #143d66);
  font-size: 16px;
  font-weight: 800;
}
.trust-grid > div p {
  margin: 0;
  color: var(--ink-2, #455161);
  font-size: 15.5px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .trust-callout { padding: 22px 22px; }
  .chart-wrap { padding: 16px 14px; }
}
@media (max-width: 768px) {
  .track-table { font-size: 13.5px; min-width: 680px; }
  .track-table thead th, .track-table tbody th, .track-table td { padding: 9px 5px; }
}

/* ===== 마일스톤 카드 (1k~5k건 돌파) ===== */
.milestone-row {
  display: grid;
  grid-template-columns: 130px repeat(5, 1fr);
  gap: 12px;
  margin: 0 0 22px;
  align-items: stretch;
}
.milestone-row .ms-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--blue-700, #143d66);
  background: #fff;
  border: 1px dashed var(--blue, #1c4e80);
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.ms-card {
  background: #fff;
  color: var(--blue-700, #163d65);
  border-radius: 12px;
  padding: 18px 10px 14px;
  text-align: center;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.ms-card:hover {
  transition: transform 0.2s ease, border-color 0.2s ease;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.ms-num {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--blue-700, #163d65);
}
.ms-num span {
  font-size: 22px;
  font-weight: 800;
  opacity: 0.85;
}
.ms-num::after {
  content: "건";
  font-size: 14.5px;
  font-weight: 700;
  margin-left: 3px;
  opacity: 0.7;
}
.ms-year {
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gray-700);
}

@media (max-width: 900px) {
  .milestone-row { grid-template-columns: 1fr 1fr 1fr; }
  .milestone-row .ms-label { grid-column: 1 / -1; padding: 10px 8px; }
  .ms-num { font-size: 26px; }
  .ms-num span { font-size: 18px; }
}
@media (max-width: 480px) {
  .milestone-row { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   메인 후킹 리뉴얼 — 절제된 프리미엄 톤
   ============================================================ */

/* ----- Hero 마이크로프루프 (작은 신뢰 라인) ----- */
.hero-microproof {
  margin-top: 22px;
  display: flex; flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}
.hero-microproof strong { color: #fff; font-weight: 700; }
.hero-microproof .dot { color: rgba(255, 255, 255, 0.35); }

/* ----- Pain Point Section (문제→해결) ----- */
.pain-section { background: #fff; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: 14px;
  padding: 30px 28px 26px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.pain-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.pain-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--blue, #1c4e80);
  background: rgba(192, 57, 43, 0.07);
  padding: 5px 11px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 18px;
}
.pain-q {
  margin: 0 0 12px;
  color: var(--ink, #1a2330);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.45;
}
.pain-desc {
  margin: 0 0 22px;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.7;
}
.pain-divider {
  position: relative;
  text-align: center;
  margin: 8px 0 16px;
  height: 16px;
}
.pain-divider::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--gray-200);
}
.pain-divider span {
  position: relative;
  background: #fff;
  padding: 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--blue, #1c4e80);
}
.pain-ans {
  margin: 0 0 18px;
  color: var(--ink-2, #3d4a5c);
  font-size: 16px;
  line-height: 1.7;
  flex: 1;
}
.pain-ans strong { color: var(--blue-700, #143d66); font-weight: 800; }
.pain-link {
  display: inline-block;
  align-self: flex-start;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue, #1c4e80);
  letter-spacing: -0.005em;
}
.pain-link:hover { color: var(--blue-700); }

@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ----- Mini Data Story (메인 누적 미니 차트) ----- */
.data-story .ms-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.ms-strip-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 22px 12px 18px;
  text-align: center;
  position: relative;
  transition: transform 0.2s;
}
.ms-strip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ms-strip-card.highlight {
  background: linear-gradient(135deg, var(--blue, #1c4e80) 0%, var(--blue-700, #143d66) 100%);
  color: #fff;
  border-color: transparent;
}
.ms-strip-card .msv {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--blue-700, #143d66);
  line-height: 1;
}
.ms-strip-card .msv::after {
  content: "건";
  font-size: 14.5px;
  font-weight: 700;
  margin-left: 3px;
  opacity: 0.7;
}
.ms-strip-card.highlight .msv { color: #fff; }
.ms-strip-card .msy {
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}
.ms-strip-card.highlight .msy { color: rgba(255, 255, 255, 0.92); }

.mini-chart-wrap {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px 28px 22px;
  box-shadow: var(--shadow-sm);
}
.mini-growth-chart {
  width: 100%; height: auto;
  display: block;
}
.mini-chart-cta {
  margin-top: 8px;
  text-align: right;
}

@media (max-width: 900px) {
  .data-story .ms-strip { grid-template-columns: repeat(2, 1fr); }
  .ms-strip-card .msv { font-size: 24px; }
  .mini-chart-wrap { overflow-x: visible; padding: 16px 16px 14px; }
  .chart-wrap { overflow-x: visible; }
  .mini-chart-cta { text-align: center; }
}

/* ----- Trust Wall (자료 placeholder) ----- */
.trust-wall-section { background: #fff; }
.trust-wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tw-card {
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.tw-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.tw-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--blue, #1c4e80);
  background: var(--blue-100);
  padding: 5px 11px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 14px;
}
.tw-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-700, #143d66);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.tw-desc {
  margin: 0 0 20px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.65;
}
.tw-image {
  width: 100%;
  height: 260px;
  background: #f5f7fb;
  border-radius: 10px;
  overflow: hidden;
  margin-top: auto;
  position: relative;
}
.tw-image img {
  position: absolute;
  top: 14px; left: 14px; right: 14px; bottom: 14px;
  width: calc(100% - 28px); height: calc(100% - 28px);
  object-fit: contain;
  border-radius: 0;
  border: none;
  display: block;
}
.tw-image.placeholder { color: var(--gray-500); }
.ph-icon svg {
  width: 38px; height: 38px;
  color: var(--gray-300);
  margin-bottom: 8px;
  display: block;
  margin-left: auto; margin-right: auto;
}
.ph-text {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gray-500);
  line-height: 1.5;
}
.ph-text small {
  font-size: 12.5px; font-weight: 500;
  color: var(--gray-500);
  opacity: 0.85;
}

.cert-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: auto;
}
.ct-item {
  background: #f7f9fb;
  border: 1px dashed var(--gray-300);
  border-radius: 8px;
  aspect-ratio: 3 / 2;
  display: grid; place-items: center;
  color: var(--gray-300);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.ct-item svg { width: 22px; height: 22px; margin-bottom: 4px; }
.ct-item span { color: var(--gray-500); }

.rev-chart {
  width: 100%;
  margin-top: auto;
  text-align: center;
}
.rev-chart svg {
  width: 100%; max-height: 130px;
  display: block;
}

.tw-summary-list {
  list-style: none; padding: 0; margin: 0 0 18px;
}
.tw-summary-list li {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px dashed var(--gray-100);
}
.tw-summary-list li:last-child { border-bottom: none; }
.tw-summary-list span {
  color: var(--gray-500);
  font-weight: 500;
}
.tw-summary-list strong {
  color: var(--blue-700, #143d66);
  font-weight: 800;
  text-align: right;
}
.tw-link-cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
}

.trust-note {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--blue-100);
  border-radius: 8px;
  color: var(--blue-700, #143d66);
  font-size: 15px;
  line-height: 1.6;
}
.trust-note strong { font-weight: 800; }

@media (max-width: 900px) {
  .trust-wall-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .trust-wall-grid { grid-template-columns: 1fr; }
}

/* ----- 최종 CTA (단순화: 단색 딥블루) ----- */
.cta-final {
  background: var(--blue-700, #163d65);
  position: relative;
}
.cta-final .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-headline { max-width: 580px; }
.cta-eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: #9bd0ff;
  background: rgba(255, 255, 255, 0.07);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.cta-final h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.cta-final p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}
.cta-microproof {
  display: flex; flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  margin-top: 6px;
}

.cta-call {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: var(--blue-700, #143d66);
  padding: 18px 26px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}
.cta-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
  color: var(--blue-700, #143d66);
}
.cta-call svg { width: 22px; height: 22px; }
.cta-call-inner {
  display: flex; flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.cta-call-inner strong {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.cta-call-inner small {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gray-500);
  text-transform: uppercase;
}

/* 문자/온라인견적 보조 채널 버튼 */
.cta-alt-channels {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.cta-alt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.18s, border-color 0.18s;
  text-decoration: none;
}
.cta-alt:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}
.cta-alt svg { flex-shrink: 0; opacity: 1; }
.cta-alt span { display: flex; flex-direction: column; line-height: 1.3; }
.cta-alt strong { font-size: 15px; font-weight: 800; color: #fff; }
.cta-alt small { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.82); }

@media (max-width: 768px) {
  .cta-final h3 { font-size: 24px; }
  .cta-call { width: 100%; justify-content: center; }
  .cta-call-inner { align-items: center; }
  .cta-alt-channels { flex-direction: column; gap: 10px; }
  .cta-alt { width: 100%; justify-content: flex-start; padding: 14px 18px; }
  .cta-alt strong { font-size: 15.5px; }
  .cta-alt small { font-size: 12.5px; }
}

/* ============================================================
   잠재고객 후킹 강화 — 절제된 프리미엄 추가 (2단계)
   ============================================================ */

/* ----- Trust Wall 3-col (간결화) + 도장 스타일 placeholder ----- */
.trust-wall-3col { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 900px) { .trust-wall-3col { grid-template-columns: 1fr !important; } }

.cert-stamp {
  background: linear-gradient(135deg, #eef4fb 0%, #dde8f5 100%);
  border: 1px solid #b9cde7 !important;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.stamp-circle {
  width: 64px; height: 64px;
  background: var(--blue-100, #e7eef7);
  border: 2px solid var(--blue, #1c4e80);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--blue, #1c4e80);
}
.stamp-circle svg { width: 30px; height: 30px; }
.stamp-label {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--blue-700, #143d66);
}

/* 자격증·매출 안내 라인 (placeholder 대체) */
.cred-extra {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(135deg, #f4f7fb 0%, #e8eff8 100%);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: 12px;
  padding: 22px 26px;
}
.cred-extra-item { flex: 1; min-width: 220px; padding: 6px 16px 6px 0; }
.cred-extra-divider {
  width: 1px;
  background: var(--gray-200);
  margin: 4px 16px 4px 0;
}
.cred-extra-tag {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--blue, #1c4e80);
  margin-bottom: 6px;
}
.cred-extra-text {
  color: var(--ink-2, #455161);
  font-size: 15.5px;
  line-height: 1.65;
}
.cred-extra-text strong { color: var(--blue-700, #143d66); font-weight: 800; }
@media (max-width: 768px) {
  .cred-extra { flex-direction: column; padding: 18px 20px; }
  .cred-extra-divider { width: auto; height: 1px; margin: 14px 0; }
  .cred-extra-item { padding: 0; }
}

/* ----- VOC (고객의 목소리) ----- */
.voc-section { background: #fff; }

.voc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.voc-stat-item {
  background: linear-gradient(135deg, var(--blue-100, #e7eef7) 0%, #f3f7fb 100%);
  border-radius: 12px;
  padding: 26px 24px;
  text-align: center;
  border: 1px solid #9aafc4;
  border-left: 5px solid var(--blue, #1c4e80);
  box-shadow: var(--shadow-card);
}
.voc-stat-item .voc-num {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--blue-700, #143d66);
  letter-spacing: -0.015em;
  line-height: 1;
}
.voc-stat-item .voc-lbl {
  display: block;
  margin-top: 8px;
  color: var(--gray-700);
  font-size: 14.5px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .voc-stats { grid-template-columns: 1fr; }
  .voc-grid { grid-template-columns: 1fr; }
}

.voc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voc-card {
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: 14px;
  padding: 28px 26px 24px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
}
.voc-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.voc-quote-mark {
  font-family: "Inter", serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 0.6;
  color: var(--blue, #1c4e80);
  opacity: 0.18;
  margin-bottom: 4px;
}
.voc-text {
  margin: 0 0 22px;
  color: var(--ink-2, #3d4a5c);
  font-size: 16px;
  line-height: 1.75;
  flex: 1;
}
.voc-meta { margin-top: auto; }
.voc-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--blue, #1c4e80);
  background: var(--blue-100);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.voc-author {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: -0.005em;
}
.voc-note {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .voc-grid { grid-template-columns: 1fr; }
}

/* ----- EXPERIENCE 6카드 (구체화) ----- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.exp-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 26px 24px 22px;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.exp-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.exp-icon {
  width: 48px; height: 48px;
  background: var(--blue-100);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.exp-icon svg { width: 24px; height: 24px; }
.exp-card h4 {
  margin: 0 0 10px;
  color: var(--blue-700, #143d66);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.005em;
}
.exp-card p {
  margin: 0 0 14px;
  color: var(--ink-2, #455161);
  font-size: 15.5px;
  line-height: 1.7;
  flex: 1;
}
.exp-meta {
  font-size: 13.5px;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: -0.005em;
  padding-top: 10px;
  border-top: 1px dashed var(--gray-200);
}
@media (max-width: 900px) { .exp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .exp-grid { grid-template-columns: 1fr; } }

/* ----- CTA 강화 (다채널 + 안심 라인) ----- */
.cta-promise {
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid #9bd0ff;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.65;
}
.cta-promise strong { color: #fff; font-weight: 800; }

/* ============================================================
   카드 시안성 일괄 강화 (경계감 / 그림자 통일)
   ============================================================ */
.form-card,
.faq-item,
.org,
.ms-strip-card,
.ms-card,
.tw-image,
.exp-card,
.cred-extra-item.card-style {
  border-color: var(--card-border) !important;
  box-shadow: var(--shadow-card);
}

/* ===== 서비스 지역 SVG 지도 ===== */
.region-map-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.region-svg { width: 100%; max-width: 340px; }
.region-city-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.region-city-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  background: #fff; border: 1px solid var(--card-border);
  border-radius: 10px; box-shadow: var(--shadow-card);
}
.region-city-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.region-city-name { font-size: 15.5px; font-weight: 700; color: var(--blue-700); min-width: 48px; }
.region-city-desc { font-size: 13.5px; color: var(--gray-700); margin-left: auto; }
.region-note {
  margin-top: 20px; padding: 14px 18px;
  background: var(--blue-100); border-radius: 8px;
  font-size: 14px; color: var(--blue-700); line-height: 1.6;
}
@media (max-width: 900px) {
  .region-map-layout { grid-template-columns: 1fr; gap: 32px; }
  .region-svg { max-width: 100%; }
}

/* ===== 프로세스 다이어그램 ===== */
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 20px 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 46px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--blue-100);
  z-index: 1;
}
.process-step:not(:last-child)::before {
  content: '›';
  position: absolute;
  top: 36px;
  right: -18px;
  font-size: 20px;
  color: var(--blue);
  z-index: 2;
  font-weight: 800;
  line-height: 1;
}
.process-num {
  font-family: "Inter", sans-serif;
  font-size: 11.5px; font-weight: 800;
  color: var(--blue); letter-spacing: .12em;
  margin-bottom: 14px;
}
.process-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(28,78,128,.25);
}
.process-title {
  font-size: 15.5px; font-weight: 700;
  color: var(--blue-700); margin-bottom: 10px; line-height: 1.4;
}
.process-desc {
  font-size: 13.5px; color: var(--gray-700); line-height: 1.75;
}
@media (max-width: 900px) {
  .process-flow { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .process-step:nth-child(2)::after,
  .process-step:nth-child(2)::before { display: none; }
}
@media (max-width: 600px) {
  .process-flow { grid-template-columns: 1fr; gap: 28px; }
  .process-step::after,
  .process-step::before { display: none; }
}

/* ===== SWITCH 카드 모바일 ===== */
@media (max-width: 768px) {
  .switch-card {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 22px 20px !important;
  }
  .switch-card-head {
    border-right: none !important;
    border-bottom: 1px solid #b8d0e8;
    padding-right: 0 !important;
    margin-right: 0 !important;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .switch-card-badges {
    flex-direction: column !important;
    gap: 10px !important;
    min-width: unset !important;
    flex: unset !important;
    width: 100%;
    margin-bottom: 16px;
  }
  .switch-card-badges span {
    display: block;
    text-align: center;
    padding: 12px 15px !important;
  }
  .switch-card-btn {
    margin-left: 0 !important;
    width: 100%;
    justify-content: center !important;
    box-sizing: border-box;
  }
}

/* ===== VOC 건물유형 태그 ===== */
.voc-type-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.voc-type-tag {
  font-size: 12px; font-weight: 700;
  padding: 3px 11px; border-radius: 999px;
  background: var(--blue-100); color: var(--blue-700);
  border: 1px solid #c5d8ed;
}
.voc-loc-tag {
  font-size: 12px; font-weight: 600;
  padding: 3px 11px; border-radius: 999px;
  background: #f0f4fa; color: var(--gray-700);
  border: 1px solid var(--card-border);
}

.process .step,
.project-list .item,
.cert-grid .item,
.faq-item,
.form-card,
.org {
  transition: border-color .2s, transform .2s;
}
.process .step:hover,
.project-list .item:hover,
.cert-grid .item:hover {
  border-color: var(--blue) !important;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

/* exp-tag 칩들도 보더감 살짝 보강 */
.exp-tag {
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: 0 1px 2px rgba(28, 78, 128, 0.04);
}

/* =====================================================
   모바일 최적화 보완 — 390px iPhone 기준
   ===================================================== */

/* ── 480px 이하 : 유틸바 숨김, 컨테이너 패딩 축소 ── */
@media (max-width: 480px) {
  .utilbar { display: none; }
  .container { padding: 0 16px; }

  /* 헤더 브랜드 */
  .brand-name { font-size: 19px; }
  .brand-name small { font-size: 11.5px; }
  .site-header .container { height: 60px; }
  nav.gnb { top: 60px; }

  /* 페이지 히어로 */
  .page-hero { padding: 24px 0 18px; }
  .page-hero h1 { font-size: 21px; margin-bottom: 8px; }
  .page-hero p { font-size: 15px; }
  .page-hero .crumb { font-size: 13px; }

  /* 섹션 공통 */
  section.block { padding: 36px 0; }
  .section-head { margin-bottom: 22px; }
  .section-head h2 { font-size: 22px; line-height: 1.35; }
  .section-head .label { font-size: 11.5px; letter-spacing: 0.15em; padding: 4px 10px; }
  .section-head p { font-size: 15px; line-height: 1.75; }

  /* 히어로 */
  .hero h1 { font-size: 28px !important; line-height: 1.35; }
  .hero p.lead { font-size: 15.5px !important; }
  .hero .actions { flex-direction: column; }
  .hero .actions .btn { width: 100%; justify-content: center; padding: 13px 20px; }
  .hero-region { margin-top: 20px !important; padding-top: 14px !important; }

  /* 히어로 통계 숫자 */
  .hs-num { font-size: 22px !important; }
  .hs-label { font-size: 12px !important; }

  /* 스탯 스트립 */
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .stats .num { font-size: 36px; }
  .stats .label { font-size: 14px; margin-top: 6px; }
  .stats .item { padding: 22px 12px; }

  /* 카드 패딩 축소 */
  .card { padding: 18px 16px; }
  .card h3 { font-size: 17px; }
  .card p { font-size: 15px; }
  .service-item { padding: 22px 18px; }
  .service-item h3 { font-size: 17px; }
  .strength { padding: 24px 20px; }
  .strength h3 { font-size: 18px; }
  .strength .num { font-size: 34px; top: 20px; right: 20px; }

  /* CTA 배너 */
  .cta { padding: 36px 0; }
  .cta h3 { font-size: 21px; }
  .cta p { font-size: 15px; }
  .cta .right { width: 100%; }
  .cta .btn-white { width: 100%; justify-content: center; padding: 14px 20px; font-size: 16px; }

  /* 테이블: 스택 레이아웃 (가로 스크롤 대신) */
  .tbl-wrap { overflow: visible; }
  .tbl { min-width: unset; display: block; }
  .tbl thead { display: none; }           /* 열 헤더 숨김 */
  .tbl tbody, .tbl tr { display: block; }
  .tbl tbody tr { border-bottom: 1px solid var(--gray-200); padding: 10px 0; }
  .tbl tbody tr:last-child { border-bottom: none; }
  .tbl tbody th {
    display: block; width: 100%;
    padding: 0 0 4px;
    font-size: 13px; font-weight: 800; color: var(--blue-700);
    background: none; border-bottom: none; white-space: normal;
  }
  .tbl tbody td {
    display: block; width: 100%;
    padding: 0 0 6px;
    font-size: 14.5px; border-bottom: none; color: var(--ink);
  }
  /* section-head label 줄바꿈 방지 */
  .section-head .label { white-space: nowrap; letter-spacing: 0.12em; }

  /* 폼 */
  .form-card { padding: 18px 14px; }
  .form-card input,
  .form-card select,
  .form-card textarea { font-size: 16px; padding: 11px 12px; }
  .form-card label { font-size: 14px; }
  .form-card button[type="submit"] { padding: 15px; font-size: 16px; letter-spacing: 0.02em; }
  .form-card textarea { min-height: 100px; }

  /* FAQ */
  .faq-item summary { padding: 14px 16px; font-size: 15px; }
  .faq-item .a { padding: 14px 16px; font-size: 15px; }

  /* 인증 그리드 */
  .cert-grid .item { padding: 16px 14px; }
  .cert-grid h4 { font-size: 15px; }
  .cert-grid p { font-size: 13.5px; }

  /* 프로젝트 */
  .project-list .item { padding: 16px 16px; gap: 12px; flex-wrap: wrap; }
  .project-list .item .date { margin-left: 0; }

  /* 서비스 지역 리스트 */
  .region-city-name { font-size: 14.5px; }
  .region-city-desc { font-size: 12.5px; }

  /* 조직도 */
  .org { padding: 28px 16px; overflow-x: auto; }
  .org .level { gap: 10px; }
  .org .node { min-width: 110px; padding: 10px 14px; font-size: 14.5px; }

  /* 푸터 */
  footer.site-footer { font-size: 14.5px; padding: 36px 0 20px; }
  footer.site-footer h5 { font-size: 14.5px; margin-bottom: 10px; }
  footer.site-footer .copy { font-size: 12.5px; flex-direction: column; gap: 4px; }
  footer.site-footer .brand-row { font-size: 16px; }
  footer.site-footer .info-line { font-size: 14px; }

  /* 플로팅 콜 버튼 */
  .float-call { bottom: 14px; right: 14px; padding: 10px 15px; font-size: 14px; gap: 7px; }
  .float-call svg { width: 16px; height: 16px; }

  /* 통계 chip (pain / ms-strip 카드 등) */
  .voc-stat-item { padding: 16px 14px !important; }
  .ms-strip-card { padding: 20px 16px !important; }

  /* 버튼 전반 */
  .btn { padding: 12px 20px; font-size: 15.5px; }
}

/* ── 360px 이하 : 극소형 기기 추가 보정 ── */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .section-head h2 { font-size: 20px; }
  .hero h1 { font-size: 25px !important; }
  .stats .num { font-size: 30px; }
  .hs-num { font-size: 20px !important; }
  .region-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .region-grid .pill { font-size: 16px; padding: 14px 6px; }
}

/* 데스크톱에서는 햄버거 메뉴 전용 큰 전화 CTA 숨김 (모바일에서만 노출) */
@media (min-width: 769px) {
  nav.gnb .menu-cta-li { display: none !important; }
}

