@charset "UTF-8";
/* CSS 6-file standardization: header footer quick include UI */

/* ===== common.css (include UI): header footer quick include UI ===== */
/* Shared include behavior: keep header, drawer, and quick actions identical on every page. */
body.is-nav-open .quick-menu {
  z-index: 40 !important;
}

/* SEO 상세페이지 내 공통 헤더 숨김 처리 (:has 가상 클래스로 조상 감지) */
body:has(.seo-page) .site-header,
body:has(.seo-page) [data-include="header"] {
  display: none !important;
}

body:has(.seo-page) .site-main,
.seo-page {
  padding-top: 0 !important;
}

/* SEO 상세페이지 내 .seo-hero 영역 디자인 오버라이드 (풀 배경 적용) */
.seo-page .seo-hero {
  background-image: linear-gradient(135deg, rgba(8, 12, 22, 0.88) 0%, rgba(8, 12, 22, 0.72) 100%) !important;
  background-size: cover !important;
  background-position: center 25% !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
}

/* 우측 초록색 테두리에 담겨있던 실물 이미지 박스 강제 숨김 */
.seo-page .seo-hero__media {
  display: none !important;
}

/* 실물 이미지가 숨겨짐에 따라 좌측 본문 영역을 전체 1열 너비로 최적화 */
.seo-page .seo-hero__inner {
  grid-template-columns: 1fr !important;
  max-width: 800px;
}

/* 흰색 버튼 내에 글자가 흰색으로 묻혀 안 보이는 버그 복구 (어두운 글씨색 강제 지정) */
.seo-page .seo-btn--primary {
  background: #ffffff !important;
  color: #0c1222 !important;
}

/* ==========================================================================
   DYNAMIC INCLUDE STYLES (HEADER / GNB / MOBILE MENU / FOOTER / QUICK MENU)
   ========================================================================== */

/* --- Include Containers --- */
[data-include], #header:empty, #footer:empty, #quick:empty {
  display: contents;
}

/* =========================================================
   1. HEADER & DESKTOP GNB (.site-header)
   ========================================================= */

@media (min-width: 1025px) {
  html body .site-header {
    position: absolute !important;
    inset: 0 0 auto !important;
    z-index: 1200 !important;
    width: 100% !important;
    height: 90px !important;
    min-height: 90px !important;
    padding: 0 clamp(30px, 5vw, 80px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(16, 20, 24, 0.94) !important;
    backdrop-filter: blur(12px) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
    transition: background 0.3s ease, position 0.3s ease, box-shadow 0.3s ease !important;
  }

  /* Main page transparent header over hero before scroll */
  html body:has(.hero) .site-header:not(.is-scrolled):not(.scrolled) {
    background: transparent !important;
    backdrop-filter: none !important;
  }
  html body .site-header:not(.is-scrolled):not(.scrolled) .brand img {
    filter: brightness(0) invert(1) !important;
  }

  html body .site-header.is-scrolled,
  html body .site-header.scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  }
  html body .site-header.is-scrolled .brand img,
  html body .site-header.scrolled .brand img {
    filter: none !important;
  }
  html body .site-header.is-scrolled .desktop-nav .gnb-link,
  html body .site-header.scrolled .desktop-nav .gnb-link {
    color: #222222 !important;
  }
  html body .site-header.is-scrolled .desktop-nav .gnb-item:hover .gnb-link,
  html body .site-header.scrolled .desktop-nav .gnb-item:hover .gnb-link {
    color: var(--point-blue) !important;
  }

  html body .site-header .header-top {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }

  html body .site-header .header-top .brand {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
  }

  html body .site-header .header-top .brand img {
    width: auto !important;
    height: 48px !important;
    max-height: 48px !important;
    object-fit: contain !important;
  }

  html body .site-header .header-top .account-links {
    display: none !important;
  }

  html body .site-header .header-top .menu-toggle {
    display: none !important;
  }

  html body .site-header .desktop-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(20px, 2.5vw, 48px) !important;
    height: 100% !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    position: relative !important;
    z-index: 102 !important;
  }

  html body .site-header .desktop-nav .gnb-item {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
  }

  html body .site-header .desktop-nav .gnb-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    padding: 0 8px !important;
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    position: relative !important;
    transition: color 0.2s ease !important;
  }

  html body .site-header .desktop-nav .gnb-link::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    right: 50% !important;
    bottom: 25px !important;
    height: 3px !important;
    background: #ffffff !important;
    transition: left 0.2s ease, right 0.2s ease !important;
  }

  html body .site-header .desktop-nav .gnb-item:hover .gnb-link::after,
  html body .site-header .desktop-nav .gnb-item:focus-within .gnb-link::after {
    background: var(--color-green) !important;
  }

  html body .site-header .desktop-nav .gnb-item:hover .gnb-link,
  html body .site-header .desktop-nav .gnb-item:focus-within .gnb-link {
    color: #ffffff !important;
  }

  html body .site-header .desktop-nav .gnb-item:hover .gnb-link::after,
  html body .site-header .desktop-nav .gnb-item:focus-within .gnb-link::after {
    left: 0 !important;
    right: 0 !important;
  }

  html body .site-header .desktop-nav .gnb-submenu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(8px) !important;
    min-width: 160px !important;
    background: rgba(16, 20, 24, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    padding: 10px 0 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s !important;
    z-index: 110 !important;
  }

  html body .site-header .desktop-nav .gnb-item:hover .gnb-submenu,
  html body .site-header .desktop-nav .gnb-item:focus-within .gnb-submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
  }

  html body .site-header .desktop-nav .gnb-submenu a {
    display: block !important;
    padding: 10px 20px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    transition: background 0.15s ease, color 0.15s ease !important;
  }

  html body .site-header .desktop-nav .gnb-submenu a::after {
    display: none !important;
  }

  html body .site-header .desktop-nav .gnb-submenu a:hover,
  html body .site-header .desktop-nav .gnb-submenu a:focus-visible {
    background: rgba(63, 177, 49, 0.16) !important;
    color: #ffffff !important;
  }
}

/* Mobile Header (<1024px) */
@media (max-width: 1024px) {
  html body .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 64px !important;
    padding: 0 20px !important;
    background: transparent !important;
    backdrop-filter: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    z-index: 1200 !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
  }

  html body .site-header:not(.is-scrolled):not(.scrolled) .brand img {
    filter: brightness(0) invert(1) !important;
  }

  html body .site-header.scrolled,
  html body .site-header.is-scrolled {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  }

  html body .site-header .header-top {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  html body .site-header .desktop-nav {
    display: none !important;
  }

  html body .site-header .header-top {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 60px !important;
    box-sizing: border-box !important;
  }

  html body .site-header .header-top .account-links {
    display: none !important;
  }

  html body .site-header .header-top .menu-toggle,
  html body .site-header .menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    box-shadow: none !important;
    transition: color 0.25s ease !important;
  }

  html body .site-header .header-top .menu-toggle svg.hamburger-icon,
  html body .site-header .menu-toggle svg.hamburger-icon {
    width: 28px !important;
    height: 28px !important;
    stroke: currentColor !important;
    fill: none !important;
    display: block !important;
  }

  html body .site-header .header-top .menu-toggle span,
  html body .site-header .menu-toggle span {
    display: block !important;
    width: 24px !important;
    height: 2.2px !important;
    background: currentColor !important;
    border-radius: 2px !important;
    transition: transform 0.25s ease, opacity 0.25s ease !important;
  }

  html body .site-header.scrolled .header-top .menu-toggle,
  html body .site-header.is-scrolled .header-top .menu-toggle,
  html body .site-header.scrolled .menu-toggle,
  html body .site-header.is-scrolled .menu-toggle {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #0f172a !important;
  }

  html body .site-header .header-top .menu-toggle.js-menu-toggle {
    box-sizing: border-box !important;
    padding: 0 !important;
  }

  html body .site-header .header-top .menu-toggle.js-menu-toggle svg.hamburger-icon {
    width: 28px !important;
    height: 28px !important;
  }

  html body .site-header .header-top .brand img {
    height: 48px !important;
    max-height: 48px !important;
  }
}

/* =========================================================
   2. MOBILE DRAWER MENU (.mobile-menu)
   ========================================================= */

html body nav.mobile-menu,
html body .mobile-menu,
html body #mobileMenu {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  right: -100% !important;
  width: 100% !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: #0244a4 !important;
  color: #ffffff !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  padding: 20px 24px max(24px, env(safe-area-inset-bottom)) !important;
  overflow-y: auto !important;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

html body.is-nav-open .mobile-menu,
html body.is-nav-open #mobileMenu {
  right: 0 !important;
}

@media (max-width: 1024px) {
  html body nav.mobile-menu,
  html body .mobile-menu,
  html body #mobileMenu {
    display: flex !important;
  }
}

html body .mobile-menu .mobile-menu__header {
  order: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  flex: 0 0 auto !important;
  min-height: 48px !important;
  padding-bottom: 18px !important;
  margin-bottom: 8px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

html body .mobile-menu .mobile-menu__brand {
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important;
  text-decoration: none !important;
}

html body .mobile-menu .mobile-menu__brand img {
  display: block !important;
  width: min(174px, calc(100vw - 108px)) !important;
  height: auto !important;
  max-height: 48px !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
}

html body .mobile-menu .mobile-menu__close {
  display: grid !important;
  place-items: center !important;
  flex: 0 0 42px !important;
  width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
}

html body .mobile-menu .mobile-menu__close:hover,
html body .mobile-menu .mobile-menu__close:focus-visible {
  border-color: rgba(63, 177, 49, 0.8) !important;
  background: rgba(63, 177, 49, 0.16) !important;
}

html body .mobile-menu .mobile-menu__close:active {
  transform: scale(0.96) !important;
}

html body .mobile-menu .mobile-menu__close svg {
  width: 22px !important;
  height: 22px !important;
}

html body .mobile-menu .mobile-account {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  order: 3 !important;
  flex: 0 0 auto !important;
  margin: auto 0 0 !important;
  padding-top: 20px !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

html body .mobile-menu .mobile-account a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 44px !important;
  padding: 0 16px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

html body .mobile-menu .mobile-account a:first-child {
  background: #ffffff !important;
  color: #111111 !important;
}

html body .mobile-menu .mobile-account a:last-child {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

html body .mobile-menu .menu-groups {
  display: flex !important;
  flex-direction: column !important;
  order: 2 !important;
  flex: 0 0 auto !important;
  gap: 0 !important;
}

html body .mobile-menu .menu-group {
  flex: 0 0 auto !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

html body .mobile-menu .menu-group__title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  min-height: 48px !important;
  padding: 12px 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  font: inherit !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.3 !important;
  text-align: left !important;
  cursor: pointer !important;
}

html body .mobile-menu .menu-group__title:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: 4px !important;
}

html body .mobile-menu .menu-group__title:hover,
html body .mobile-menu .menu-group__title:focus-visible {
  color: var(--color-green) !important;
}

html body .mobile-menu .menu-group.is-open .menu-group__title {
  color: var(--color-green) !important;
}

html body .mobile-menu .menu-group__chevron {
  display: block !important;
  width: 8px !important;
  height: 8px !important;
  margin-right: 4px !important;
  border-right: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  transform: rotate(45deg) !important;
  transition: transform 0.25s ease !important;
}

html body .mobile-menu .menu-group.is-open .menu-group__chevron {
  transform: rotate(225deg) !important;
}

html body .mobile-menu .menu-group__links {
  max-height: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.28s ease !important;
}

html body .mobile-menu .menu-group.is-open .menu-group__links {
  max-height: 360px !important;
  padding: 0 0 10px !important;
  opacity: 1 !important;
}

html body .mobile-menu .menu-group__links a {
  display: block !important;
  padding: 9px 8px 9px 4px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

html body .mobile-menu .menu-group__links a:hover,
html body .mobile-menu .menu-group__links a:focus-visible {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* 메인 원본 시각 이식: 공통 헤더 마크업과 메뉴 동작은 유지하고 색상만 맞춘다. */
@media (min-width: 1025px) {
  html body.home-page--source-visual .site-header {
    position: relative !important;
    inset: auto !important;
    height: 92px !important;
    min-height: 92px !important;
    border-bottom: 1px solid #e8e8e8 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    color: #202020 !important;
  }

  html body.home-page--source-visual .site-header.is-scrolled,
  html body.home-page--source-visual .site-header.scrolled {
    position: fixed !important;
    inset: 0 0 auto !important;
    z-index: 1200 !important;
  }

  html body.home-page--source-visual .site-header .brand img,
  html body.home-page--source-visual .site-header:not(.is-scrolled):not(.scrolled) .brand img {
    filter: none !important;
  }

  html body.home-page--source-visual .site-header .desktop-nav .gnb-link,
  html body.home-page--source-visual .site-header.is-scrolled .desktop-nav .gnb-link,
  html body.home-page--source-visual .site-header.scrolled .desktop-nav .gnb-link {
    color: #202020 !important;
    font-size: 16px !important;
  }

  html body.home-page--source-visual .site-header .desktop-nav .gnb-link::after {
    bottom: 20px !important;
    background: var(--main-blue, #0038b3) !important;
  }

  html body.home-page--source-visual .site-header .desktop-nav .gnb-item:hover .gnb-link,
  html body.home-page--source-visual .site-header .desktop-nav .gnb-item:focus-within .gnb-link,
  html body.home-page--source-visual .site-header.is-scrolled .desktop-nav .gnb-item:hover .gnb-link,
  html body.home-page--source-visual .site-header.scrolled .desktop-nav .gnb-item:hover .gnb-link {
    color: var(--main-blue, #0038b3) !important;
  }

  html body.home-page--source-visual .site-header .desktop-nav .gnb-submenu {
    border: 1px solid #e3e3e3 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
  }

  html body.home-page--source-visual .site-header .desktop-nav .gnb-submenu a {
    color: #363636 !important;
  }

  html body.home-page--source-visual .site-header .desktop-nav .gnb-submenu a:hover,
  html body.home-page--source-visual .site-header .desktop-nav .gnb-submenu a:focus-visible {
    color: var(--main-blue, #0038b3) !important;
    background: #f4f6fa !important;
  }
}

@media (max-width: 1024px) {
  html body.home-page--source-visual .site-header {
    position: relative !important;
    inset: auto !important;
    border-bottom: 1px solid #e8e8e8 !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  html body.home-page--source-visual .site-header.is-scrolled,
  html body.home-page--source-visual .site-header.scrolled {
    position: fixed !important;
    inset: 0 0 auto !important;
    z-index: 1200 !important;
  }

  html body.home-page--source-visual .site-header .brand img,
  html body.home-page--source-visual .site-header:not(.is-scrolled):not(.scrolled) .brand img {
    filter: none !important;
  }

  html body.home-page--source-visual .site-header .header-top .menu-toggle,
  html body.home-page--source-visual .site-header .menu-toggle,
  html body.home-page--source-visual .site-header:not(.is-scrolled):not(.scrolled) .menu-toggle {
    color: #202020 !important;
  }
}

/* =========================================================
   3. UNIVERSAL FOOTER (.site-footer)
   ========================================================= */

.site-footer {
  background: #0b131e;
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 36px;
  border: none;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
  border: none;
  outline: none;
  box-shadow: none;
  background-image: none;
}

.site-footer .footer-main {
  max-width: var(--container-max, 1560px);
  width: var(--container-width, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: 0;
  box-sizing: border-box;
}

.site-footer .footer-main img {
  width: 180px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer .footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
}

.site-footer .footer-info p {
  margin: 0;
  color: #94a3b8;
}

.site-footer .footer-info p span {
  color: #64748b;
  margin-right: 6px;
}

.site-footer .footer-info small {
  display: block;
  width: 100%;
  margin-top: 18px;
  color: #64748b;
  font-size: 12px;
}

.site-footer .footer-bottom {
  max-width: var(--container-max, 1560px);
  width: var(--container-width, 92%);
  margin: 0 auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-sizing: border-box;
}

.site-footer .footer-bottom div a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-right: 20px;
  font-weight: 600;
}

/* Footer Responsive Rules */
@media (max-width: 900px) {
  .site-footer {
    padding: 44px 0 0;
  }
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 24px;
  }
  .site-footer .footer-main img {
    width: 150px;
    margin-bottom: 12px;
  }
  .site-footer .footer-info {
    flex-direction: column;
    gap: 6px;
  }
  .site-footer .footer-info p {
    font-size: 13.5px;
  }
  .site-footer .footer-bottom {
    height: auto;
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 18px 0;
  }
}

@media (max-width: 335px) {
  .site-footer .footer-main img {
    width: 135px;
  }
  .site-footer .footer-info p {
    font-size: 12.5px;
  }
}

/* =========================================================
   4. UNIVERSAL QUICK MENU (.quick-menu)
   ========================================================= */



























/* Shared contact CTA (includes/contact.html) */
.cta-phone-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 32px;
  margin-left: 0;
  padding-left: 0;
}

.cta-phone-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 290px;
  height: 84px;
  padding: 0 22px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s var(--motion-ease), box-shadow 0.25s var(--motion-ease), border-color 0.25s var(--motion-ease);
  box-sizing: border-box;
}

.cta-phone-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.11);
}

.cta-phone-card.main-phone {
  background: var(--point-blue) !important;
  color: #fff !important;
  border-color: var(--point-blue) !important;
}

.cta-phone-card.main-phone small {
  color: rgba(255, 255, 255, 0.9) !important;
}

.cta-phone-card.main-phone strong {
  color: #fff !important;
}

.cta-phone-card.main-phone .cta-phone-icon {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.cta-phone-card.sub-phone {
  border-color: var(--point-green) !important;
}

.cta-phone-card.sub-phone .cta-phone-icon {
  background: rgba(63, 177, 49, 0.12) !important;
  color: var(--point-green) !important;
}

.cta-phone-card.sub-phone strong {
  color: #1e293b;
}

.cta-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--point-blue);
  flex-shrink: 0;
}

.cta-phone-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.cta-phone-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.cta-phone-text small {
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 1px;
  letter-spacing: -0.01em;
}

.cta-phone-text strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .cta-phone-boxes {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: 18px;
  }

  .cta-phone-card {
    width: 100%;
    max-width: 100%;
    height: 58px;
    gap: 14px;
    padding: 0 16px;
    border-radius: 12px;
  }

  .cta-phone-icon {
    width: 36px;
    height: 36px;
  }

  .cta-phone-icon svg {
    width: 18px;
    height: 18px;
  }

  .cta-phone-text {
    min-width: 0;
  }

  .cta-phone-text small,
  .cta-phone-text strong {
    white-space: nowrap;
  }

  .cta-phone-text small {
    font-size: 11.5px;
  }

  .cta-phone-text strong {
    font-size: 16px;
    letter-spacing: -0.02em;
  }
}

@media (max-width: 335px) {
  .cta-phone-boxes {
    gap: 8px;
  }

  .cta-phone-card {
    width: 235px;
    max-width: 100%;
    height: 52px;
    padding: 0 12px;
    gap: 10px;
  }

  .cta-phone-icon {
    width: 32px;
    height: 32px;
  }

  .cta-phone-icon svg {
    width: 16px;
    height: 16px;
  }

  .cta-phone-text small {
    font-size: 11px;
  }

  .cta-phone-text strong {
    font-size: 14.5px;
    letter-spacing: -0.03em;
  }
}

/* =========================================================
   PERFECT NON-CLIPPING QUICK MENU (4 ITEMS)
   ========================================================= */






















/* =========================================================
   PERFECT FIXED QUICK MENU FOR ALL BROWSERS (PC & MOBILE)
   ========================================================= */

[data-include="quick"] {
  display: contents !important;
}

/* =========================================================
   UNIVERSAL QUICK MENU (.quick-menu)
   ========================================================= */
.quick-menu {
  position: fixed !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 88px !important;
  height: auto !important;
  z-index: 99 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.quick-menu a {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 88px !important;
  height: 88px !important;
  padding: 0 !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, filter 0.2s ease !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: none !important;
}

.quick-menu a.quick-phone {
  background: #0b3977 !important;
  color: #ffffff !important;
}

.quick-menu a.quick-mobile {
  background: #1b5a88 !important;
  color: #ffffff !important;
}

.quick-menu a.quick-kakao {
  background: #FEE500 !important;
  color: #3C1E1E !important;
}

.quick-menu a.quick-naver {
  background: #03CF5D !important;
  color: #ffffff !important;
}

.quick-menu a svg {
  width: 26px !important;
  height: 26px !important;
  margin-bottom: 3px !important;
  display: block !important;
}

.quick-menu a.quick-phone svg,
.quick-menu a.quick-mobile svg {
  fill: none !important;
  stroke: currentColor !important;
}

.quick-menu a.quick-kakao svg,
.quick-menu a.quick-naver svg {
  fill: currentColor !important;
  stroke: none !important;
}

.quick-menu a span {
  display: block !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
  color: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
}

.quick-menu a:hover {
  filter: brightness(1.08) !important;
  transform: none !important;
}

/* Quick Menu Tablet & Mobile Responsive - Screen Overflow Lock */
@media (max-width: 1024px) {
  html body .quick-menu,
  html body aside.quick-menu,
  .quick-menu {
    position: fixed !important;
    top: 50% !important;
    bottom: auto !important;
    right: 0 !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    width: 52px !important;
    max-width: 52px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    z-index: 99999 !important;
  }

  html body .quick-menu a,
  .quick-menu a {
    display: flex !important;
    width: 52px !important;
    max-width: 100% !important;
    height: 52px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .quick-menu a span {
    display: none !important;
  }

  .quick-menu a svg {
    margin-bottom: 0 !important;
    width: 22px !important;
    height: 22px !important;
  }

}

@media (max-width: 335px) {
  html body .quick-menu,
  html body aside.quick-menu,
  .quick-menu {
    top: 50% !important;
    bottom: auto !important;
    right: 0 !important;
    left: auto !important;
    width: 46px !important;
    max-width: 46px !important;
    border-radius: 0 !important;
  }

  html body .quick-menu a,
  .quick-menu a {
    width: 46px !important;
    height: 46px !important;
  }

  .quick-menu a svg {
    width: 19px !important;
    height: 19px !important;
  }
}

/* 공통 상담 섹션: includes/contact.html */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  color: #ffffff;
  background: url("../images/main/implant-statistics-background.webp") no-repeat center center / cover;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(10, 25, 47, 0.65) 50%, rgba(10, 25, 47, 0.8) 100%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1300px, calc(100% - 80px));
  margin: 0 0 0 auto;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding: 0 20px 0 0;
}

.contact-section .eyebrow {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-section h2 {
  margin: 0;
  font-family: "Gmarket Sans", "Noto Sans KR", sans-serif;
  font-size: clamp(39px, 3.65vw, 70px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.28;
}

.contact-section h2 strong {
  font-weight: 700;
}

.contact-section h2 + p {
  margin: 25px 0 36px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 14px;
}

.contact-phone {
  display: flex;
  min-width: 225px;
  padding: 15px 22px;
  color: #002778;
  background: #ffffff;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

.contact-phone small {
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
}

.contact-phone strong {
  font-family: "Gmarket Sans", sans-serif;
  font-size: 21px;
  letter-spacing: 0.01em;
}

.contact-link {
  display: inline-flex;
  min-width: 174px;
  padding: 17px 22px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #002778;
  border-color: #ffffff;
  background: #ffffff;
}

@media (max-width: 768px) {
  .contact-section {
    padding: clamp(320px, 75vw, 440px) 0 72px;
    background-image: url("../images/main/contact-section-mobile-v1.png");
    background-position: center center;
  }

  .contact-section::before {
    background: linear-gradient(180deg, rgba(3, 16, 35, 0.04) 0%, rgba(3, 16, 35, 0.24) 42%, rgba(3, 16, 35, 0.88) 100%);
  }

  .contact-section h2 {
    font-size: clamp(34px, 9vw, 43px);
  }

  .contact-section h2 + p {
    margin: 19px 0 28px;
    font-size: 14px;
  }

  .contact-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .contact-phone {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 56px;
    margin-bottom: 0;
    padding: 0 16px;
    box-sizing: border-box;
    text-decoration: none;
  }

  .contact-phone small {
    margin-bottom: 0;
    font-size: 13px;
  }

  .contact-phone strong {
    font-size: 18px;
    letter-spacing: -0.01em;
  }

  .contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 56px;
    padding: 0 16px;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }
}
