:root {
  --max-w: 950px;
  --bg-page: #fff;
  --bg-surface: #ffffff;
  --text: #232324;
  --text-muted: #5c5c5c;
  --text-subtle: #8a8a8a;
  --border: #e8e8e8;
  --border-strong: #d0d0d0;
  --accent: #61a830;
  --accent-hover: #4d8a26;
  --font: "SUIT Variable", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif;
  --radius: 2px;
  --radius-lg: 8px;
  --header-h: 56px;
  --prose-max: 42rem;
}

/*   
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0 auto;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.015em;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  max-width: 950px;
}

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

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

.noroosmart-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px; */
}

/* ── 헤더: 플랫, 얇은 하단선 ── */
/* .site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header__brand {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
}

.site-header__brand a {
  color: inherit;
  text-decoration: none;
}

.site-header__brand a:hover,
.site-header__brand a:focus-visible {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px 28px;
  flex-wrap: wrap;
}

.site-nav__tab {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.site-nav__tab:hover,
.site-nav__tab:focus-visible {
  color: var(--text);
}

.site-nav__tab.is-current {
  color: var(--text);
  font-weight: 600;
  border-bottom-color: var(--accent);
}

.site-nav__cta {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #fff !important;
  background: var(--text);
  border-radius: var(--radius);
  transition: background 0.15s ease;
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  background: var(--accent);
}
 */
/* ── 메인 ── */

.content {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 섹션: 리포트형 흰 캔버스 */
.page-section {
  background: var(--bg-surface);
  border-bottom: none;
  border-radius: var(--radius-lg);
}

/* 본문 텍스트만 적당한 줄폭 (표·이미지·영상은 전폭) */
.article-prose .block>p:not(.sub) {
  max-width: fit-content;
  margin-top: 20px;
}

.article-prose .block>.lead {
  max-width: none;
}

.page-section+.page-section {
  border-top: none;
}

.content>.page-section:last-of-type {
  border-bottom: 1px solid var(--border);
}

.block {
  padding-bottom: 44px;
}

.block:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

/* 스크롤 등장 (정적 느낌 완화) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 타이포 — ESG 리포트형 위계 */
.title-xl {
  margin: 0 0 2rem;
  padding-bottom: 1.25rem;
  font-size: clamp(1.375rem, 3.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.035em;
  color: #232324;
  font-feature-settings: "ss01"on;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
}

.title-xl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 3rem;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.block--hero-smart .title-xl {
  margin-bottom: 1.5rem;
}

.title-md {
  margin: 0 0 2.125rem;
  font-size: 1.1875rem;
  /* 19px */
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.45;
  color: #232324;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  position: relative;
}

.title-md::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 2rem;
  height: 2px;
  background: var(--accent);
  opacity: 0.85;
  border-radius: 1px;
}

.lead {
  margin: 0 0 1.5rem;
  padding: 1.125rem 1.25rem 1.125rem 1.125rem;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.82;
  color: #232324;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

p {
  margin: 0 0 1rem;
  color: #232324;
  line-height: 1.92;
  font-size: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.sub {
  margin: -0.25rem 0 1.125rem;
  padding: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: #232324;
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: var(--prose-max);
}

/* 본문 이미지 (img) */
.media-figure {
  margin: 1.25rem 0 0;
}

.media-figure img {
  width: 100%;
  height: auto;
  vertical-align: top;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}


@media (prefers-reduced-motion: reduce) {
  .media-figure:hover img {
    transform: none;
  }
}

.media-figure--diagram img {
  /* 프로세스 다이어그램은 세로 비율이 큰 경우 */
  min-height: 200px;
  object-fit: contain;
}

/* 노루스마트 컬러 히어로 — 가로 슬라이드 캐러셀 */
.media-figure--carousel {
  margin-left: auto;
  margin-right: auto;
  max-width: 950px;
}

/* KCC 느낌: 이미지 띠 전폭 + 슬라이드 간 여백 없음 + 하단 좌측 정렬 카피 */
.media-figure--strip.media-figure--carousel,
.media-figure--strip.media-figure--smart-gallery {
  /* margin-left: -44px;
  margin-right: -44px;
  width: calc(100% + 88px); */
  max-width: none;
}

/* 노루스마트 컬러 히어로 — 메인 이미지 + 우측 세로 썸네일(클릭 시 메인 교체) */
.smart-gallery__title {
  margin: 0 0 0.85rem;
  padding: 0 44px;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: #141820;
  text-align: left;
}

.smart-gallery__row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.65rem;
}

.smart-gallery__main {
  flex: 1 1 82%;
  min-width: 0;
}

.smart-gallery__main-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e5e7eb;
}

.smart-gallery__main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.smart-gallery__thumbs {
  flex: 0 0 17%;
  max-width: 168px;
  min-width: 72px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.smart-gallery__thumb {
  flex: 1 1 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s ease, opacity 0.15s ease;
}

.smart-gallery__thumb:hover {
  opacity: 0.92;
}

.smart-gallery__thumb:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(97, 168, 48, 0.25);
}

.smart-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smart-gallery__caption.media-carousel__caption {
  padding-top: 1.25rem;
}

/* =========================
   노루스마트뷰 전용 갤러리(클래스 분리)
   smart-color의 .smart-gallery와 동일한 스타일
   ========================= */
.smart-view-gallery__title {
  margin: 0 0 0.85rem;
  padding: 0 44px;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: #141820;
  text-align: left;
}

.smart-view-gallery__row {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  flex-direction: column;
}

.smart-view-gallery__main {
  flex: 1 1 82%;
  min-width: 0;
}

.smart-view-gallery__main-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e5e7eb;
}

.smart-view-gallery__main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.smart-view-gallery__main-img[hidden] {
  display: none !important;
}

.smart-view-gallery__thumbs {
  flex: 0 0 17%;
  min-width: 72px;
  display: flex;
  gap: 0.45rem;
}

.smart-view-gallery__thumb {
  flex: 1 1 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s ease, opacity 0.15s ease;
}

.smart-view-gallery__thumb:hover {
  opacity: 0.92;
}

.smart-view-gallery__thumb:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(97, 168, 48, 0.25);
}

.smart-view-gallery__thumb img,
.smart-view-gallery__thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.smart-view-gallery__caption.media-carousel__caption {
  padding-top: 1.25rem;
}

@media (max-width: 768px) {
  .smart-view-gallery__title {
    padding-left: 20px;
    padding-right: 20px;
  }

  .smart-view-gallery__row {
    flex-direction: column;
    align-items: stretch;
  }

  .smart-view-gallery__thumbs {
    flex: none;
    flex-direction: row;
    max-width: none;
    min-height: 4.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.4rem;
    padding-bottom: 0.15rem;
    scrollbar-width: thin;
  }

  .smart-view-gallery__thumb {
    flex: 0 0 auto;
    width: min(28vw, 6.5rem);
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .smart-gallery__title {
    padding-left: 20px;
    padding-right: 20px;
  }

  .smart-gallery__row {
    flex-direction: column;
    align-items: stretch;
  }

  .smart-gallery__thumbs {
    flex: none;
    flex-direction: row;
    max-width: none;
    min-height: 4.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.4rem;
    padding-bottom: 0.15rem;
    scrollbar-width: thin;
  }

  .smart-gallery__thumb {
    flex: 0 0 auto;
    width: min(28vw, 6.5rem);
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

.media-carousel {
  position: relative;
}

.media-carousel__stage {
  position: relative;
}

.media-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  outline: none;
}

.media-carousel--strip .media-carousel__viewport {
  border-radius: 0;
  background: #fff;
  scrollbar-width: none;
}

.media-carousel--strip .media-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.media-carousel--strip .media-carousel__track {
  gap: 0;
}

.media-carousel--strip .media-carousel__slide {
  flex: 0 0 33.333%;
  min-width: 33.333%;
  height: clamp(200px, 32vw, 360px);
  overflow: hidden;
}

.media-carousel--strip .media-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 0;
  background: #e5e7eb;
}

.media-carousel__caption {
  margin: 0;
  padding: 1.35rem 44px 0;
  text-align: left;
}

.media-carousel__caption-title {
  margin: 0 0 0.4rem;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.45;
  color: #141820;
}

.media-carousel__caption-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 400;
  color: #232324;
  max-width: 48rem;
}

.media-carousel--strip .media-carousel__dots {
  margin-top: 0.85rem;
  padding: 0 44px;
  justify-content: flex-start;
}

.media-carousel--strip .media-carousel__btn {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
}

@media (max-width: 900px) {
  .media-carousel--strip .media-carousel__slide {
    flex: 0 0 50%;
    min-width: 50%;
  }
}

@media (max-width: 768px) {
  .media-figure--strip.media-figure--carousel {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }

  .media-carousel__caption,
  .media-carousel--strip .media-carousel__dots {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 520px) {
  .media-carousel--strip .media-carousel__slide {
    flex: 0 0 88%;
    min-width: 88%;
  }
}

.media-carousel__viewport:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--accent);
}

.media-carousel__track {
  display: flex;
  width: 100%;
}

.media-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.media-carousel__slide img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  background: #f1f5f9;
}

.media-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.media-carousel__btn:hover,
.media-carousel__btn:focus-visible {
  background: #fff;
  color: var(--accent);
  border-color: rgba(97, 168, 48, 0.35);
}

.media-carousel__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(97, 168, 48, 0.35);
}

.media-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.media-carousel__btn--prev {
  left: 0.5rem;
}

.media-carousel__btn--next {
  right: 0.5rem;
}

.media-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.media-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.media-carousel__dot:hover,
.media-carousel__dot:focus-visible {
  background: rgba(97, 168, 48, 0.55);
}

.media-carousel__dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(97, 168, 48, 0.35);
}

.media-carousel__dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .media-carousel__viewport {
    scroll-behavior: auto;
  }
}

/* 리스트 — 표 형태의 여백, 부드러운 구분 */
.list-check {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  max-width: var(--prose-max);
}

.list-check li {
  position: relative;
  padding: 0.875rem 1rem 0.375rem 2.5rem;
  font-size: 16px;
  color: #232324;
  line-height: 1.4;
  border-radius: var(--radius-lg);
}

.list-check li:last-child {
  margin-bottom: 0;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(97, 168, 48, 0.15);
}

/* 노루스마트 컬러 — 핵심 기능: 원형 3단계 + 화살표 (인포그래픽형) */


.feature-flow__track {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.feature-flow__step {
  flex: 1 1 160px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-flow__ring {
  overflow: hidden;
  background: #e8ebe4;
}

.feature-flow__ring img,
.feature-flow__ring video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 스마트컬러 핵심 기능(3단 카드) 이미지 높이 통일 */
#sec-sc-3 .feature-flow__step {
  max-width: 280px;
}

#sec-sc-3 .feature-flow__ring {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

/* AI 컬러디렉터 안내 이미지 확장 */
.feature-flow__ring--director {
  width: min(100%, 720px);
  height: clamp(220px, 34vw, 360px);
}

.feature-flow__en {
  margin: 0 0 0.65rem;
  font-size: clamp(1rem, 2.35vw, 1.32rem);
  font-weight: 800;
  color: #111;
  line-height: 1.25;
}

.feature-flow__ko {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #3d3d3d;

}

/* AI 컬러디렉터 안내 문단 전용 클래스 */
.ai-noroosmart-color {
  text-align: justify;
  width: 730px;
  max-width: 100%;
  align-self: flex-start;
  box-sizing: border-box;
}

.ai-director-intro {
  width: 100%;
  text-align: left;
  line-height: 1.4;
  font-size: 0.9375rem;
  color: #232324;
  font-weight: 700;
  margin-bottom: 4px;
}

/* 노루스마트뷰 연계 안내 문장 */
.sv-linkup__cluster {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.sv-linkup__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: #2d3330;
}

.sv-linkup__actions {
  margin: 1rem 0 0;
}

.sv-linkup__cluster .sv-linkup__actions {
  margin-top: 20px;
}

.sv-linkup__actions .noroosmart-btn {
  text-decoration: none;
  color: #fff !important;
}

@media (max-width: 768px) {
  .sv-linkup__lead {
    padding: 0.9rem 0.95rem;
  }
}

.feature-flow__arrow {
  flex: 0 0 auto;
  align-self: center;
  margin-top: clamp(2.5rem, 8vw, 3.25rem);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  user-select: none;
}

@media (max-width: 720px) {
  .feature-flow__track {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .feature-flow__step {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .feature-flow__arrow {
    margin: 0.35rem 0 0.85rem;
    transform: rotate(90deg);
  }
}

/* 영상 */
.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background: #0f172a;
  margin-bottom: 1.25rem;
}


@media (prefers-reduced-motion: reduce) {
  .video-wrap:hover {
    transform: none;
  }
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* local mp4 등 <video>도 iframe처럼 컨테이너에 꽉 채움 */
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-wrap--intro {
  margin: 1.75rem auto 0;
}

/* CTA */
.cta-bar {
  margin-top: 0.5rem;
  padding: 2rem 1.75rem;
  text-align: center;
  background: #f4f6f8;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.cta-bar__text {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}

.noroosmart-btn {
  display: inline-block;
  padding: 0.7rem 1.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(97, 168, 48, 0.35);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--accent-hover);
}

/* 표 — 리포트형 */
.table-scroll {
  margin-top: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-surface);

}

.data-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table th,
.data-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  border-right: 1px solid rgba(15, 23, 42, 0.06);
  vertical-align: top;
}

.data-table th:last-child,
.data-table td:last-child {
  border-right: none;
}

.data-table tbody tr:last-child td {
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.data-table thead th {
  background: #EAF6F3;
  font-weight: 700;
  font-size: 0.9rem;
  color: #232324;
  white-space: nowrap;
  letter-spacing: -0.02em;
  text-emphasis: none;
  text-align: center;
  vertical-align: middle;
}

.data-table tbody td {
  color: #475569;
  text-align: center;
  vertical-align: middle;
  font-size: 0.875rem;
}


.data-table__note {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  font-style: normal;
}

/* 맨 위로 */
.fab-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--bg-surface);
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, color 0.15s ease, border-color 0.15s ease;
  z-index: 160;
}

.fab-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.fab-top:hover,
.fab-top:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 768px) {

  .wrap,
  .content {
    padding-left: 16px;
    padding-right: 16px;
  }


  .title-xl {
    margin-bottom: 28px;
  }

  .site-nav {
    gap: 12px 16px;
  }
}

/* ========== KCC식 랜딩 (아파트 재도장 index 전용) ========== */
.page-landing .main--landing {
  padding: 0 0 0;
  max-width: none;
}

.page-landing .content {
  max-width: none;
  padding: 0;
}

/* 히어로 */
.hero-apt {
  position: relative;
  min-height: min(72vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-apt__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-apt__dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.hero-apt__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 3rem 24px 3.5rem;
  text-align: center;
  color: #fff;
}

.hero-apt__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
}

.hero-apt__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.hero-apt__lead {
  margin: 0 0 2rem;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.75;
  font-weight: 400;
  opacity: 0.95;
}

.hero-apt__br {
  display: none;
}

@media (min-width: 520px) {
  .hero-apt__br {
    display: inline;
  }
}

.hero-apt__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn--hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.85rem;
  font-size: 0.9375rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff !important;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn--hero:hover,
.btn--hero:focus-visible {
  background: var(--accent-hover);
}

.btn--hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn--hero-outline:hover,
.btn--hero-outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

/* 랜딩 섹션 공통 */
.ld-wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.ld-wrap--narrow {
  max-width: 720px;
}

.ld-section {
  padding: 3.5rem 0;
}

.ld-section--white {
  background: #fff;
}


.ld-heading {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  color: #232324;
}

.ld-lead {
  margin: 0 auto 2.5rem;
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: rgb(35 35 36 / 80%);
  text-align: center;
}

.ld-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: rgb(35 35 36 / 80%);
  text-align: center;
}

.ld-sub {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(35 35 36 / 80%);
  text-align: center;
}

/* 랜딩 본문: smart-color.html 섹션과 동일 — title-md + 일반 p (좌측 정렬, 본문 폭 제한) */
.page-landing .ld-section .ld-wrap>.title-md {
  text-align: left;
}

.page-landing .ld-section .ld-wrap>.title-xl {
  text-align: left;
}

/* 랜딩 페이지 h1(title-xl): 하단 밑줄/강조선 제거 */
.page-landing .ld-section .ld-wrap>.title-xl {
  padding-bottom: 0;
  border-bottom: none;
}

.page-landing .ld-section .ld-wrap>.title-xl::after {
  display: none;
}

.page-landing .ld-section .ld-wrap>p {
  max-width: var(--prose-max);
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

/* 원형 이미지 2 + 플러스 */
.duo-circles {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: clamp(0.75rem, 3vw, 1.6rem);
  flex-wrap: wrap;
  margin-top: 20px;
}

.duo-circles__item {
  height: min(266px, 42vw);
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 20px;
  max-width: 100%;
}

.duo-circles__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duo-circles__plus {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  user-select: none;
}

/* 이유 카드 그리드 */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.reason-card {
  background: rgba(97, 168, 48, 0.08);
  padding: 1.25rem 1.25rem 1.25rem 1.35rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.reason-card__no {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  border-radius: 50px;
}

.reason-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #232324;
}

.reason-card--wide {
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .reason-card--wide {
    grid-column: auto;
    max-width: none;
  }
}

.ld-figure {
  margin: 1.5rem 0 0;
  overflow: clip;
}

.ld-figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* SVG(흐름도/도식) 선명도 개선: 얇은 스트로크가 스케일될 때 뭉개지는 현상 완화 */
.ld-figure img[src$=".svg"] {
  image-rendering: -webkit-optimize-contrast;
  /* WebKit 계열 */
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
}

.video-wrap--landing {
  margin: 0 auto;
}

/* 하단 CTA 밴드 (히어로와 같은 배경 이미지 + 단색 딤) */
.cta-band {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 1.05rem 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.cta-band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center center;
}

.cta-band__dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-band__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

/* 어두운 배경 위 보조 문구 — 전역 p { color: #232324 }와 분리 */
.cta-band__support {
  margin: 0 0 1.5rem;
  font-size: 0.9rem !important;
  line-height: 1.6;
  color: #fff !important;
}

.btn--cta-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 2.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent) !important;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn--cta-light:hover,
.btn--cta-light:focus-visible {
  background: #f8faf6;
}

@media (max-width: 768px) {
  .hero-apt {
    min-height: 56vh;
  }

  .ld-section {
    padding: 2.5rem 0;
  }
}

/* ── 교차 배경 · 랜딩 공통 ── */
.ld-section--muted {
  background: #fff;
}

.video-wrap--rounded {
  border-radius: 12px;
  overflow: hidden;
}

/* 인트로 강조 문장: 브랜드 초록 + 밑줄 */
.apt-intro-underline {
  color: #61a830;
  text-decoration: underline;
  text-decoration-color: #61a830;
  text-underline-offset: 0.4em;
}

/* ========== 모바일 page-landing (consultation_introduce / norooSmartcolor 등) ========== */
#wrap.page-landing {
  font-family: var(--font);
}

#wrap.page-landing .container .conBox h2.title-md {
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 700;
}

#wrap.page-landing .container.container--apt-landing {
  padding: 70px 0 0;
  padding-bottom: 0;
}

#wrap.page-landing .conBox.conBox--apt-landing {
  padding: 0;
  box-sizing: border-box;
}

#wrap.page-landing .apt-landing {
  overflow: visible;
}

#wrap.page-landing .apt-landing__main {
  box-sizing: border-box;
}

/* 텍스트만 좌우 15px */
#wrap.page-landing .ld-wrap--text {
  padding: 0 15px;
  box-sizing: border-box;
}

#wrap.page-landing .ld-section:first-of-type {
  padding-top: 1.25rem;
}

#wrap.page-landing .ld-wrap--text>p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #232324;
  margin-top: 12px;
}

#wrap.page-landing .title-md {
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  font-size: 1.0625rem;
}

#wrap.page-landing .title-xl {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 4.2vw, 1.6rem);
  color: #232324;
  text-align: left;
}

#wrap.page-landing .ld-wrap--text>.title-xl {
  font-weight: 700;
  line-height: 1.38;
}

#wrap.page-landing .video-wrap--intro {
  margin-top: 1.25rem;
  border-radius: 0;
  overflow: hidden;
}

#wrap.page-landing .duo-circles {
  margin-top: 1.25rem;
  justify-content: center;
  gap: 0.75rem;
}

#wrap.page-landing .duo-circles__item {
  flex: 1 1 calc(50% - 2rem);
  min-width: 0;
  max-width: 168px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  margin-top: 0;
}

#wrap.page-landing .duo-circles__plus {
  flex-shrink: 0;
  font-size: 1.5rem;
  opacity: 0.85;
}

#wrap.page-landing .duo-circles--wide {
  gap: 0.5rem;
}

#wrap.page-landing .duo-circles--wide .duo-circles__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #5da62b;
  opacity: 0.9;
  font-weight: 600;
}

#wrap.page-landing .duo-circles--wide .duo-circles__item {
  max-width: none;
  width: 100%;
  aspect-ratio: 14 / 9;
  border-radius: 0px;
}

#wrap.page-landing .duo-circles--wide .duo-circles__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#wrap.page-landing .reason-grid {
  gap: 0.75rem;
  margin-top: 1rem;
}

#wrap.page-landing .reason-card {
  border-radius: 10px;
  padding: 1rem 1rem 1rem 1.1rem;
  background: rgba(97, 168, 48, 0.08);
}

#wrap.page-landing .reason-card__text {
  font-size: 0.875rem;
  line-height: 1.62;
}

#wrap.page-landing .ld-figure {
  margin-top: 1.25rem;
}

#wrap.page-landing .video-wrap--landing {
  margin-top: 1rem;
  border-radius: 0;
}

#wrap.page-landing .cta-band {
  margin-bottom: 24px;
  min-height: 160px;
  padding: 1.75rem 0 2rem;
}

/* 노루스마트뷰: 유튜브 섹션과 CTA 사이 간격 */
#wrap.page-landing .cta-band--section-top {
  margin-top: clamp(1.5rem, 5vw, 2.75rem);
}

#wrap.page-landing .cta-band__title {
  line-height: 1.35;
}

@media (max-width: 480px) {
  #wrap.page-landing .duo-circles {
    flex-direction: column;
    align-items: center;
  }

  #wrap.page-landing .duo-circles__plus {
    transform: rotate(90deg);
    margin: 0.15rem 0;
  }

  #wrap.page-landing .duo-circles__item {
    max-width: 220px;
    width: min(72vw, 220px);
  }
}

#wrap.page-landing .noroo-smartcolor-page .feature-flow__en,
#wrap.page-landing .noroo-smartview-page .feature-flow__en {
  color: #fff;
  background-color: #5da62b;
  display: block;
  width: 100%;
  padding: 0.5rem 0.7rem;
  box-sizing: border-box;
  text-align: center;
}

#wrap.page-landing .noroo-smartcolor-page .feature-flow__ko,
#wrap.page-landing .noroo-smartcolor-page .ai-director-intro,
#wrap.page-landing .noroo-smartcolor-page .ai-noroosmart-color,
#wrap.page-landing .noroo-smartview-page .feature-flow__ko {
  color: var(--text-muted);
  margin-top: 12px;
}

#wrap.page-landing .noroo-smartcolor-page .ld-wrap--text .sub,
#wrap.page-landing .noroo-smartview-page .ld-wrap--text .sub {
  color: var(--text-muted);
}