@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Noto+Sans+KR:wght@400;500;600;700&display=swap');

/* ============================================================
   BLC — 욕실하부장 설치교체 | style.css
   Primary #2F1A3A / Secondary #FAF7FD / Accent #00B4D8
   ============================================================ */

/* ── :root 변수 ─────────────────────────────────────────────── */
:root {
  --primary:        #2F1A3A;
  --primary-dark:   #1f0f26;
  --primary-light:  #4a2d5e;
  --secondary:      #FAF7FD;
  --accent:         #00B4D8;
  --accent-dark:    #0090b0;
  --white:          #ffffff;
  --off-white:      #fafafa;
  --gray-100:       #f5f5f5;
  --gray-200:       #e8e8e8;
  --gray-400:       #999;
  --gray-600:       #666;
  --gray-800:       #333;
  --text-dark:      #1a0f22;
  --text-body:      #3d3248;
  --text-light:     #7a6e85;
  --border:         rgba(0,0,0,.08);
  --shadow-sm:      0 1px 4px rgba(0,0,0,.06);
  --shadow:         0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:      0 8px 40px rgba(0,0,0,.12);
  --radius:         0px;
  --transition:     all .3s ease;
  --font-sans:      'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --font-display:   'Manrope', sans-serif;
  --max-w:          1120px;
  --pad-x:          clamp(1.25rem, 5vw, 2.5rem);
  --pad-section:    clamp(4rem, 10vw, 7rem);
}

/* ── 전역 리셋 ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ============================================================
   URGENCY BAR
   ============================================================ */
.blc-urgency {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--primary-dark);
  color: var(--white);
  padding: calc(.5rem + env(safe-area-inset-top, 0)) var(--pad-x) .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: .8rem;
  transform: translateY(-100%);
  transition: transform .4s ease;
}
.blc-urgency.is-visible { transform: none; display: flex !important; }
.blc-urgency__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: blink 1.5s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}
.blc-urgency__cta {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}
.blc-urgency__close {
  margin-left: auto;
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  line-height: 1;
  padding: 0 .25rem;
  cursor: pointer;
}

/* ============================================================
   HEADER
   ============================================================ */
.blc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s;
}
.blc-header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
.blc-header__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 로고 브랜드 */
.blc-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  transition: color .3s;
  line-height: 1;
  text-decoration: none;
}
.blc-header.scrolled .blc-brand { color: var(--primary); }
.blc-brand__text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.blc-brand small {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .05em;
  opacity: .75;
  font-family: var(--font-sans);
}

/* 로고 SVG */
.blc-logo-svg {
  width: 44px;
  height: 30px;
  flex-shrink: 0;
}
.blc-logo-svg path,
.blc-logo-svg rect,
.blc-logo-svg ellipse,
.blc-logo-svg line,
.blc-logo-svg circle {
  stroke: var(--white);
  transition: stroke .3s;
}
.blc-header.scrolled .blc-logo-svg path,
.blc-header.scrolled .blc-logo-svg rect,
.blc-header.scrolled .blc-logo-svg ellipse,
.blc-header.scrolled .blc-logo-svg line,
.blc-header.scrolled .blc-logo-svg circle { stroke: var(--primary); }

/* nav 영역 */
.blc-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.blc-nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .2s;
  white-space: nowrap;
}
.blc-nav__link:hover { color: var(--white); }
.blc-header.scrolled .blc-nav__link { color: var(--text-body); }
.blc-header.scrolled .blc-nav__link:hover { color: var(--primary); }

/* 헤더 CTA 버튼 */
.blc-header__cta {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1.25rem;
  background: var(--accent);
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .2s;
  border: none;
  white-space: nowrap;
}
.blc-header__cta:hover { background: var(--accent-dark); }

/* 햄버거 버튼 */
.blc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
}
.blc-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: background .3s, transform .3s, opacity .3s;
}
.blc-header.scrolled .blc-hamburger span { background: var(--primary); }
.blc-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.blc-hamburger.is-open span:nth-child(2) { opacity: 0; }
.blc-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 드로어 */
#blc-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#blc-mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
#blc-mobile-drawer a {
  color: var(--white);
  font-size: clamp(1.25rem, 5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: .05em;
  transition: opacity .2s;
}
#blc-mobile-drawer a:hover { opacity: .75; }

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

/* ============================================================
   HERO
   ============================================================ */
.blc-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* 슬라이드 컨테이너 */
.blc-slides {
  position: absolute;
  inset: 0;
}
.blc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.blc-slide.is-active { opacity: 1; }
.blc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Ken Burns 줌아웃 효과 */
@keyframes kb {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.blc-slide.is-active img {
  animation: kb 7s linear forwards;
}

/* 그라디언트 오버레이 */
.blc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.52) 0%,
    rgba(0,0,0,.28) 50%,
    rgba(0,0,0,.68) 100%
  );
}

/* 히어로 텍스트 블록 */
.blc-hero__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(6rem,15vw,9rem) var(--pad-x) clamp(5rem,12vw,7rem);
  color: var(--white);
}
.blc-hero__eyebrow {
  display: block;
  font-size: clamp(.7rem, 1.5vw, .8rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .8;
  margin-bottom: 1.25rem;
}
.blc-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.blc-hero__h1 em {
  font-style: normal;
  color: var(--accent);
}
.blc-hero__sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  line-height: 1.7;
  opacity: .9;
  max-width: 540px;
  margin-bottom: .75rem;
}
.blc-hero__notice {
  font-size: clamp(.8rem, 1.5vw, .9rem);
  opacity: .7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.6;
}
/* 구분선 */
.blc-hero__divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 2rem;
}
/* CTA 묶음 */
.blc-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.blc-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 2;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.blc-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.4);
  animation: scroll-line 2s ease infinite;
}

/* Hero dots */
.blc-hero__dots {
  position: absolute;
  bottom: 2.5rem;
  right: var(--pad-x);
  display: flex;
  gap: .5rem;
  z-index: 2;
}
.blc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.blc-dot.is-active {
  background: var(--white);
  transform: scale(1.4);
}

/* ============================================================
   BUTTONS (.blc-cta)
   ============================================================ */
.blc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(.75rem,2vw,1rem) clamp(1.5rem,4vw,2.25rem);
  font-size: clamp(.875rem,1.5vw,1rem);
  font-weight: 700;
  letter-spacing: .03em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.blc-cta--primary {
  background: var(--accent);
  color: var(--white);
}
.blc-cta--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.blc-cta--outline {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  background: transparent;
}
.blc-cta--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}
.blc-cta--dark {
  background: var(--primary);
  color: var(--white);
}
.blc-cta--dark:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.blc-cta--ghost {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.blc-cta--ghost:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================================
   섹션 공통
   ============================================================ */
.blc-section {
  padding: var(--pad-section) var(--pad-x);
}
.blc-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* eyebrow 라벨 */
.blc-eyebrow {
  display: block;
  font-size: clamp(.65rem, 1.2vw, .75rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .75rem;
}
.blc-eyebrow--center { text-align: center; }

/* 섹션 헤딩 */
.blc-section-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.blc-section-h2--center { text-align: center; }
.blc-section-h2--white  { color: var(--white); }

.blc-section-lead {
  margin-top: .75rem;
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.75;
}
.blc-section-lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.blc-section-lead--white { color: rgba(255,255,255,.75); }

.blc-section-head { margin-bottom: clamp(2.5rem, 6vw, 4rem); }

/* 배경 변주 */
.blc-section--gray  { background: var(--gray-100); }
.blc-section--dark  { background: var(--primary); color: var(--white); }
.blc-section--cream { background: var(--secondary); }

/* ============================================================
   MARQUEE (자동 가로 스크롤 시공사례)
   ============================================================ */
.blc-marquee {
  overflow: hidden;
  padding: 0;
  background: var(--gray-100);
}
.blc-marquee__track {
  display: flex;
  gap: .75rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.blc-marquee__track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.blc-marquee__item {
  flex-shrink: 0;
  width: clamp(240px, 28vw, 360px);
  overflow: hidden;
  display: block;
  position: relative;
}
.blc-marquee__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .4s ease;
}
.blc-marquee__item:hover img { transform: scale(1.04); }
.blc-marquee__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(47,26,58,.72);
  color: var(--white);
  font-size: .75rem;
  padding: .4rem .75rem;
  backdrop-filter: blur(4px);
}

/* ============================================================
   INTRO (2컬럼: 텍스트 좌 + 이미지 우)
   ============================================================ */
.blc-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}
.blc-intro__copy { max-width: 520px; }
.blc-intro__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.blc-intro__ko {
  display: block;
  color: var(--text-dark);
}
.blc-intro__en {
  display: block;
  color: var(--text-light);
  font-size: .65em;
  letter-spacing: .12em;
  opacity: .45;
  font-weight: 400;
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-top: .4em;
}
.blc-intro__body {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 2rem;
}
.blc-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.blc-intro__tag {
  display: inline-block;
  padding: .3rem .85rem;
  border: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-light);
  background: var(--secondary);
}
.blc-intro__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.blc-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.blc-intro__media:hover img { transform: scale(1.03); }
.blc-intro__badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1rem;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: .8rem;
  line-height: 1.5;
  min-width: 140px;
}
.blc-intro__badge strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--accent);
  line-height: 1;
}

@media (max-width: 768px) {
  .blc-intro__grid { grid-template-columns: 1fr; }
  .blc-intro__media { aspect-ratio: 16/9; order: -1; }
  .blc-intro__copy { max-width: none; }
  .blc-intro__badge { left: 1rem; }
}

/* ============================================================
   SERVICES LIST (번호 01~05)
   ============================================================ */
.blc-svc-list { list-style: none; }
.blc-svc-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}
.blc-svc-item:first-child { border-top: 1px solid var(--border); }
.blc-svc-item:hover { padding-left: .5rem; }
.blc-svc-num {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  transition: color .3s;
}
.blc-svc-item:hover .blc-svc-num { color: var(--accent); }
.blc-svc-body {}
.blc-svc-name {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--text-dark);
}
.blc-svc-desc {
  font-size: .875rem;
  color: var(--text-light);
  margin-top: .25rem;
  line-height: 1.5;
}
.blc-svc-arrow {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
  flex-shrink: 0;
  text-decoration: none;
}
.blc-svc-item:hover .blc-svc-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
@media (max-width: 560px) {
  .blc-svc-item { grid-template-columns: 2.5rem 1fr; }
  .blc-svc-arrow { display: none; }
}

/* ============================================================
   STATS (신뢰 지표)
   ============================================================ */
.blc-stats { background: var(--primary); }
.blc-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  color: var(--white);
}
@media (max-width: 768px) {
  .blc-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .blc-stats__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.blc-stat-val {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}
.blc-stat-unit {
  font-size: .75em;
  opacity: .8;
}
.blc-stat-label {
  font-size: clamp(.8rem, 1.5vw, .9rem);
  opacity: .75;
  margin-top: .5rem;
  line-height: 1.4;
}

/* ============================================================
   BEFORE/AFTER 시공사례 그리드 (.blc-ba)
   ============================================================ */
.blc-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
}
.blc-case-card {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}
.blc-case-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.blc-case-ba__item {
  position: relative;
  overflow: hidden;
}
.blc-case-ba__item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform .5s ease;
}
.blc-case-card:hover .blc-case-ba__item img { transform: scale(1.04); }
.blc-case-label {
  position: absolute;
  top: .5rem;
  left: .5rem;
  background: rgba(0,0,0,.65);
  color: var(--white);
  font-size: .7rem;
  padding: .2rem .5rem;
  letter-spacing: .1em;
  backdrop-filter: blur(4px);
}
.blc-case-footer {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.blc-case-info {}
.blc-case-title {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
}
.blc-case-cat {
  font-size: .75rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: .1rem;
}
.blc-case-link {
  font-size: .8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
  transition: color .2s;
}
.blc-case-link:hover { color: var(--primary); }

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

/* ============================================================
   FAQ — details/summary 네이티브 아코디언
   ============================================================ */
.blc-faq-list {}
.blc-faq-list details {
  border-bottom: 1px solid var(--border);
}
.blc-faq-list details:first-child { border-top: 1px solid var(--border); }
.blc-faq-list summary {
  padding: 1.4rem 0;
  font-weight: 600;
  font-size: clamp(.9rem, 1.5vw, 1rem);
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
  user-select: none;
}
.blc-faq-list summary::-webkit-details-marker { display: none; }
.blc-faq-list summary::marker { display: none; }
.blc-faq-list summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.blc-faq-list details[open] summary::after { transform: rotate(45deg); }
.blc-faq-list details[open] summary { color: var(--primary); }
.blc-faq-ans {
  padding: 0 0 1.4rem;
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 680px;
}

/* ============================================================
   CTA 배너 (풀-와이드 배경이미지)
   ============================================================ */
.blc-cta-banner {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 40vw, 520px);
  display: flex;
  align-items: center;
  background: var(--primary-dark);
}
.blc-cta-banner__bg {
  position: absolute;
  inset: 0;
}
.blc-cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45);
}
.blc-cta-banner__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-x);
  color: var(--white);
}
.blc-cta-banner__eyebrow {
  display: block;
  font-size: clamp(.65rem, 1.2vw, .75rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .75rem;
}
.blc-cta-banner__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.blc-cta-banner__sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  opacity: .85;
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}
.blc-cta-banner__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   지역 페이지 그리드 (.blc-regions)
   ============================================================ */
.blc-regions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}
.blc-region-card {
  display: block;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
  text-decoration: none;
}
.blc-region-card:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   모바일 하단 바 (#blc-mobile-bar)
   ============================================================ */
#blc-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--primary);
  padding: .75rem var(--pad-x);
}
#blc-mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  background: var(--accent);
  padding: .9rem;
  text-align: center;
  transition: background .2s;
}
#blc-mobile-bar a:hover { background: var(--accent-dark); }
@media (max-width: 768px) { #blc-mobile-bar { display: block; } }

/* ============================================================
   프로세스 스텝 (.blc-process)
   ============================================================ */
.blc-proc-list {
  list-style: none;
  counter-reset: proc;
}
.blc-proc-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-left: 2px solid var(--border);
  margin-left: 1.25rem;
  padding-left: 1.75rem;
  position: relative;
  counter-increment: proc;
}
.blc-proc-item::before {
  content: counter(proc, decimal-leading-zero);
  position: absolute;
  left: -1.25rem;
  top: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blc-proc-item:last-child { border-left-color: transparent; }
.blc-proc-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .3rem;
}
.blc-proc-desc {
  font-size: .9rem;
  color: var(--text-light);
}

/* ============================================================
   서비스 페이지 전용 카드
   ============================================================ */
/* feat-cards: 3열 */
.feat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .feat-cards { grid-template-columns: 1fr; } }
.feat-card {
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
  background: var(--secondary);
}
.feat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.feat-head {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: .5rem 0 .3rem;
}
.feat-body { font-size: .9rem; color: var(--text-light); }

/* symp-cards */
.symp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.symp-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid var(--border);
  padding: 1.25rem;
  background: var(--white);
}
.symp-card .num {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* method-cards */
.method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.method-card {
  padding: 2rem;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.method-card.featured { border-color: var(--primary); }
.method-card:hover { border-color: var(--accent); }
.pros, .cons { list-style: none; margin: .75rem 0; }
.pros li::before {
  content: '+';
  color: var(--accent);
  font-weight: 700;
  margin-right: .5rem;
}
.cons li::before {
  content: '-';
  color: var(--text-light);
  margin-right: .5rem;
}

/* svc-gallery */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
@media (max-width: 640px) { .svc-gallery { grid-template-columns: 1fr; } }
.svc-img { position: relative; overflow: hidden; }
.svc-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.svc-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-size: .8rem;
  padding: .5rem .75rem;
}

/* ============================================================
   REVEAL 애니메이션
   ============================================================ */
.blc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.blc-reveal.is-in {
  opacity: 1;
  transform: none;
}
.blc-reveal[data-delay="1"] { transition-delay: .1s; }
.blc-reveal[data-delay="2"] { transition-delay: .2s; }
.blc-reveal[data-delay="3"] { transition-delay: .3s; }
.blc-reveal[data-delay="4"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .blc-reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Before/After 비교 (portfolio-detail)
   ============================================================ */
.pd-hero img { width: 100%; max-height: 580px; object-fit: cover; }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
@media (max-width: 640px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-item { position: relative; overflow: hidden; }
.ba-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ba-label {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: rgba(47,26,58,.75);
  color: var(--white);
  font-size: .75rem;
  padding: .25rem .6rem;
  backdrop-filter: blur(4px);
}
.pd-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 640px) { .pd-meta-grid { grid-template-columns: repeat(2, 1fr); } }
.pd-meta-item {
  background: var(--secondary);
  padding: 1.25rem;
  text-align: center;
}
.pd-meta-label {
  font-size: .7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.pd-meta-val {
  font-weight: 700;
  color: var(--text-dark);
  margin-top: .25rem;
}

/* ============================================================
   404
   ============================================================ */
.err-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 1rem;
}
.err-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--gray-200);
  line-height: 1;
  font-weight: 800;
}
.err-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.blc-footer {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  padding: clamp(3rem,8vw,5rem) var(--pad-x) clamp(2rem,5vw,3rem);
}
.blc-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.blc-footer__brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 2rem;
}
.blc-footer__brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}
.blc-footer__brand-tag {
  font-size: .7rem;
  opacity: .6;
  display: block;
  margin-top: .1rem;
}
.blc-footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.blc-footer__nav a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color .2s;
}
.blc-footer__nav a:hover { color: var(--white); }
.blc-footer__biz {
  font-size: .8rem;
  line-height: 2;
  opacity: .6;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.blc-footer__copy {
  font-size: .75rem;
  opacity: .4;
  margin-top: 1.5rem;
}

/* ============================================================
   유틸리티
   ============================================================ */
/* kicker (서비스 페이지 legacy) */
.kicker {
  display: block;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
  font-weight: 700;
}

/* Back to top */
#back-top {
  position: fixed;
  bottom: clamp(5rem,12vw,7rem);
  right: 1.5rem;
  z-index: 800;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
#back-top.show { display: flex; }
#back-top:hover { background: var(--primary-dark); }

/* Floating CTA (데스크탑 전용) */
.floating-cta {
  position: fixed;
  bottom: clamp(5rem,12vw,7rem);
  right: 1.5rem;
  z-index: 800;
  display: none;
}
@media (min-width: 769px) { .floating-cta { display: block; } }
.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  animation: pulse-ring 2s ease infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(0,180,216,.4); }
  70%  { box-shadow: 0 0 0 12px rgba(0,180,216,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,180,216,0); }
}

/* 상담 카드 */
.consult-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.consult-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 1.5rem;
  border: 1.5px solid var(--border);
  background: var(--white);
  text-align: center;
  transition: var(--transition);
}
.consult-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.consult-card__icon {
  width: 3rem;
  height: 3rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.consult-card__label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
}
.consult-card__value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* 공통 table */
.blc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.blc-table th,
.blc-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.blc-table th {
  font-weight: 700;
  color: var(--text-dark);
  background: var(--secondary);
  width: 30%;
}
.blc-table td { color: var(--text-body); }

/* 구분선 유틸 */
.blc-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ============================================================
   반응형 @media
   ============================================================ */
@media (max-width: 1024px) {
  .blc-hamburger { display: flex; }
  .blc-nav { display: none; }
}

@media (max-width: 768px) {
  .blc-stats__grid  { grid-template-columns: repeat(2, 1fr); }
  .blc-cases-grid   { grid-template-columns: 1fr; }
  .blc-intro__grid  { grid-template-columns: 1fr; }
  .blc-regions__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .blc-hero__actions        { flex-direction: column; }
  .blc-cta-banner__actions  { flex-direction: column; }
  .blc-footer__nav          { gap: 1rem; }
  #back-top                 { right: 1rem; bottom: 4.5rem; }
  .floating-cta             { right: 1rem; bottom: 4.5rem; }
}

@media (max-width: 400px) {
  .blc-regions__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   패럴랙스 기반 요소 (JS와 협력)
   ============================================================ */
[data-parallax] { will-change: transform; }

/* ============================================================
   SERVICE PAGE — ns.standardhaengjipsa.com 패턴
   ============================================================ */
.ns-container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
}

/* 페이지 Hero */
.ns-page-hero {
  position: relative; min-height: 70svh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.ns-page-hero__media { position: absolute; inset: 0; }
.ns-page-hero__media img { width:100%; height:100%; object-fit:cover; }
.ns-page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.3) 70%);
}
.ns-page-hero__inner {
  position: relative; z-index: 2;
  padding-top: clamp(5rem,12vw,8rem);
  padding-bottom: clamp(3rem,8vw,5rem);
  color: var(--white); width: 100%;
}
.ns-page-hero__eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .75rem; display: block;
}
.ns-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem,6vw,3.5rem); font-weight: 800;
  color: var(--white); line-height: 1.15; margin-bottom: 1rem;
}
.ns-page-hero__sub {
  font-size: clamp(.9rem,1.5vw,1.05rem); line-height: 1.75;
  opacity: .85; max-width: 560px; margin-bottom: 2rem;
}

/* Breadcrumb */
.ns-breadcrumb ol {
  display: flex; gap: .5rem; align-items: center;
  list-style: none; font-size: .75rem;
  opacity: .65; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.ns-breadcrumb li + li::before { content: '/'; margin-right: .5rem; }
.ns-breadcrumb a { color: var(--white); }

/* 버튼 */
.ns-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: clamp(.875rem,1.5vw,1rem);
  padding: clamp(.75rem,2vw,1rem) clamp(1.5rem,3vw,2rem);
  transition: var(--transition); white-space: nowrap;
}
.ns-btn--primary {
  background: var(--accent); color: var(--white);
}
.ns-btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.ns-btn--ghost {
  border: 2px solid rgba(255,255,255,.7); color: var(--white);
}
.ns-btn--ghost:hover { background: rgba(255,255,255,.1); }
.ns-arrow { font-style: normal; }

/* 섹션 공통 head */
.ns-section__head { margin-bottom: clamp(2rem,5vw,3rem); }
.ns-section__eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .75rem; display: block;
}
.ns-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,4vw,2.5rem); font-weight: 800;
  color: var(--text-dark); line-height: 1.25;
}
.ns-section__sub {
  margin-top: .75rem; font-size: clamp(.9rem,1.5vw,1rem);
  color: var(--text-light);
}

/* Feature cards */
.ns-feature__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px;
  background: var(--border);
}
@media(max-width:768px){ .ns-feature__grid { grid-template-columns: 1fr; } }
.ns-feature__card {
  background: var(--white); padding: clamp(1.5rem,4vw,2.5rem);
  transition: var(--transition);
}
.ns-feature__card:hover { background: var(--secondary); }
.ns-feature__num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--gray-200); line-height: 1; margin-bottom: 1rem;
  transition: color .3s;
}
.ns-feature__card:hover .ns-feature__num { color: var(--accent); }
.ns-feature__title {
  font-size: 1.05rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: .6rem;
}
.ns-feature__desc { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* Symptom cards */
.ns-symptoms__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1px;
  background: var(--border); margin-bottom: 2.5rem;
}
.ns-symptom-card {
  background: var(--white); padding: 1.5rem;
  transition: var(--transition); position: relative;
}
.ns-symptom-card:hover { background: var(--secondary); }
.ns-symptom-card__num {
  font-family: var(--font-display); font-size: .75rem; font-weight: 800;
  color: var(--accent); letter-spacing: .1em; margin-bottom: .75rem; display: block;
}
.ns-symptom-card__title { font-weight: 700; color: var(--text-dark); margin-bottom: .4rem; }
.ns-symptom-card__desc { font-size: .875rem; color: var(--text-light); line-height: 1.65; }
.ns-symptoms__note { text-align: center; margin-top: 2rem; }

/* Process steps */
.ns-svc-process__steps {
  list-style: none; max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.ns-svc-process__step {
  display: flex; gap: 1.75rem; align-items: flex-start;
  padding: 1.75rem 0; border-bottom: 1px solid var(--border);
}
.ns-svc-process__step:last-child { border-bottom: none; }
.ns-svc-process__num {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
  color: var(--primary); flex-shrink: 0; width: 2rem; line-height: 1.4;
}
.ns-svc-process__title { font-weight: 700; color: var(--text-dark); margin-bottom: .35rem; }
.ns-svc-process__desc { font-size: .9rem; color: var(--text-light); line-height: 1.65; }

/* Method cards */
.ns-methods__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1px;
  background: var(--border);
}
.ns-method-card {
  background: var(--white); display: flex; flex-direction: column;
  transition: var(--transition);
}
.ns-method-card--featured { background: var(--secondary); }
.ns-method-card__head {
  padding: 1.5rem 1.5rem 1rem; border-bottom: 1px solid var(--border);
}
.ns-method-card__tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .5rem;
}
.ns-method-card__name {
  font-size: 1.05rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: .3rem;
}
.ns-method-card__life { font-size: .8rem; color: var(--text-light); }
.ns-method-card__body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); flex: 1;
}
.ns-method-card__col {
  background: var(--white); padding: 1.25rem;
}
.ns-method-card--featured .ns-method-card__col { background: var(--secondary); }
.ns-method-card__col strong {
  display: block; font-size: .7rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-light); margin-bottom: .6rem;
}
.ns-method-card__col--pros strong { color: var(--accent); }
.ns-method-card__col ul { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.ns-method-card__col--pros li::before { content: '+'; color: var(--accent); font-weight: 700; margin-right: .4rem; }
.ns-method-card__col--cons li::before { content: '–'; color: var(--text-light); margin-right: .4rem; }
.ns-method-card__col li { font-size: .85rem; color: var(--text-body); }

/* 갤러리 스트립 */
.ns-strip { background: var(--gray-800); position: relative; }
.ns-strip__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  position: relative;
}
@media(max-width:640px){ .ns-strip__grid { grid-template-columns: 1fr; } }
.ns-strip__item { overflow: hidden; margin: 0; }
.ns-strip__item img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .5s ease;
}
.ns-strip__item:hover img { transform: scale(1.04); }
.ns-strip__cta-overlay {
  position: absolute; bottom: 1.5rem; right: var(--pad-x);
  z-index: 2;
}

/* FAQ details/summary */
.blc-faq-list details {
  border-bottom: 1px solid var(--border);
}
.blc-faq-list details + details { }
.blc-faq-list summary {
  padding: 1.1rem 0; font-weight: 600; color: var(--text-dark);
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem;
}
.blc-faq-list summary::-webkit-details-marker { display: none; }
.blc-faq-list summary::after {
  content: '+'; font-size: 1.2rem; color: var(--accent);
  flex-shrink: 0; transition: transform .3s;
}
.blc-faq-list details[open] summary::after { content: '–'; }
.blc-faq-ans {
  padding: 0 0 1.25rem; font-size: .9rem; color: var(--text-light);
  line-height: 1.75;
}

/* 연관 서비스 */
.ns-related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1px;
  background: var(--border); margin-bottom: 3rem;
}
.ns-related-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: var(--white);
  font-weight: 600; font-size: .9rem; color: var(--text-dark);
  transition: var(--transition); gap: 1rem;
}
.ns-related-card:hover { background: var(--primary); color: var(--white); }
.ns-related-card__title { flex: 1; }

/* CTA 밴드 */
.ns-cta-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  padding: 2rem 2.5rem; background: var(--primary); color: var(--white);
}
.ns-cta-band__text { font-size: clamp(1rem,2vw,1.2rem); font-weight: 600; }

/* section--sand (서비스 페이지 공통) */
.section--sand { background: var(--secondary); }

/* ============================================================
   CASE DETAIL — portfolio-detail.php
   ============================================================ */
.case-hero {
  position: relative; min-height: 70svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.case-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.case-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 60%);
}
.case-hero__body {
  position: relative; z-index: 2;
  width: 100%;
  padding: clamp(2rem,6vw,4rem) var(--pad-x);
  color: var(--white);
}
.case-hero__tag {
  display: inline-block; background: var(--accent);
  color: var(--white); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .75rem; margin-bottom: 1rem;
}
.case-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 1rem; line-height: 1.2;
}
.case-hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  font-size: .85rem; opacity: .85;
}
.case-hero__meta-item strong { margin-right: .4rem; color: var(--white); opacity: .6; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }

/* Stats strip */
.case-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--primary);
}
.case-stat {
  padding: clamp(1.5rem,4vw,2.5rem) var(--pad-x);
  text-align: center; color: var(--white);
  border-right: 1px solid rgba(255,255,255,.12);
}
.case-stat:last-child { border-right: none; }
.case-stat__val {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem); font-weight: 800;
  color: var(--accent); margin-bottom: .35rem;
}
.case-stat__label { font-size: .8rem; opacity: .7; }

/* 배경 섹션 (sand) */
.section--sand { background: var(--secondary); }
.case-bg-section {
  max-width: 760px;
}

/* Before/After */
.case-ba {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--gray-800, #1a1a1a);
}
@media(max-width:640px){ .case-ba { grid-template-columns: 1fr; } }
.case-ba__item {
  position: relative; background: var(--gray-100, #f5f5f5);
}
.case-ba__item img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
}
.case-ba__label {
  position: absolute; top: 1rem; left: 1rem;
  font-size: .7rem; font-weight: 800; letter-spacing: .2em;
  padding: .3rem .75rem; text-transform: uppercase;
}
.case-ba__label--before { background: rgba(0,0,0,.75); color: var(--white); }
.case-ba__label--after  { background: var(--accent); color: var(--white); }
.case-ba__desc {
  padding: 1.25rem 1.5rem;
}
.case-ba__desc-title {
  font-weight: 700; font-size: .9rem; color: var(--text-dark);
  margin-bottom: .75rem;
}
.case-ba__desc-points {
  list-style: none; display: flex; flex-direction: column; gap: .4rem;
  padding: 0; margin: 0;
}
.case-ba__desc-points li {
  font-size: .85rem; color: var(--text-light);
  padding-left: 1rem; position: relative;
}
.case-ba__desc-points li::before {
  content: '—'; position: absolute; left: 0; color: var(--accent); font-size: .75rem;
}

/* Timeline */
.case-timeline { max-width: 760px; margin: 0 auto; }
.case-timeline__item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.case-timeline__num {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 800; color: var(--gray-200, #e5e5e5);
  line-height: 1; flex-shrink: 0; width: 2.5rem;
}
.case-timeline__title { font-weight: 700; color: var(--text-dark); margin: 0; }
.case-timeline__desc { font-size: .875rem; color: var(--text-light); margin-top: .25rem; }

/* Review */
.case-review {
  max-width: 680px; margin: 0 auto; text-align: center;
  padding: 2rem 0;
}
.case-review__stars {
  color: #F5A623; font-size: 1.25rem; letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.case-review__text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.85; color: var(--text-dark);
  font-style: normal; margin-bottom: 1.75rem;
  quotes: none;
}
.case-review__meta {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.case-review__avatar {
  width: 2.5rem; height: 2.5rem;
  background: var(--primary); color: var(--white);
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.case-review__name { font-weight: 700; font-size: .9rem; margin: 0; }
.case-review__loc  { font-size: .8rem; color: var(--text-light); margin: 0; }

/* Info grid */
.case-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
  margin: 0;
}
@media(max-width:640px){ .case-info-grid { grid-template-columns: repeat(2,1fr); } }
.case-info-cell {
  background: var(--white); padding: 1.25rem 1.5rem;
}
.case-info-cell dt {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-light); margin-bottom: .35rem;
}
.case-info-cell dd { font-weight: 700; color: var(--text-dark); margin: 0; }

/* 이전/다음 네비 */
.case-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.case-nav__btn {
  font-size: .875rem; color: var(--text-light);
  border: 1px solid var(--border); padding: .6rem 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.case-nav__btn:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================================
   GUIDE PAGE — jsc.standardhomerepair.com 패턴
   ============================================================ */

/* 스크롤 진행 바 */
#scroll-progress {
  position: fixed; top: 64px; left: 0; z-index: 999;
  height: 3px; background: var(--accent);
  width: 0%; transition: width .1s linear;
}

/* Guide Hero */
.guide-hero {
  background: var(--primary);
  color: var(--white);
  padding: clamp(5rem,12vw,8rem) var(--pad-x) clamp(3rem,8vw,5rem);
}
.guide-hero-inner {
  max-width: 760px; margin: 0 auto;
}
.guide-hero-badge {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(255,255,255,.12); color: var(--accent);
  padding: .35rem .85rem; margin-bottom: 1.25rem;
}
.guide-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 1rem;
}
.guide-hero-desc {
  font-size: clamp(.95rem, 1.5vw, 1.1rem); line-height: 1.75;
  opacity: .85; margin-bottom: 1.5rem;
}
.guide-hero-meta {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem;
  font-size: .8rem; opacity: .65;
}
.guide-hero-meta span {
  background: rgba(255,255,255,.1); padding: .25rem .6rem;
}

/* AEO 답변 박스 */
.answer-box {
  background: rgba(255,255,255,.08);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem; margin-top: 1.5rem;
}
.answer-box-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .6rem;
}
.answer-box p {
  font-size: .95rem; line-height: 1.75; opacity: .9;
}

/* 2컬럼 레이아웃 */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--pad-section) var(--pad-x);
  align-items: flex-start;
}
@media(max-width:1024px){
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { display: none; }
}

/* 본문 */
.guide-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800;
  color: var(--text-dark); margin: 0 0 1rem; line-height: 1.3;
}
.guide-content h3 {
  font-size: clamp(1rem,2vw,1.2rem); font-weight: 700;
  color: var(--text-dark); margin: 2rem 0 .75rem;
}
.guide-content p { margin-bottom: 1rem; line-height: 1.85; }
.guide-content strong { color: var(--text-dark); }

/* 섹션 */
.guide-section {
  padding: clamp(2.5rem,6vw,4rem) 0;
  border-bottom: 1px solid var(--border);
}
.guide-section:last-child { border-bottom: none; }
.guide-section-eyebrow {
  font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .6rem; display: block;
}

/* 사이드바 */
.guide-sidebar {
  position: sticky; top: 80px;
}
.guide-toc {
  border: 1px solid var(--border); padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.guide-toc__title {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; color: var(--text-light); margin-bottom: 1rem;
}
.guide-toc__list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.guide-toc__list a {
  font-size: .85rem; color: var(--text-light);
  transition: color .2s; display: block;
}
.guide-toc__list a:hover, .guide-toc__list a.is-active { color: var(--primary); font-weight: 600; }
.guide-sidebar-cta {
  background: var(--primary); padding: 1.5rem; text-align: center; color: var(--white);
}
.guide-sidebar-cta p { font-size: .875rem; margin-bottom: 1rem; opacity: .8; }

/* Key Facts */
.key-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 1px;
  background: var(--border); margin: 1.5rem 0;
}
.key-fact {
  background: var(--secondary); padding: 1.25rem; text-align: center;
}
.key-fact-num {
  font-family: var(--font-display); font-size: clamp(1.4rem,3vw,2rem); font-weight: 800;
  color: var(--primary); line-height: 1; margin-bottom: .4rem;
}
.key-fact-label { font-size: .8rem; color: var(--text-light); line-height: 1.4; }

/* 콜아웃 박스 */
.guide-callout {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
  border-left: 3px solid var(--accent); background: rgba(0,180,216,.06);
}
.guide-callout.info { border-color: var(--accent); background: rgba(0,180,216,.06); }
.guide-callout.warn { border-color: #e65c00; background: rgba(230,92,0,.06); }
.guide-callout-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.guide-callout-body { font-size: .9rem; line-height: 1.7; color: var(--text-body); }

/* 가이드 테이블 */
.guide-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.guide-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.guide-table th {
  background: var(--primary); color: var(--white);
  padding: .75rem 1rem; text-align: left; font-size: .8rem;
  font-weight: 600; letter-spacing: .05em;
}
.guide-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); }
.guide-table tr:hover td { background: var(--secondary); }
.td-label { font-weight: 600; color: var(--text-dark); }

/* 가이드 스텝 */
.guide-steps { display: flex; flex-direction: column; gap: 0; margin: 1.5rem 0; }
.guide-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
}
.guide-step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.guide-step-dot {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: var(--primary); color: var(--white);
  font-family: var(--font-display); font-size: .8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.guide-step-line { width: 2px; flex: 1; background: var(--border); margin: .4rem 0; min-height: 1.5rem; }
.guide-step:last-child .guide-step-line { display: none; }
.guide-step-body { padding-top: .25rem; }
.guide-step-num {
  font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .3rem;
}
.guide-step-title { font-weight: 700; color: var(--text-dark); margin-bottom: .35rem; }

/* Coverage grid */
.coverage-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1px;
  background: var(--border); margin: 1.5rem 0;
}
.coverage-item {
  background: var(--white); padding: .85rem 1rem;
  font-size: .875rem; color: var(--text-body);
  display: flex; align-items: flex-start; gap: .5rem;
}
.coverage-item::before { content: '✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; }

/* Amount banner */
.amount-banner {
  background: var(--primary); color: var(--white);
  padding: 2rem; margin: 1.5rem 0;
}
.amount-banner-grid {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.amount-banner-figure {
  font-family: var(--font-display); font-size: clamp(1.5rem,4vw,2.5rem); font-weight: 800; color: var(--accent);
  margin: .5rem 0;
}
.amount-banner-sub { font-size: .85rem; opacity: .75; }
.amount-banner-cta a {
  display: inline-block; background: var(--accent); color: var(--white);
  padding: .75rem 1.5rem; font-weight: 700; white-space: nowrap;
  transition: var(--transition);
}
.amount-banner-cta small { display: block; font-size: .75rem; opacity: .65; text-align: center; margin-top: .4rem; }

/* ============================================================
   모바일 최적화 & 반응형 보완 (2025-06)
   ============================================================ */

/* ── 모바일 바 공간 확보 ─────────────────────────────────────── */
@media (max-width: 768px) {
  body { padding-bottom: env(safe-area-inset-bottom, 0); }
  /* 모바일 바가 표시될 때 body 하단 패딩 */
  body.has-mobile-bar { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0)); }
}

/* ── 터치 타깃 최소 44px ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .blc-header__cta,
  .ns-btn,
  .sm-filter-btn,
  .csl-cta-card,
  #blc-mobile-bar a {
    min-height: 44px;
  }
  .blc-hamburger {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }
  .blc-svc-arrow {
    min-width: 44px;
    min-height: 44px;
  }
  /* 슬라이더 도트 터치 영역 확장 */
  .blc-dot {
    position: relative;
  }
  .blc-dot::before {
    content: '';
    position: absolute;
    inset: -1.15rem;
  }
}

/* ── 포커스 가시성 (접근성) ──────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Hero 모바일 ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .blc-hero { min-height: 100svh; }
  .blc-hero__copy { padding-bottom: 5rem; }
  .blc-hero__eyebrow { font-size: .62rem; }
  .blc-hero__actions { gap: .75rem; }
  .blc-hero__actions .ns-btn,
  .blc-hero__actions a { width: 100%; justify-content: center; text-align: center; }
}

/* ── 마퀴 모바일 ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .blc-marquee__track { animation-duration: 20s; }
}

/* ── 서비스 리스트 모바일 ────────────────────────────────────── */
@media (max-width: 400px) {
  .blc-svc-item { gap: .75rem; }
  .blc-svc-num  { font-size: 1.1rem; }
}

/* ── Stats 모바일 (2열 → 중앙) ───────────────────────────────── */
@media (max-width: 360px) {
  .blc-stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ── FAQ 모바일 ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .blc-faq-list summary { font-size: .9rem; padding: 1rem 0; }
  .blc-faq-ans          { font-size: .875rem; }
}

/* ── 지역 그리드 모바일 ──────────────────────────────────────── */
@media (max-width: 480px) {
  .blc-regions__grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .blc-region-card   { font-size: .75rem; padding: .6rem .5rem; }
}

/* ── CTA 배너 모바일 ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .blc-cta-banner { padding: 3rem var(--pad-x); }
  .blc-cta-banner__h2 { font-size: 1.5rem; }
}

/* ── 푸터 모바일 ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .blc-footer__inner {
    padding: 2.5rem var(--pad-x);
    gap: 1.75rem;
  }
  .blc-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.5rem;
    font-size: .85rem;
  }
  .blc-footer__biz {
    font-size: .8rem;
    line-height: 1.8;
  }
}

/* ── 서비스 페이지 NS 모바일 ─────────────────────────────────── */
@media (max-width: 640px) {
  .ns-page-hero { min-height: 60svh; }
  .ns-page-hero__title { font-size: 1.75rem; }
  .ns-svc-process__steps { gap: 1rem; }

  /* 방법 카드 1열 + 내부 세로 스택 */
  .ns-methods__grid { grid-template-columns: 1fr; }
  .ns-method-card__head { padding: 1.1rem 1rem .8rem; }
  .ns-method-card__name { font-size: 1rem; }
  .ns-method-card__body { grid-template-columns: 1fr; gap: 0; }
  .ns-method-card__col { padding: 1rem; }
  .ns-method-card__col--cons { border-top: 1px solid var(--border); }
  .ns-method-card--featured .ns-method-card__col--cons { border-top-color: rgba(0,0,0,.08); }
  .ns-method-card__col ul { gap: .5rem; }
  .ns-method-card__col li { font-size: .9rem; min-height: 28px; display: flex; align-items: center; }

  /* Related 1열 */
  .ns-related-grid { grid-template-columns: 1fr; }

  /* Strip 1열 */
  .ns-strip__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .ns-strip__grid { grid-template-columns: 1fr; }
  .ns-symptoms__grid { grid-template-columns: 1fr; }
}

/* ── 시공사례 상세 모바일 (portfolio-detail) ─────────────────── */
@media (max-width: 480px) {
  .case-hero { min-height: 55svh; }
  .case-hero__title { font-size: 1.5rem; }
  .case-stats { grid-template-columns: 1fr; gap: 1px; }
  .case-stat { padding: 1.25rem 1rem; }
  .case-timeline { gap: 1rem; }
  .case-timeline-step { flex-direction: column; gap: .5rem; }
  .case-timeline-num  { margin-bottom: 0; }
}

/* ── 가이드 페이지 모바일 ────────────────────────────────────── */
@media (max-width: 768px) {
  .guide-hero { padding-top: clamp(5rem,14vw,7rem); padding-bottom: 2rem; }
  .guide-layout { padding-top: 2rem; padding-bottom: 2rem; }
  /* 사이드바는 1024px에서 이미 숨김 처리됨 */
  .key-facts { grid-template-columns: 1fr 1fr; }
  .guide-callout { padding: 1rem 1.1rem; gap: .6rem; }
  .guide-table { font-size: .8rem; }
  .guide-table th, .guide-table td { padding: .6rem .75rem; }
  .coverage-grid { grid-template-columns: 1fr; }
  .amount-banner { padding: 1.5rem 1rem; }
  .amount-banner-grid { flex-direction: column; gap: 1rem; text-align: center; }
  .amount-banner-cta a { display: block; }
}
@media (max-width: 400px) {
  .key-facts { grid-template-columns: 1fr; }
  .guide-step { gap: 1rem; }
}

/* ── 스크롤 진행 바 모바일 위치 ──────────────────────────────── */
@media (max-width: 1024px) {
  #scroll-progress { top: 64px; }
}

/* ── 갤러리 페이지 모바일 ────────────────────────────────────── */
@media (max-width: 480px) {
  .blc-cases-grid { grid-template-columns: 1fr; gap: 1px; }
  .blc-case-card__overlay { opacity: 1; background: rgba(0,0,0,.45); }
}

/* ── 이미지 비율 모바일 ──────────────────────────────────────── */
@media (max-width: 640px) {
  .blc-case-card { aspect-ratio: 4/3; }
  .ba-img        { aspect-ratio: 4/3; }
}

/* ── 입력 필드 모바일 (iOS 확대 방지) ────────────────────────── */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="tel"],
textarea,
select {
  font-size: max(16px, 1rem);
}

/* ── 텍스트 오버플로 방지 ────────────────────────────────────── */
@media (max-width: 480px) {
  .blc-hero__eyebrow,
  .ns-page-hero__eyebrow,
  .guide-hero-badge,
  .csl-hero-badge {
    word-break: keep-all;
  }
}

/* ── 모바일 드로어 안전영역 ──────────────────────────────────── */
#blc-mobile-drawer {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* ── Back-to-top / Floating CTA 위치 보정 ───────────────────── */
@media (max-width: 768px) {
  #back-top    { bottom: calc(56px + 1rem + env(safe-area-inset-bottom, 0)); right: 1rem; }
  .floating-cta{ bottom: calc(56px + 1rem + env(safe-area-inset-bottom, 0)); right: 1rem; }
}

/* ── 모바일 바 Safe Area ─────────────────────────────────────── */
#blc-mobile-bar {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* ============================================================
   지역 페이지 (Region Page) — rgp- prefix
   ============================================================ */

/* Hero */
.rgp-hero {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.rgp-hero__img {
  position: absolute;
  inset: 0;
}
.rgp-hero__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.rgp-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(47,26,58,.92) 0%,
    rgba(47,26,58,.55) 50%,
    rgba(0,0,0,.2) 100%
  );
}
.rgp-hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  padding: clamp(5rem,12vw,8rem) var(--pad-x) clamp(2.5rem,5vw,4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  color: var(--white);
}
.rgp-hero__bread {
  display: flex;
  gap: .5rem;
  align-items: center;
  list-style: none;
  font-size: .72rem;
  opacity: .6;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.rgp-hero__bread li + li::before { content: '/'; margin-right: .5rem; opacity: .5; }
.rgp-hero__bread a { color: var(--white); }
.rgp-hero__eyebrow {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}
.rgp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem,6vw,3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.rgp-hero__sub {
  font-size: clamp(.9rem,1.5vw,1.05rem);
  opacity: .8;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}
.rgp-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.rgp-hero__actions a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
  white-space: nowrap;
}
.rgp-btn-primary { background: var(--accent); color: var(--white); }
.rgp-btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.rgp-btn-ghost { border: 1.5px solid rgba(255,255,255,.5); color: var(--white); }
.rgp-btn-ghost:hover { background: rgba(255,255,255,.12); }

/* Trust 스트립 */
.rgp-trust {
  background: var(--primary);
  padding: 1.75rem var(--pad-x);
}
.rgp-trust__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
}
@media (max-width:480px) {
  .rgp-trust__grid { grid-template-columns: 1fr; }
}
.rgp-trust__item {
  background: var(--primary);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}
.rgp-trust__num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.rgp-trust__label {
  font-size: .82rem;
  line-height: 1.4;
  opacity: .75;
}
.rgp-trust__label strong {
  display: block;
  font-size: .9rem;
  opacity: 1;
  color: var(--white);
}

/* 섹션 공통 */
.rgp-section {
  padding: clamp(3rem,7vw,5rem) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.rgp-section--gray { background: var(--secondary); max-width: 100%; }
.rgp-section--gray .rgp-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem,7vw,5rem) var(--pad-x);
}
.rgp-section__head { margin-bottom: clamp(1.75rem,4vw,2.5rem); }
.rgp-section__eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .65rem;
}
.rgp-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem,3.5vw,2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}

/* 커버리지 (지역 태그) */
.rgp-coverage__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.rgp-tag {
  background: var(--primary);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .9rem;
}
.rgp-tag--light {
  background: transparent;
  color: var(--text-body);
  border: 1px solid var(--border);
}
.rgp-coverage__note {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.8;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: var(--white);
}
.rgp-coverage__note strong { color: var(--primary); font-weight: 700; }

/* 포인트 카드 */
.rgp-points {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width:640px) {
  .rgp-points { grid-template-columns: 1fr; }
}
.rgp-point {
  background: var(--white);
  padding: clamp(1.5rem,3vw,2rem);
  transition: background .2s;
}
.rgp-point:hover { background: var(--secondary); }
.rgp-point__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: .75rem;
  transition: color .2s;
}
.rgp-point:hover .rgp-point__num { color: var(--accent); }
.rgp-point__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.rgp-point__desc {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* 서비스 리스트 */
.rgp-svc-list { list-style: none; }
.rgp-svc-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.rgp-svc-item:first-child { border-top: 1px solid var(--border); }
.rgp-svc-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  min-width: 2.5rem;
  flex-shrink: 0;
  transition: color .2s;
}
.rgp-svc-item:hover .rgp-svc-num { color: var(--accent); }
.rgp-svc-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .3rem;
}
.rgp-svc-desc { font-size: .85rem; color: var(--text-light); line-height: 1.65; }

/* 프로세스 스텝 */
.rgp-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width:640px) {
  .rgp-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width:360px) {
  .rgp-steps { grid-template-columns: 1fr; }
}
.rgp-step {
  background: var(--white);
  padding: 1.5rem 1.25rem;
  position: relative;
}
.rgp-step__badge {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .75rem;
}
.rgp-step__title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.rgp-step__desc { font-size: .85rem; color: var(--text-light); line-height: 1.6; }
.rgp-step__num {
  position: absolute;
  bottom: 1rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
}

/* FAQ */
.rgp-faq-list { }
.rgp-faq-item {
  border-bottom: 1px solid var(--border);
}
.rgp-faq-item:first-child { border-top: 1px solid var(--border); }
.rgp-faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  user-select: none;
}
.rgp-faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .25s;
}
.rgp-faq-item[open] summary::after { transform: rotate(45deg); }
.rgp-faq-item summary::-webkit-details-marker { display: none; }
.rgp-faq-ans {
  font-size: .875rem;
  color: var(--text-body);
  line-height: 1.8;
  padding: 0 0 1.25rem;
}

/* CTA 밴드 */
.rgp-cta-band {
  background: var(--primary);
  padding: clamp(3rem,7vw,5rem) var(--pad-x);
  text-align: center;
}
.rgp-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem,4vw,2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
}
.rgp-cta-band p {
  font-size: clamp(.875rem,1.5vw,1rem);
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.rgp-cta-band a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  transition: var(--transition);
}
.rgp-cta-band a:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* ── 반응형 추가 수정 (모바일 감사 결과) ───────────────────────── */

/* svc-gallery 중간 단계 (641–768px) 2열 */
@media (max-width: 768px) {
  .svc-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ns-symptoms__grid: 560px 이하에서 1열 (280px minmax 방어) */
@media (max-width: 560px) {
  .ns-symptoms__grid { grid-template-columns: 1fr; }
}

/* ns-cta-band 모바일: 세로 스택 + 버튼 전체 너비 */
@media (max-width: 640px) {
  .ns-cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
  }
  .ns-cta-band .ns-btn {
    width: 100%;
    justify-content: center;
  }
}

/* rgp-hero 480px 이하 높이 축소 */
@media (max-width: 480px) {
  .rgp-hero { min-height: 60svh; }
  .rgp-hero__bread { font-size: .8rem; opacity: .75; }
}
