.hero {
  position: relative;
  height: 840px;
  overflow: hidden;
}

.hero::before {
  display: none;
}

/* 슬라이드 개별 셋업 */
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}

.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.06) 66%, rgba(0, 0, 0, 0.01) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.02) 48%, rgba(0, 0, 0, 0.10) 100%);
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right 10%;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero__slide-bg--office {
  background-image: url("../images/ecowon-hero-office-premium-1920x800-20260619.webp");
}

.hero__slide-bg--grout {
  background-image: url("../images/ecowon-hero-grout-premium-1920x800-20260619.webp");
}

.hero__slide-bg--movein {
  background-image: url("../images/ecowon-hero-residential-premium-1920x800-20260619.webp");
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--container);
  margin-inline: auto;
  height: auto;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 650px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  z-index: 5;
  position: relative;
  color: var(--color-white, #ffffff);
  text-align: left;
}

.hero__badge {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  color: #d8fff7;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
}

.hero h1,
.hero h2 {
  color: var(--color-white, #ffffff);
  font-size: 3.6rem;
  font-weight: var(--font-heavy);
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.42);
}

.hero h1 span,
.hero h2 span {
  display: block;
  white-space: nowrap;
  word-break: keep-all;
}

.hero__text {
  max-width: 580px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  font-weight: var(--font-medium);
  line-height: 1.75;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.hero__actions .button {
  border: none !important;
  outline: none !important;
}

.button.button--hero-primary {
  background: #000000;
  border: none;
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 18px 38px;
  font-size: 1rem;
  font-weight: var(--font-bold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: all var(--ease);
}

.button.button--hero-primary:hover {
  background: #151515;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.button.button--hero-outline {
  background: #ffffff;
  border: none;
  color: #111111;
  border-radius: var(--radius-pill);
  padding: 18px 38px;
  font-size: 1rem;
  font-weight: var(--font-bold);
  backdrop-filter: none;
  transition: all var(--ease);
}

.button.button--hero-outline:hover {
  background: #f4f4f4;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

/* 슬라이더 컨트롤러 및 인디케이터 */
.hero__controls {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--container);
  display: flex;
  justify-content: flex-start;
  box-sizing: border-box;
}

.hero__indicators {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero__indicator-btn {
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
}

.hero__indicator-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(7, 11, 20, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__indicator-btn.is-active::before {
  width: 48px;
  background: var(--color-primary-dark);
}

.hero__indicator-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* 텍스트 요소별 상승 페이드인 모션 (Micro-interactions) */
.hero__slide .hero__badge,
.hero__slide h1,
.hero__slide h2,
.hero__slide .hero__text,
.hero__slide .hero__actions {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__slide.is-active .hero__badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.hero__slide.is-active h1,
.hero__slide.is-active h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero__slide.is-active .hero__text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.hero__slide.is-active .hero__actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

@media (max-width: 1080px) {
  .hero {
    height: 600px;
  }
  .hero__slide-bg {
    background-position: center right 20%;
  }
  .hero h1,
  .hero h2 {
    font-size: 3rem;
  }
  .hero__controls {
    bottom: 50px;
  }
}

@media (max-width: 760px) {
  .hero {
    height: calc(100vh - 54px);
    height: calc(100dvh - 54px);
  }
  .hero__slide-bg {
    background-position: center;
  }
  .hero__slide-bg--office {
    background-image: url("../images/ecowon-hero-office-premium-mobile.webp");
  }
  .hero__slide-bg--grout {
    background-image: url("../images/ecowon-hero-grout-premium-mobile.webp");
  }
  .hero__slide-bg--movein {
    background-image: url("../images/ecowon-hero-residential-premium-mobile.webp");
  }
  .hero__slide::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.24) 52%, rgba(0, 0, 0, 0.10) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.03) 42%, rgba(0, 0, 0, 0.18) 100%);
  }
  .hero__inner {
    width: 100%;
    height: 100%;
    padding-top: var(--header-height, 76px);
    padding-inline: 20px;
    box-sizing: border-box;
  }
  .hero__content {
    width: 100%;
    max-width: 100%;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    margin-inline: 0;
    box-sizing: border-box;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero h1,
  .hero h2 {
    font-size: 2.12rem;
    line-height: 1.2;
  }
  .hero h1 span,
  .hero h2 span {
    display: inline;
    white-space: normal;
  }
  .hero__text {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    overflow-wrap: break-word;
    word-break: keep-all;
  }
  .hero__actions {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
  }
  .button--hero-primary,
  .button--hero-outline {
    width: auto;
    flex: 1;
    box-sizing: border-box;
    padding: 12px 14px !important;
    font-size: 0.86rem !important;
    justify-content: center;
    white-space: nowrap;
  }
  .hero__controls {
    bottom: 40px;
    justify-content: center;
  }
}

.service-shortcut {
  position: relative;
  z-index: 3;
  margin-top: -38px;
  background: linear-gradient(180deg, rgba(247, 251, 249, 0) 0%, #f7fbf9 38px, var(--color-white) 100%);
  padding-bottom: 60px;
}

.service-shortcut__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--container);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(216, 227, 220, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 42px rgba(8, 34, 62, 0.11);
}

.service-finder {
  padding-block: 100px;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.service-finder__container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: stretch;
}

/* 좌측 영역: Before/After 드래그 비교 슬라이더 (오른쪽 높이 동기화) */
.finder-left-ref {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.before-after-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  background: #f1f5f9;
}

.before-after-slider__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.before-after-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Clip-path로 가려지는 BEFORE 이미지 */
.before-after-slider__image:nth-child(1) {
  z-index: 2;
}

/* 배경에 깔리는 AFTER 이미지 */
.before-after-slider__image:nth-child(2) {
  z-index: 1;
}

.before-after-slider__handle {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--color-white);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.before-after-slider__handle::after {
  content: "< >";
  position: absolute;
  width: 44px;
  height: 44px;
  background: var(--color-white);
  color: #111111;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.05em;
  font-family: inherit;
  transition: background-color 0.3s, transform 0.2s;
}

.before-after-slider__handle:hover::after {
  background: #f8f9fa;
  transform: scale(1.05);
}

/* 이미지 배지 스타일 (이전/이후 미니멀 라운드 필 뱃지) */
.finder-slider-label {
  position: absolute;
  top: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  border-radius: 30px;
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.finder-slider-label::before {
  display: none; /* 동그라미 데코 제거 */
}

.finder-slider-label--before {
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
}

.finder-slider-label--after {
  right: 20px;
  background: rgba(255, 255, 255, 0.85);
  color: #111111;
}

/* 우측 영역: 서비스 전환 탭 및 설명 텍스트, 체크리스트 */
.finder-right-ref {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.finder-tabs {
  display: flex;
  gap: 8px;
  margin-top: 32px; /* 텍스트 아래쪽 배치로 변경되어 마진 탑/바텀 최적화 */
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.finder-tab-btn {
  border: 1px solid var(--color-line);
  background: #f8fafc;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: var(--font-bold);
  color: var(--color-muted);
  cursor: pointer;
  transition: all var(--ease);
}

.finder-tab-btn:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}

.finder-tab-btn.is-active {
  background: var(--color-primary-dark);
  color: var(--color-white);
  border-color: var(--color-primary-dark);
  box-shadow: 0 6px 14px rgba(0, 59, 232, 0.12);
}

.finder-category {
  font-size: 0.85rem;
  font-weight: var(--font-bold);
  color: var(--color-green);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.finder-title-ref {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: var(--font-heavy);
  color: var(--color-ink);
  line-height: 1.25;
  margin: 0 0 20px 0;
  word-break: keep-all;
}

.finder-desc-ref {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--color-muted);
  margin-bottom: 28px;
  word-break: keep-all;
}

.finder-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.finder-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: var(--font-medium);
  color: var(--color-ink);
}

.finder-checklist li svg {
  width: 18px;
  height: 18px;
  color: var(--color-green);
  flex-shrink: 0;
}

.finder-btn-ref {
  background: linear-gradient(135deg, var(--color-green), var(--color-primary-dark));
  color: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: var(--font-bold);
  border: 0;
  box-shadow: 0 10px 20px rgba(5, 117, 77, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--ease);
  cursor: pointer;
  text-decoration: none;
}

.finder-btn-ref:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(5, 117, 77, 0.22);
}

@media (max-width: 1080px) {
  .service-finder__container {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .finder-deco-card {
    right: 0;
  }
}

@media (max-width: 600px) {
  .finder-image-frame {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .finder-deco-card {
    position: static;
    margin-top: 16px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
  }
  .finder-tab-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* 공간별 작업 기준 타이틀 섹션 */
.service-story-head {
  padding-block: 110px 50px;
  background: #ffffff;
}

/* 공간별 작업 기준 인터랙티브 섹션 (레퍼런스 이미지 기반 풀스크린 비주얼 리디자인) */
.story-interactive-section {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff; /* 흰색 배경으로 변경 */
  padding-block: 80px;
}

/* 카드 갯수/선택에 따라 이미지가 바뀌는 인터랙션 배경 */
.story-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 2px); /* 하단 소수점 픽셀 틈새 방지 */
  z-index: 0;
}

.story-bg-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 4px); /* 하단 소수점 픽셀 틈새 유입 차단 */
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-bg-item.is-active {
  opacity: 1;
  z-index: 2;
}

/* 2x4 현장 이미지 콜라주 그리드 - 경계선 없이 가득 채우고 살짝 화면을 벗어나도록 확장 */
.story-bg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  padding: 0;
  width: 108%; /* 더 넉넉하게 확장 */
  height: 108%;
  margin-left: -4%;
  margin-top: -4%;
  box-sizing: border-box;
}

.story-bg-img {
  background-size: cover;
  background-position: center;
  border-radius: 0; /* 간격 없이 채우기 위해 모서리 둥글기 제거 */
  width: 100%;
  height: 100%;
  box-shadow: none; /* 밀착 그리드를 위해 그림자 제거 */
  transition: transform 0.3s ease, filter 0.3s ease;
  transform: none !important; /* 뒤틀림 제거 */
}

.story-bg-img--office {
  background-image: url("../images/ecowon-story-office-smartphone-20260619.webp");
}

.story-bg-img--office-before {
  background-image: url("../images/ecowon-story-office-before-smartphone-20260619.webp");
}

.story-bg-img--academy {
  background-image: url("../images/ecowon-story-academy-smartphone-20260619.webp");
}

.story-bg-img--factory {
  background-image: url("../images/ecowon-story-factory-smartphone-20260619.webp");
}

.story-bg-img--shop {
  background-image: url("../images/ecowon-story-shop-smartphone-20260619.webp");
}

.story-bg-img--tools {
  background-image: url("../images/ecowon-story-tools-smartphone-20260619.webp");
}

.story-bg-img--expert-grout {
  background-image: url("../images/ecowon-story-expert-grout-smartphone-20260619.webp");
}

.story-bg-img--expert-business {
  background-image: url("../images/ecowon-story-expert-business-smartphone-20260619.webp");
}

.story-bg-img--grout {
  background-image: url("../images/ecowon-story-grout-smartphone-20260619.webp");
}

.story-bg-img--grout-before {
  background-image: url("../images/ecowon-story-grout-before-smartphone-20260619.webp");
}

.story-bg-img--movein {
  background-image: url("../images/ecowon-story-movein-smartphone-20260619.webp");
}

.story-bg-img--home-story {
  background-image: url("../images/ecowon-story-home-smartphone-20260619.webp");
}

.story-bg-img--expert-movein {
  background-image: url("../images/ecowon-story-expert-movein-smartphone-20260619.webp");
}

.story-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 2px); /* 하단 소수점 픽셀 틈새 방지 */
  background: rgba(0, 0, 0, 0.28); /* 연한 검은색 오버레이 추가 */
  z-index: 3;
}

.story-interactive-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 60px;
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--container);
  margin-inline: auto;
}

/* 레퍼런스 스타일의 오버랩 본문 카드 - 화면 정중앙 글래스모피즘 */
.story-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(4, 132, 109, 0.12); /* 은은한 딥그린 틴트 보더 */
  border-radius: 36px;
  padding: 50px 48px;
  box-shadow: 0 32px 80px rgba(12, 42, 62, 0.16); /* 그림자 톤 조율 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 세로 중앙 배치 추가 */
  text-align: center;
  min-height: 440px; /* 아이콘과 뱃지가 모두 포함되므로 넉넉한 최소 높이 설정 */
  width: 100%;
  max-width: 600px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.story-card > * {
  position: relative;
  z-index: 2;
}

.story-card::before {
  display: none; /* 기존 데코 텍스트 제거 */
}

.story-card::after {
  display: none; /* 기존 데코 박스 제거 */
}

/* 카드 상단 아이콘 랩 */
.story-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px; /* 뱃지와의 간격 */
  height: 64px;
}

.story-card__icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-card:hover .story-card__icon {
  transform: scale(1.08) translateY(-2px); /* 부드러운 스케일 및 업 마이크로 인터랙션 */
}

/* 카드 상단 뱃지 */
.story-card__badge {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  background: rgba(4, 132, 109, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
  display: inline-block;
}

.story-card h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: var(--font-heavy);
  color: var(--color-ink);
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 20px;
  word-break: keep-all;
  text-align: center;
}

.story-card p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-muted);
  font-weight: var(--font-medium);
  margin-top: 0;
  margin-bottom: 0;
  max-width: 100%;
  word-break: keep-all;
  text-align: center;
}

/* 카드 푸터 영역 (링크 및 이전/다음 버튼) */
.story-card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: auto;
  gap: 24px;
}

.story-card .text-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  transition: color 0.2s ease;
}

.story-card .text-link::after {
  content: none;
}

.story-card .text-link:hover {
  color: var(--color-green);
}

.story-card .text-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.story-card .text-link:hover svg {
  transform: translateX(4px);
}

/* 이전/다음 원형 이동 버튼 */
.story-card__nav {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.story-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.story-nav-btn svg {
  width: 20px;
  height: 20px;
}

.story-nav-btn--prev {
  border: 1px solid #d1d5db;
  background: transparent;
  color: #4b5563;
}

.story-nav-btn--prev:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #111827;
}

.story-nav-btn--next {
  border: 1px solid #2f9e44;
  background: #2f9e44;
  color: #ffffff;
}

.story-nav-btn--next:hover {
  background: #237b34;
  border-color: #237b34;
}

/* 글래스모피즘 세로형 탭 */
.story-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
}

.story-tabs button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 28px 34px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.story-tabs button:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.story-tabs button.is-active {
  background: #ffffff;
  border-color: #ffffff;
  color: #111827;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.story-tabs span {
  font-size: 0.88rem;
  font-weight: 800;
  color: inherit;
  opacity: 0.6;
}

.story-tabs button.is-active span {
  color: #2f9e44;
  opacity: 1;
}

.story-tabs strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: inherit;
  line-height: 1.3;
}

/* Step-by-Step 안심 프로세스 리디자인 */
.section--consult-guide {
  padding-block: 100px;
  background: #fbfcfe; /* 선명함을 돋보이게 하는 매우 옅은 쿨블루 톤배경 */
}

.consult-guide-container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  width: 100%;
}

.process-header .section-head {
  margin-bottom: 0;
}

.process-header__link-wrap {
  flex-shrink: 0;
}

.process-header__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02rem;
  font-weight: 750;
  color: var(--color-primary-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--color-primary-dark);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.process-header__link:hover {
  color: var(--color-primary-deep);
  border-color: var(--color-primary-deep);
}

.process-header__link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.process-header__link:hover svg {
  transform: translateX(4px);
}

/* 4열 카드 그리드 */
.process-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; /* 데스크톱 프로세스 스텝 갭 20px */
  width: 100%;
}

/* 개별 카드 기본 상태 (흰색 배경) */
.process-step-card {
  background: var(--color-white);
  border-radius: 24px;
  border: 1px solid rgba(228, 234, 242, 0.8);
  padding: 28px 24px; /* 데스크톱 프로세스 카드 패딩 28px 24px */
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
}

/* 카드 내 상단 아이콘 구역 */
.process-step-card__badge-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

/* 불규칙한 하늘색 셰이프 배경 (Blob) */
.process-step-card__blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary-soft);
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  transition: background-color 0.4s ease, border-radius 0.6s ease;
  animation: blob-bounce 8s infinite ease-in-out;
}

.process-step-card__icon {
  position: relative;
  z-index: 2;
  color: var(--color-primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.4s ease;
}

.process-step-card__icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.8;
}

/* 콘텐츠 영역 */
.process-step-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.process-step-card__num {
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.process-step-card__content h3 {
  font-size: var(--type-card-title);
  font-weight: var(--font-bold);
  color: var(--color-ink);
  margin: 0 0 16px 0;
  transition: color 0.4s ease;
  font-family: var(--font-sans);
}

.process-step-card__content p {
  font-size: var(--type-small, 0.92rem);
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0 0 32px 0;
  font-weight: var(--font-medium);
  word-break: keep-all;
  transition: color 0.4s ease;
}

/* 액션 영역 & 버튼 */
.process-step-card__action {
  width: 100%;
  margin-top: auto;
}

.process-step-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-primary-deep);
  background: transparent;
  color: var(--color-primary-deep);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
  box-sizing: border-box;
}

.process-step-card__btn:hover {
  background: var(--color-primary-soft);
}

/* --- 액티브 상태 카드 디자인 (레퍼런스 2번째 파란 카드 스타일 적용) & 호버 디자인 --- */
.process-step-card.is-active,
.process-step-card:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 20px 40px rgba(0, 59, 232, 0.18);
  transform: translateY(-8px);
}

.process-step-card.is-active .process-step-card__blob,
.process-step-card:hover .process-step-card__blob {
  background: var(--color-white);
  border-radius: 62% 38% 37% 63% / 59% 56% 44% 41%;
}

.process-step-card.is-active .process-step-card__icon,
.process-step-card:hover .process-step-card__icon {
  color: var(--color-primary-dark);
}

.process-step-card.is-active .process-step-card__num,
.process-step-card:hover .process-step-card__num {
  color: rgba(255, 255, 255, 0.8);
}

.process-step-card.is-active .process-step-card__content h3,
.process-step-card:hover .process-step-card__content h3 {
  color: var(--color-white) !important;
}

.process-step-card.is-active .process-step-card__content p,
.process-step-card:hover .process-step-card__content p {
  color: rgba(255, 255, 255, 0.85);
}

.process-step-card.is-active .process-step-card__btn,
.process-step-card:hover .process-step-card__btn {
  background: var(--color-ink);
  border-color: var(--color-ink);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.process-step-card.is-active .process-step-card__btn:hover,
.process-step-card:hover .process-step-card__btn:hover {
  background: #000000;
}

/* 유기적 Blob 애니메이션 효과 */
@keyframes blob-bounce {
  0%, 100% {
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  }
  50% {
    border-radius: 55% 45% 48% 52% / 48% 52% 48% 52%;
  }
}



.section--review-news {
  position: relative;
  overflow: hidden;
  padding-block: 160px 170px;
  background:
    linear-gradient(180deg, var(--color-white) 0%, #f7fbf9 54%, var(--color-white) 100%);
}

.section--review-news::after {
  content: "ECO";
  position: absolute;
  right: 18px;
  bottom: 46px;
  color: rgba(238, 245, 241, 0.72);
  font-size: 7.4rem;
  font-weight: 950;
  line-height: 1;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.review-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 64px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.review-block {
  display: grid;
  grid-template-columns: 0.52fr minmax(0, 1fr);
  gap: 48px;
  align-items: end;
}

.review-block .section-head {
  align-self: start;
  padding-top: 18px;
}

.review-block .section-head h2 {
  max-width: 360px;
}

.review-block .section-head p {
  max-width: 300px;
}

.review-carousel {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  gap: 20px;
  align-items: center;
  margin-top: 0;
}

.review-card {
  overflow: hidden;
  border: 1px solid var(--color-warm-line);
  border-radius: 28px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.review-card img {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
}

.review-card__body {
  border-top: 1px solid rgba(216, 227, 220, 0.7);
  padding: 44px 46px 48px;
}

.review-card strong {
  display: block;
  color: var(--color-ink);
  font-size: 1.12rem;
  font-weight: 950;
}

.review-card p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.review-card small {
  display: block;
  margin-top: 14px;
  color: var(--color-green);
  font-weight: 900;
}

.score-board {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--color-warm-line);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 250, 246, 0.9));
  padding: 44px 36px;
  box-shadow: 0 16px 34px rgba(8, 34, 62, 0.07);
}

.score-board h3 {
  color: var(--color-ink);
  font-size: 1.32rem;
  font-weight: 950;
  line-height: 1.3;
}

.score-board ul {
  display: grid;
  gap: 11px;
  margin-top: 20px;
}

.score-board li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(5, 117, 77, 0.16);
  border-radius: var(--radius-card);
  background: var(--color-green-soft);
  padding: 11px 14px 11px 16px;
  color: var(--color-ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.score-board li:nth-child(even) {
  background: var(--color-blue-soft);
}

.score-board strong {
  color: var(--color-green);
  font-size: 0.78rem;
  font-weight: 950;
}

.news-panel {
  display: grid;
  grid-template-columns: 360px 1fr;
  margin-top: 60px;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid rgba(5, 117, 77, 0.18);
  background:
    linear-gradient(135deg, rgba(6, 74, 53, 0.96), #0b7f95 48%, var(--color-primary-dark));
  color: var(--color-white);
  box-shadow: 0 24px 58px rgba(0, 48, 92, 0.13);
}

.news-panel__image {
  position: relative;
}

.news-panel__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 74, 53, 0.08), rgba(6, 74, 53, 0.28));
}

.news-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-panel__content {
  align-self: center;
  padding: 56px 68px;
}

.news-panel__content h2 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 950;
}

.news-panel__content h3 {
  margin-top: 14px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 950;
  line-height: 1.24;
}

.news-panel__content p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.78;
}

.area-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: center;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--color-warm-line);
  border-radius: 999px;
  background: #fbfdfc;
  color: #2d3644;
  padding: 0 22px;
  font-size: 0.95rem;
  font-weight: 950;
  text-align: center;
  transition: border-color var(--ease), background var(--ease), color var(--ease), transform var(--ease);
}

.area-tags span:hover {
  border-color: rgba(5, 117, 77, 0.34);
  background: var(--color-green-soft);
  color: var(--color-green-dark);
  transform: translateY(-2px);
}

.event-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  max-width: none;
  margin-top: 48px;
}

.event-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 360px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, #0e8cbf, var(--color-primary-dark));
  color: var(--color-white);
  padding: 56px 58px;
  box-shadow: var(--shadow-card);
}

.event-card--dark {
  background: linear-gradient(135deg, var(--color-green-dark), var(--color-primary-deep));
}

.event-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 5px;
  background: rgba(255, 255, 255, 0.36);
}

.event-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 950;
}

.event-card h3 {
  margin-top: 16px;
  font-size: 1.72rem;
  font-weight: 950;
  line-height: 1.25;
}

.event-card p {
  max-width: 270px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  line-height: 1.72;
}

.event-card a {
  display: inline-flex;
  margin-top: 28px;
  border-radius: 999px;
  background: rgba(7, 17, 143, 0.86);
  color: var(--color-white);
  padding: 10px 20px;
  font-size: 0.86rem;
  font-weight: 950;
}

.event-card--dark a {
  background: var(--color-primary);
  color: var(--color-primary-deep);
}

.care-system {
  background:
    linear-gradient(180deg, #f8fcfa 0%, var(--color-white) 100%);
}

.care-system__inner {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 80px;
  align-items: start;
}

.care-system__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--color-warm-line);
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: 0 14px 34px rgba(8, 34, 62, 0.06);
}

.care-system__items li {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--color-warm-line);
  padding: 34px 36px;
}

.care-system__items li:nth-child(-n + 2) {
  border-top: 0;
}

.care-system__items li:nth-child(even) {
  border-left: 1px solid var(--color-warm-line);
}

.care-system__items strong {
  color: var(--color-ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.care-system__items span {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 58px;
  align-items: end;
}

.faq-layout--simple {
  grid-template-columns: minmax(0, 860px);
  align-items: start;
}

.customer-center {
  border-left: 3px solid var(--color-green);
  padding-left: 20px;
}

.customer-center span {
  display: block;
  color: var(--color-ink);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.customer-center a {
  display: inline-flex;
  margin-top: 4px;
  color: var(--color-green);
  font-size: 1.72rem;
  font-weight: 950;
}

.customer-center p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.7;
}

.total-care {
  position: relative;
  height: auto;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding-block: 140px 180px;
  color: var(--color-white);
  background: var(--color-primary-deep);
}

.total-care__visual {
  position: absolute;
  inset: 0;
}

.total-care__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 74, 53, 0.82), rgba(0, 59, 232, 0.48));
}

.total-care__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.total-care__content {
  position: relative;
  z-index: 1;
  text-align: left;
}

.total-care h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0 0.32em;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 950;
  line-height: 1.15;
}

.total-care__title-unit {
  white-space: nowrap;
}

.total-care p {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  line-height: 1.7;
}

.care-diagram {
  position: relative;
  margin-top: -88px;
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(247, 251, 249, 0) 0%, #f7fbf9 72px, var(--color-white) 100%);
  z-index: 2;
}

.care-diagram__inner {
  display: grid;
  grid-template-columns: 0.82fr 74px 1.28fr;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--color-warm-line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.96);
  padding: 48px 44px;
  box-shadow: 0 28px 70px rgba(8, 34, 62, 0.11);
}

.care-diagram__main {
  display: grid;
  place-items: center;
  width: 100%;
  height: 220px;
  border: 1px solid rgba(5, 117, 77, 0.28);
  border-radius: var(--radius-card);
  background:
    linear-gradient(145deg, var(--color-green-soft), rgba(255, 255, 255, 0.96));
  text-align: center;
}

.care-diagram__main strong {
  color: var(--color-ink);
  font-size: 2.4rem;
  font-weight: 950;
  line-height: 1.1;
}

.care-diagram__main span {
  color: var(--color-muted);
  font-weight: 850;
}

.care-diagram__line {
  position: relative;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-green), var(--color-primary));
}

.care-diagram__line span {
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translateY(-50%);
}

.care-diagram__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.care-diagram__items span {
  display: grid;
  place-items: center;
  height: 96px;
  border: 1px solid rgba(5, 117, 77, 0.2);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  font-weight: 950;
  text-align: center;
}

.safezone-cta {
  background: linear-gradient(100deg, #f3f8f5 0%, #f3f8f5 50%, var(--color-green) 50%, var(--color-primary-dark) 100%);
  padding-block: 60px;
}

.safezone-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.safezone-cta span {
  color: var(--color-ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.safezone-cta h2 {
  margin-top: 6px;
  color: var(--color-ink);
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  font-weight: 950;
  line-height: 1.18;
}

.safezone-cta .button {
  margin-top: 22px;
}

.safezone-cta__panel {
  color: var(--color-white);
  text-align: center;
}

.safezone-cta__panel strong {
  display: block;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  font-weight: 950;
  font-style: italic;
  line-height: 1;
}

.safezone-cta__panel p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
}

.safezone-cta__panel a {
  display: inline-flex;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--color-primary-deep);
  color: var(--color-white);
  padding: 11px 24px;
  font-weight: 950;
}

/* Brand Stats Section */
.brand-stats {
  padding-block: 60px;
  background-color: var(--color-bg, #ffffff);
  border-bottom: 1px solid var(--color-line, #e2e9e5);
}

.brand-stats__inner {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--container);
  margin-inline: auto;
}

.brand-stats__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand-stats__item {
  flex: 1;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-stats__item:hover {
  transform: translateY(-6px);
}

/* 세로 구분선 (마지막 아이템 제외) */
.brand-stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background-color: var(--color-line, #e2e9e5);
}

.brand-stats__number {
  font-size: 3.2rem;
  font-weight: 800;
  color: rgb(0, 144, 148);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.brand-stats__unit {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgb(0, 144, 148);
  margin-left: 2px;
}

.brand-stats__label {
  margin-top: 14px;
  font-size: 0.96rem;
  font-weight: var(--font-semibold, 650);
  color: var(--color-muted, #55605a);
}

/* 반응형 처리 (모바일/태블릿) */
@media (max-width: 900px) {
  .brand-stats {
    padding-block: 40px;
  }
  .brand-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .brand-stats__item:not(:last-child)::after {
    display: none; /* 모바일 그리드에서는 세로 구분선 제거 */
  }
  .brand-stats__item {
    border-right: 1px solid var(--color-line, #e2e9e5);
  }
  .brand-stats__item:nth-child(2n) {
    border-right: none;
  }
  .brand-stats__number {
    font-size: 2.6rem;
  }
  .brand-stats__unit {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .brand-stats {
    padding-block: 30px;
  }
  .brand-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }
  .brand-stats__item {
    border-right: 1px solid var(--color-line, #e2e9e5);
  }
  .brand-stats__item:nth-child(2n) {
    border-right: none;
  }
  .brand-stats__number {
    font-size: 2.1rem;
  }
  .brand-stats__unit {
    font-size: 1.05rem;
  }
  .brand-stats__label {
    margin-top: 8px;
    font-size: 0.84rem;
  }
}

/* =================================================================
   오시는길 (Location) 페이지 전용 스타일
   ================================================================= */
.subpage-title-area,
.location-title-area {
  padding-top: 0;
  padding-bottom: 20px;
  background-color: transparent;
}

.subpage-title-area .section-header,
.location-title-area .section-header {
  text-align: center;
  margin-bottom: 0;
}

.location-section {
  padding-block: 20px 90px;
  background-color: transparent;
}

.location-tab-menu {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.location-tab-btn {
  background: var(--color-white);
  border: 1.5px solid rgba(4, 132, 109, 0.15);
  color: var(--color-primary-dark);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.location-tab-btn:hover {
  background: var(--color-primary-soft);
  transform: translateY(-2px);
}

.location-tab-btn.is-active {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(4, 132, 109, 0.25);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.location-info-card {
  background: var(--color-white);
  border-radius: 24px;
  border: 1px solid rgba(228, 234, 242, 0.9);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}

.location-info__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.location-info__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(245, 158, 11, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  line-height: 1.3;
}

.location-info__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.3;
}

.location-info__address {
  font-size: 16px;
  color: var(--color-muted);
  font-weight: 500;
  line-height: 1.5;
}

.location-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location-detail-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-detail-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-detail-item__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.3;
}

.location-detail-item__value {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.5;
  font-weight: 500;
}

.map-wrapper {
  background: var(--color-white);
  border-radius: 24px;
  border: 1px solid rgba(228, 234, 242, 0.9);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(228, 234, 242, 0.8);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-buttons-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15.5px;
  font-weight: 750;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-map-link svg, .btn-map-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn-map-link--naver {
  background-color: #03c75a;
  color: var(--color-white);
}

.btn-map-link--naver:hover {
  background-color: #02b14f;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(3, 199, 90, 0.25);
}

.btn-map-link--kakao {
  background-color: #fee500;
  color: #191919;
}

.btn-map-link--kakao:hover {
  background-color: #fada00;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(254, 229, 0, 0.25);
}

@media (max-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .map-container {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .subpage-title-area,
  .location-title-area {
    padding-top: 0;
    padding-bottom: 15px;
  }
  .subpage-title-area .section-header,
  .location-title-area .section-header {
    margin-bottom: 0;
  }
  .location-section {
    padding-block: 10px 45px !important;
  }
  .location-tab-menu {
    margin-bottom: 25px !important;
    gap: 8px !important;
  }
  .location-tab-btn {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }
  .location-grid {
    gap: 20px !important;
  }
  .location-info-card {
    padding: 18px !important;
    gap: 16px !important;
  }
  .location-info__header {
    margin-bottom: 8px !important;
    gap: 6px !important;
  }
  .location-info__tag {
    font-size: 12px !important;
    padding: 4px 10px !important;
    margin-bottom: 0 !important;
  }
  .location-info__title {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
  }
  .location-info__address {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  .location-details-list {
    gap: 14px !important;
  }
  .location-detail-item {
    gap: 12px !important;
  }
  .location-detail-item__icon {
    width: 36px !important;
    height: 36px !important;
  }
  .location-detail-item__icon span {
    font-size: 20px !important;
  }
  .location-detail-item__content {
    gap: 2px !important;
  }
  .location-detail-item__label {
    font-size: 13px !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
  }
  .location-detail-item__value {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  .map-wrapper {
    padding: 18px !important;
    gap: 16px !important;
  }
  .map-container {
    height: 280px !important;
  }
  .map-buttons-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .btn-map-link {
    padding: 12px 16px !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
  }
}

/* =================================================================
   회사소개(About) 3대 핵심 가치 그리드 3열 및 반응형 스타일
   ================================================================= */
.page-service-detail .about-values__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  margin-top: 50px;
}

.page-service-detail .about-values__grid .service-targets__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-service-detail .about-values__grid .service-targets__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm, 8px);
  margin-bottom: 20px;
}

.page-service-detail .about-values__grid .service-targets__title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-service-detail .about-values__grid .service-targets__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 1024px) {
  .page-service-detail .about-values__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 768px) {
  .page-service-detail .about-values__grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

.site-main.page-home {
  padding-top: 0 !important;
}

/* =================================================================
   회사소개(About) 브랜드 CI 섹션 스타일
   ================================================================= */
.brand-ci-section {
  padding-block: 80px !important;
}

.brand-ci-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.brand-ci-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.brand-ci-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.brand-ci-section .ci-image-wrap {
  background-color: #f8fafc;
  padding: 40px;
  border-radius: var(--radius-lg, 16px);
  width: 100%;
  display: flex;
  justify-content: center;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.04));
}

.brand-ci-section .ci-image-wrap img {
  max-width: 100%;
  height: auto;
}

.brand-ci-section .ci-description {
  text-align: center;
  max-width: 800px;
}

.brand-ci-section .ci-description-text {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--color-text-dark);
  font-weight: 500;
  word-break: keep-all;
  margin-bottom: 30px;
}

.brand-ci-section .color-chips {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand-ci-section .color-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.04));
  border: 1px solid #e2e8f0;
}

.brand-ci-section .color-chip__circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.brand-ci-section .color-chip__text {
  font-family: monospace;
  font-weight: 700;
}

@media (max-width: 760px) {
  .brand-ci-section {
    padding-block: 45px !important;
  }

  .brand-ci-section .section-header {
    margin-bottom: 30px;
  }

  .brand-ci-wrapper {
    gap: 24px;
  }

  .brand-ci-section .ci-image-wrap {
    padding: 20px;
  }

  .brand-ci-section .ci-description-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .brand-ci-section .color-chips {
    gap: 12px;
  }

  .brand-ci-section .color-chip {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* =================================================================
   인증서 페이지 (Certificates) 전용 스타일
   ================================================================= */
.certificates-gallery {
  padding-block: 80px !important; /* 데스크탑 72~96px */
}

.certificates-gallery .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.certificates-gallery .cert-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important; /* 데스크탑 16~20px */
  margin-top: 50px;
}

.cert-card {
  background-color: #ffffff;
  padding: 24px !important; /* 데스크탑 20~28px */
  border-radius: var(--radius-lg, 16px) !important; /* 더 세련된 둥근 모서리 */
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.04));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  border: 1px solid var(--color-line, rgba(19, 33, 29, 0.12)) !important;
}

.cert-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary) !important;
}

.cert-img-wrap {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f8fafc;
  border-radius: var(--radius-sm, 8px);
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
}

.cert-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 10px;
}

.cert-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 5px;
}

.cert-card span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .certificates-gallery .cert-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 760px) {
  .certificates-gallery {
    padding-block: 45px !important; /* 모바일 34~50px */
  }

  .certificates-gallery .section-header {
    margin-bottom: 30px;
  }

  .certificates-gallery .cert-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* 모바일 가로 2개 배치 */
    gap: 12px !important; /* 모바일 10~14px */
    margin-top: 30px !important;
  }

  .cert-card {
    padding: 16px 12px !important; /* 모바일 2열에 적합하도록 패딩 조절 */
  }

  .cert-img-wrap {
    height: 180px; /* 모바일에서 카드 이미지 랩 높이 축소 */
    margin-bottom: 12px;
  }
}
