/* Main Web (Web-001) - extracted from public/main.html */
:root {
      --bg: #0b2b3b;
      --text: #ffffff;
      --muted: #5e5e5e;
      --primary: #008cff;
      --primary-deep: #0f5694;
      --search-border: #008cff;
      /* Figma 캔버스 1440 - 좌우 여백 60*2 = 컨텐츠 컨테이너 1320 */
      --container-max: 100%;
      --container-gutter-x: 16px;
    }

    * { box-sizing: border-box; }
    html {
      overflow-x: hidden;
    }
    body {
      margin: 0;
      overflow-x: hidden;
    }
    body.page-main {
      background: #091f2c;
    }
    /* #wrapper: header + main + footer 셸. fixed GNB/메가가 잘리지 않도록 overflow visible */
    #wrapper {
      width: 100%;
      min-height: 100vh;
      position: relative;
      overflow: visible;
      display: flex;
      flex-direction: column;
    }
    body.page-main #wrapper {
      background: #091f2c;
    }
    body.subpage #wrapper {
      background: #fff;
    }
    #content {position: relative; flex: 1 0 auto; width: 100%; }
    /* 메인: 투명 헤더가 히어로 위에 오버레이 */
    body.page-main #content {padding-top: 0;}
    #main.page-main-web {color: var(--text); background: #091f2c; }

    /* Bootstrap-like container: 폭으로 제어, 큰 화면에서 좌우 여백 60*2 = 컨텐츠 컨테이너 1320 */
    .gnb-wrap .container,
    .site-footer .container,
    #main .container,
    .mega .container {
      width: 100%;
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: var(--container-gutter-x);
      padding-right: var(--container-gutter-x);
    }

    /* 풀블리드 요소(브랜드 스와이프 등)를 container 시작선에 맞춤 */
    .container-bleed-x {
      padding-left: max(var(--container-gutter-x), calc((100% - min(100%, var(--container-max))) / 2));
      padding-right: max(var(--container-gutter-x), calc((100% - min(100%, var(--container-max))) / 2));
    }

    @media (min-width: 576px) {
      :root { --container-max: 540px; }
    }
    @media (min-width: 768px) {
      :root {
        --container-max: 720px;
        --container-gutter-x: 24px;
      }
    }
    @media (min-width: 992px) {
      :root { --container-max: 960px; }
    }
    @media (min-width: 1200px) {
      :root { --container-max: 1140px; }
    }
    @media (min-width: 1400px) {
      :root {
        --container-max: 1320px;
        --container-gutter-x: 0px;
      }
    }

    @media (max-width: 1100px) {
      .mega--products .mega__inner,
      .mega--about .mega__inner {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr 1fr;
      }
      .mega__col--product,
      .mega__col--sub,
      .mega__feature,
      .mega__feature-stack {
        width: auto;
        height: auto;
      }
      .mega__feature,
      .mega__feature-stack {
        grid-column: 1 / -1;
        min-height: 360px;
      }
      .mega__item {
        width: 100%;
        max-width: 300px;
      }
      .mega--brands .mega__inner {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
      }
      .mega-brands__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-height: none;
        overflow: visible;
      }
      .mega-brand {
        width: 100%;
        height: 52px;
        aspect-ratio: auto;
      }
      .mega--insight .mega__inner {
        width: 100%;
        max-width: 100%;
        height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
      }
      .mega-insight {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
      }
      .mega--support .mega__inner {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr 1fr;
      }
      .mega--support .mega__col--support-nav,
      .mega--support .mega__col--support-mid,
      .mega--support .mega__feature,
      .mega--support .mega__feature--support {
        width: auto;
        height: auto;
      }
      .mega--support .mega__feature,
      .mega--support .mega__feature--support {
        grid-column: 1 / -1;
        min-height: 360px;
      }
      .mega--support .mega__item,
      .mega--support .mega__list {
        width: 100%;
        max-width: 300px;
      }
    }
    @media (max-width: 720px) {
      .mega--products .mega__inner,
      .mega--about .mega__inner {
        grid-template-columns: 1fr;
      }
      .mega__col--product {
        border-right: 0;
        border-bottom: 1px solid #c8ced3;
      }
      .mega--brands .mega__inner {
        grid-template-columns: none;
      }
      .mega-brands__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .mega--insight .mega__inner {
        grid-template-columns: 1fr;
      }
      .mega--support .mega__inner {
        grid-template-columns: 1fr;
      }
      .mega--support .mega__col--support-nav {
        border-right: 0;
        border-bottom: 1px solid #c8ced3;
      }
    }

    .gnb-wrap {
      --gnb-ease: ease;
      /* 배경보다 텍스트를 약간 빠르게 → 배경 끝난 뒤 글자가 따라오는 느낌 방지 */
      --gnb-bg-duration: 0.28s;
      --gnb-fg-duration: 0.2s;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      width: 100%;
      background-color: transparent;
      color: #fff;
      overflow: visible;
      transition:
        background-color var(--gnb-bg-duration) var(--gnb-ease),
        box-shadow var(--gnb-bg-duration) var(--gnb-ease);
    }
    .gnb-wrap.is-solid {
      background-color: #fff;
      box-shadow: 0 8px 24px rgba(16, 24, 31, 0.08);
      color: #131313;
    }

    .gnb {
      position: relative;
      min-height: 70px;
      padding-top: 20px;
      padding-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 60px;
      overflow: visible;
    }

    .logo img {
      display: block;
      width: 152px;
      height: 30px;
      object-fit: contain;
      transition: filter var(--gnb-fg-duration) var(--gnb-ease);
    }
    .gnb-wrap.is-solid .logo img {
      filter: brightness(0);
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 40px;
      white-space: nowrap;
      font-size: 16px;
      margin-right: auto;
    }
    .menu__item {
      position: static;
    }
    .menu__link,
    .menu a {
      color: #fff;
      text-decoration: none;
      opacity: 0.95;
      transition: color var(--gnb-fg-duration) var(--gnb-ease);
    }
    button.menu__link {
      appearance: none;
      background: none;
      border: 0;
      padding: 0;
      margin: 0;
      font: inherit;
      line-height: inherit;
      cursor: pointer;
    }
    .gnb-wrap.is-solid .menu__link,
    .gnb-wrap.is-solid .menu a {
      color: #131313;
    }
    .menu__link:hover {
      color: #008cff;
    }
    .gnb-wrap.is-solid .menu__link:hover {
      color: #154670;
    }
    /* 메가메뉴 열린 1차 메뉴 · 현재 섹션 액티브 (hover와 동일) */
    .menu__item.is-open > .menu__link,
    .menu__item.is-active > .menu__link {
      color: #008cff;
    }
    .gnb-wrap.is-solid .menu__item.is-open > .menu__link,
    .gnb-wrap.is-solid .menu__item.is-active > .menu__link {
      color: #154670;
      font-weight: 600;
    }

    /* Products mega menu: Figma 제품정보 1040×560 (357 + 348 + 335) */
    .mega {
      --mega-ease: cubic-bezier(0.22, 1, 0.36, 1);
      --mega-duration: 0.34s;
      position: absolute;
      left: 0;
      right: 0;
      top: calc(100% + 16px);
      z-index: 1001;
      display: flex;
      justify-content: center;
      padding: 0 var(--container-gutter-x);
      background: transparent;
      border: 0;
      box-shadow: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translate3d(0, -10px, 0);
      transition:
        opacity var(--mega-duration) var(--mega-ease),
        transform var(--mega-duration) var(--mega-ease),
        visibility var(--mega-duration) var(--mega-ease);
    }
    /* .mega { display:flex } 가 UA [hidden]을 덮어쓰므로 명시 필요 — soft-nav 유령 히트 차단 */
    .mega[hidden] {
      display: none !important;
      pointer-events: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
    }
    /* soft-nav 직후 헤더 잠금: 메가 전부 비가시·비히트 */
    .gnb-wrap.is-mega-disarmed .mega {
      display: none !important;
      pointer-events: none !important;
    }
    /* 닫힌 상태: 자식·브릿지까지 포인터 차단 */
    .mega[aria-hidden="true"],
    .mega[aria-hidden="true"]::before,
    .mega[aria-hidden="true"] * {
      pointer-events: none !important;
    }
    /* 헤더-메가메뉴 사이 16px 간격을 마우스가 지나도 닫히지 않도록 브릿지 */
    .mega::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -16px;
      height: 16px;
    }
    .menu__item.is-open > .mega {
      opacity: 1;
      visibility: visible;
      /* 메가 래퍼(풀폭 투명 영역)는 통과시키고, 실제 패널·브릿지만 히트 */
      pointer-events: none;
      transform: translate3d(0, 0, 0);
      z-index: 1002;
    }
    .mega .mega__inner {
      pointer-events: none;
    }
    .menu__item.is-open > .mega::before,
    .menu__item.is-open > .mega .mega__inner {
      pointer-events: auto;
    }
    .mega .mega__inner.container,
    .mega__inner {
      margin-left: auto;
      margin-right: auto;
      background: #f2f4f5;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
      /* scale은 서브픽셀로 이미지가 좌우로 흔들려 보임 → Y만 미세 이동 */
      transform: translate3d(0, -6px, 0);
      transform-origin: top center;
      transition:
        transform 0.4s var(--mega-ease, cubic-bezier(0.22, 1, 0.36, 1)),
        box-shadow 0.4s var(--mega-ease, cubic-bezier(0.22, 1, 0.36, 1));
    }
    .menu__item.is-open > .mega .mega__inner {
      transform: translate3d(0, 0, 0);
      box-shadow: 0 18px 40px rgba(16, 24, 31, 0.14);
    }
    /* 고객지원: 카탈로그/배너 이미지가 흔들리지 않도록 transform 없이 opacity만 */
    .mega.mega--support {
      transform: none;
    }
    .menu__item.is-open > .mega.mega--support {
      transform: none;
    }
    .mega--support .mega__inner.container,
    .mega--support .mega__inner,
    .menu__item.is-open > .mega.mega--support .mega__inner {
      transform: none;
    }
    @media (prefers-reduced-motion: reduce) {
      .mega,
      .mega .mega__inner {
        transition: none;
      }
    }
    /* Products mega: Figma 1040×560 (357 + 348 + 335) */
    .mega--products .mega__inner.container,
    .mega--products .mega__inner {
      width: 1040px;
      max-width: 1040px;
      height: 560px;
      padding-left: 0;
      padding-right: 0;
      display: grid;
      grid-template-columns: 357px 348px 335px;
      align-items: stretch;
      box-shadow: 0 18px 40px rgba(16, 24, 31, 0.12);
    }
    /* About mega: Figma 1040×560 (357 + 348 + 335) — 외곽 너비 고정 */
    .mega--about .mega__inner.container,
    .mega--about .mega__inner {
      width: 1040px;
      max-width: 1040px;
      height: 560px;
      padding-left: 0;
      padding-right: 0;
      display: grid;
      grid-template-columns: 357px 348px 335px;
      align-items: stretch;
      box-shadow: 0 18px 40px rgba(16, 24, 31, 0.12);
      clip-path: inset(0 0 0 0 round 8px);
      transition:
        clip-path 0.32s var(--mega-ease, cubic-bezier(0.22, 1, 0.36, 1)),
        box-shadow 0.32s var(--mega-ease, cubic-bezier(0.22, 1, 0.36, 1));
    }
    /* 서브 없는 메뉴: 1열 고정, 3열 배너만 2열 자리로 슬라이드 (우측 348 클리핑) */
    .mega--about .mega__inner.is-compact {
      clip-path: inset(0 348px 0 0 round 8px);
    }
    .mega--about .mega__inner.is-compact .mega__col--about-mid {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .mega--about .mega__feature--about {
      width: 335px;
      transition: transform 0.32s var(--mega-ease, cubic-bezier(0.22, 1, 0.36, 1));
    }
    .mega--about .mega__inner.is-compact .mega__feature--about {
      transform: translateX(-348px);
    }
    /* Brands mega: 5열 콤팩트 그리드 + 전체보기 (스크롤 없음) */
    .mega--brands .mega__inner.container,
    .mega--brands .mega__inner {
      box-sizing: border-box;
      width: 1040px;
      max-width: 1040px;
      height: auto;
      max-height: none;
      padding: 24px 24px 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      overflow: hidden;
    }
    .mega-brands__grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 8px;
      align-content: start;
      overflow: visible;
      max-height: none;
      padding-right: 0;
    }
    .mega-brand {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      width: 100%;
      height: 52px;
      min-height: 52px;
      padding: 8px 14px;
      border-radius: 6px;
      overflow: hidden;
      text-decoration: none;
      background: #fff;
      box-shadow: 0 0 0 0 rgba(16, 24, 31, 0);
      transition:
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.35s ease;
    }
    .mega-brand:hover {
      background-color: #f7fbff;
      box-shadow: 0 4px 14px rgba(16, 24, 31, 0.08);
    }
    .mega-brand.is-current {
      background-color: #f7fbff;
      box-shadow: 0 0 0 1.5px #2070b6;
    }
    .mega-brand__logo {
      display: block;
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 28px;
      object-fit: contain;
      object-position: center;
      transition: opacity 0.35s ease;
    }
    .mega-brand__logo--text {
      width: auto;
      max-width: 100%;
      font-family: Roboto, "Noto Sans KR", sans-serif;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: #154670;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .mega-brand:hover .mega-brand__logo {
      opacity: 0.92;
    }
    .mega-brands__all {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      min-width: 120px;
      height: 40px;
      padding: 0 20px;
      border-radius: 4px;
      background: #154670;
      color: #fff !important;
      opacity: 1;
      font-family: "Noto Sans KR", sans-serif;
      font-size: 14px;
      font-weight: 500;
      line-height: 1;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    .mega-brands__all:hover {
      background: #0f5694;
      color: #fff !important;
    }
    .mega-brands__all.is-current {
      background: #0f5694;
      box-shadow: 0 0 0 2px rgba(32, 112, 182, 0.35);
    }
    /* Insight mega: Figma 인사이트 1040×294 — 4×230 / gap 19 / pad 32 */
    .mega--insight .mega__inner.container,
    .mega--insight .mega__inner {
      box-sizing: border-box;
      width: 1040px;
      max-width: 1040px;
      height: auto;
      min-height: 310px;
      padding: 40px 32px 32px;
      display: grid;
      grid-template-columns: repeat(4, 230px);
      gap: 19px;
      align-content: start;
      justify-content: start;
      overflow: visible !important;
    }
    .menu__item.is-open > .mega.mega--insight .mega__inner {
      overflow: visible !important;
    }
    /*
      호버 hit 영역은 a에 고정하고, 시각 레이어(.mega-insight__lift)만 이동.
      a 자체를 translate하면 마우스가 카드 밖으로 나가 hover가 끊겨
      transition이 취소되며 뚝뚝 끊겨 보인다.
    */
    .mega-insight {
      position: relative;
      display: block;
      box-sizing: border-box;
      width: 230px;
      height: 230px;
      text-decoration: none;
      background: transparent;
      /* a는 절대 움직이지 않음 → hover 유지 */
      transform: none;
    }
    .mega-insight__lift {
      position: absolute;
      inset: 0;
      display: block;
      border-radius: 8px;
      overflow: hidden;
      background: #154670;
      box-shadow: 0 4px 14px rgba(16, 24, 31, 0.08);
      transform: translate3d(0, 0, 0);
      -webkit-transition:
        -webkit-transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
        box-shadow 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
      transition:
        transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
        box-shadow 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    .mega-insight__lift::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 8px;
      border: 2px solid transparent;
      background: transparent;
      pointer-events: none;
      z-index: 2;
      -webkit-transition:
        border-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
        background-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
      transition:
        border-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
        background-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    .mega-insight:hover .mega-insight__lift,
    .mega-insight:focus-visible .mega-insight__lift,
    .mega-insight.is-current .mega-insight__lift {
      transform: translate3d(0, -6px, 0);
      box-shadow: 0 16px 32px rgba(21, 70, 112, 0.22);
    }
    .mega-insight:hover .mega-insight__lift::after,
    .mega-insight:focus-visible .mega-insight__lift::after,
    .mega-insight.is-current .mega-insight__lift::after {
      border-color: #2070b6;
      background-color: rgba(32, 112, 182, 0.06);
    }
    .mega-insight__img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border-radius: 8px;
      -webkit-transition: filter 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
      transition: filter 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    .mega-insight:hover .mega-insight__img,
    .mega-insight:focus-visible .mega-insight__img,
    .mega-insight.is-current .mega-insight__img {
      filter: brightness(1.05);
    }
    @media (prefers-reduced-motion: reduce) {
      .mega-insight__lift,
      .mega-insight__lift::after,
      .mega-insight__img {
        transition: none;
        -webkit-transition: none;
      }
      .mega-insight:hover .mega-insight__lift,
      .mega-insight:focus-visible .mega-insight__lift {
        transform: none;
      }
    }
    /* Support mega: 제품정보/회사소개와 동일 가로 1040 (357 + 348 + 335), 3열 형태는 Figma 유지 */
    .mega--support .mega__inner.container,
    .mega--support .mega__inner {
      width: 1040px;
      max-width: 1040px;
      height: 560px;
      padding-left: 0;
      padding-right: 0;
      display: grid;
      grid-template-columns: 357px 348px 335px;
      align-items: stretch;
      box-shadow: 0 18px 40px rgba(16, 24, 31, 0.12);
    }
    .mega--support .mega__col--support-nav {
      width: 357px;
      height: 560px;
      padding: 32px 25px 16px 32px;
      border-right: 1px solid #c8ced3;
      background: #f2f4f5;
    }
    .mega--support .mega__list {
      width: 300px;
    }
    .mega--support .mega__item {
      width: 300px;
    }
    .mega--support .mega__col--support-mid {
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      width: 348px;
      height: 560px;
      padding: 32px 24px;
      background: #f2f4f5;
    }
    .mega-support__intro {
      margin: 0 0 16px;
      font-family: "Noto Sans KR", sans-serif;
      font-size: 18px;
      font-weight: 500;
      line-height: 24px;
      color: #131313;
    }
    .mega-support__catalogs {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .mega-support__catalog {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 124px;
      text-decoration: none;
      color: inherit;
    }
    .mega-support__catalog-thumb {
      display: block;
      box-sizing: border-box;
      width: 124px;
      height: 176px;
      border: 1px solid #e1e7eb;
      background: #fff;
      overflow: hidden;
      transition:
        border-color 0.35s ease,
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .mega-support__catalog:hover .mega-support__catalog-thumb {
      border-color: #c8ced3;
      box-shadow: 0 6px 16px rgba(16, 24, 31, 0.08);
    }
    .mega-support__catalog-thumb img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* transform/scale 애니메이션과 겹치면 떨림 — filter만 사용 */
      backface-visibility: hidden;
      transition: filter 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .mega-support__catalog:hover .mega-support__catalog-thumb img {
      filter: brightness(1.03);
    }
    .mega-support__catalog-label {
      font-family: "Noto Sans KR", sans-serif;
      font-size: 14px;
      font-weight: 500;
      line-height: normal;
      color: #5e5e5e;
      transition: color 0.3s ease;
    }
    .mega-support__catalog:hover .mega-support__catalog-label {
      color: #154670;
    }
    .mega-support__contact-wrap {
      margin-top: auto;
      padding-top: 32px;
      border-top: 1px solid #c8ced3;
    }
    .mega-support__contact {
      box-sizing: border-box;
      width: 100%;
      padding: 32px 16px;
      border: 1px solid #e1e7eb;
      border-radius: 8px;
      background: #fff;
    }
    .mega-support__contact-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      font-family: "Noto Sans KR", sans-serif;
      font-size: 18px;
      font-weight: 500;
      line-height: 24px;
      color: #131313;
    }
    .mega-support__contact-icon {
      display: block;
      width: 19px;
      height: 19px;
      flex-shrink: 0;
    }
    .mega-support__contact-body {
      font-family: "Noto Sans KR", sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 22px;
      color: #5e5e5e;
    }
    .mega-support__contact-body p {
      margin: 0;
    }
    .mega--support .mega__feature--support {
      width: 100%;
      justify-content: space-between;
    }
    .mega--support .mega__feature-bg {
      backface-visibility: hidden;
      transform: translateZ(0);
    }
    /* Figma 2066:1012 — Space Grotesk / 28·20 / gap 40 / letter-spacing -1 */
    .mega--support .mega__feature-title {
      font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
      font-size: 28px;
      font-weight: 500;
      line-height: 32px;
      letter-spacing: -1px;
      color: #e1e7eb;
    }
    .mega--support .mega__feature-sub {
      margin-top: 40px;
      font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 28px;
      letter-spacing: -1px;
      color: #e1e7eb;
    }
    /* Figma 2066:1096 — 회사소개 고정 배너 (DICKSON) */
    .mega--about .mega__feature--about {
      justify-content: space-between;
    }
    .mega--about .mega__feature-title {
      font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
      font-size: 28px;
      font-weight: 500;
      line-height: 32px;
      letter-spacing: -1px;
      color: #e1e7eb;
    }
    .mega--about .mega__feature-sub {
      margin-top: 40px;
      font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 33px;
      letter-spacing: -1px;
      color: #e1e7eb;
    }
    .mega__col {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box;
      min-width: 0;
      height: 560px;
      background: #f2f4f5;
    }
    .mega__col--product {
      width: 357px;
      padding: 32px 25px 16px 32px;
      border-right: 1px solid #c8ced3;
      background: #f2f4f5;
    }
    .mega--products .mega__col--product {
      width: 357px;
      padding: 32px 25px 16px 32px;
    }
    .mega__col--sub {
      width: 348px;
      padding: 32px 24px 16px;
      background: #fff;
    }
    .mega--products .mega__col--product-mid {
      display: flex;
      flex-direction: column;
      width: 348px;
      padding: 32px 24px 16px;
      /* Figma 2066:882 — 하위 카테고리 2열도 회색 바탕 + 흰 리스트 카드 */
      background: #f2f4f5;
    }
    .mega--products .mega__col--product-mid .mega__heading {
      color: #154670;
      font-family: Roboto, "Noto Sans KR", sans-serif;
      font-size: 18px;
      font-weight: 500;
      line-height: 28px;
    }
    .mega--products .mega__col--product-mid .mega__list {
      padding-top: 16px;
      gap: 10px;
    }
    .mega-product__highlights {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .mega-product__highlights a {
      display: flex;
      align-items: center;
      box-sizing: border-box;
      width: 100%;
      height: 43px;
      padding: 0 17px;
      border: 1px solid #e1e7eb;
      border-radius: 4px;
      background: #fff;
      color: #5e5e5e;
      font-family: "Noto Sans KR", sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: normal;
      text-decoration: none;
      transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
    }
    .mega-product__highlights a:hover {
      background: #f7fbff;
      border-color: #2070b6;
      color: #154670;
    }
    .mega--about .mega__col--about-mid {
      display: flex;
      flex-direction: column;
      /* Figma 2066:1056 — 2열은 회색 바탕 + 흰 리스트 카드 */
      background: #f2f4f5;
    }
    .mega--about .mega__col--about-mid .mega__panel[data-panel="overview"] {
      width: 100%;
    }
    .mega--about .mega__col--about-mid .mega__panel[data-panel="overview"] .mega__heading {
      color: #154670;
      font-family: "Noto Sans KR", sans-serif;
      font-size: 18px;
      font-weight: 500;
      line-height: 28px;
    }
    .mega--about .mega__col--about-mid .mega__panel[data-panel="overview"] .mega__list {
      padding-top: 16px;
      gap: 10px;
    }
    .mega-about__office {
      margin-top: auto;
      padding-top: 24px;
      border-top: 1px solid #c8ced3;
    }
    .mega-about__office-title {
      margin: 0 0 8px;
      font-family: "Noto Sans KR", sans-serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      color: #131313;
    }
    .mega-about__office-addr,
    .mega-about__office-tel {
      margin: 0;
      font-family: "Noto Sans KR", sans-serif;
      font-size: 13px;
      font-weight: 400;
      line-height: 20px;
      color: #5e5e5e;
    }
    .mega-about__office-tel {
      margin-top: 8px;
    }
    .mega__heading {
      margin: 0;
      font-family: Roboto, "Noto Sans KR", sans-serif;
      font-size: 18px;
      font-weight: 500;
      line-height: 28px;
      color: #154670;
      white-space: nowrap;
    }
    .mega__list {
      list-style: none;
      margin: 0;
      padding: 16px 0 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 300px;
    }
    .mega__item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      box-sizing: border-box;
      width: 300px;
      height: 43px;
      padding: 0 17px;
      border: 1px solid #e1e7eb;
      border-radius: 4px;
      background: #fff;
      color: #5e5e5e;
      font-family: "Noto Sans KR", sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: normal;
      text-align: left;
      text-decoration: none;
      white-space: nowrap;
      cursor: pointer;
      transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
    }
    .mega__item span:not(.mega__icon) {
      min-width: 0;
    }
    .mega__chevron {
      width: 12px;
      height: 12px;
      display: block;
      flex-shrink: 0;
    }
    .mega__chevron--on { display: none; }
    .mega__icon {
      position: relative;
      width: 12px;
      height: 12px;
      flex-shrink: 0;
      color: #959da4;
      transition: color 0.18s ease, transform 0.22s ease;
    }
    .mega__item.is-active,
    .mega__item.is-current,
    .mega__item:hover {
      background: #f7fbff;
      border-color: #2070b6;
      color: #154670;
    }
    .mega__item.is-active .mega__chevron--on,
    .mega__item.is-current .mega__chevron--on,
    .mega__item:hover .mega__chevron--on {
      display: block;
    }
    .mega__item.is-active .mega__chevron--off,
    .mega__item.is-current .mega__chevron--off,
    .mega__item:hover .mega__chevron--off {
      display: none;
    }
    .mega__item.is-active .mega__icon,
    .mega__item.is-current .mega__icon,
    .mega__item:hover .mega__icon {
      color: #2070b6;
    }
    /* 하위 패널 펼침: + 아이콘 */
    .mega__icon--expand::before,
    .mega__icon--expand::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      background: currentColor;
      border-radius: 1px;
      transform: translate(-50%, -50%);
    }
    .mega__icon--expand::before {
      width: 10px;
      height: 1.5px;
    }
    .mega__icon--expand::after {
      width: 1.5px;
      height: 10px;
    }
    .mega__item.is-active .mega__icon--expand,
    .mega__item.is-current .mega__icon--expand {
      transform: rotate(45deg);
    }
    .mega__panel {
      width: 100%;
    }
    .mega__panel[hidden] {
      display: none !important;
    }
    .mega__feature-stack {
      position: relative;
      width: 100%;
      min-width: 0;
      height: 560px;
      overflow: hidden;
      border-radius: 0 8px 8px 0;
    }
    .mega__feature-stack .mega__feature {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      /* visibility는 부모 .mega에만 맡김 — 자식 visible이 닫힌 메가 히트를 뚫지 않도록 */
      pointer-events: none;
      transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      z-index: 0;
    }
    .mega__feature-stack .mega__feature.is-active {
      opacity: 1;
      z-index: 1;
    }
    .menu__item.is-open .mega__feature-stack .mega__feature.is-active {
      pointer-events: auto;
    }
    .menu__item.is-open .mega__feature-stack .mega__feature--video.is-active,
    .mega__feature-stack .mega__feature--video,
    .mega__feature-stack .mega__feature--video.is-active {
      padding: 0;
      background: #0b1c2a;
      pointer-events: none;
    }
    .mega__feature-video {
      position: absolute;
      inset: 0;
      overflow: hidden;
      border-radius: 0 8px 8px 0;
      container-type: size;
      isolation: isolate;
      contain: paint;
      pointer-events: none;
      background: #0b1c2a;
    }
    .mega__feature-video-poster {
      position: absolute;
      inset: 0;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: opacity 0.35s ease;
    }
    .mega__feature-video.is-playing .mega__feature-video-poster {
      opacity: 0;
    }
    .mega__feature-video iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 1;
      border: 0;
      transform: translate(-50%, -50%);
      /* 가로(16:9) 영상을 세로 패널에 cover처럼 꽉 채움 */
      width: max(100cqw, calc(100cqh * 16 / 9));
      height: max(100cqh, calc(100cqw * 9 / 16));
      pointer-events: none;
    }
    .mega__feature {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      box-sizing: border-box;
      width: 100%;
      min-width: 0;
      height: 560px;
      margin: 0;
      padding: 40px;
      overflow: hidden;
      border-radius: 0 8px 8px 0;
      background: #154670;
      text-decoration: none;
      color: #e1e7eb;
    }
    .mega__feature[data-tone="navy"] { background: #154670; }
    .mega__feature[data-tone="sky"] { background: #1a6fa8; }
    .mega__feature[data-tone="teal"] { background: #0f6e6a; }
    .mega__feature[data-tone="slate"] { background: #2f4558; }
    .mega__feature[data-tone="indigo"] { background: #2a4a7a; }
    .mega__feature[data-tone="ocean"] { background: #0d4f6b; }
    .mega__feature-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      border-radius: 0 8px 8px 0;
      transition:
        filter 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
    }
    .mega__feature[data-tone="sky"] .mega__feature-bg {
      filter: hue-rotate(-12deg) saturate(1.15) brightness(1.05);
    }
    .mega__feature[data-tone="teal"] .mega__feature-bg {
      filter: hue-rotate(95deg) saturate(1.05) brightness(0.95);
    }
    .mega__feature[data-tone="slate"] .mega__feature-bg {
      filter: grayscale(0.25) brightness(0.9) contrast(1.05);
    }
    .mega__feature[data-tone="indigo"] .mega__feature-bg {
      filter: hue-rotate(210deg) saturate(1.2) brightness(0.92);
    }
    .mega__feature[data-tone="ocean"] .mega__feature-bg {
      filter: hue-rotate(160deg) saturate(1.1) brightness(0.9);
    }
    .mega__feature:hover .mega__feature-bg {
      filter: brightness(1.08);
    }
    .mega__feature[data-tone="sky"]:hover .mega__feature-bg {
      filter: hue-rotate(-12deg) saturate(1.15) brightness(1.12);
    }
    .mega__feature[data-tone="teal"]:hover .mega__feature-bg {
      filter: hue-rotate(95deg) saturate(1.05) brightness(1.05);
    }
    .mega__feature[data-tone="slate"]:hover .mega__feature-bg {
      filter: grayscale(0.15) brightness(1) contrast(1.05);
    }
    .mega__feature[data-tone="indigo"]:hover .mega__feature-bg {
      filter: hue-rotate(210deg) saturate(1.2) brightness(1.02);
    }
    .mega__feature[data-tone="ocean"]:hover .mega__feature-bg {
      filter: hue-rotate(160deg) saturate(1.1) brightness(1);
    }
    .mega__feature-copy,
    .mega__feature-btn {
      position: relative;
      z-index: 1;
    }
    .mega__feature-copy {
      width: 253px;
      text-align: center;
    }
    .mega__feature-title {
      margin: 0;
      font-family: "Noto Sans KR", Roboto, sans-serif;
      font-size: 28px;
      line-height: 32px;
      font-weight: 600;
      letter-spacing: -1px;
      text-align: center;
      color: #e1e7eb;
    }
    .mega__feature-sub {
      margin: 24px 0 0;
      font-size: 20px;
      line-height: 33px;
      text-align: center;
      color: #e1e7eb;
    }
    .mega__feature-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      width: 109px;
      height: 39px;
      padding: 8px 16px;
      border-radius: 4px;
      background: #f7fbff;
      color: #131313;
      font-family: Roboto, "Noto Sans KR", sans-serif;
      font-size: 14px;
      font-weight: 700;
      line-height: 21px;
      transition: background-color 0.2s ease, color 0.2s ease;
    }
    .mega__feature:hover .mega__feature-btn {
      background: #fff;
      color: #154670;
    }

    .tools {
      display: flex;
      align-items: center;
      gap: 18px;
      white-space: nowrap;
    }
    .gnb-wrap.is-solid .service-links a {
      color: #394147;
    }
    .gnb-wrap.is-solid .service-links .divider {
      color: #c8ced3;
    }

    .search {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 186px;
      max-width: 186px;
      border: 1px solid var(--search-border);
      background: #fff;
      border-radius: 9999px;
      box-shadow: 0 22px 37px rgba(0, 38, 62, 0.09);
      padding: 3px 3px 3px 17px;
      font: inherit;
      text-align: left;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      transition:
        width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        border-color 0.25s ease;
    }
    .search--trigger:hover,
    .search--trigger:focus-visible {
      box-shadow: 0 18px 32px rgba(0, 140, 255, 0.18);
      outline: none;
    }
    .search__placeholder {
      flex: 1;
      min-width: 0;
      font-family: Roboto, "Noto Sans KR", sans-serif;
      font-size: 13px;
      line-height: 13px;
      color: var(--muted);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .search__submit,
    .search button,
    .search-overlay__submit {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      cursor: pointer;
      padding: 8px 20px;
      border-radius: 9999px;
      background: linear-gradient(150.25deg, var(--primary) 0%, var(--primary-deep) 100%);
    }
    .search__icon {
      position: relative;
      width: 16px;
      height: 16px;
      display: block;
    }
    .search__icon-lens {
      position: absolute;
      inset: 0 21.05% 21.05% 0;
      width: auto;
      height: auto;
      max-width: none;
      display: block;
    }
    .search__icon-handle {
      position: absolute;
      inset: 68.42% -10.53% 0 78.95%;
      width: auto;
      height: auto;
      max-width: none;
      display: block;
    }

    /* 전체 검색 오버레이 */
    .search-overlay {
      position: fixed;
      inset: 0;
      z-index: 3000;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 12vh 24px 40px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition:
        opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .search-overlay.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .search-overlay__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(9, 31, 44, 0.72);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .search-overlay__panel {
      position: relative;
      z-index: 1;
      width: min(760px, 100%);
      transform: translate3d(0, -18px, 0) scale(0.92);
      opacity: 0;
      transform-origin: top center;
      transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .search-overlay.is-open .search-overlay__panel {
      transform: translate3d(0, 0, 0) scale(1);
      opacity: 1;
    }
    .search-overlay__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 20px;
    }
    .search-overlay__title {
      margin: 0;
      font-family: "Noto Sans KR", sans-serif;
      font-size: clamp(22px, 2.4vw, 28px);
      font-weight: 600;
      line-height: 1.3;
      color: #fff;
      letter-spacing: -0.02em;
    }
    .search-overlay__close {
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      cursor: pointer;
      position: relative;
      flex-shrink: 0;
      transition: background-color 0.2s ease;
    }
    .search-overlay__close:hover {
      background: rgba(255, 255, 255, 0.22);
    }
    .search-overlay__close span {
      position: absolute;
      inset: 0;
    }
    .search-overlay__close span::before,
    .search-overlay__close span::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 18px;
      height: 1.5px;
      background: #fff;
      border-radius: 1px;
    }
    .search-overlay__close span::before {
      transform: translate(-50%, -50%) rotate(45deg);
    }
    .search-overlay__close span::after {
      transform: translate(-50%, -50%) rotate(-45deg);
    }
    .search-overlay__form {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
      min-height: 72px;
      padding: 8px 8px 8px 28px;
      border-radius: 9999px;
      background: #fff;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
      transform: scaleX(0.42);
      transform-origin: center center;
      transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .search-overlay.is-open .search-overlay__form {
      transform: scaleX(1);
    }
    .search-overlay__input {
      flex: 1;
      min-width: 0;
      border: 0;
      outline: 0;
      background: transparent;
      font-family: "Noto Sans KR", Roboto, sans-serif;
      font-size: clamp(18px, 2vw, 22px);
      font-weight: 500;
      line-height: 1.3;
      color: #131313;
      padding: 0;
    }
    .search-overlay__input::placeholder {
      color: #959da4;
      font-weight: 400;
    }
    .search-overlay__submit {
      width: 56px;
      height: 56px;
      padding: 0;
    }
    .search-overlay__suggest {
      margin-top: 28px;
      opacity: 0;
      transform: translate3d(0, 12px, 0);
      transition:
        opacity 0.35s ease 0.12s,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
    }
    .search-overlay.is-open .search-overlay__suggest {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
    .search-overlay__suggest-label {
      margin: 0 0 14px;
      font-family: "Noto Sans KR", sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.72);
    }
    .search-overlay__chips {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .search-overlay__chip {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 16px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-family: "Noto Sans KR", sans-serif;
      font-size: 14px;
      font-weight: 400;
      cursor: pointer;
      transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
    }
    .search-overlay__chip:hover {
      background: rgba(255, 255, 255, 0.18);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-1px);
    }
    body.is-search-open {
      overflow: hidden;
    }
    @media (prefers-reduced-motion: reduce) {
      .search-overlay,
      .search-overlay__panel,
      .search-overlay__form,
      .search-overlay__suggest {
        transition: none;
      }
    }
    @media (max-width: 720px) {
      .search-overlay {
        padding: 80px 16px 32px;
      }
      .search-overlay__form {
        min-height: 60px;
        padding: 6px 6px 6px 18px;
        transform: scaleX(0.55);
      }
      .search-overlay__submit {
        width: 48px;
        height: 48px;
      }
      .search-overlay__input {
        font-size: 16px;
      }
    }

    .service-links {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
    }
    .service-links a {
      color: #fff;
      text-decoration: none;
      opacity: 0.95;
      transition: color var(--gnb-fg-duration) var(--gnb-ease);
    }
    .divider {
      font-size: 13px;
      opacity: 0.8;
      color: rgba(255, 255, 255, 0.8);
      transition: color var(--gnb-fg-duration) var(--gnb-ease);
    }

    .mall-btn {
      border: 0;
      border-radius: 100px;
      color: #fff;
      background: var(--primary);
      padding: 10px 30px 12px;
      font-size: 14px;
      line-height: 1;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition:
        background-color var(--gnb-fg-duration) var(--gnb-ease),
        color var(--gnb-fg-duration) var(--gnb-ease);
    }

    .hero {
      position: relative;
      min-height: 650px;
      height: 650px;
      color: #fff;
      overflow: hidden;
      isolation: isolate;
    }
    .hero-swiper {
      width: 100%;
      height: 100%;
      min-height: 650px;
    }
    .hero-swiper .swiper-slide {
      position: relative;
      min-height: 650px;
      height: 650px;
      overflow: hidden;
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero__overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(90deg, rgba(10, 32, 47, 0.72) 0%, rgba(10, 32, 47, 0.35) 45%, rgba(10, 32, 47, 0.18) 100%);
      pointer-events: none;
    }
    .hero__overlay--deep {
      background: linear-gradient(90deg, rgba(8, 24, 40, 0.82) 0%, rgba(11, 43, 70, 0.55) 48%, rgba(0, 80, 140, 0.28) 100%);
    }
    .hero__content {
      position: relative;
      z-index: 2;
      padding: 190px 0 120px;
    }
    .hero__title {
      margin: 0 0 10px;
      font-size: clamp(30px, 3.2vw, 46px);
      line-height: 1.35;
      letter-spacing: -0.03em;
      font-weight: 400;
    }
    .hero__subtitle {
      margin: 0 0 40px;
      font-size: clamp(16px, 1.4vw, 24px);
      line-height: 1.6;
      color: #fafaf7;
      font-weight: 300;
    }
    .hero__actions {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .hero__btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px 16px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 16px;
      line-height: 1;
      font-weight: 500;
    }
    .hero__btn--light {
      background: #fff;
      color: #154670;
    }
    .hero__btn--dark {
      background: #154670;
      color: #fff;
    }
    .hero__btn-icon {
      width: 8px;
      height: 13px;
      display: block;
    }
    .hero__nav {
      position: absolute;
      top: 50%;
      z-index: 6;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .hero__nav img {
      width: 100%;
      height: 100%;
      display: block;
      filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
    }
    .hero__nav:hover {
      opacity: 0.85;
      transform: translateY(-50%) scale(1.04);
    }
    .hero__nav:focus-visible {
      outline: 2px solid #008cff;
      outline-offset: 3px;
      border-radius: 50%;
    }
    .hero__nav--prev {
      left: 24px;
    }
    .hero__nav--next {
      right: 24px;
    }
    .hero-swiper .hero__pagination.swiper-pagination {
      position: absolute;
      left: 50% !important;
      right: auto;
      bottom: 52px !important;
      z-index: 6;
      width: auto !important;
      transform: translateX(-50%) !important;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .hero-swiper .hero__pagination .swiper-pagination-bullet {
      width: 9px;
      height: 9px;
      margin: 0 !important;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.45);
      opacity: 1;
      transition: width 0.25s ease, height 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease;
    }
    .hero-swiper .hero__pagination .swiper-pagination-bullet-active {
      width: 28px;
      height: 8px;
      border-radius: 4px;
      background: #fff;
    }

    .island {
      background: #f2f4f5;
      padding: 16px 0;
    }
    .island__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .island__left {
      display: flex;
      align-items: center;
      gap: 30px;
      min-width: 0;
    }
    .island__icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      object-fit: contain;
      flex-shrink: 0;
      display: block;
    }
    .island__title {
      margin: 0;
      color: #154670;
      font-size: 16px;
      line-height: 26px;
      font-weight: 700;
    }
    .island__desc {
      margin: 0;
      color: #5e5e5e;
      font-size: 14px;
      line-height: 22px;
      font-weight: 400;
    }
    .island__more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #154670;
      font-size: 14px;
      line-height: 26px;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .island__more-icon,
    .news-card__more-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 6px;
      height: 10px;
      flex-shrink: 0;
    }
    .island__more-icon img,
    .news-card__more-icon img {
      width: 10px;
      height: 6px;
      display: block;
      transform: rotate(-90deg);
    }

    .insight {
      background: #fff;
      padding: 100px 0;
    }
    .insight__inner {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .insight__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 10px;
      border: 1px solid #e1e7eb;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      color: #252a2e;
      width: fit-content;
    }
    .insight__eyebrow-icon {
      width: 12px;
      height: 12px;
      display: block;
    }
    .insight__head {
      display: flex;
      flex-direction: column;
      gap: 60px;
    }
    .insight__intro {
      position: relative;
    }
    .insight__title {
      margin: 0 0 10px;
      font-size: clamp(28px, 2.8vw, 39px);
      line-height: 1.2;
      font-weight: 700;
      color: #131313;
    }
    .insight__desc {
      margin: 0;
      font-size: 16px;
      line-height: 1.4;
      color: #394147;
    }
    .insight__grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 40px;
    }
    .insight-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      min-width: 0;
    }
    .insight-card__thumb {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 8px 8px 0 0;
      display: block;
    }
    .insight-card__body {
      background: #f2f4f5;
      border-radius: 0 0 8px 8px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 32px 16px;
      min-height: 234px;
    }
    .insight-card__head {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .insight-card__icon {
      width: 20px;
      height: 18px;
      display: block;
      flex-shrink: 0;
    }
    .insight-card__name {
      margin: 0;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 700;
      color: #154670;
    }
    .insight-card__text {
      margin: 0;
      font-size: 16px;
      line-height: 26px;
      color: #131313;
    }
    .insight-card__more {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #394147;
      font-size: 14px;
      line-height: 26px;
      transition: color 0.2s ease;
    }
    .insight-card:hover .insight-card__more {
      color: #154670;
    }

    .products {
      background: #f2f4f5;
      padding: 100px 0;
    }
    .products__inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
    .products__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 10px;
      border: 1px solid #e1e7eb;
      border-radius: 8px;
      background: #fff;
      font-size: 14px;
      font-weight: 500;
      color: #252a2e;
    }
    .products__eyebrow-icon {
      width: 12px;
      height: 12px;
      display: block;
    }
    .products__head {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 60px;
      width: 100%;
    }
    .products__intro {
      text-align: center;
    }
    .products__title {
      margin: 0 0 10px;
      font-size: clamp(28px, 2.8vw, 39px);
      line-height: 1.2;
      font-weight: 700;
      color: #131313;
    }
    .products__desc {
      margin: 0;
      font-size: 16px;
      line-height: 1.4;
      color: #394147;
    }
    .products__tabs {
      display: inline-flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0;
      padding: 4px;
      border-radius: 9999px;
      background: linear-gradient(180deg, #008cff 0%, #0f5694 100%);
    }
    .products__tab {
      border: 0;
      background: transparent;
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      padding: 12px 20px;
      border-radius: 500px;
      cursor: pointer;
      white-space: nowrap;
    }
    .products__tab.is-active {
      background: #fff;
      color: #154670;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      font-weight: 500;
    }
    .products-swiper {
      width: 100%;
      overflow: hidden;
    }
    .products-swiper .swiper-slide {
      height: auto;
    }
    .products__stage {
      position: relative;
      width: 100%;
      min-height: 420px;
    }
    .products__stage-body {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 60px;
      width: 100%;
      transition: opacity 0.22s ease, transform 0.22s ease;
      opacity: 1;
      transform: translateY(0);
    }
    .products__stage-body.is-fading-out {
      opacity: 0;
      transform: translateY(8px);
      pointer-events: none;
    }
    .products__stage-body.is-fading-in {
      opacity: 0;
      transform: translateY(8px);
    }
    .products__stage-body.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .products__loading {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background: rgba(242, 244, 245, 0.72);
      backdrop-filter: blur(1px);
      color: #154670;
      font-size: 14px;
      line-height: 1.4;
    }
    .products__stage.is-loading .products__loading {
      display: flex;
    }
    .products__spinner {
      width: 36px;
      height: 36px;
      border: 3px solid rgba(21, 70, 112, 0.18);
      border-top-color: #008cff;
      border-radius: 50%;
      animation: products-spin 0.75s linear infinite;
    }
    @keyframes products-spin {
      to { transform: rotate(360deg); }
    }
    .products__tabs.is-busy .products__tab {
      pointer-events: none;
    }
    .product-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      height: 100%;
      min-width: 0;
    }
    .product-card__thumb-wrap {
      background: #fff;
      border: 1px solid #e1e7eb;
      border-bottom: 0;
      border-radius: 8px 8px 0 0;
      overflow: hidden;
      aspect-ratio: 1 / 1;
    }
    .product-card__thumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .product-card__body {
      background: #e1e7eb;
      border-radius: 0 0 8px 8px;
      padding: 32px 16px;
      min-height: 200px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .product-card__brand {
      height: 20px;
      width: 83px;
      object-fit: contain;
      display: block;
    }
    .product-card__brand--text {
      width: auto;
      max-width: 100%;
      font-size: 14px;
      font-weight: 700;
      line-height: 20px;
      color: #154670;
      letter-spacing: 0.02em;
    }
    .product-card__name {
      margin: 0;
      font-size: 18px;
      line-height: 26px;
      font-weight: 400;
      color: #131313;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .product-card__model {
      margin: 0;
      font-size: 14px;
      line-height: 26px;
      color: #131313;
    }
    .products__dots {
      position: static;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: auto;
      height: 9px;
    }
    .products__dots .swiper-pagination-bullet {
      width: 9px;
      height: 9px;
      margin: 0 !important;
      border-radius: 50%;
      background: #e1e7eb;
      opacity: 1;
      transition: width 0.25s ease, height 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease;
    }
    .products__dots .swiper-pagination-bullet-active {
      width: 28px;
      height: 8px;
      border-radius: 4px;
      background: #154670;
    }

    .service {
      background: #020f1a;
      padding: 100px 0;
    }
    .service__inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 60px;
    }
    .service__header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      text-align: center;
    }
    .service__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 10px;
      border: 1px solid #008cff;
      border-radius: 8px;
      background: #fff;
      font-size: 14px;
      font-weight: 500;
      color: #252a2e;
    }
    .service__eyebrow-icon {
      width: 12px;
      height: 12px;
      display: block;
    }
    .service__title {
      margin: 0 0 10px;
      font-size: clamp(28px, 2.8vw, 39px);
      line-height: 1.2;
      font-weight: 700;
      color: #e1e7eb;
    }
    .service__desc {
      margin: 0;
      font-size: 16px;
      line-height: 1.4;
      color: #e1e7eb;
    }
    .service__grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 40px;
      width: 100%;
    }
    .service-card {
      position: relative;
      min-height: 600px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 24px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      isolation: isolate;
    }
    .service-card__bg {
      position: absolute;
      inset: 0;
      z-index: -2;
    }
    .service-card__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1);
      transition: transform 0.7s ease;
      transform-origin: center;
      will-change: transform;
    }
    .service-card:hover .service-card__bg img,
    .service-card:focus-visible .service-card__bg img {
      transform: scale(1.06);
    }
    .service-card__overlay {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(2, 15, 26, 0.15) 0%, rgba(2, 15, 26, 0.75) 100%);
    }
    .service-card__label {
      position: absolute;
      top: 32px;
      left: 32px;
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      color: #ffb020;
      letter-spacing: 0.02em;
    }
    .service-card__name {
      margin: 0;
      font-size: clamp(24px, 2.2vw, 31px);
      line-height: 1.2;
      font-weight: 700;
      color: #fff;
    }
    .service-card__text {
      margin: 0;
      font-size: 18px;
      line-height: 30px;
      color: #e1e7eb;
    }
    .service-card__more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
      line-height: 26px;
      color: #e1e7eb;
    }
    .service-card__more-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 11.6px;
      flex-shrink: 0;
    }
    .service-card__more-icon img {
      width: 11.6px;
      height: 20px;
      display: block;
      transform: rotate(90deg);
    }

    .brand {
      background: #154670;
      padding: 100px 0;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      overflow: hidden;
    }
    .brand__header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      text-align: center;
      margin-bottom: 60px;
    }
    .brand__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 10px;
      border: 1px solid #008cff;
      border-radius: 8px;
      background: #fff;
      font-size: 14px;
      font-weight: 500;
      color: #252a2e;
    }
    .brand__eyebrow-icon {
      width: 12px;
      height: 12px;
      display: block;
    }
    .brand__title {
      margin: 0 0 10px;
      font-size: clamp(28px, 2.8vw, 39px);
      line-height: 1.2;
      font-weight: 700;
      color: #fff;
    }
    .brand__desc {
      margin: 0;
      font-size: 16px;
      line-height: 1.4;
      color: #e1e7eb;
    }
    .brand-swiper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      margin: 0;
      padding: 0;
    }
    .brand-swiper .swiper-wrapper {
      box-sizing: content-box;
    }
    .brand-swiper .swiper-slide {
      width: 180px;
      height: auto;
      flex-shrink: 0;
    }
    .brand-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: inherit;
    }
    .brand-item__logo {
      width: 180px;
      height: 180px;
      border-radius: 8px;
      background: #fff;
      object-fit: contain;
      display: block;
    }
    .brand-item__logo--text {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 16px;
      box-sizing: border-box;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.3;
      color: #154670;
      word-break: keep-all;
    }
    .brand-item__name {
      margin: 0;
      font-size: 14px;
      line-height: 26px;
      color: #fff;
      white-space: nowrap;
    }

    .news {
      background: #fff;
      padding: 100px 0;
    }
    .news__inner {
      display: flex;
      flex-direction: column;
      gap: 60px;
    }
    .news__header {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 30px;
      max-width: 720px;
    }
    .news__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 10px;
      border: 1px solid #e1e7eb;
      border-radius: 8px;
      background: #fff;
      font-size: 14px;
      font-weight: 500;
      color: #252a2e;
    }
    .news__eyebrow-icon {
      width: 12px;
      height: 12px;
      display: block;
    }
    .news__title {
      margin: 0 0 10px;
      font-size: clamp(28px, 2.8vw, 39px);
      line-height: 1.2;
      font-weight: 700;
      color: #131313;
    }
    .news__desc {
      margin: 0;
      font-size: 16px;
      line-height: 1.4;
      color: #394147;
    }
    .news__body {
      display: grid;
      grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
      gap: 30px;
      align-items: start;
    }
    .news__cats {
      display: flex;
      flex-direction: column;
    }
    .news__cat {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 13px;
      width: 100%;
      padding: 16px 16px 16px 24px;
      border: 0;
      border-left: 2px solid #e1e7eb;
      border-radius: 0;
      background: #fff;
      color: #131313;
      font-family: inherit;
      font-size: 18px;
      line-height: 1.2;
      text-align: left;
      text-decoration: none;
      cursor: pointer;
    }
    .news__cat.is-active {
      background: #eaf1f8;
      border-left-color: #154670;
    }
    .news__cat-icon {
      width: 7px;
      height: 13px;
      display: block;
      flex-shrink: 0;
      object-fit: contain;
    }
    .news__grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 30px;
    }
    .news__stage {
      position: relative;
      width: 100%;
      min-height: 0;
    }
    .news__stage-body {
      width: 100%;
      transition: opacity 0.22s ease, transform 0.22s ease;
      opacity: 1;
      transform: translateY(0);
    }
    .news__stage-body.is-fading-out {
      opacity: 0;
      transform: translateY(6px);
      pointer-events: none;
    }
    .news__stage-body.is-fading-in {
      opacity: 0;
      transform: translateY(6px);
    }
    .news__stage-body.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .news__loading {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(1px);
      color: #154670;
      font-size: 14px;
      line-height: 1.4;
    }
    .news__stage.is-loading .news__loading {
      display: flex;
    }
    .news__spinner {
      width: 32px;
      height: 32px;
      border: 3px solid rgba(21, 70, 112, 0.18);
      border-top-color: #008cff;
      border-radius: 50%;
      animation: products-spin 0.7s linear infinite;
    }
    .news__cats.is-busy .news__cat {
      pointer-events: none;
    }
    .news-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      min-width: 0;
    }
    .news-card__thumb {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }
    .news-card__thumb-empty {
      width: 100%;
      height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #e8ecf0;
    }
    .news-card__thumb-empty img {
      width: 148px;
      height: auto;
      display: block;
      object-fit: contain;
      filter: brightness(0) saturate(100%) opacity(0.28);
    }
    .news-card__body {
      background: #fff;
      padding: 32px 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .news-card__meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .news-card__tag {
      display: inline-flex;
      align-items: center;
      padding: 8px;
      border-radius: 4px;
      font-size: 14px;
      line-height: 1;
      white-space: nowrap;
    }
    .news-card__tag--press {
      background: #154670;
      color: #f2f4f5;
    }
    .news-card__tag--notice {
      background: #00b894;
      color: #f5fffd;
    }
    .news-card__tag--event {
      background: #008cff;
      color: #f2f4f5;
    }
    .news-card__date {
      margin: 0;
      font-size: 14px;
      line-height: 30px;
      color: #394147;
      white-space: nowrap;
    }
    .news-card__title {
      margin: 0;
      font-size: 18px;
      line-height: 30px;
      font-weight: 400;
      color: #131313;
    }
    .news-card__more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      line-height: 26px;
      color: #394147;
    }

    .site-footer {
      background: #10181f;
      color: #959da4;
    }
    .site-footer a {
      color: inherit;
      text-decoration: none;
    }
    .site-footer__main {
      padding: 100px 0 40px;
    }
    .site-footer__grid {
      display: grid;
      /* 우측 인증 2열(180+30+180)에 맞춤 — 좁히면 인증이 세로로 깨짐 */
      grid-template-columns: minmax(0, 1fr) 390px;
      gap: 40px;
      align-items: start;
    }
    .site-footer__nav-wrap {
      display: flex;
      flex-direction: column;
      gap: 40px;
      min-width: 0;
    }
    /* Figma: gap 40px, 고정 폭 컬럼 + 브랜드(헤더 맞춤) */
    .site-footer__nav {
      display: flex;
      flex-wrap: nowrap;
      align-items: flex-start;
      gap: 40px;
    }
    .site-footer__nav > div {
      flex: 0 0 auto;
      min-width: 0;
    }
    .site-footer__nav > div:nth-child(1) { width: 230px; } /* 제품정보 */
    .site-footer__nav > div:nth-child(2) { width: 80px; }  /* 브랜드 */
    .site-footer__nav > div:nth-child(3) { width: 162px; } /* 인사이트 */
    .site-footer__nav > div:nth-child(4) { width: 125px; } /* 고객지원 */
    .site-footer__nav > div:nth-child(5) { width: 125px; } /* 회사소개 */
    .site-footer__col-title {
      margin: 0 0 30px;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.2;
      color: #959da4;
      white-space: nowrap;
    }
    .site-footer__links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .site-footer__links a {
      display: block;
      font-size: 14px;
      line-height: 1.2;
      color: #959da4;
      white-space: nowrap;
      transition: color 0.2s ease;
    }
    .site-footer__links a:hover,
    .site-footer__links a:focus-visible {
      color: #e1e7eb;
    }
    .site-footer__cta {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .site-footer__cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px 16px;
      border-radius: 8px;
      background: #394147;
      color: #959da4;
      font-size: 16px;
      font-weight: 500;
      line-height: 1;
      transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .site-footer__cta-btn:hover,
    .site-footer__cta-btn:focus-visible {
      background: #4b545b;
      color: #f2f4f5;
      transform: translateY(-1px);
    }
    .site-footer__cta-icon {
      width: 8px;
      height: 13px;
      display: block;
    }
    .site-footer__aside {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: flex-start;
    }
    .site-footer__logo {
      display: block;
      width: 152px;
      height: 30px;
      object-fit: contain;
    }
    .site-footer__social {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .site-footer__social-link {
      width: 40px;
      height: 40px;
      border: 1px solid #3f4851;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: border-color 0.2s ease, background-color 0.2s ease;
    }
    .site-footer__social-link:hover,
    .site-footer__social-link:focus-visible {
      border-color: #959da4;
      background: #202a33;
    }
    .site-footer__social-link img {
      display: block;
      object-fit: contain;
    }
    .site-footer__social-link.smartstore img{width: 22px; height: 22px;}
    .site-footer__social-link.instagram img{width: 20px; height: 20px;}
    .site-footer__social-link.linkedin img{width: 22px; height: 22px;}
    .site-footer__social-link.blog img{width: 20px; height: 18px;}
    .site-footer__social-link.youtube img{width: 20px; height: 15px;}
    .site-footer__contact {
      margin: 0;
      font-size: 16px;
      line-height: 30px;
      color: #959da4;
    }
    .site-footer__certs {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }
    .site-footer__cert-label {
      margin: 0 0 10px;
      font-size: 13px;
      font-weight: 700;
      line-height: 20px;
      color: #959da4;
    }
    .site-footer__cert-box {
      width: 180px;
      height: 120px;
      border-radius: 8px;
      overflow: hidden;
      background: #232b33;
    }
    .site-footer__cert-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      background: transparent;
      border: 0;
    }
    .site-footer__legal {
      padding: 30px 0;
    }
    .site-footer__legal-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .site-footer__legal-links {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
    }
    .site-footer__legal-links a {
      font-size: 14px;
      line-height: 1.2;
      color: #e1e7eb;
      transition: color 0.2s ease;
    }
    .site-footer__legal-links a:hover,
    .site-footer__legal-links a:focus-visible {
      color: #ffffff;
    }
    .site-footer__legal-links a.is-strong {
      color: #fff;
      font-weight: 700;
    }
    .site-footer__family-wrap {
      position: relative;
    }
    .site-footer__family {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 118px;
      min-width: 292px;
      padding: 8px 10px 8px 20px;
      border: 1px solid #959da4;
      border-radius: 20px;
      background: #10181f;
      color: #c8ced3;
      font-family: inherit;
      font-size: 13px;
      font-weight: 400;
      line-height: 20px;
      white-space: nowrap;
      cursor: pointer;
      transition: border-color 0.2s ease, color 0.2s ease;
    }
    .site-footer__family:hover,
    .site-footer__family-wrap.is-open .site-footer__family {
      border-color: #c8ced3;
      color: #e1e7eb;
    }
    .site-footer__family-icon {
      width: 32px;
      height: 26px;
      display: block;
      flex-shrink: 0;
      transition: transform 0.25s ease;
    }
    .site-footer__family-wrap.is-open .site-footer__family-icon {
      transform: rotate(180deg);
    }
    .site-footer__family-menu {
      position: absolute;
      right: 0;
      bottom: calc(100% + 8px);
      z-index: 30;
      width: 100%;
      min-width: 100%;
      margin: 0;
      padding: 8px 0;
      list-style: none;
      background: #10181f;
      border: 1px solid #959da4;
      border-radius: 16px;
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
      overflow: hidden;
    }
    .site-footer__family-wrap.is-open .site-footer__family-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .site-footer__family-menu a {
      display: block;
      padding: 11px 20px;
      color: #c8ced3;
      font-size: 13px;
      line-height: 20px;
      text-decoration: none;
      white-space: nowrap;
      transition: background-color 0.18s ease, color 0.18s ease;
    }
    .site-footer__family-menu a:hover,
    .site-footer__family-menu a:focus-visible {
      background: #232b33;
      color: #fff;
      outline: none;
    }
    .site-footer__copy {
      background: #394147;
      padding: 14.5px 0;
      text-align: center;
    }
    .site-footer__copy-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      font-size: 13px;
      line-height: 20px;
      color: #959da4;
    }
    .site-footer__copy p {
      margin: 0;
    }

    @media (max-width: 1200px) {
      .menu { gap: 20px; font-size: 15px; }
      .service-links { display: none; }
      .insight__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .service__grid {
        gap: 24px;
      }
      .service-card {
        min-height: 480px;
      }
      .news__body {
        grid-template-columns: 1fr;
      }
      .news__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .site-footer__nav {
        flex-wrap: wrap;
        gap: 40px 48px;
      }
      .site-footer__nav > div,
      .site-footer__nav > div:nth-child(n) {
        width: auto;
        min-width: 140px;
      }
    }

    @media (max-width: 960px) {
      .gnb { flex-wrap: wrap; gap: 14px; }
      .menu {
        order: 3;
        width: 100%;
        justify-content: space-between;
        overflow-x: auto;
        padding-bottom: 4px;
      }
      .tools { margin-left: auto; }
      .hero {
        min-height: 520px;
        height: auto;
      }
      .hero-swiper,
      .hero-swiper .swiper-slide {
        min-height: 520px;
        height: auto;
      }
      .hero__content {
        padding: 140px 0 80px;
      }
      .hero__nav {
        width: 44px;
        height: 44px;
      }
      .hero__nav--prev {
        left: 12px;
      }
      .hero__nav--next {
        right: 12px;
      }
      .hero-swiper .hero__pagination.swiper-pagination {
        bottom: 36px !important;
      }
      .island__left {
        gap: 16px;
      }
      .island__inner {
        flex-wrap: wrap;
      }
      .insight {
        padding: 60px 0;
      }
      .insight__head {
        gap: 40px;
      }
      .insight__grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .products {
        padding: 60px 0;
      }
      .products__head {
        gap: 40px;
      }
      .products__stage-body {
        gap: 40px;
      }
      .products__tabs {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
      }
      .service {
        padding: 60px 0;
      }
      .service__inner {
        gap: 40px;
      }
      .service__grid {
        grid-template-columns: 1fr;
      }
      .service-card {
        min-height: 420px;
      }
      .brand {
        padding: 60px 0;
      }
      .brand__header {
        margin-bottom: 40px;
      }
      .brand-swiper .swiper-slide {
        width: 140px;
      }
      .brand-item__logo {
        width: 140px;
        height: 140px;
      }
      .news {
        padding: 60px 0;
      }
      .news__inner {
        gap: 40px;
      }
      .news__grid {
        grid-template-columns: 1fr;
      }
      .news-card__thumb {
        height: 220px;
      }
      .site-footer__main {
        padding: 60px 0 32px;
      }
      .site-footer__nav {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 28px;
      }
      .site-footer__nav > div,
      .site-footer__nav > div:nth-child(n) {
        width: auto;
        min-width: 0;
      }
      .site-footer__col-title {
        margin-bottom: 16px;
      }
      .site-footer__legal {
        padding: 24px 0;
      }
      .site-footer__legal-links {
        gap: 16px 24px;
      }
      .site-footer__family {
        width: 100%;
        min-width: 0;
        gap: 24px;
      }
      .site-footer__family-wrap {
        width: 100%;
      }
      .site-footer__copy-inner {
        text-align: center;
        word-break: keep-all;
      }
    }
