.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(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.56) 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("../../assets/images/m1.webp");
}

.hero__slide-bg--grout {
  background-image: url("../../assets/images/m3.webp");
}

.hero__slide-bg--movein {
  background-image: url("../../assets/images/m2.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;
  justify-content: center;
}

.hero__content {
  max-width: 1000px;
  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: center;
  margin-inline: auto;
}

.hero__badge {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  color: #00cce0; /* 영어 타이틀 텍스트 색상을 포인트 컬러로 변경 */
  font-size: 15.36px;
  font-weight: 800;
  letter-spacing: 0.16em !important; /* 영어 타이틀 자간을 시원하게 넓힘 (시스템 오버라이드 해제) */
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

.hero h1,
.hero h2,
.hero__content h1,
.hero__content h2 {
  color: var(--color-white, #ffffff);
  font-size: 57.6px;
  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);
  text-align: center !important;
}

.hero h1 span,
.hero h2 span,
.hero__content h1 span,
.hero__content h2 span {
  display: block;
  white-space: nowrap;
  word-break: keep-all;
  text-align: center !important;
}

.hero__text {
  max-width: 580px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17.28px;
  font-weight: var(--font-medium);
  line-height: 1.75;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
  margin-inline: auto;
  word-break: keep-all;
}

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

.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: 16px;
  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: 16px;
  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: center;
  box-sizing: border-box;
}

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

.hero__indicator-btn {
  position: relative;
  width: 56px; /* 선형 진행 바 넓이 */
  height: 6px;  /* 선형 진행 바 높이 */
  background: rgba(255, 255, 255, 0.28); /* 어두운 히어로 오버레이 위에서 잘 보이는 트랙색 */
  border: none;
  border-radius: 3px;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: background 0.3s ease;
}

.hero__indicator-btn:hover {
  background: rgba(255, 255, 255, 0.45);
}

.hero__indicator-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #00cce0; /* 브랜드 포인트 컬러 */
  border-radius: 3px;
  transition: none; /* JS에서 직접 제어 */
}

.hero__indicator-btn:focus-visible {
  outline: 2px solid #00cce0;
  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__slide-bg {
    background-position: center right 20%;
  }
  .hero h1,
  .hero h2 {
    font-size: 48px;
  }
  .hero__controls {
    bottom: 50px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: min(calc(100vh - 54px), 760px);
    height: min(calc(100dvh - 54px), 760px);
    min-height: 680px;
  }
  .hero__slide-bg {
    background-position: center;
  }
  .hero__slide-bg--office {
    background-image: url("../images/mm1.webp");
  }
  .hero__slide-bg--grout {
    background-image: url("../images/mm3.webp");
  }
  .hero__slide-bg--movein {
    background-image: url("../images/mm2.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: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero h1,
  .hero h2 {
    font-size: 33.92px;
    line-height: 1.2;
  }
  .hero h1 span,
  .hero h2 span {
    white-space: normal !important;
    font-size: var(--typo-hero-title-size-mo) !important;
    line-height: var(--typo-hero-title-lh) !important;
  }
  .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;
    min-height: 48px;
    box-sizing: border-box;
    padding: 12px 14px !important;
    font-size: 12.5px !important; /* 모바일에서의 비중을 낮추기 위해 13.76px에서 12.5px로 축소 */
    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(244, 250, 252, 0) 0%, #f4fafc 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.01em;
  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: 12.8px;
  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: 14.72px;
  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: 13.6px;
  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(32px, 3.2vw, 41.6px);
  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: 16.8px;
  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: 15.68px;
  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: 16px;
  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: 13.6px;
  }
}

/* 공간별 작업 기준 타이틀 섹션 */
.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/home-air-care-20260710/story-new-apartment.webp");
}

.story-bg-img--office-before {
  background-image: url("../images/home-air-care-20260710/gallery-diagnosis.webp");
}

.story-bg-img--academy {
  background-image: url("../images/home-air-care-20260710/story-sensitive-family.webp");
}

.story-bg-img--factory {
  background-image: url("../images/home-air-care-20260710/service-bakeout.webp");
}

.story-bg-img--shop {
  background-image: url("../images/home-air-care-20260710/gallery-photocatalyst-finish.webp");
}

.story-bg-img--tools {
  background-image: url("../images/home-air-care-20260710/service-air-quality.webp");
}

.story-bg-img--expert-grout {
  background-image: url("../images/home-air-care-20260710/service-barrier.webp");
}

.story-bg-img--expert-business {
  background-image: url("../images/home-air-care-20260710/service-aftercare.webp");
}

.story-bg-img--grout {
  background-image: url("../images/home-air-care-20260710/gallery-barrier.webp");
}

.story-bg-img--grout-before {
  background-image: url("../images/home-air-care-20260710/gallery-diagnosis.webp");
}

.story-bg-img--movein {
  background-image: url("../images/home-air-care-20260710/story-new-apartment.webp");
}

.story-bg-img--home-story {
  background-image: url("../images/home-air-care-20260710/story-built-in.webp");
}

.story-bg-img--expert-movein {
  background-image: url("../images/home-air-care-20260710/gallery-after-measurement.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(0, 62, 165, 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: 13.12px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  background: rgba(0, 62, 165, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
  display: inline-block;
}

.story-card h3 {
  font-size: clamp(24px, 2.2vw, 29.6px);
  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: 16.32px;
  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: 16.8px;
  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: 14.08px;
  font-weight: 800;
  color: inherit;
  opacity: 0.6;
}

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

.story-tabs strong {
  font-size: 16.8px;
  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: 16.32px;
  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: 13.6px;
  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, 14.72px);
  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: 14.72px;
  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%, #f4fafc 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: 118.4px;
  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;
}

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

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

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

.section--review-news .review-card strong {
  display: block;
  color: var(--color-ink);
  font-size: 17.92px;
  font-weight: 950;
}

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

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

.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: 21.12px;
  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: 14.08px;
  font-weight: 800;
}

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

.score-board strong {
  color: var(--color-green);
  font-size: 12.48px;
  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(0, 162, 179, 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(0, 162, 179, 0.08), rgba(0, 162, 179, 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: 16px;
  font-weight: 950;
}

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

.news-panel__content p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15.68px;
  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: 15.2px;
  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: 13.12px;
  font-weight: 950;
}

.event-card h3 {
  margin-top: 16px;
  font-size: 27.52px;
  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: 13.76px;
  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: 16.8px;
  font-weight: 950;
}

.care-system__items span {
  color: var(--color-muted);
  font-size: 14.4px;
  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: 11.52px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.customer-center p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 14.08px;
  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(0, 162, 179, 0.82), rgba(0, 204, 224, 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(32px, 4vw, 49.6px);
  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(244, 250, 252, 0) 0%, #f4fafc 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: 38.4px;
  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, #f0f8fa 0%, #f0f8fa 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: 17.28px;
  font-weight: 800;
}

.safezone-cta h2 {
  margin-top: 6px;
  color: var(--color-ink);
  font-size: clamp(30.4px, 3vw, 45.6px);
  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(36.8px, 5vw, 70.4px);
  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 */
/* ==========================================================================
   Clinical Stats Section (신뢰 지표 리뉴얼 레이아웃)
   ========================================================================== */
.clinical-stats-section {
  max-width: var(--container, 1280px);
  margin-inline: auto;
  padding-block: 120px;
  width: calc(100% - (var(--page-gutter) * 2));
}

/* 통계 그리드 (헤더 + 카드) */
.clinical-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* 섹션 헤더 (그리드 아이템) */
.stats-header {
  grid-column: 1 / -1; /* 2열 모두 차지 */
  margin-bottom: 56px;
}

.stats-header .stats-subtitle {
  margin-bottom: 8px;
}

.stats-header .font-lg {
  margin-bottom: 16px;
}

.stats-header .font-sm {
  max-width: 800px;
}

/* 통계 카드 */
.stat-card {
  border-radius: 24px;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 200px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* 카드 텍스트 영역 */
.stat-card .text-content {
  position: relative;
  z-index: 2;
}

.stat-card .stat-label {
  font-size: 16.8px;
  font-weight: 700;
  color: var(--color-muted, #55605a);
  margin-bottom: 12px;
}

.stat-card .stat-number {
  font-family: var(--font-english, 'Roboto', sans-serif);
  font-size: 60px;
  font-weight: 800;
  color: var(--color-title, #212529);
  line-height: 1;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
}

.stat-card .stat-number .stat-unit {
  font-family: var(--font-korean, 'Pretendard', sans-serif);
  font-size: 28px;
  font-weight: 700;
  margin-left: 4px;
}

/* 카드 아이콘/그래프 영역 */
.stat-card .visual-content {
  position: absolute;
  right: 35px;
  bottom: 35px;
  z-index: 1;
  pointer-events: none;
}

.stat-card .stat-icon {
  font-size: 80px;
  color: #e2e9e5; /* 연한 회색 */
  opacity: 0.8;
}

.stat-card .stat-svg-graph {
  width: 150px;
  height: 90px;
}

/* 카드별 스타일 */

/* 1. 영업배상 책임보험 (SCI논문형) */
.stat-card.type-sci {
  background-color: var(--color-primary-soft, #e5fafe);
}
.stat-card.type-sci .stat-icon {
  color: #a8b3b5;
}

/* 2. 누적 관리·시공 실적 (누적 환자수형 - 강조 녹색/시안) */
.stat-card.type-patients {
  background-color: var(--color-primary, #00cce0);
  color: var(--color-white, #ffffff);
}
.stat-card.type-patients .stat-label {
  color: rgba(255, 255, 255, 0.85);
}
.stat-card.type-patients .stat-number {
  color: var(--color-white, #ffffff);
}
.stat-card.type-patients .stat-number .stat-unit {
  color: var(--color-white, #ffffff);
}
.stat-card.type-patients .stat-icon {
  color: rgba(255, 255, 255, 0.35); /* 어두운 시안배경에 녹아드는 흰색 반투명 아이콘 */
}

/* 3. 고객 만족도 (연녹색/연시안) */
.stat-card.type-surgery {
  background-color: #d2f4f9; /* 배경색을 약간 더 진하고 선명하게 조정 */
}
.stat-card.type-surgery .stat-label {
  color: var(--color-primary-dark, #00cce0);
}
.stat-card.type-surgery .stat-number {
  color: var(--color-primary-deep, #00cce0);
}
.stat-card.type-surgery .stat-number .stat-unit {
  color: var(--color-primary-deep, #00cce0);
}
.stat-card.type-surgery .stat-icon {
  color: rgba(0, 162, 179, 0.32); /* 아이콘 불투명도를 올려서 선명도를 높임 */
}

/* 4. 본사 직영 책임 시공 (감염율형) */
.stat-card.type-infection {
  background-color: var(--color-primary-soft, #e5fafe);
}
.stat-card.type-infection .stat-number {
  color: var(--color-primary, #00cce0);
}
.stat-card.type-infection .stat-icon {
  color: #a8b3b5;
}

/* 반응형 디자인 */

/* 1024px 이하 (태블릿) */
@media (max-width: 1024px) {
  .clinical-stats-section {
    padding-block: 68px;
  }

  .stat-card .stat-number {
    font-size: 48px;
  }
  .stat-card .stat-number .stat-unit {
    font-size: 22.4px;
  }
  .stat-card {
    min-height: 180px;
    padding: 28px;
  }
  .stat-card .visual-content {
    right: 28px;
    bottom: 28px;
  }
  .stat-card .stat-icon {
    font-size: 64px;
  }
  .stat-card .stat-svg-graph {
    width: 120px;
    height: 75px;
  }
}

/* 767px 이하 (모바일) */
@media (max-width: 767px) {
  .clinical-stats-section {
    padding-block: 44px;
  }
  .clinical-stats-grid {
    grid-template-columns: 1fr; /* 1열로 변경 */
    gap: 16px;
  }
  .stats-header {
    margin-bottom: 28px;
  }
  .stats-header .font-lg {
    margin-bottom: 12px;
  }
  .stat-card {
    min-height: 140px;
    padding: 24px;
  }
  .stat-card .visual-content {
    right: 24px;
    bottom: 24px;
  }
  .stat-card .stat-icon {
    font-size: 56px;
  }
  .stat-card .stat-svg-graph {
    width: 100px;
    height: 65px;
  }
}


/* =================================================================
   회사소개(About) 3대 핵심 가치 그리드 – 레퍼런스 미니멀 카드 스타일
   ================================================================= */
.page-service-detail .about-values__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  margin-top: 50px;
}

.page-service-detail .about-values__grid .service-targets__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-service-detail .about-values__grid .service-targets__card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
  background: transparent;
}

.page-service-detail .about-values__grid .service-targets__card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-service-detail .about-values__grid .service-targets__card:hover img {
  transform: scale(1.03);
}

.page-service-detail .about-values__grid .service-targets__title {
  font-size: 18.4px;
  font-weight: 800;
  color: #00cce0;
  margin-top: 24px;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.01em;
  padding-top: 22px;
  border-top: 1px solid var(--color-border, #e5e7eb);
  width: 100%;
}

.page-service-detail .about-values__grid .service-targets__text {
  font-size: 14.72px;
  color: #6b7280;
  line-height: 1.65;
  text-align: center;
  word-break: keep-all;
  margin-bottom: 0;
}

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

@media (max-width: 768px) {
  .page-service-detail .about-values__grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .page-service-detail .about-values__grid .service-targets__card img {
    aspect-ratio: 16 / 10;
  }
}

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

/* =================================================================
   회사소개(About) 브랜드 CI 섹션 – 프리미엄 2단 카드 레이아웃
   ================================================================= */
.brand-ci-section {
  padding-block: 90px !important;
  background: var(--color-bg-light, #f7f8fa);
}

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

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

/* ── 래퍼: 좌우 2열 카드 그리드 ── */
.brand-ci-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

/* ── 좌측: 로고 카드 (다크 배경) ── */
.ci-logo-card {
  background: #0b262a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}

.ci-logo-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ci-logo-card__inner img {
  max-width: 180px;
  height: auto;
  filter: brightness(1.1);
}

.ci-logo-card__label {
  font-size: 13.12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── 우측: 콘텐츠 카드 ── */
.ci-content-card {
  background: #ffffff;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ci-content-card__title {
  font-size: 21.6px;
  font-weight: 800;
  color: var(--color-text-dark, #111827);
  margin: 0;
  letter-spacing: -0.01em;
}

.ci-content-card__desc {
  font-size: 15.68px;
  line-height: 1.75;
  color: #4b5563;
  word-break: keep-all;
  margin: 0;
}

/* 브랜드 가치 리스트 */
.ci-values-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.ci-values-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #f0fdfa;
  border-radius: 10px;
  border: 1px solid rgba(0, 204, 224, 0.12);
  transition: border-color 0.3s;
}

.ci-values-list__item:hover {
  border-color: #00cce0;
}

.ci-values-list__item > .material-symbols-outlined {
  font-size: 24px;
  color: #00cce0;
  flex-shrink: 0;
}

.ci-values-list__item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ci-values-list__item strong {
  font-size: 14.72px;
  font-weight: 700;
  color: var(--color-text-dark, #111827);
}

.ci-values-list__item span:not(.material-symbols-outlined) {
  font-size: 12.8px;
  color: #6b7280;
}

/* 컬러 팔레트 스트립 */
.ci-color-palette {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.ci-color-palette__label {
  font-size: 11.52px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.ci-color-palette__chips {
  display: flex;
  gap: 8px;
  flex: 1;
}

.ci-color-palette__chip {
  flex: 1;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.ci-color-palette__chip:hover {
  transform: translateY(-2px);
}

.ci-color-palette__chip:first-child {
  border-radius: 8px 4px 4px 8px;
}

.ci-color-palette__chip:last-child {
  border-radius: 4px 8px 8px 4px;
}

.ci-color-palette__hex {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 11.2px;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

/* ── 반응형 ── */
@media (max-width: 860px) {
  .brand-ci-wrapper {
    grid-template-columns: 1fr;
  }
  .ci-logo-card {
    padding: 36px 24px;
  }
  .ci-logo-card__inner img {
    max-width: 140px;
  }
  .ci-content-card {
    padding: 32px 24px;
  }
}

@media (max-width: 760px) {
  .brand-ci-section {
    padding-block: 50px !important;
  }
  .brand-ci-section .section-header {
    margin-bottom: 30px;
  }
  .ci-content-card__title {
    font-size: 18.4px;
  }
  .ci-color-palette {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ci-color-palette__chips {
    width: 100%;
  }
}
/* ==========================================================================
   Story Vertical Stacking Cards Layout
   ========================================================================== */
.story-vertical-section {
  padding-block: 120px;
  background-color: #f7fafc;
}

.story-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 56px;
}

.story-vertical-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 36px rgba(0, 45, 122, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  box-sizing: border-box;
}

.story-vertical-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 45, 122, 0.14);
}

.story-vertical-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.62) 100%); /* 연한 검은색 오버레이 레이어 */
  z-index: 1;
}

.story-vertical-card__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  color: #ffffff;
}

.story-vertical-card__badge {
  display: inline-block;
  font-size: 12.8px;
  font-weight: 800;
  color: #ffffff; /* 가독성을 위한 순수 흰색 텍스트 오버라이드 */
  letter-spacing: 0.08em;
  background: #00cce0; /* 포인트 컬러(시안블루) 솔리드 배경으로 돋보이게 변경 */
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.story-vertical-card h3 {
  font-size: 33.6px;
  font-weight: var(--font-heavy);
  color: #ffffff;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  word-break: keep-all;
}

.story-vertical-card p {
  font-size: 16.96px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  word-break: keep-all;
}

/* Background image mappings */
.story-vertical-card--business {
  background-image: url("../images/home-air-care-20260710/story-new-apartment.webp");
}

.story-vertical-card--home {
  background-image: url("../images/home-air-care-20260710/story-built-in.webp");
}

.story-vertical-card--move {
  background-image: url("../images/home-air-care-20260710/story-sensitive-family.webp");
}

/* Responsive adjustments for vertical stories */
@media (max-width: 1024px) {
  .story-vertical-section {
    padding-block: 68px;
  }
}

@media (max-width: 768px) {
  .story-vertical-section {
    padding-block: 44px;
  }

  .story-vertical-list {
    gap: 16px;
    margin-top: 30px;
  }

  .story-vertical-card {
    min-height: 280px;
    padding: 35px 20px;
    border-radius: 18px;
  }

  .story-vertical-card h3 {
    font-size: 23.68px;
    margin-bottom: 12px;
  }

  .story-vertical-card p {
    font-size: 14.72px;
    line-height: 1.6;
  }
}

/* ==========================================================================
   /* ==========================================================================
   Brand Partner Logo Horizontal Ticker Styles
   ========================================================================== */
.brand-ticker-section {
  padding-block: 60px 50px;
  background-color: var(--color-white, #ffffff);
}

.brand-ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-block: 15px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Gradient shadow overlay left and right */
.brand-ticker-wrap::before,
.brand-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-ticker-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-ticker-track {
  display: flex;
  width: max-content;
  animation: brandTickerLoop 45s linear infinite;
}

.brand-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes brandTickerLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.brand-ticker-group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
}

.brand-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 55px;
  margin-inline: 12px;
  box-sizing: border-box;
  background: transparent;
  border: none;
  transition: transform 0.3s ease;
}

.brand-logo-item img {
  max-height: 38px;
  max-width: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.brand-logo-item:hover {
  transform: scale(1.08);
}

.brand-logo-item:hover img {
  opacity: 1;
}

@media (max-width: 768px) {
  .brand-ticker-section {
    padding-block: 30px 20px;
  }
  .brand-ticker-wrap {
    padding-block: 8px;
  }
  .brand-logo-item {
    margin-inline: 12px;
  }
  .brand-logo-item img {
    max-height: 30px;
    max-width: 90px;
  }
  .brand-ticker-wrap::before,
  .brand-ticker-wrap::after {
    width: 40px;
  }
}

/* ==========================================================================
   Why Cheonghae Homecare (Special Reasons Section) Cards Layout
   ========================================================================== */
/* ==========================================================================
   Why Cheonghae Homecare (Brand Philosophy Section)
   ========================================================================== */
.brand-philosophy-section {
  width: 100%;
  min-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  overflow: hidden;
}

/* 배경 이미지 래퍼 및 슬라이드 */
.philosophy-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.philosophy-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 5s ease;
}

.philosophy-bg-slide.active {
  opacity: 1;
  transform: scale(1.06);
}

/* 오버레이 (가독성 확보) */
.philosophy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

/* 컨텐츠 컨테이너 */
.philosophy-container {
  position: relative;
  z-index: 3;
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--container);
  margin-inline: auto;
  padding-block: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

/* 좌측 텍스트 영역 */
.philosophy-text {
  flex: 1.2;
  max-width: 700px;
}

/* 슬로건 (작은 영문) */
.brand-slogan {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #00cce0;
  margin-bottom: 30px;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 5px;
}

/* 다이내믹 인터랙티브 노출 디스플레이 판넬 */
.philosophy-display-panel {
  position: relative;
  min-height: 270px; /* 고정 최소 높이 설정으로 높이 덜컥거림 방지 */
  margin-bottom: 0;
}

.display-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.5s;
  pointer-events: none;
}

.display-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.display-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(0, 204, 224, 0.1);
  border: 1.5px solid rgba(0, 204, 224, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00cce0;
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(0, 204, 224, 0.08);
}

.display-icon-box .material-symbols-outlined {
  font-size: 32px;
}

.display-title {
  font-size: 48px; /* 아주 웅장하고 선명한 메인 타이틀 */
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 22px;
  word-break: keep-all;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.display-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  word-break: keep-all;
}

/* 버튼 스타일 */
.brand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  border-radius: 4px;
}

.brand-btn:hover {
  background-color: #00cce0;
  border-color: #00cce0;
  color: #ffffff;
  transform: translateY(-2px);
}

.brand-btn .material-symbols-outlined {
  font-size: 20px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.brand-btn:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* 우측 핵심 가치 영역 (카드 리스트) */
.philosophy-values {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 550px;
}

/* 가치 카드 아이템 (탭 네비게이션으로 동작) */
.value-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 22px 28px 22px 42px; /* 좌측에 진행 표시 바가 놓일 공간 확보 */
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px); /* 흐림 강도를 대폭 줄여 배경을 더 선명하게 */
  border-left: none;
  border: 1px solid rgba(255, 255, 255, 0.08); /* 기본 세련된 은은한 경계선 */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border-radius: 0px; /* 전 방향 둥글게 */
  opacity: 0.82; /* 비활성 카드도 82% 수준으로 높여 텍스트 가독성 확보 */
}

.value-item:hover,
.value-item.active {
  background-color: rgba(255, 255, 255, 0.22); /* 명확한 대비를 위해 활성 배경 명도 상향 */
  backdrop-filter: blur(2px); /* 활성화 시 흐림 강도를 더 축소하여 극상의 투명 선명도 연출 */
  transform: translateX(-8px);
  opacity: 1;
}

/* 카드 내부 가독성 대비 추가 */
.value-item .value-content h3 {
  font-size: 18.4px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.value-item.active .value-content h3,
.value-item:hover .value-content h3 {
  color: #00cce0; /* 활성화 시 포인트 시안컬러로 변경하여 즉시 구분 가능하게 함 */
}

.value-item .value-content p {
  font-size: 14.72px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.value-item.active .value-content p,
.value-item:hover .value-content p {
  color: rgba(255, 255, 255, 0.95);
}

/* 카드 좌측 세로 진행 바 영역 */
.value-progress-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.12); /* 비활성화 시 연한 흰색 가이드 바 */
}

.value-progress-bar {
  width: 100%;
  height: 0%;
  background-color: #00cce0; /* 활성화 시 차오를 브랜드 컬러 */
  transition: none; /* JS에서 linear transition으로 직접 제어 */
}

/* 아이콘 래퍼 */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  margin-right: 25px;
  flex-shrink: 0;
}

.value-icon {
  font-size: 28px;
  color: #00cce0;
}

.value-content {
  flex: 1;
  text-align: left;
}

.value-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.value-content p {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin: 0;
  word-break: keep-all;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
  .brand-title {
    font-size: 48px;
  }
  .philosophy-container {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .brand-philosophy-section {
    min-height: auto;
    padding-block: 68px;
  }
  .philosophy-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 50px;
  }
  .philosophy-text {
    max-width: 100%;
  }
  .philosophy-values {
    width: 100%;
    max-width: 100%;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .brand-philosophy-section {
    padding-block: 44px;
  }
  .philosophy-container {
    padding: 0;
    gap: 40px;
  }
  .brand-slogan {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 18px;
  }
  .brand-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .display-title {
    font-size: clamp(29.76px, 7vw, 34.4px);
    line-height: 1.24;
  }
  .display-desc {
    font-size: 15px;
    line-height: 1.72;
  }
  .brand-desc {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .brand-btn {
    padding: 14px 30px;
    font-size: 15px;
  }
  .value-item {
    width: 100%;
    padding: 20px;
  }
  .icon-box {
    width: 48px;
    height: 48px;
    margin-right: 15px;
  }
  .value-icon {
    font-size: 24px;
  }
  .value-content h3 {
    font-size: 16.5px;
  }
  .value-content p {
    font-size: 13.5px;
  }

  /* 모바일에서 Why Cheonghae 배경 이미지 피사체(인물/장비)가 잘 보이도록 정렬 보정 */
  .philosophy-bg-slide {
    background-position: 65% center !important; /* 우측의 핵심 피사체가 가려지지 않도록 65% 축 정렬 */
  }
}


/* ==========================================================================
   Brand Permissions Section (Official Certifications Ticker)
   ========================================================================== */
.brand-permissions {
  padding-block: 120px;
  background-color: #fcfdfe; /* 매우 연하고 깨끗한 블루아이보리톤 */
  width: 100%;
  overflow: hidden;
}

.permission-header {
  width: 100%;
  max-width: 760px;
  margin-bottom: 56px;
  padding: 0;
  text-align: left;
  box-sizing: border-box;
}

.permission-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #1a202c; /* 레퍼런스 스타일 소제목 검은색 */
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.permission-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1a202c;
  line-height: 1.3;
  margin-bottom: 14px;
  word-break: keep-all;
}

.permission-header p {
  font-size: 17px;
  line-height: 1.6;
  color: #4a5568;
  max-width: 700px;
  word-break: keep-all;
}

/* 무한 롤링 슬라이더 */
.permission-ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-block: 10px;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.permission-ticker-track {
  display: flex;
  width: max-content;
  animation: permissionsMarquee 38s linear infinite;
}

.permission-ticker-group {
  display: flex;
  gap: 24px;
  padding-inline-end: 24px;
}

/* 개별 카드 디자인 */
.permission-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 220px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
  cursor: default;
}

.permission-card:hover {
  transform: translateY(-4px);
  border-color: #00cce0;
  box-shadow: 0 10px 24px rgba(0, 204, 224, 0.12);
}

.permission-card__logo {
  width: 156px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.permission-card__logo svg {
  display: block;
}

.permission-card__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 마키 애니메이션 */
@keyframes permissionsMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* 반응형 오버라이드 */
@media (max-width: 1024px) {
  .brand-permissions {
    padding-block: 68px;
  }
  .permission-header {
    padding-inline: 30px;
    margin-bottom: 40px;
  }
  .permission-header h2 {
    font-size: 32px;
  }
  .permission-header p {
    font-size: 15.5px;
  }
}

@media (max-width: 767px) {
  .brand-permissions {
    padding-block: 44px;
  }
  .permission-header {
    padding-inline: 20px;
    margin-bottom: 28px;
  }
  .permission-header h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .permission-header p {
    font-size: 14.5px;
  }
  .permission-card {
    padding: 16px 18px;
    width: 190px;
    gap: 0;
    border-radius: 16px;
  }
  .permission-card__logo {
    width: 140px;
    height: 48px;
  }
  .permission-card__logo svg {
    width: 32px;
    height: 32px;
  }
}

