html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  padding-top: 60px;
  /* 모바일 기본 헤더 높이 */
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', Arial, sans-serif;
}

.mobile-br {
  display: none;
}

@media (max-width: 767px) {
  .mobile-br {
    display: inline;
  }
}


/* 하늘익스프레스 헤더 - 모바일 우선 */
.haneul-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  height: 60px;
}

.haneul-header__container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.haneul-header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.haneul-header__logo img {
  height: 40px;
  max-height: 40px;
}

.haneul-header__nav {
  display: none;
}

.haneul-header__lang {
  display: none;
}

.haneul-header__menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #3b4a62;
  border: none;
  border-radius: 50%;
  gap: 5px;
  cursor: pointer;
}

.haneul-header__menu-btn span {
  display: block;
  height: 3px;
  width: 18px;
  background: #fff;
  border-radius: 2px;
}

/* 태블릿 이상 */
@media (min-width: 768px) {
  .haneul-header__container {
    flex-direction: row;
    max-width: 1440px;
  }

  .haneul-header__nav {
    margin-left: auto;
  }

  .haneul-header__nav ul {
    justify-content: flex-end;
    width: 100%;

  }

  .haneul-header__nav {
    display: block;
  }

  .haneul-header__nav ul {
    display: flex;
    gap: 5.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .haneul-header__nav a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s;
  }

  .haneul-header__nav a:hover {
    color: #0077c2;
  }

  .haneul-header__lang {
    display: flex;
    gap: 0.5rem;
    margin-left: 1.5rem;
  }

  .haneul-header__lang button {
    background: none;
    border: none;
    color: #888;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.2rem 0.7rem;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
  }

  .haneul-header__lang button.active,
  .haneul-header__lang button:hover {
    background: #f0f6fa;
    color: #0077c2;
  }

  .haneul-header__menu-btn {
    display: none;
  }

  .haneul-header__nav a.haneul-header__menu--service,
  .haneul-header__nav a.haneul-header__menu--review,
  .haneul-header__nav a.haneul-header__menu--brand {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.5px;
  }

  .haneul-header__nav a.haneul-header__menu--service:hover,
  .haneul-header__nav a.haneul-header__menu--review:hover,
  .haneul-header__nav a.haneul-header__menu--brand:hover {
    color: #0077c2;
    transition: color 0.2s;
  }
}

/* 데스크탑 */
@media (min-width: 1200px) {
  .haneul-header {
    height: 80px;
  }

  .haneul-header__container {
    padding: 0 2rem;
    height: 100%;
  }

  .haneul-header__logo img {
    height: 56px;
    max-height: 56px;
  }
}

@media (min-width: 1200px) {
  body {
    padding-top: 80px;
    /* 데스크탑 헤더 높이 */
  }
}

/* 모바일 슬라이드 메뉴 오버레이 */
.haneul-header__mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1100;
  transition: opacity 0.2s;
}

.haneul-header__mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* 모바일 슬라이드 메뉴 개선 */
.haneul-header__mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 40vw;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.08);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.2rem 2rem 1.2rem;
  opacity: 0;
  pointer-events: none;
}

.haneul-header__mobile-nav.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  animation: haneulMobileFadeIn 0.18s;
}

@keyframes haneulMobileFadeIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.haneul-header__mobile-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #3b4a62;
  align-self: flex-end;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.haneul-header__mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.haneul-header__mobile-nav li {
  width: 100%;
}

.haneul-header__mobile-nav a {
  display: block;
  width: 100%;
  padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  letter-spacing: -0.5px;
  text-align: left;
  border-bottom: 1px solid #e6eaf0;
  transition: color 0.2s, background 0.2s;
}

.haneul-header__mobile-nav li:last-child a {
  border-bottom: none;
}

.haneul-header__mobile-nav a:active,
.haneul-header__mobile-nav a:hover {
  color: #0077c2;
  background: #f0f6fa;
}

@media (min-width: 768px) {

  .haneul-header__mobile-overlay,
  .haneul-header__mobile-nav {
    display: none !important;
  }
}

/* 섹션1: 메인 비주얼 */
.haneul-section01 {
  position: relative;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}

.haneul-section01__picture,
.haneul-section01__picture img {
  display: block;
  width: 100%;
}

.haneul-section01__picture img {
  height: auto;
}

@media (min-width: 768px) {
  .haneul-section01 {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .haneul-section01 {
    padding: 0;
  }
}



@media (min-width: 1200px) {
  .haneul-section01 {
    width: 100%;
  }
}

/* 섹션2: 이사 서비스 종류 - 그리드 배치 */
.haneul-section02 {
  width: 100%;
  background: #fff;
  padding: 120px 0;
  display: flex;
  justify-content: center;
}

.haneul-section02__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.haneul-section02__heading {
  margin-bottom: 48px;
  text-align: left;
}

.haneul-section02__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  color: #222;
  margin: 0 0 18px 0;
}

.haneul-section02__desc {
  font-size: 20px;
  line-height: 1.5;
  color: #888;
  font-weight: 400;
  margin: 0;
}

.haneul-section02__list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.haneul-section02__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.haneul-section02__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.haneul-section02__content {
  text-align: left;
}

.haneul-section02__item-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.haneul-section02__point {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: #2f4f7c;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.2px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.haneul-section02__item-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin: 0;
  color: #111;
}

.haneul-section02__item-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #666;
  margin: 0 0 16px 0;
}

.haneul-section02__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.haneul-section02__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #777777;
  background: #fff;
  color: #777777;
  font-size: 13px;
  font-weight: 400;
  /* 볼드 제거 */
  letter-spacing: -0.2px;
}

/* Tablet */
@media (max-width: 1199px) {
  .haneul-section02 {
    padding: 90px 0;
  }

  .haneul-section02__container {
    max-width: 900px;
    padding: 0 20px;
  }

  .haneul-section02__title {
    font-size: 38px;
  }

  .haneul-section02__item {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* Desktop: 1440 기준 720/720 분할, 이미지 720x400 */
@media (min-width: 1200px) {
  .haneul-section02__item {
    grid-template-columns: 720px 1fr;
  }

  .haneul-section02__content {
    padding-left: 56px;
    /* gap 대신 컨텐츠 안쪽 여백 */
  }

  .haneul-section02__media img {
    height: 400px;
    object-fit: cover;
  }

  .haneul-section02__item-desc {
    font-size: 18px;
    line-height: 1.7;
    max-width: 540px;
    /* 데스크탑 텍스트 줄바꿈 폭 고정 */
  }

  .haneul-section02__item-title {
    font-size: 28px;
    /* 데스크탑 볼드 */
    font-weight: 700;
  }

  .haneul-section02__point {
    font-size: 16px;
    /* POINT 1~3 */
    height: 32px;
    padding: 0 16px;
  }

  .haneul-section02__chip {
    height: 34px;
    padding: 0 16px;
    font-size: 18px;
    font-weight: 400;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .haneul-section02 {
    padding: 70px 0;
  }

  .haneul-section02__container {
    padding: 0 18px;
  }

  .haneul-section02__heading {
    margin-bottom: 34px;
  }

  .haneul-section02__title {
    font-size: 24px;
    line-height: 1.2;
  }

  .haneul-section02__desc {
    font-size: 15px;
    line-height: 1.5;
  }

  .haneul-section02__heading {
    margin-bottom: 24px;
  }

  .haneul-section02__list {
    gap: 34px;
  }

  .haneul-section02__item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .haneul-section02__media img {
    border-radius: 18px;
  }

  .haneul-section02__item-title {
    font-size: 18px;
    /* 작은모바일 볼드 */
    font-weight: 700;
  }

  .haneul-section02__item-desc {
    font-size: 13px;
  }

  .haneul-section02__point {
    font-size: 10px;
    /* POINT 1~3 */
    height: 24px;
    padding: 0 12px;
  }

  .haneul-section02__chip {
    height: 28px;
    padding: 0 12px;
    font-size: 13px;
    border: 1px solid #777777;
    color: #777777;
    font-weight: 400;
  }
}

/* 섹션3: 비지니스/특장점 (스크린샷 스타일) */
.haneul-section03 {
  background: #f7f8fa;
  padding: 100px 0;
}

.haneul-section03__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 0 20px;
}

.haneul-section03__item {
  position: relative;
  aspect-ratio: 1/1.2;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: #eee;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  will-change: transform, box-shadow;
}

.haneul-section03__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: filter 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: filter, transform;
}

.haneul-section03__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.haneul-section03__icon img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.haneul-section03__hover-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
  padding: 36px 32px 32px 32px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 60%, rgba(0, 0, 0, 0.18) 100%);
  transform: translateY(20px);
  will-change: opacity, transform;
}

.haneul-section03__hover-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
  opacity: 0.85;
  text-transform: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity;
}

.haneul-section03__title {
  display: block;
  font-size: 28px;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 28px;
  line-height: 1.2;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.haneul-section03__hover-content h3 {
  font-size: 28px;
  font-weight: 700;
}

.haneul-section03__hover-content p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  opacity: 0.92;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity;
}

/* 모바일/태블릿에서는 항상 콘텐츠 표시 */
@media (max-width: 1199px) {
  .haneul-section03__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.0) 100%),
      radial-gradient(ellipse at 40% 100%, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 80%);
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
  }

  .haneul-section03__hover-content {
    background: none !important;
    position: absolute;
    z-index: 3;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  .haneul-section03__icon {
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
  }

  .haneul-section03__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .haneul-section03__icon--left {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .haneul-section03__container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    padding: 0 12px;
  }

  .haneul-section03__item {
    width: 100%;
    aspect-ratio: 1/1;
  }

  .haneul-section03__hover-content {
    padding: 24px 16px 18px 16px;
  }

  .haneul-section03__icon--center,
  .haneul-section03__icon--left {
    width: 32px;
    height: 32px;
  }

  .haneul-section03__title {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 16px;
  }

  .haneul-section03__hover-label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .haneul-section03__hover-content p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .haneul-section03__container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .haneul-section03 {
    padding: 60px 0 60px 0;
  }

  .haneul-section03__item {
    min-height: 220px;

  }

  .haneul-section03__hover-content {
    padding: 24px 16px 18px 16px;
  }

  .haneul-section03__hover-content h3 {
    font-size: 20px;
  }

  .haneul-section03__hover-content p {
    font-size: 15px;
  }
}

/* 데스크탑에서만 hover 효과 적용 */
@media (min-width: 1200px) {
  .haneul-section03__container {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    gap: 0;
    padding: 0 20px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: contents;
  }

  .haneul-section03__item {
    border-radius: 0;
    flex: 1 1 0;
    /* 균등 분배 */
    min-width: 0;
    height: 500px;
    /* 높이 500px */
    overflow: hidden;
    transition: flex-basis 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #eee;
    position: relative;
    aspect-ratio: unset;
    display: block;
    will-change: flex-basis, transform, box-shadow;
    flex-basis: 25%;
    /* 기본 크기 명시 */
  }

  /* 데스크탑에서 hover 시에만 콘텐츠 표시 */
  .haneul-section03__hover-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(30px);
    will-change: opacity, transform;
  }

  /* JavaScript로 제어되는 hover 상태 */
  .haneul-section03__item.expanded {
    flex-basis: 570px !important;
    z-index: 10;
    transition: flex-basis 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .haneul-section03__item.expanded .haneul-section03__hover-content {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .haneul-section03__item.expanded .haneul-section03__icon {
    opacity: 1;
    /* 아이콘 유지 */
    transform: translate(-50%, -50%) scale(1.1);
  }

  .haneul-section03__item.expanded .haneul-section03__bg {
    filter: brightness(0.8) blur(0.8px);
    transform: scale(1.05);
  }

  /* 확장된 카드에 전체 그라데이션 적용 */
  .haneul-section03__item.expanded::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
  }

  .haneul-section03__item.expanded::before {
    opacity: 1;
  }

  /* 확장된 카드에서 아이콘과 텍스트를 그라데이션 위에 표시 */
  .haneul-section03__item.expanded .haneul-section03__icon {
    z-index: 3;
    top: 25%;
    /* 아이콘을 위쪽으로 이동 */
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .haneul-section03__item.expanded .haneul-section03__hover-content {
    z-index: 3;
    background: none;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: translateY(0);
    text-align: left;
    padding: 60px;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* hover 시 카드 확대 효과 */
  .haneul-section03__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }
}

/* 중앙 아이콘 (기본 상태) */
.haneul-section03__icon--center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.haneul-section03__item.expanded .haneul-section03__icon--center {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

/* 좌측 하단 아이콘 (펼침 상태) */
.haneul-section03__icon--left {
  width: 40px;
  height: 40px;
  margin-bottom: 36px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-10px);
  will-change: opacity, transform;
}

.haneul-section03__item.expanded .haneul-section03__icon--left {
  opacity: 1;
  transform: translateX(0);
}

.haneul-section03__item.expanded .haneul-section03__hover-content.fade-in {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.haneul-section03__heading {
  max-width: 1440px;
  margin: 0 auto 48px auto;
  padding: 0 20px;
  text-align: left;
}

.haneul-section03__main-title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.haneul-section03__subtitle {
  font-size: 20px;
  color: #888;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .haneul-section03__main-title {
    font-size: 24px;
  }

  .haneul-section03__subtitle {
    font-size: 15px;
  }

  .haneul-section03__heading {
    margin-bottom: 24px;
  }
}

/* 작은 모바일: 1칸씩 */
@media (max-width: 600px) {
  .haneul-section03__container {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
    /* padding: 0 8px; */
  }

  .haneul-section03__item {
    min-height: 160px;
    height: auto;
  }

  .haneul-section03__hover-content {
    padding: 30px;
  }

  .haneul-section03 {
    padding: 20px 0;
  }

  .haneul-section03__title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-top: 14px;
    margin-bottom: 18px;
    line-height: 1.2;
  }

  .haneul-section03__hover-content p {
    font-size: 12px;
  }

  .haneul-section03__hover-content img {
    width: 26px;
    height: 26px;
  }

  .haneul-section03__hover-label {
    font-size: 12px;
  }

  .haneul-section03__icon--left {
    margin-bottom: 0px;
  }


}

/* 큰 모바일: 2x2 */
@media (min-width: 601px) and (max-width: 767px) {
  .haneul-section03__container {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 100%;
    padding: 0 12px;
  }

  .haneul-section03__item {
    min-height: 160px;
    height: auto;
  }

  .haneul-section03__hover-content {
    padding: 18px 14px 16px 14px;
  }

  .haneul-section03 {
    padding: 24px 0;
  }
}

/* 모바일/태블릿에서 항상 텍스트 보이기 */
@media (max-width: 1199px) {
  .haneul-section03__hover-content {
    opacity: 1 !important;
    pointer-events: auto !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 60%, rgba(0, 0, 0, 0.18) 100%);
  }

  .haneul-section03__icon--center {
    opacity: 0 !important;
  }
}

/* 섹션4: 브랜드/시공사례 */
/* 섹션4 - 관리 사례 */
.haneul-section04 {
  background: url('https://smkt.co.kr/images/smi/landing/2026/smi_2026_cellem/pc/section04_bg.png') center center/cover no-repeat;
  padding: 120px 0;
}

.haneul-section04__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Desktop container padding align (common content area) */
@media (min-width: 1200px) {

  .haneul-section02__container,
  .haneul-section04__container {
    padding-left: 0;
    padding-right: 0;
  }
}

.haneul-section04__heading {
  text-align: left;
  margin-bottom: 48px;
}

.haneul-section04__title {
  font-size: 38px;
  /* 섹션3과 동일 */
  font-weight: 700;
  color: #222;
  margin: 0 0 18px 0;
  letter-spacing: -1px;
  line-height: 1.25;
}

.haneul-section04__subtitle {
  font-size: 20px;
  /* 섹션3과 동일 */
  color: #888;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

.haneul-section04__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.haneul-section04__card {
  text-align: left;
}

.haneul-section04__card-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  /* 이미지 자체 라운드 사용 시 이중 라운드 방지 */
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.10); */
  /* background: #fff; */
}

.haneul-section04__card-title {
  font-size: 28px;
  /* 데스크탑 볼드 */
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #111;
  margin: 18px 0 8px 0;
}

.haneul-section04__card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #777777;
  margin: 0;
}

/* Tablet */
@media (max-width: 1199px) {
  .haneul-section04 {
    padding: 90px 0;
  }

  .haneul-section04__container {
    max-width: 900px;
    padding: 0 20px;
  }

  .haneul-section04__title {
    font-size: 36px;
  }

  .haneul-section04__cards {
    gap: 24px;
  }

  .haneul-section04__card-media img {
    border-radius: 0;
  }
}

@media (min-width: 1200px) {
  .haneul-section04__card-desc {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .haneul-section04 {
    padding: 70px 0;
  }

  .haneul-section04__heading {
    text-align: left;
    margin-bottom: 24px;
  }

  .haneul-section04__title {
    font-size: 24px;
    line-height: 1.2;
  }

  .haneul-section04__subtitle {
    font-size: 15px;
  }

  .haneul-section04__cards {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .haneul-section04__card-media img {
    border-radius: 0;
  }

  .haneul-section04__card-title {
    font-size: 18px;
    /* 작은 모바일 볼드 */
    margin-top: 14px;
  }
}

/* 섹션5: 포인트&기프티콘 후기 슬라이드 */
.haneul-section05 {
  width: 100%;
  background: url('https://smkt.co.kr/images/smi/landing/2026/smi_2026_cellem/pc/section05_bg.png') center center/cover no-repeat;
  padding: 60px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.haneul-section05__container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.haneul-section05__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
  letter-spacing: -1px;
}

.haneul-section05__slider {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.haneul-section05__slider .swiper-wrapper {
  display: flex;
  align-items: center;
}

.haneul-section05__slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 320px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.haneul-section05__slider .swiper-slide-active {
  opacity: 1;
}

.haneul-section05__slider img {
  width: 100%;
  height: auto;
  /* border-radius: 18px; */
  /* box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  background: #fff; */
}

@media (min-width: 768px) {
  .haneul-section05 {
    padding: 60px 0 60px 0;
  }

  .haneul-section05__title {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .haneul-section05__slider .swiper-slide {
    width: 320px;
    max-width: 320px;
  }
}

@media (min-width: 1200px) {
  .haneul-section05 {
    padding: 100px 0 100px 0;
  }

  .haneul-section05__slider .swiper-slide {
    width: 320px;
    max-width: 320px;
  }

  .haneul-section05__title {
    margin-bottom: 100px;
    font-size: 40px;
    font-weight: 600;
  }
}

/* 섹션5 슬라이더: 모든 슬라이드 항상 불투명하게 */
.haneul-section05__slider .swiper-slide,
.haneul-section05__slider .swiper-slide-active {
  opacity: 1 !important;
}

@media (max-width: 767px) {
  .haneul-section05__title {
    font-size: 23px;
    font-weight: 600;
  }
}

/* 섹션6: 믿고 맡기는 이사 플랫폼, 하늘익스프레스 */
.haneul-section06 {
  width: 100%;
  background: #fafbfc;
  padding: 0px 0 100px 0;
  /* 원래 패딩 복원 */
  overflow: hidden;
  /* 전체 섹션에서 오버플로우 숨김 */
}

.haneul-section06__container {
  max-width: 1440px;
  margin: 0 auto;
  /* padding: 0 24px; */
  display: flex;
  flex-direction: column;
  gap: 0px;
  overflow: hidden;
  /* 컨테이너에서도 오버플로우 숨김 */
}

.haneul-section06__scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.haneul-section06__item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0px;
  width: 100%;
  height: 680px;
  /* 정확히 680px로 설정 */
  min-height: 680px;
  /* 최소 높이도 680px로 통일 */
  position: relative;
}

.haneul-section06__left,
.haneul-section06__right {
  width: 720px;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
}

.haneul-section06__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.haneul-section06__img {
  width: 100%;
  height: auto;
  max-height: 680px;
  /* 이미지 최대 높이도 680px로 맞춤 */
  object-fit: contain;
  margin: auto 0;
  display: block;
}

.haneul-section06__right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 24px;
  padding-bottom: 40px;
  /* 하단 패딩 추가 */
  height: 100%;
  box-sizing: border-box;
}

.haneul-section06__title {
  font-size: 40px;
  font-weight: 600;
  margin-top: 100px;
}

.haneul-section06__num {
  position: absolute;
  top: 0px;
  right: 0;
  font-size: 64px;
  font-weight: 600;
  color: #ddd;
  line-height: 1;
  letter-spacing: 0.02em;
  z-index: 1;
}

.haneul-section06__label {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
  letter-spacing: -0.2px;
}

.haneul-section06__subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
  margin-top: 0;
  text-align: left;
  align-self: flex-start;
}

.haneul-section06__desc {
  font-size: 17px;
  color: #777777;
  line-height: 1.7;
  font-weight: 400;
  align-self: flex-end;
}

/* 데스크탑에서만 가로 스크롤 적용 */
@media (min-width: 1200px) {
  .haneul-section06__scroll-container {
    display: flex;
    gap: 0;
    width: 300%;
    /* 3개 아이템이므로 300% */
    position: relative;
    will-change: transform;
    overflow: hidden;
    /* 스크롤 컨테이너에서도 오버플로우 숨김 */
  }

  .haneul-section06__item {
    flex: 0 0 33.333%;
    /* 각 아이템이 1/3 크기 */
    width: 33.333%;
    min-width: 33.333%;
    max-width: 33.333%;
    /* 최대 너비도 제한 */
    position: relative;
    opacity: 1;
    /* 모든 아이템을 완전히 보이게 */
    transition: transform 0.2s ease;
  }

  .haneul-section06__item.active {
    opacity: 1;
    /* 활성 상태도 완전 불투명 */
  }

  .haneul-section06__left,
  .haneul-section06__right {
    width: 50%;
    /* 각 아이템 내에서 좌우 반반 */
    min-width: 0;
  }
}

@media (max-width: 1199px) {
  .haneul-section06__title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .haneul-section06__container {
    padding: 0 12px;
    gap: 0px;
  }

  .haneul-section06__item {
    gap: 32px;
    height: auto;
    min-height: 320px;
  }

  .haneul-section06__left,
  .haneul-section06__right {
    width: 100%;
    min-width: 0;
    height: auto;
  }

  .haneul-section06__img {
    max-width: 100%;
    height: 320px;
    max-height: 320px;
  }

  .haneul-section06__num {
    font-size: 44px;
  }

  .haneul-section06__label {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .haneul-section06__subtitle {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: left;
    align-self: flex-start;
  }

  .haneul-section06__desc {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .haneul-section06 {
    padding: 60px 0 60px 0;
  }

  .haneul-section06__title {
    font-size: 26px;
    font-weight: 600;
    margin-top: 0px;
  }

  .haneul-section06__container {
    padding: 0 20px;
    gap: 32px;
  }

  .haneul-section06__item {
    flex-direction: column;
    gap: 24px;
    height: auto;
    min-height: 0;
  }

  .haneul-section06__left,
  .haneul-section06__right {
    width: 100%;
    min-width: 0;
    height: auto;
  }

  .haneul-section06__img {
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    min-width: 0;
    display: block;
    margin: 0 auto;
  }

  .haneul-section06__right {
    position: relative;
    min-height: 56px;
  }

  .haneul-section06__num {
    position: absolute;
    top: 18px;
    right: 0;
    z-index: 2;
    font-size: 39px;
    margin: 0;
    text-align: right;
    line-height: 1;
  }

  .haneul-section06__content {
    padding-top: 0.5em;
  }

  .haneul-section06__label {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .haneul-section06__subtitle {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 8px;
    text-align: left;
    align-self: flex-start;
  }

  .haneul-section06__desc {
    font-size: 13px;
    align-self: flex-start;
    margin-top: 10px;
  }

  .haneul-section06__right {
    padding-top: 0px;
  }
}

@media (min-width: 1200px) {
  .haneul-section06__content {
    margin-left: 110px;
    margin-right: 110px;
  }

  .haneul-section06__num {
    left: auto;
    right: 110px;
  }
}

@media (max-width: 767px) {
  .mobile-hidden {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mobile-hidden {
    display: block !important;
  }
}

/* 섹션7: 오직 당신의 두피가 온전히 쉬어가는 곳 */
.haneul-section07 {
  width: 100%;
  background: url('https://smkt.co.kr/images/smi/landing/2026/smi_2026_cellem/pc/section07_bg.png') center center/cover no-repeat;
  padding: 64px 0 64px 0;
}

.haneul-section07__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.haneul-section07__copy {
  flex: 1 1 auto;
  text-align: left;
}

.haneul-section07__title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  letter-spacing: -1px;
  line-height: 1.25;
  margin: 0 0 18px 0;
}

.haneul-section07__subtitle {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: #888;
  font-weight: 400;
}

.haneul-section07__media {
  flex: 0 0 auto;
  margin-right: 150px;
  /* 데스크탑에서 영상이 오른쪽으로 쏠리는 문제 보정 */
}

.haneul-section07__video-wrap {
  width: 270px;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  position: relative;
  z-index: 2;
}

.haneul-section07__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

@media (max-width: 1199px) {
  .haneul-section07 {
    padding: 48px 0;
  }

  .haneul-section07__container {
    padding: 0 20px;
    gap: 24px;
  }

  .haneul-section07__media {
    margin-right: 0;
  }

  .haneul-section07__title {
    font-size: 38px;
  }
}

@media (max-width: 1199px) {
  .haneul-section07__video-wrap {
    width: 240px;
    height: 426px;
    /* 240 * 16/9 = 426.6 */
    border-radius: 24px;
  }
}

@media (max-width: 767px) {
  .haneul-section07 {
    padding: 60px 0 60px 0;
  }

  .haneul-section07__container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 18px;
    gap: 18px;
  }

  .haneul-section07__copy {
    width: 100%;
    text-align: left;
  }

  .haneul-section07__title {
    font-size: 24px;
  }

  .haneul-section07__subtitle {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 12px;
  }

  .haneul-section07__media {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .haneul-section07__video-wrap {
    width: 62vw;
    height: auto;
    aspect-ratio: 9 / 16;
    max-width: 260px;
    border-radius: 28px;
  }
}

/* 작은 모바일: 영상 과대 노출 보정 */
@media (max-width: 420px) {
  .haneul-section07 {
    padding: 60px 0 60px 0;
  }

  .haneul-section07__video-wrap {
    width: 56vw;
    max-width: 230px;
    border-radius: 26px;
  }

  .haneul-section07__subtitle {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* 섹션8: 상담문의 폼 */
.haneul-section08 {
  width: 100%;
  background: #fff;
  padding: 0;
}

.haneul-section08__container {
  display: flex;
  align-items: stretch;
  position: relative;
  gap: 0;
  max-width: none;
  padding: 0;
}

.haneul-section08__img {
  width: 50vw;
  position: relative;
}

.haneul-section08__img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
}

.haneul-section08__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 600px;
}

.haneul-section08__form {
  width: 50vw;
  padding: 100px 0 100px 120px;
  box-sizing: border-box;
  max-width: 650px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.haneul-section08__form-inner {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.haneul-section08__label {
  color: #222;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.haneul-section08__input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  height: 56px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-size: 18px;
  color: #222;
  padding: 0 18px;
  margin-bottom: 18px;
  font-family: inherit;
  font-weight: 400;
}

.haneul-section08__input::placeholder {
  color: #888;
  opacity: 1;
}

.haneul-section08__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.haneul-section08__checkbox-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 1200px) {
  .haneul-section08__checkbox-row {
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
  }

  .haneul-section08__submit {
    max-width: 354px;
    margin: 24px auto 0 auto;
    display: block;
  }
}

.haneul-section08__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  color: #222;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.haneul-section08__checkbox {
  width: 20px;
  height: 20px;
  accent-color: #3bb3ff;
}

.haneul-section08__link {
  color: #666;
  font-size: 13px;
  text-decoration: underline;
  margin-left: 4px;
  white-space: nowrap;
}

.haneul-section08__submit {
  width: 100%;
  height: 60px;
  background: #335798;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  margin-top: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.haneul-section08__submit:hover {
  background: #335798;
}

@media (max-width: 1199px) {
  .haneul-section08__form {
    padding: 60px 40px;
  }

  .haneul-section08__form-inner {
    max-width: 100%;
    gap: 16px;
  }

  .haneul-section08__input {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .haneul-section08__label {
    font-size: 15px;
    color: #222;
  }

  .haneul-section08__checkbox-wrap {
    color: #222;
  }

  .haneul-section08__submit {
    height: 44px;
    font-size: 17px;
    border-radius: 7px;
  }
}

@media (max-width: 767px) {
  .haneul-section08__container {
    flex-direction: column;
  }

  .haneul-section08__img {
    width: 100vw;
  }

  .haneul-section08__img img {
    min-height: 400px;
  }

  .haneul-section08__form {
    width: 100%;
    padding: 30px 20px;
    max-width: 100%;
  }

  .haneul-section08__form-inner {
    max-width: 100%;
    gap: 12px;
  }

  .haneul-section08__input {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    height: 46px;
    font-size: 13px;
    padding: 0 8px;
    margin-bottom: 6px;
    color: #222;
  }

  .haneul-section08__label {
    font-size: 13px;
    margin-bottom: 4px;
    color: #222;
  }

  .haneul-section08__checkbox-group {
    gap: 6px;
    margin-bottom: 10px;
  }

  .haneul-section08__checkbox-wrap {
    color: #222;
    line-height: 1.4;
  }

  .haneul-section08__checkbox {
    width: 16px;
    height: 16px;
  }

  .haneul-section08__submit {
    height: 48px;
    font-size: 15px;
    border-radius: 6px;
    margin-top: 8px;
  }
}

.haneul-section08__form-title {
  font-size: 40px;
  font-weight: 600;
  color: #222;
  text-align: center;
  margin-bottom: 36px;
}

@media (max-width: 767px) {
  .haneul-section08__form-title {
    font-size: 22px;
    margin-bottom: 18px;
  }
}

/* 푸터: 하늘익스프레스 정보 */
.haneul-footer {
  width: 100%;
  background: #FAFAFA;
  padding: 0;
}

.haneul-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 0 60px 80px;
  color: #aaa;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: -0.2px;
  text-align: left;
}

.haneul-footer__brand {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
  display: block;
  width: 180px;
  height: auto;
}

.haneul-footer__address,
.haneul-footer__info,
.haneul-footer__etc {
  color: #aaa;
  font-size: 15px;
  font-weight: 400;
}

.haneul-footer__info {
  margin: 0 0 0 0;
}

.haneul-footer__etc {
  margin-top: 4px;
}

@media (max-width: 1199px) {
  .haneul-footer__container {
    padding: 32px 0 40px 24px;
    font-size: 14px;
  }

  .haneul-footer__brand {
    font-size: 16px;
    width: 160px;
  }

  .haneul-footer__address,
  .haneul-footer__info,
  .haneul-footer__etc {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .haneul-footer__container {
    padding: 24px 12px 32px 12px;
    font-size: 12px;
    padding-bottom: 80px;
    /* 플로팅 폼 헤더 높이만큼 마진 추가 */
  }

  .haneul-footer__brand {
    font-size: 14px;
    width: 140px;
  }

  .haneul-footer__address,
  .haneul-footer__info,
  .haneul-footer__etc {
    font-size: 11px;
  }
}

@media (min-width: 768px) {
  .haneul-footer__container {
    padding-bottom: 190px;
  }
}

/* 모달 팝업 스타일 */
.haneul-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99999;
}

.haneul-modal-content {
  position: relative;
  background-color: #fff;
  margin: 15vh auto;
  padding: 0;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.haneul-modal-header {
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.haneul-modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.haneul-close-modal {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 700;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 8px;
}

.haneul-modal-body {
  padding: 30px;
  max-height: 60vh;
  overflow-y: auto;
}

.haneul-modal-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #333;
}

.haneul-privacy-content {
  margin-bottom: 30px;
}

.haneul-privacy-content p {
  margin: 0 0 15px;
  line-height: 1.6;
  font-size: 16px;
  color: #666;
}

.haneul-privacy-content p strong {
  color: #333;
  display: inline-block;
  margin-right: 10px;
}

.haneul-privacy-notice {
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 768px) {
  .haneul-modal-content {
    margin: 10vh auto;
    width: 95%;
  }

  .haneul-modal-header h2 {
    font-size: 20px;
  }

  .haneul-modal-body {
    padding: 20px;
  }

  .haneul-privacy-content p {
    font-size: 14px;
  }

  .haneul-privacy-notice {
    font-size: 13px;
    padding: 15px;
  }
}

/* 스크롤 애니메이션 기본 클래스 */
.haneul-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.haneul-fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

.haneul-slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.haneul-slide-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.haneul-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.haneul-scale-in.animate {
  opacity: 1;
  transform: scale(1);
}

/* 섹션별 애니메이션 딜레이 */
.haneul-delay-1 {
  transition-delay: 0.1s;
}

.haneul-delay-2 {
  transition-delay: 0.2s;
}

.haneul-delay-3 {
  transition-delay: 0.3s;
}

.haneul-delay-4 {
  transition-delay: 0.4s;
}

.haneul-delay-5 {
  transition-delay: 0.5s;
}

.haneul-delay-6 {
  transition-delay: 0.6s;
}

/* 모바일에서 애니메이션 조정 */
@media (max-width: 767px) {
  .haneul-fade-in {
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .haneul-slide-up {
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }

  .haneul-scale-in {
    transform: scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  /* 모바일에서 딜레이 줄이기 */
  .haneul-delay-1 {
    transition-delay: 0.05s;
  }

  .haneul-delay-2 {
    transition-delay: 0.1s;
  }

  .haneul-delay-3 {
    transition-delay: 0.15s;
  }

  .haneul-delay-4 {
    transition-delay: 0.2s;
  }

  .haneul-delay-5 {
    transition-delay: 0.25s;
  }

  .haneul-delay-6 {
    transition-delay: 0.3s;
  }
}

/* 성능 최적화를 위한 will-change 속성 */
.haneul-fade-in,
.haneul-slide-up,
.haneul-scale-in {
  will-change: opacity, transform;
}

@media (min-width: 768px) {
  .haneul-floating-form {
    display: none !important;
  }
}

/* 모바일: 플로팅 버튼 + 폼을 한 래퍼로 묶어 폼 펼침/접힘 시 버튼이 폼 위에 고정되어 같이 이동 */
@media (max-width: 767px) {
  .haneul-floating-mobile-wrap {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
  }

  .haneul-floating-mobile-wrap .haneul-floating-btns {
    position: static;
    right: auto;
    bottom: auto;
    margin-bottom: 12px;
    margin-right: 10px;
    pointer-events: auto;
  }

  .haneul-floating-mobile-wrap .haneul-floating-form {
    position: static;
    pointer-events: auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .haneul-floating-form {
    position: static;
    left: auto;
    bottom: auto;
    width: 100%;
    font-family: 'Noto Sans KR', sans-serif;
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
  }

  .haneul-floating-form__container {
    width: 100vw;
    background: #223350;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .haneul-floating-form__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #13B5B1;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
  }

  .haneul-floating-form__arrow {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: none;
    margin-left: 8px;
    transition: transform 0.3s;
    position: relative;
  }

  .haneul-floating-form__arrow::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid #fff;
    position: absolute;
    left: 2px;
    top: 4px;
    transition: transform 0.3s;
  }

  .haneul-floating-form.expanded .haneul-floating-form__arrow::before {
    border-top: none;
    border-bottom: 8px solid #fff;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    top: 6px;
  }

  .haneul-floating-form__body {
    background: #223350;
    padding: 18px 16px 16px 16px;
    transition: max-height 0.2s cubic-bezier(.4, 0, .2, 1), opacity 0.25s cubic-bezier(.4, 0, .2, 1);
    max-height: 1000px;
    opacity: 1;
    overflow: hidden;
  }

  .haneul-floating-form:not(.expanded) .haneul-floating-form__body {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: none;
  }

  .haneul-floating-form__body form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .haneul-floating-form__body input[type="text"],
  .haneul-floating-form__body input[type="tel"] {
    height: 44px;
    border-radius: 6px;
    border: none;
    padding: 0 12px;
    font-size: 15px;
    margin-bottom: 0;
  }

  .haneul-floating-form__checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 8px;
  }

  .haneul-floating-form__checkbox-group label {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
  }

  .haneul-floating-form__checkbox-group a {
    color: #b8c7e0;
    text-decoration: underline;
    margin-left: 2px;
    font-size: 12px;
    white-space: nowrap;
  }

  .haneul-floating-form__submit {
    width: 100%;
    height: 44px;
    background: #13B5B1;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    margin-top: 6px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .haneul-floating-form__submit:hover {
    background: #13B5B1;
  }
}


/* PC/태블릿 하단 고정 상담신청 입력폼 - 별상마마 스타일 */
.haneul-desktop-fixed-form {
  display: none;
}

@media (min-width: 768px) {
  .haneul-desktop-fixed-form {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: #223350;
    z-index: 9998;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
    padding: 0;
  }

  .haneul-desktop-fixed-form__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 16px 0 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .haneul-desktop-fixed-form__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .haneul-desktop-fixed-form__row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 8px;
  }

  .haneul-desktop-fixed-form__inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .haneul-desktop-fixed-form__input-group {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .haneul-desktop-fixed-form__label {
    color: #fff;
    font-size: 16px;

    min-width: 80px;
    text-align: right;
    letter-spacing: 0.02em;
    margin-right: 4px;
  }

  .haneul-desktop-fixed-form__input {
    width: 300px;
    height: 38px;
    border-radius: 4px;
    border: none;
    padding: 0 12px;
    font-size: 15px;
    background: #fff;
    color: #223350;
    font-family: inherit;
    font-weight: 400;
    box-sizing: border-box;
  }

  .haneul-desktop-fixed-form__input::placeholder {
    color: #bfc7d1;
    opacity: 1;
  }

  .haneul-desktop-fixed-form__submit {
    width: 258px;
    height: 86px;
    background: #13B5B1;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: 0;
    box-sizing: border-box;
  }

  .haneul-desktop-fixed-form__submit:hover {
    background: #13B5B1;
  }

  .haneul-desktop-fixed-form__checkboxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
  }

  .haneul-desktop-fixed-form__checkbox-label {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    white-space: nowrap;
  }

  .haneul-desktop-fixed-form__checkbox-label input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #4bb3ff;
    margin-right: 4px;
  }

  .haneul-desktop-fixed-form__link {
    color: #bfc7d1;
    font-size: 13px;
    text-decoration: underline;
    margin-left: 5px;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .haneul-desktop-fixed-form {
    display: none !important;
  }
}

/* 우측 하단 플로팅 버튼 2개 */
.haneul-floating-btns {
  position: fixed;
  right: 32px;
  bottom: 40px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: none;
}

.haneul-floating-btn {
  width: 70px;
  height: 70px;
  border: none;
  background: none;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(30, 40, 60, 0.13);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: box-shadow 0.18s, transform 0.18s;
}

.haneul-floating-btn img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.haneul-floating-btn:active,
.haneul-floating-btn:hover {
  box-shadow: 0 8px 24px rgba(30, 40, 60, 0.18);
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 1199px) {
  .haneul-floating-btns {
    right: 16px;
    bottom: 24px;
    gap: 12px;
  }

  .haneul-floating-btn {
    width: 50px;
    height: 50px;
  }

  .haneul-floating-btn img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .haneul-floating-btns {
    right: 10px;
    bottom: 16px;
    gap: 8px;
  }
}

/* 데스크탑: 플로팅 버튼을 상단 고정 폼 위로 올림 */
@media (min-width: 1200px) {
  .haneul-floating-btns {
    bottom: 210px;
  }
}

/* 모바일: 래퍼 안에서는 bottom 제거 (폼 위에 붙어서 같이 이동) */
@media (max-width: 767px) {
  .haneul-floating-mobile-wrap .haneul-floating-btns {
    bottom: auto;
  }
}

@media (min-width: 1200px) {
  .haneul-section03__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.4s;
  }

  .haneul-section03__item.expanded::after,
  .haneul-section03__item:hover::after {
    opacity: 0;
  }

  .haneul-section03__icon--center,
  .haneul-section03__icon {
    z-index: 3;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 1199px) {
  .haneul-section03__item::after {
    display: none !important;
  }
}

/* 모바일 전용 애니메이션 클래스 */
.mobile-slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.mobile-slide-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.mobile-delay-1 {
  transition-delay: 0.1s;
}

.mobile-delay-2 {
  transition-delay: 0.2s;
}

.mobile-delay-3 {
  transition-delay: 0.3s;
}

/* 데스크탑에서는 모바일 애니메이션 비활성화 */
@media (min-width: 768px) {
  .mobile-slide-up {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }

  .mobile-delay-1,
  .mobile-delay-2,
  .mobile-delay-3 {
    transition-delay: 0s;
  }
}