.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18); /* 기본 투명 헤더 아래의 은은한 가로 라인 */
  background: transparent;
  backdrop-filter: blur(0px);
  transition:
    height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    backdrop-filter 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 기본 상태: 투명 배경일 때 흰색 로고/텍스트 톤 */
.site-header .site-nav__primary a {
  color: var(--color-white);
  transition: color 0.3s ease;
}

.site-header .brand__logo {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.site-header .nav-toggle .material-symbols-outlined {
  color: var(--color-white);
  transition: color 0.3s ease;
}

/* 스크롤 시, 헤더 마우스 호버 시, 포커스 시: 흰색 배경 및 복원 */
.site-header.is-scrolled,
.site-header:hover,
.site-header:focus-within {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(0, 62, 165, 0.1); /* 스크롤 활성화 시 연한 회록색 경계선 */
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .site-nav__primary a,
.site-header:hover .site-nav__primary a,
.site-header:focus-within .site-nav__primary a {
  color: var(--color-ink);
}

.site-header.is-scrolled .site-nav__primary a:hover,
.site-header:hover .site-nav__primary a:hover {
  color: var(--color-green);
}

.site-header.is-scrolled .brand__logo,
.site-header:hover .brand__logo,
.site-header:focus-within .brand__logo {
  filter: none; /* 원래 색상 로고 */
}

.site-header.is-scrolled .nav-toggle .material-symbols-outlined,
.site-header:hover .nav-toggle .material-symbols-outlined,
.site-header:focus-within .nav-toggle .material-symbols-outlined {
  color: var(--color-ink);
}

@media (min-width: 1081px) {
  :root {
    --header-height: 84px;
  }
  .site-header.is-scrolled,
  .site-header:hover,
  .site-header:focus-within {
    --header-height: 70px;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--container);
  height: var(--header-height);
  margin-inline: auto;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__logo {
  display: block;
  width: 138px;
  height: auto;
  /* 쫀쫀하고 부드러운 최고급 스케일 트랜지션 효과 적용 */
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform; /* 하드웨어 가속 활성화로 잔상 차단 */
}


/* 헤더에 마우스를 올리거나(hover) 스크롤되었을 때(is-scrolled) 로고 축소 */
.site-header:hover .brand__logo,
.site-header.is-scrolled .brand__logo {
  transform: scale(0.9);
}


.site-nav {
  display: block;
  color: var(--color-ink);
  font-size: 0.96rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav__body {
  font-size: 18px;
}

.site-nav__quick-actions {
  display: none !important;
}

.site-nav__primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.site-nav__primary a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: var(--header-height);
  transition: color var(--ease);
}

.site-nav__primary a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-green), var(--color-primary));
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity var(--ease), transform var(--ease);
}

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

.site-nav__primary a:hover::after,
.site-nav__primary a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.mega-menu {
  position: fixed;
  top: calc(var(--header-height) - 2px); /* 오버랩을 주어 마우스 무브 시 호버 풀림(버벅임) 현상 제거 */
  left: 0;
  right: 0;
  z-index: 49;
  border-top: 1px solid rgba(216, 227, 220, 0.35); /* 가로 경계선을 한결 얇고 은은하게 조정 */
  border-bottom: 1px solid rgba(216, 227, 220, 0.35);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 48px rgba(8, 34, 62, 0.11);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu__inner {
  display: block;
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--container);
  margin-inline: auto;
  padding: 28px 0; /* 마우스 오버 시 펼쳐지는 메가메뉴의 상하 여백을 넉넉하게 추가 */
}

.mega-menu__intro {
  display: grid;
  align-content: start;
  gap: 12px;
  border-right: 1px solid var(--color-warm-line);
  padding-right: 28px;
  white-space: normal;
}

.mega-menu__intro strong {
  color: var(--color-green-dark);
  font-size: 1.08rem;
  font-weight: 950;
}

.mega-menu__intro p {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.62;
}

.mega-menu__intro a {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--color-green-soft);
  color: var(--color-green-dark);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 950;
}

.mega-menu__groups {
  display: block;
  width: 100%;
}

.mega-menu__group {
  display: none;
  min-width: 0;
}

.mega-menu__group.is-desktop-active {
  display: block;
  width: 100%;
}

.mega-menu__summary {
  display: none;
}

.mega-menu__links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mega-menu__links li {
  list-style: none;
}

.mega-menu__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: var(--color-ink);
  padding: 10px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.mega-menu__links a:hover,
.mega-menu__links a:focus-visible,
.mega-menu__links a.is-current {
  background: var(--color-green-soft, #eefbf9);
  color: var(--color-green-dark, #003ea5);
  transform: translateY(-2px);
  padding-left: 24px;
}

.mega-menu__links a .mega-menu__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: transform 0.25s ease;
}

.mega-menu__links a:hover .mega-menu__icon,
.mega-menu__links a:focus-visible .mega-menu__icon {
  transform: scale(1.15);
}

.nav-toggle {
  display: none;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  padding: 0;
  transition: opacity var(--ease), transform var(--ease);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  opacity: 0.7;
}

.nav-toggle .material-symbols-outlined {
  font-size: 28px;
  font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 24; /* 햄버거 메뉴를 약간 두껍게(wght 600) 보정 */
  color: var(--color-ink);
  line-height: 1;
  display: block;
}

.nav-toggle[aria-expanded="true"] {
  transform: rotate(90deg); /* 메뉴 확장 상태 시 세련된 90도 회전 효과 */
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 18px 36px;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.2;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background:#00cce0;
  color: var(--color-white);
}

.button--primary:hover {
  background:#00b3c3;
}

.button--primary.site-header__cta {
  box-shadow: none;
}

.button--primary.site-header__cta:hover {
  box-shadow: none;
}


.button--ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.13);
  color: var(--color-white);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.24);
}

.button--small {
  padding: 12px 22px;
  font-size: 0.9rem;
}

.button--compact {
  padding: 12px 24px;
  font-size: 0.92rem;
}

.shortcut-card {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  min-height: 128px;
  border: 0;
  border-left: 1px solid var(--color-warm-line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-ink);
  padding: 24px 18px;
  text-align: center;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.shortcut-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 117, 77, 0.26);
  background: #fafffd;
  box-shadow: 0 18px 34px rgba(8, 34, 62, 0.09);
}

.shortcut-card:first-child {
  border-left: 0;
}

.shortcut-card__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-green-soft);
  color: var(--color-green);
  opacity: 1;
}

.shortcut-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.shortcut-card strong {
  color: currentColor;
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1.24;
}

.shortcut-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
}

.select-control {
  display: inline-flex;
  max-width: 100%;
  vertical-align: middle;
}

.select-control select {
  appearance: none;
  max-width: 100%;
  border: 1px solid rgba(5, 117, 77, 0.22);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, #f0fff8, #ffffff),
    var(--color-white);
  color: var(--color-green-dark);
  padding: 9px 34px 9px 14px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  background-image:
    linear-gradient(135deg, #f0fff8, #ffffff),
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    0 0,
    calc(100% - 16px) 52%,
    calc(100% - 11px) 52%;
  background-size:
    100% 100%,
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  border: 1px solid var(--color-warm-line);
  background: var(--color-white);
  color: var(--color-green);
  transition: transform var(--ease), background var(--ease), color var(--ease);
}

.carousel-button:hover {
  transform: translateY(-2px);
  border-color: transparent;
  background: var(--color-green);
  color: var(--color-white);
}

.carousel-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.faq-consult__grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px; /* 데스크톱 FAQ 레이아웃 갭 60px로 축소 */
  align-items: start;
}

.faq-consult__info {
  position: sticky;
  top: 120px;
}

.faq-consult__info h2 {
  font-size: clamp(2.2rem, 3.5vw, 2.75rem);
  font-weight: var(--font-heavy);
  color: var(--color-ink);
  line-height: 1.25;
  margin: 0;
}

.faq-consult__info p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--color-muted);
  margin-top: 20px;
}

@media (max-width: 1080px) {
  .faq-consult__grid {
    grid-template-columns: 1fr;
    gap: 24px; /* 모바일/태블릿 FAQ 레이아웃 갭 24px로 축소 */
  }
  .faq-consult__info {
    position: static;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 0;
}

.faq-list details {
  border: 1px solid transparent;
  border-radius: 20px;
  background-color: #f4f7fa; /* 연한 회색/하늘색 카드 배경 */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.faq-list details[open] {
  background-color: var(--color-white);
  border-color: #00cce0; /* 포인트 시안 컬러 테두리 */
  box-shadow: 0 16px 32px rgba(0, 204, 224, 0.06), 0 1px 3px rgba(0, 0, 0, 0.01);
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 24px 80px 24px 28px;
  color: var(--color-ink);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  outline: none;
  transition: color 0.3s ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

/* Q 마커 제거 */
.faq-list summary::before {
  display: none;
}

/* 우측 둥근 + 토글 아이콘 */
.faq-list summary::after {
  content: "";
  color: #00cce0;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) center / 14px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 14px no-repeat,
    var(--color-white);
  box-shadow: none; /* 그림자 완전 제거 */
  border: 1px solid rgba(0, 204, 224, 0.18); /* 플랫한 느낌을 살리기 위해 연한 테두리선 배치 */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 오픈 시 세로선을 제거해 - 아이콘으로 전환 */
.faq-list details[open] summary::after {
  transform: translateY(-50%);
  background:
    linear-gradient(currentColor, currentColor) center / 14px 2px no-repeat,
    #00cce0;
  box-shadow: none; /* 그림자 완전 제거 */
  color: var(--color-white);
  border-color: #00cce0;
}

.faq-list p {
  padding: 0 80px 28px 28px;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  word-break: keep-all;
}

/* FAQ 모바일 반응형 처리 */
@media (max-width: 768px) {
  .faq-list {
    gap: 12px;
  }

  .faq-list details {
    border-radius: 16px;
  }

  .faq-list summary {
    padding: 20px 60px 20px 20px;
    font-size: 0.98rem;
  }

  .faq-list summary::after {
    right: 16px;
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }

  .faq-list p {
    padding: 0 20px 20px 20px;
    font-size: 0.92rem;
    line-height: 1.65;
  }
}

/* 푸터 영역 어두운 검정색 리디자인 */
.site-footer {
  background: #181818;
  color: #a0a0a0;
  padding-block: 72px;
  border-top: 1px solid #282828;
  margin-top: 0 !important;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 60px;
  align-items: start;
  border-top: 0;
  padding-top: 0;
}

.brand--footer .brand__logo {
  width: 178px;
  filter: brightness(0) invert(1);
}

/* 좌측 정보 영역 */
.site-footer__info-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-sub-nav {
  display: flex;
  gap: 20px;
}

.footer-sub-nav a {
  color: #e0e0e0;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--ease);
}

.footer-sub-nav a:hover {
  color: var(--color-accent, #0056e0);
}

.footer-company-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-company-details .detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: #a0a0a0;
}

.footer-company-details .detail-row strong {
  color: #d0d0d0;
  margin-right: 6px;
}

/* 지사 주소 스타일 */
.detail-branches {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #282828;
}

.branch-item {
  color: #909090;
}

.branch-item strong {
  color: #c0c0c0;
  margin-right: 8px;
  display: inline-block;
  min-width: 65px;
}

.footer-copyright {
  font-size: 0.78rem;
  color: #666666;
  margin-top: 12px;
}

.phone-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.sns-icon-btn__naver-mark {
  font-family: sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

/* 우측 고객센터 및 SNS 영역 */
.site-footer__cs-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.footer-cs-card {
  width: 100%;
  max-width: 340px;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 2px; /* 텍스트 간격 좁힘 */
  color: var(--color-white, #ffffff);
}

.cs-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

.cs-card-phone {
  font-size: 2.1rem;
  font-weight: 850;
  color: var(--color-white, #ffffff);
  text-decoration: none;
  margin: 0; /* 불필요한 상하 마진 제거 */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: transform var(--ease);
}

.cs-card-phone:hover {
  transform: scale(1.02);
}

.cs-card-email {
  font-size: 0.94rem;
  opacity: 0.85;
}

.footer-sns-list {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.sns-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #242424;
  color: #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--ease);
}

.sns-icon-btn svg {
  width: 20px;
  height: 20px;
}

.sns-icon-btn:hover {
  background: var(--color-primary-dark, #003ea5);
  color: var(--color-white, #ffffff);
  transform: translateY(-4px);
}

/* 개별 SNS 오버 컬러 */
.sns-icon-btn--mail:hover { background: #0084ff; }
.sns-icon-btn--kakao:hover { background: #fee500; color: #191919; }
.sns-icon-btn--blog:hover { background: #333333; }
.sns-icon-btn--naver:hover { background: #03c75a; }


/* Brand Promise (실시간 예약 현황판 리뉴얼) */
.brand-promise {
  background: var(--color-primary-dark, #003ea5) !important; /* 메인 포인트 컬러 배경 적용 */
  padding-block: 16px !important; /* 극도로 슬림한 한 줄 바 높이 구성 */
  color: var(--color-white, #ffffff);
}

.brand-promise__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.brand-promise__title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-promise__title strong {
  font-size: 1.05rem;
  font-weight: 850;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* 라이브 펄스 민트/시안 칼라로 세팅 */
.live-dot-pulse {
  width: 8px;
  height: 8px;
  background-color: #e0dc00;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.live-dot-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #e0dc00;
  animation: live-pulse 1.8s infinite ease-in-out;
}

@keyframes live-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.promise-ticker-container {
  flex-grow: 1;
  height: 32px; /* 32px 1행 높이 */
  overflow: hidden;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 0;
  max-width: none;
}

.promise-ticker-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.promise-ticker-item {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center; /* 가운데 정렬로 변경 */
  gap: 22px;
  width: 100%;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.promise-ticker-item .location {
  font-weight: 800;
  color: #ffffff; /* 딥그린 포인트 */
}

.promise-ticker-item .customer {
  font-weight: 700;
  color: #ffffff;
}

.promise-ticker-item .divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
}

.promise-ticker-item .service-name {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 380px;
}

.status-badge {
  font-size: 0.76rem;
  font-weight: 800;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.2;
}



.promise-ticker-item .time {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  /* margin-left: auto 제거하여 가운데로 오게 함 */
}

/* 우측 [견적문의 하기] 버튼 스타일 */
.brand-promise__action {
  flex-shrink: 0;
  z-index: 5;
}

.brand-promise__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--color-primary-dark, #003ea5);
  padding: 5px 15px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: all var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.brand-promise__btn:hover {
  background: #00cce0;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 204, 224, 0.24);
}

/* 태블릿 및 모바일 브레이크포인트 보정 */
@media (max-width: 900px) {
  .promise-ticker-item .service-name,
  .promise-ticker-item .divider {
    display: none; /* 화면 폭 좁을 때 긴 서비스명 숨김 처리 */
  }
}

@media (max-width: 640px) {
  /* 모바일 가로폭 확보를 위해 텍스트 숨김, 라이브 펄스 아이콘만 남김 */
  .brand-promise__title strong {
    display: none;
  }
  .brand-promise__title {
    gap: 0;
  }
  .brand-promise__inner {
    gap: 12px;
  }
  .brand-promise__action {
    display: none !important; /* 모바일에서 맞춤견적상담 버튼 숨김 */
  }
}

@media (max-width: 480px) {
  .brand-promise__inner {
    gap: 8px;
  }
  .promise-ticker-item {
    font-size: 0.8rem;
    gap: 6px;
  }
  .status-badge {
    font-size: 0.68rem;
    padding: 1px 5px;
  }
  .brand-promise__btn {
    padding: 4px 10px;
    font-size: 0.74rem;
  }
}




/* Service Pillars (6단 서비스 카드) */
.service-pillars {
  background: var(--color-panel);
  padding-block: 120px;
}

.service-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.service-pillars__footer {
  margin-top: 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.service-pillars__footer p {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-muted);
  margin: 0;
}

.service-pillars__footer .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-weight: var(--font-bold);
  box-shadow: 0 10px 24px rgba(0, 62, 165, 0.16);
  transition: all var(--ease);
}

.service-pillars__footer .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 62, 165, 0.24);
}

.button__icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  stroke: currentColor;
}

.service-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  background-color: #000;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 15, 45, 0.12);
}

.service-card .card-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.service-card:hover .card-background-img {
  transform: scale(1.06);
}

/* 텍스트 가독성을 위한 오버레이 그라데이션 */
.service-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}

/* 카드 컨텐츠 영역 */
.service-card .card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* 하단 정렬로 배치 변경 */
  padding: 24px;
  color: #FFFFFF;
  box-sizing: border-box;
}

/* 카드 상단 원형 아이콘 태그 */
.service-card .card-icon-tag {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--color-primary, rgb(0, 144, 148));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-card .card-icon-tag .material-symbols-outlined {
  font-size: 22px;
}

/* 첫 번째, 두 번째 카드는 기본 브랜드 컬러, 세 번째 카드는 파란색 */
.service-card .card-icon-tag.blue {
  background-color: var(--color-primary, rgb(0, 144, 148));
}

.service-card .card-icon-tag.blue2 {
  background-color: #3498db;
}

.service-card .card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-card .card-desc {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  word-break: keep-all;
}


/* Before & After 비교 갤러리 공통 스타일 */
.gallery-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.compare-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}

.compare-box img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.compare-box:hover img {
  transform: scale(1.03);
}

.compare-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 950;
  color: var(--color-white);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.compare-badge--before {
  background: #e11d48;
}

.compare-badge--after {
  background: var(--color-green);
}

/* Step-by-Step Process */
.process-step-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.process-step-card span {
  font-size: 2.2rem;
  font-weight: 950;
  color: rgba(5, 117, 77, 0.12);
  line-height: 1;
  margin-bottom: 12px;
}

.process-step-card strong {
  font-size: 1.08rem;
  font-weight: 950;
  color: var(--color-ink);
  margin-bottom: 10px;
}

.process-step-card p {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Customer Reviews */
.customer-reviews {
  padding-block: 120px;
  background: var(--color-panel);
}

/* 무한 루프 리뷰 마키 티커 (Infinite Marquee Ticker) */
.reviews-ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-block: 24px;
}

/* 좌우 흐릿한 페이드 아웃 효과 */
.reviews-ticker-wrap::before,
.reviews-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 3;
  pointer-events: none;
}

.reviews-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg) 0%, rgba(255, 255, 255, 0) 100%);
}

.reviews-ticker-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-bg) 0%, rgba(255, 255, 255, 0) 100%);
}

.reviews-ticker-track {
  display: flex;
  width: max-content;
  animation: marqueeTicker 34s linear infinite;
}

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

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

/* 리뷰 개별 카드 디자인 */
.review-ticker-card {
  width: 380px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 28px;
  box-shadow: 0 8px 24px rgba(7, 17, 143, 0.02);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.review-ticker-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 62, 165, 0.3);
  box-shadow: 0 16px 36px rgba(8, 34, 62, 0.09);
}

.review-ticker-card__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.review-ticker-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--ease);
}

.review-ticker-card:hover .review-ticker-card__image img {
  transform: scale(1.05);
}

.review-ticker-card__body {
  padding: 44px 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.review-ticker-card__rating {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.review-ticker-card__text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--color-ink);
  margin-bottom: 20px;
  font-style: normal;
  text-align: left;
}

.review-ticker-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.review-ticker-card__author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-muted);
  text-align: left;
}

.review-ticker-card__badge {
  display: inline-block;
  background: var(--color-blue-soft);
  color: var(--color-primary-dark);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

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

/* FAQ & Quick Lead Form */
.faq-consult {
  padding-block: 130px;
  background: var(--color-bg);
}

.quick-lead-box {
  background: #f7fcfa;
  border: 1px solid rgba(5, 117, 77, 0.18);
  border-radius: 28px;
  padding: 64px 52px;
  box-shadow: 0 20px 48px rgba(5, 117, 77, 0.05);
}

.quick-lead-box h3 {
  color: var(--color-green-dark);
  font-size: 1.4rem;
  font-weight: 950;
  margin-bottom: 12px;
}

.quick-lead-box p {
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 28px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  color: var(--color-ink);
  font-size: 0.86rem;
  font-weight: 950;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-ink);
  background: var(--color-white);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(5, 117, 77, 0.1);
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.form-agree {
  margin-top: 6px;
  margin-bottom: 10px;
}

.form-agree label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-muted);
  cursor: pointer;
}

.form-agree input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-green);
}

.w-full {
  width: 100%;
}

/* Mobile Floating CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--color-white);
  box-shadow: 0 -10px 28px rgba(7, 21, 42, 0.16);
  border-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: calc(54px + env(safe-area-inset-bottom));
}

.mobile-cta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: calc(54px + env(safe-area-inset-bottom));
  padding: 0 16px env(safe-area-inset-bottom);
  box-sizing: border-box;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: filter var(--ease), background var(--ease);
}

.mobile-cta-item__icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.mobile-cta-item--phone {
  background: var(--color-primary, #00cce0);
  color: #ffffff;
}

.mobile-cta-item--sms {
  background: #00a9ba;
  color: #ffffff;
}

.mobile-cta-item--kakao {
  background: #fee500;
  color: #191919;
}

.mobile-cta-item--quote {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}

.mobile-cta-item:active {
  filter: brightness(0.95);
}

/* Section Head Eyebrow */
.section-head__eyebrow {
  display: block;
  color: var(--color-green);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

/* 전문가 프로필 소개 섹션 */
.brand-experts {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding-block: 104px 96px;
}

.brand-experts .container {
  max-width: 1304px;
}

.brand-experts .section-head {
  max-width: 940px;
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
}

.section-head__eyebrow--experts {
  display: inline-grid;
  justify-items: center;
  gap: 8px;
  color: #078640;
  font-size: 1.28rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.section-head__eyebrow--experts svg {
  width: 25px;
  height: 25px;
  color: #078640;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-head__eyebrow--experts > span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.section-head__eyebrow--experts > span::before,
.section-head__eyebrow--experts > span::after {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
  opacity: 0.72;
}

.brand-experts .section-head h2 {
  margin-top: 20px;
  font-size: clamp(2.75rem, 4.25vw, 3.35rem);
  line-height: 1.14;
}

.brand-experts .section-head p {
  margin-top: 20px;
  font-size: 1.18rem;
  line-height: 1.55;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.expert-card-item {
  --expert-accent: #00cce0; /* 청해 딥블루 */
  --expert-badge-bg: #eefbf9;
  --expert-badge-color: #00cce0;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: var(--color-white);
  border: 1px solid #eef2f5; /* 아주 은은한 외곽선 */
  border-radius: 28px; /* 레퍼런스 스타일의 둥근 모서리 */
  box-shadow: 0 16px 36px rgba(12, 42, 62, 0.05); /* 부드러운 그림자 */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.expert-card-item:nth-child(2) {
  --expert-accent: #009094; /* 톤앤매너 매칭 청록 블루 */
  --expert-badge-bg: #eef9fc;
  --expert-badge-color: #009094;
}

.expert-card-item:nth-child(3) {
  --expert-accent: #3b5bdb; /* 신뢰를 주는 네이비/인디고 */
  --expert-badge-bg: #edf2ff;
  --expert-badge-color: #364fc7;
}

.expert-card-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 62, 165, 0.2);
  box-shadow: 0 24px 48px rgba(12, 42, 62, 0.1);
}

.expert-card-item__image {
  position: relative;
  overflow: hidden;
  height: clamp(300px, 23vw, 344px);
  background: #edf5f2;
  border-bottom: 0; /* 이미지 하단 구분선 삭제 */
}

.expert-card-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.expert-card-item:hover .expert-card-item__image img {
  transform: scale(1.05);
}

.expert-card-item__body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px; /* 데스크톱 카드 패딩 28px로 정돈 */
  border-left: 0; /* 기존의 왼쪽 두꺼운 라인 제거 */
  background: #ffffff;
  text-align: left; /* 전체적인 왼쪽 정렬 */
}

.expert-card-item__body h3 {
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: var(--type-card-title);
  font-weight: var(--font-bold);
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 12px;
}

.expert-card-item__desc {
  min-height: 52px;
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--color-muted);
  font-size: var(--type-small, 0.92rem);
  font-weight: var(--font-medium);
  line-height: 1.65;
  word-break: keep-all;
}

.expert-card-item__desc strong {
  color: #111827; /* 이름 강조 */
  font-weight: 800;
}

/* 신규 태그 리스트 스타일 */
.expert-card-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto; /* 카드 하단 고정 */
}

.expert-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 700;
  background-color: var(--expert-badge-bg);
  color: var(--expert-badge-color);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  cursor: default;
}

.expert-tag:hover {
  background-color: var(--expert-accent);
  color: #ffffff;
  transform: translateY(-1px); /* 부드러운 마이크로 모션 */
}

/* Construction Gallery */
.construction-gallery {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f3fafc 100%);
  padding-block: 120px;
}

.construction-gallery .container {
  max-width: var(--container);
}

.construction-gallery .section-head {
  max-width: 860px;
  margin-inline: 0;
  text-align: left;
}

.construction-gallery .section-head h2 {
  margin-top: 16px;
  color: #111827;
  font-size: 3rem;
  font-weight: 950;
  line-height: 1.16;
}

.construction-gallery .section-head p {
  margin-top: 18px;
  color: #4b5563;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.7;
}

.gallery-ticker-wrap {
  position: relative;
  width: 100%;
  margin-top: 44px;
  overflow: hidden;
  padding-block: 18px 28px;
}

.gallery-ticker-wrap::before,
.gallery-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 150px;
  pointer-events: none;
}

.gallery-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #f3fafc 0%, rgba(243, 250, 252, 0) 100%);
}

.gallery-ticker-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #f3fafc 0%, rgba(243, 250, 252, 0) 100%);
}

.gallery-ticker-track {
  display: flex;
  width: max-content;
  animation: galleryHorizontalTicker 40s linear infinite;
  will-change: transform;
}

.gallery-ticker-wrap:hover .gallery-ticker-track,
.gallery-ticker-wrap:focus-within .gallery-ticker-track {
  animation-play-state: paused;
}

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

.gallery-post-card {
  flex: 0 0 344px;
  width: 344px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(12, 42, 62, 0.07);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 62, 165, 0.28);
  box-shadow: 0 20px 44px rgba(12, 42, 62, 0.12);
}

.gallery-post-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.gallery-post-card__image {
  display: block;
  height: 214px;
  overflow: hidden;
  background: #e8f3ef;
}

.gallery-post-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-post-card:hover .gallery-post-card__image img {
  transform: scale(1.05);
}

.gallery-post-card__body {
  display: flex;
  min-height: 224px;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 22px;
}

.gallery-post-card--compact .gallery-post-card__body {
  min-height: 104px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.gallery-post-card__category {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #e9f8f3;
  color: #04735f;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
}

.gallery-post-card__title {
  display: block;
  min-height: 56px;
  color: #111827;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.42;
  word-break: keep-all;
}

.gallery-post-card--compact .gallery-post-card__title {
  min-height: 0;
  font-weight: 700;
  text-align: center;
}

.gallery-post-card__text {
  display: block;
  margin-top: 12px;
  color: #52616f;
  font-size: 0.92rem;
  font-weight: 560;
  line-height: 1.65;
  word-break: keep-all;
}

.gallery-post-card__meta {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: #83919d;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

@keyframes galleryHorizontalTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .construction-gallery {
    padding-block: 64px;
  }

  .construction-gallery .section-head {
    text-align: left;
  }

  .construction-gallery .section-head h2 {
    font-size: 2.05rem;
    line-height: 1.22;
  }

  .construction-gallery .section-head p {
    font-size: 0.96rem;
  }

  .gallery-ticker-wrap {
    margin-top: 30px;
    padding-block: 8px 18px;
  }

  .gallery-ticker-wrap::before,
  .gallery-ticker-wrap::after {
    width: 42px;
  }

  .gallery-ticker-track {
    animation-duration: 34s;
  }

  .gallery-ticker-group {
    gap: 16px;
    padding-inline-end: 16px;
  }

  .gallery-post-card {
    flex-basis: 286px;
    width: 286px;
    border-radius: 20px;
  }

  .gallery-post-card__image {
    height: 172px;
  }

  .gallery-post-card__body {
    min-height: 214px;
    padding: 20px 20px 18px;
  }

  .gallery-post-card--compact .gallery-post-card__body {
    min-height: 92px;
  }

  .gallery-post-card__title {
    min-height: 52px;
    font-size: 1.03rem;
  }
}


/* 콜백 요청 섹션 (레퍼런스 이미지 기반) */
.callback-section {
  background-color: #f4f7fa;
  padding-block: 100px;
}

.callback-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center !important; /* 수직 중앙 정렬 강제 */
}

/* 좌측 정보 컬럼 */
.callback-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.callback-info__header {
  margin-bottom: 32px;
}

.callback-info__eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}

.callback-info__title {
  font-size: 2.3rem;
  font-weight: 850;
  line-height: 1.3;
  color: var(--color-ink);
  margin: 0 0 16px 0;
  word-break: keep-all;
  letter-spacing: -0.01em;
}

.callback-info__desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0;
  font-weight: 500;
  word-break: keep-all;
}

.callback-info__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 32px;
}

.callback-info__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.callback-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 62, 165, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.callback-info__icon svg {
  width: 20px;
  height: 20px;
}

.callback-info__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.callback-info__text strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
  display: block;
}

.callback-info__text span,
.callback-info__text address {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-ink);
  font-style: normal;
  line-height: 1.5;
}

.callback-info__text a {
  color: inherit;
  transition: color var(--ease);
}

.callback-info__text a:hover {
  color: var(--color-green);
}

.callback-info__phone-main {
  font-size: 1.75rem;
  font-weight: 855;
  color: var(--color-primary);
  text-decoration: none;
  line-height: 1.2;
  display: inline-block;
  transition: color var(--ease);
}

.callback-info__phone-main:hover {
  color: var(--color-green);
}

.callback-info__phone-sub {
  font-size: 0.95rem;
  color: var(--color-muted);
  font-weight: 500;
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
}

/* 우측 입력 폼 컬럼 */
.callback-form-container {
  background: #ffffff;
  padding: 32px; /* 데스크톱 폼 패딩 32px로 촘촘화 */
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 60px rgba(12, 42, 62, 0.04), 0 1px 3px rgba(0, 0, 0, 0.01);
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.callback-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.callback-form__group input,
.callback-form__group select,
.callback-form__group textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ink);
  transition: all 0.25s ease;
}

.callback-form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23707b8a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  padding-right: 48px;
}

.callback-form__group input:focus,
.callback-form__group select:focus,
.callback-form__group textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 62, 165, 0.08);
}

.callback-form__group textarea {
  min-height: 140px;
  resize: vertical;
}

.callback-form__agree {
  display: flex;
  align-items: center;
}

.callback-form__agree label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-muted);
  cursor: pointer;
  line-height: 1.55;
}

.callback-form__agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
  margin-top: 2px;
}

.callback-form__message {
  min-height: 1.4em;
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.4;
}

.callback-form__submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* 전화 요청 버튼 (레퍼런스 녹색 버튼) */
.callback-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--color-green), var(--color-primary));
  color: var(--color-white);
  border: 0;
  border-radius: 12px !important;
  padding: 18px 48px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 62, 165, 0.25);
  width: 100%;
}

.callback-submit-btn:hover {
  background: linear-gradient(135deg, var(--color-green-dark), var(--color-primary-dark));
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 59, 232, 0.3);
}

.callback-submit-btn:active {
  transform: translateY(0);
}

.callback-submit-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   Custom Floating Quick Menu (Sidebar Block Style)
   ========================================================================== */
.floating-quick-menu {
  position: fixed;
  right: 20px !important;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-end;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quick-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 개별 버튼 박스 기본 사양 */
.quick-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 84px;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  color: #FFFFFF;
  transition: background-color 0.2s, transform 0.2s ease;
  position: relative;
}

/* 1. 전화 문의 (#00cce0 배경 + 흰색 아이콘) */
.quick-menu-item--phone {
  background-color: #00cce0;
  border-left: none; /* 배경색이 들어가므로 경계선 제거 */
  border-radius: 12px 12px 0 0; /* PC 상단 둥글게 */
}
.quick-menu-item--phone:hover {
  background-color: #00b2c4; /* hover 시 약간 더 진한 청록색 */
}
.phone-btn {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* 흰색 전화기 아이콘 */
  cursor: pointer;
}
.phone-btn .quick-menu-icon {
  font-size: 26px; /* 웹아이콘 크기 */
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-btn:hover .quick-menu-icon {
  transform: rotate(15deg) scale(1.1);
}

/* 2. 카카오톡 (노란색) */
.quick-menu-item--kakao {
  background-color: #fee500;
}
.quick-menu-item--kakao:hover {
  background-color: #fada0a;
}
.quick-menu-item--kakao .quick-menu-icon {
  color: #191919;
  font-size: 28px; /* 카카오톡 웹아이콘 크기 */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.quick-menu-item--kakao:hover .quick-menu-icon {
  transform: scale(1.1);
}

/* API 비동기 hidden 간섭 무력화 */
.floating-quick-menu .quick-menu-item[hidden] {
  display: flex !important;
}

/* 3. 네이버 블로그/예약 (초록색) */
.quick-menu-item--blog {
  background-color: #03c75a;
}
.quick-menu-item--blog:hover {
  background-color: #02b350;
}
.quick-menu-item--blog .quick-menu-icon {
  color: #ffffff;
  font-size: 24px; /* 네이버 웹아이콘 크기 */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.quick-menu-item--blog:hover .quick-menu-icon {
  transform: scale(1.1);
}

/* 4. 탑 버튼 (검은색) */
.quick-menu-item--top {
  background-color: #000000;
  height: 72px; /* 탑 버튼만 살짝 낮추어 레퍼런스 느낌 반영 */
  border-radius: 0 0 12px 12px; /* PC 하단 둥글게 */
}
.quick-menu-item--top:hover {
  background-color: #222222;
}
.quick-menu-item--top .quick-menu-icon {
  color: #ffffff;
  font-size: 24px; /* 화살표 웹아이콘 크기 */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.quick-menu-item--top:hover .quick-menu-icon {
  transform: translateY(-4px);
}

/* 공통 링크/아이콘 */
.quick-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #FFFFFF;
}

/* 공통 텍스트 스타일 */
.btn-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  word-break: keep-all;
}

/* 전화번호 플로팅 서브 패널 */
.phone-expand-panel {
  position: absolute;
  right: 76px;
  top: 0;
  height: 84px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-right: none;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 12px 0 0 12px;
  white-space: nowrap;
}

/* 활성화 시 패널 표출 */
.quick-menu-item--phone.is-active .phone-expand-panel {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}

/* 패널 내부의 링크/정보 스타일 */
.expand-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: #1a202c;
  transition: color 0.2s;
}
.expand-link:hover {
  color: #0f91f3;
}
.expand-link .quick-label {
  font-size: 11px;
  font-weight: 500;
  color: #718096;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.expand-link .number {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

/* =========================================
   Quick Menu Responsive Design
   ========================================= */
/* =========================================
   Quick Menu Responsive Design
   ========================================= */
@media (max-width: 1024px) {
  .floating-quick-menu {
    top: auto;
    bottom: 100px;
    right: 15px !important;
    transform: none;
    flex-direction: column;
    border-radius: 0;
    overflow: visible;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .quick-menu-list {
    flex-direction: column;
    border-radius: 0;
    overflow: visible;
  }

  .quick-menu-item {
    width: 50px;
    height: 50px;
  }

  .quick-menu-item--phone {
    border-radius: 10px 10px 0 0;
  }

  .phone-btn .quick-menu-icon {
    font-size: 20px;
    width: auto;
    height: auto;
  }

  .quick-menu-item--kakao .quick-menu-icon {
    font-size: 20px;
  }

  .quick-menu-item--blog .quick-menu-icon {
    font-size: 18px;
  }

  .btn-text {
    font-size: 10px;
    line-height: 1.2;
  }

  .quick-menu-item--top {
    height: 50px;
    border-radius: 0 0 10px 10px;
  }

  .quick-menu-item--top .quick-menu-icon {
    font-size: 18px;
    width: auto;
    height: auto;
  }

  /* 모바일/태블릿에서 전화 펼쳐짐 패널은 왼쪽으로 펼쳐지도록 배치 */
  .phone-expand-panel {
    right: 50px;
    top: 0;
    bottom: 0;
    height: 50px;
    padding: 0 15px;
    flex-direction: row;
    gap: 12px;
    border-radius: 10px 0 0 10px;
    border: 1px solid #e2e8f0;
    border-right: none;
    box-shadow: -6px 6px 15px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 767px) {
  .floating-quick-menu {
    bottom: 80px;
    right: 10px !important;
  }

  .quick-menu-item {
    width: 44px;
    height: 44px;
  }

  .quick-menu-item--phone {
    border-radius: 8px 8px 0 0;
  }

  .quick-menu-item--top {
    height: 44px;
    border-radius: 0 0 8px 8px;
  }

  .phone-btn .quick-menu-icon,
  .quick-menu-item--kakao .quick-menu-icon {
    font-size: 18px;
  }

  .quick-menu-item--blog .quick-menu-icon,
  .quick-menu-item--top .quick-menu-icon {
    font-size: 16px;
  }

  .btn-text {
    font-size: 9px;
  }

  .phone-expand-panel {
    right: 44px;
    height: 44px;
    padding: 0 12px;
    gap: 8px;
    border-radius: 8px 0 0 8px;
  }

  .expand-link .quick-label {
    font-size: 9px;
  }

  .expand-link .number {
    font-size: 11px;
  }
}

@media (max-width: 760px) {
  .mobile-cta-bar {
    display: grid;
  }

  .floating-quick-menu {
    bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .floating-quick-menu .quick-menu-item--phone {
    display: none !important;
  }

  .floating-quick-menu .quick-menu-item--kakao {
    border-radius: 8px 8px 0 0;
  }
}

/* =========================================
   Experts Marquee Ticker (전문가 무한 롤링 티커)
   ========================================= */
.experts-ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-block: 28px;
  margin-top: 48px;
}

/* 좌우 흐릿한 페이드 아웃 효과 */
.experts-ticker-wrap::before,
.experts-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 3;
  pointer-events: none;
}

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

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

.experts-ticker-track {
  display: flex;
  width: max-content;
  animation: expertsMarquee 65s linear infinite;
}

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

.experts-ticker-group {
  display: flex;
  gap: 28px;
  padding-inline-end: 28px;
}

.experts-ticker-group .expert-card-item {
  width: 360px;
  flex-shrink: 0;
}

/* 전문가 카드 순환 컬러 테마 */
.expert-card-item:nth-child(3n+1) {
  --expert-accent: #00cce0; /* 청해 딥블루 */
  --expert-badge-bg: #eefbf9;
  --expert-badge-color: #00cce0;
}

.expert-card-item:nth-child(3n+2) {
  --expert-accent: #009094; /* 청록 블루 */
  --expert-badge-bg: #eef9fc;
  --expert-badge-color: #009094;
}

.expert-card-item:nth-child(3n+3) {
  --expert-accent: #3b5bdb; /* 신뢰 인디고 */
  --expert-badge-bg: #edf2ff;
  --expert-badge-color: #364fc7;
}

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

/* Responsive Overrides for Service Pillars Cards */
@media (max-width: 768px) {
  .service-card {
    aspect-ratio: 16 / 10; /* 모바일에서 가로로 더 긴 형태 */
  }
  .service-card .card-content {
    padding: 25px;
  }
  .service-card .card-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
  }
  .service-card .card-desc {
    font-size: 0.88rem;
  }
  .service-card .card-arrow-btn {
    width: 40px;
    height: 40px;
    bottom: 25px;
    left: 25px;
  }
  .service-card .card-icon-tag {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    margin-bottom: 12px;
  }
  .service-card .card-icon-tag .material-symbols-outlined {
    font-size: 18px;
  }
}

/* 모바일 마키 티커 2개 표시 및 좌우 흐려짐 축소 오버라이드 */
@media (max-width: 768px) {
  .reviews-ticker-wrap::before,
  .reviews-ticker-wrap::after {
    width: 40px !important; /* 좌우 흐려짐(페이드 아웃) 영역의 가로 폭을 160px에서 40px로 축소 */
  }

  .reviews-ticker-group {
    gap: 12px !important; /* 모바일에서 카드 사이 갭을 24px에서 12px로 정밀 축소 */
    padding-inline-end: 12px !important;
  }

  .review-ticker-card {
    width: 200px !important; /* 모바일 가로 폭 내에서 카드 2개가 공존하도록 너비를 200px로 대폭 콤팩트화 */
    border-radius: 18px !important;
  }

  .review-ticker-card__image {
    height: 100px !important; /* 이미지 높이를 카드 비율에 맞게 100px로 콤팩트 조율 */
  }

  .review-ticker-card__body {
    padding: 16px 14px !important; /* 본문 내부 여백을 촘촘하고 단정하게 리밸런싱 */
  }

  .review-ticker-card__rating {
    font-size: 11px !important;
    margin-bottom: 6px !important;
  }

  .review-ticker-card__text {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important; /* 텍스트 오버플로우 방지 3줄 컷 제한 */
  }

  .review-ticker-card__footer {
    margin-top: auto !important;
    padding-top: 10px !important;
  }

  .review-ticker-card__author {
    font-size: 11.5px !important;
  }

  .review-ticker-card__badge {
    font-size: 9px !important;
    padding: 3px 6px !important;
  }
}
