@charset "UTF-8";
/* Scoped reset: does not affect Gnuboard or other UI roots. */
.jinsol-site {
  margin: 0;
  min-height: 100%;
  color: #111827;
  background: #f9fafb;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}
.jinsol-site *,
.jinsol-site *::before,
.jinsol-site *::after {
  box-sizing: border-box;
}
.jinsol-site :where(h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol) {
  margin: 0;
}
.jinsol-site :where(ul, ol) {
  padding: 0;
  list-style: none;
}
.jinsol-site img,
.jinsol-site svg,
.jinsol-site video,
.jinsol-site canvas,
.jinsol-site audio,
.jinsol-site iframe,
.jinsol-site embed,
.jinsol-site object {
  display: block;
  max-width: 100%;
}
.jinsol-site :where(button, input, textarea, select) {
  font: inherit;
  color: inherit;
}
.jinsol-site button {
  cursor: pointer;
}
.jinsol-site table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.jinsol-site :where(a) {
  color: inherit;
  text-decoration: none;
}

/* Visually hidden, but available to assistive technology. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Motion custom properties are scoped to the Jinsol site root. */
.jinsol-site {
  --m-dur-1: 0.5s;
  --m-dur-2: 0.65s;
  --m-dur-3: 1s;
  --m-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --m-ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --m-dist-1: 10px;
  --m-dist-2: 14px;
  --m-stag-1: 0.08s;
  --m-stag-2: 0.09s;
  --m-st1: 0.12;
}

@media (prefers-reduced-motion: reduce) {
  .jinsol-site {
    --m-dur-1: 0.01s;
    --m-dur-2: 0.01s;
    --m-dur-3: 0.01s;
    --m-dist-1: 0px;
    --m-dist-2: 0px;
    --m-stag-1: 0s;
    --m-stag-2: 0s;
  }
}
/* FOUC guard (m-ready 전에는 모션 숨김 금지) */
html:not(.m-ready) [data-m],
html:not(.m-ready) [data-m-item] {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

/* 단일 요소 기본 */
html.m-ready [data-m] {
  opacity: 0;
  transform: translate3d(0, var(--m-dist-2), 0);
  filter: none;
  transition-property: opacity, transform;
  transition-duration: var(--m-dur-2);
  transition-timing-function: var(--m-ease-out);
  will-change: opacity, transform;
}

html.m-ready [data-m].m-blur {
  filter: blur(4px);
  transition-property: opacity, transform, filter;
  will-change: opacity, transform, filter;
}

html.m-ready [data-m].is-in {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}

/* 방향별 */
html.m-ready [data-m=fade] {
  transform: none;
}

html.m-ready [data-m=up] {
  transform: translate3d(0, var(--m-dist-2), 0);
}

html.m-ready [data-m=down] {
  transform: translate3d(0, calc(var(--m-dist-2) * -1), 0);
}

html.m-ready [data-m=left] {
  transform: translate3d(calc(var(--m-dist-2) * -1), 0, 0);
}

html.m-ready [data-m=right] {
  transform: translate3d(var(--m-dist-2), 0, 0);
}

/* stagger 컨테이너는 관찰용 */
html.m-ready [data-m=stagger] {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

/* stagger item */
html.m-ready [data-m-item] {
  opacity: 0;
  transform: translate3d(0, var(--m-dist-1), 0);
  filter: none;
  transition-property: opacity, transform, filter;
  transition-duration: var(--m-dur-2);
  transition-timing-function: var(--m-ease-out);
  will-change: opacity, transform, filter;
}

html.m-ready [data-m-item].is-in {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}

@media (max-width: 768px) {
  html.m-ready [data-m],
  html.m-ready [data-m-item] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
  }
}
/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  html.m-ready [data-m],
  html.m-ready [data-m].is-in,
  html.m-ready [data-m-item],
  html.m-ready [data-m-item].is-in {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
.container {
  --container-max: 1440px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container {
    --container-px: 16px;
  }
}

.container--sm {
  --container-max: 720px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--sm {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--sm {
    --container-px: 16px;
  }
}

.container--md {
  --container-max: 960px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--md {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--md {
    --container-px: 16px;
  }
}

.container--lg {
  --container-max: 1200px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--lg {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--lg {
    --container-px: 16px;
  }
}

.container--xl {
  --container-max: 1440px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--xl {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--xl {
    --container-px: 16px;
  }
}

.container--fluid {
  --container-max: 100vw;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--fluid {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--fluid {
    --container-px: 16px;
  }
}

.container--bleed {
  padding-inline: 0;
}

.container--text {
  max-width: 72ch;
}

/* frontend/layout/_grid.scss
   Grid / Gap / Alignment Utilities
*/
/* =========================
   Basic Grids
========================= */
.grid-cols-1,
.grid-cols-2,
.grid-cols-3,
.grid-cols-4,
.grid-12 {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
  gap: 16px;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1280px) {
  .grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   12 Column Grid
========================= */
.grid-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-12 {
    grid-template-columns: 1fr;
  }
}

.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

@media (max-width: 768px) {
  .col-1 {
    grid-column: auto;
  }
  .col-2 {
    grid-column: auto;
  }
  .col-3 {
    grid-column: auto;
  }
  .col-4 {
    grid-column: auto;
  }
  .col-5 {
    grid-column: auto;
  }
  .col-6 {
    grid-column: auto;
  }
  .col-7 {
    grid-column: auto;
  }
  .col-8 {
    grid-column: auto;
  }
  .col-9 {
    grid-column: auto;
  }
  .col-10 {
    grid-column: auto;
  }
  .col-11 {
    grid-column: auto;
  }
  .col-12 {
    grid-column: auto;
  }
}
/* =========================
   Gap Utilities
   - grid/flex 모두 적용 가능
========================= */
.gap-xs {
  gap: 4px;
}

.gap-sm {
  gap: 8px;
}

.gap-md {
  gap: 16px;
}

.gap-lg {
  gap: 24px;
}

.gap-xl {
  gap: 32px;
}

.gap-xl-2xl {
  gap: 40px;
}

.gap-2xl {
  gap: 48px;
}

.gap-3xl {
  gap: 64px;
}

.gap-3_5xl {
  gap: 80px;
}

.gap-4xl {
  gap: 96px;
}

.gap-5xl {
  gap: 128px;
}

/* =========================
   Alignment Utilities
========================= */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===================================================
   Section layout rule (GLOBAL)
=================================================== */
.section {
  --section-bg: #fff;
  --section-bg-image: none;
  --section-bg-position: center;
  --section-bg-size: cover;
  --section-bg-repeat: no-repeat;
  background-color: var(--section-bg);
  background-image: var(--section-bg-image);
  background-position: var(--section-bg-position);
  background-size: var(--section-bg-size);
  background-repeat: var(--section-bg-repeat);
  padding-block: 120px 120px;
  padding-inline: 0;
}
@media (max-width: 1024px) {
  .section {
    padding-block: 100px 100px;
    padding-inline: 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding-block: 64px 64px;
    padding-inline: 0;
  }
}
@media (max-width: 480px) {
  .section {
    padding-block: 32px 32px;
    padding-inline: 0;
  }
}

.section--muted {
  --section-bg: #f8fafd;
}

.section--brand {
  --section-bg: color-mix(in srgb, var.$color-primary 10%, var.$section-bg-default);
}

.section--dark {
  --section-bg: #0b1220;
  color: #fff;
}

.section--image {
  --section-bg-image:
    linear-gradient(var.$section-overlay-dark, var.$section-overlay-dark), var(--section-bg-image);
  color: #fff;
}

.section--image-light {
  --section-bg-image:
    linear-gradient(var.$section-overlay-light, var.$section-overlay-light), var(--section-bg-image);
}

/* ==========================================================================
   Header Core
   - ?ㅻ뜑 湲곕낯 ?좏겙, 怨좎젙 ?꾩튂, ?대? ?덉씠?꾩썐 ?대떦
   - ?곹깭 ?대옒??site-header--dark, site-header--solid, is-scrolled)??header-variants.scss ?뚯씪?먯꽌 愿由?   ========================================================================== */
.jinsol-site {
  --header-h: 86px;
  --header-utility-h: 42px;
}

.site-header {
  --header-total-h: var(--header-h);
  --header-utility-bg: #111827;
  --header-utility-text: #fff;
  --header-utility-muted: rgba(255, 255, 255, 0.72);
  --header-bg: transparent;
  --header-line: rgba(255, 255, 255, 0.18);
  --nav-text: #111827;
  --nav-hover: #2563eb;
  --nav-muted: #4b5563;
  --nav-gap: clamp(24px, 4vw, 64px);
  --scroll-bg: #fff;
  --scroll-line: rgba(17, 24, 39, 0.16);
  --scroll-nav-text: #111827;
  --scroll-nav-muted: #4b5563;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--header-bg);
  transition: background 220ms ease;
  /* ==========================================================================
   site-header__language
   ========================================================================== */
}
.site-header.site-header--with-utility {
  --header-total-h: calc(var(--header-h) + var(--header-utility-h));
  height: var(--header-total-h);
}
.site-header .site-header__utility {
  height: var(--header-utility-h);
  color: var(--header-utility-text);
  background: var(--header-utility-bg);
}
.site-header .site-header__utility-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  --container-max: 1440px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .site-header .site-header__utility-inner {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .site-header .site-header__utility-inner {
    --container-px: 16px;
  }
}
.site-header .site-header__utility-info,
.site-header .site-header__utility-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.site-header .site-header__utility-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.site-header .site-header__utility-info {
  list-style: none;
}
.site-header .site-header__utility-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.site-header .site-header__utility-label {
  color: var(--header-utility-muted);
}
.site-header .site-header__utility-value,
.site-header .site-header__utility-link {
  color: var(--header-utility-text);
  font-weight: 600;
  text-decoration: none;
}
.site-header .site-header__utility-label,
.site-header .site-header__utility-value,
.site-header .site-header__utility-link {
  font-size: 0.875rem;
  line-height: 1.6;
}
.site-header .site-header__utility-close {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  color: var(--header-utility-text);
  background: transparent;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 220ms ease;
}
.site-header .site-header__utility-close:hover {
  opacity: 1;
}
.site-header .site-header__utility-close svg {
  width: 18px;
  height: 18px;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--header-line);
  pointer-events: none;
  z-index: 10;
  transition: background 220ms ease;
}
.site-header .site-header__container {
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  --container-max: 1440px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .site-header .site-header__container {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .site-header .site-header__container {
    --container-px: 16px;
  }
}
@media (max-width: 1024px) {
  .site-header.site-header--with-utility {
    --header-total-h: var(--header-h);
    height: var(--header-h);
  }
  .site-header .site-header__utility {
    display: none;
  }
}
.site-header .site-header__left,
.site-header .site-header__center,
.site-header .site-header__right {
  display: flex;
  align-items: center;
  min-width: 0;
}
.site-header .site-header__left {
  justify-content: flex-start;
}
.site-header .site-header__center {
  justify-content: center;
  min-width: 0;
}
.site-header .site-header__right {
  justify-content: flex-end;
  gap: 8px;
}
.site-header .site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  text-decoration: none;
}
.site-header .site-header__logo .site-header__logo-symbol {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
}
.site-header .site-header__logo .site-header__logo-symbol--orthopedic {
  color: #2563eb;
}
.site-header .site-header__logo .site-header__logo-image--full {
  width: auto;
  max-width: 180px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  transition: opacity 220ms ease;
}
.site-header .site-header__logo .site-header__logo-text {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #2563eb;
  white-space: nowrap;
  transition: color 220ms ease;
}
.site-header .site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--nav-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1024px) {
  .site-header .site-header__nav {
    display: none;
  }
}
.site-header .site-header__nav .site-header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.site-header .site-header__nav .site-header__nav-link {
  display: inline-flex;
  align-items: center;
  padding: 14px 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--nav-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color 220ms ease;
}
.site-header .site-header__nav .site-header__nav-link:hover {
  color: var(--nav-hover);
}
.site-header .site-header__submenu {
  display: none;
}
.site-header .site-header__auth {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 1024px) {
  .site-header .site-header__auth {
    display: none;
  }
}
.site-header .site-header__auth-item,
.site-header .site-header__logout-button {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--nav-text);
  transition: color 220ms ease, opacity 220ms ease;
}
.site-header .site-header__auth-item:hover,
.site-header .site-header__logout-button:hover {
  color: var(--nav-hover);
}
.site-header .site-header__auth-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 8px;
  text-decoration: none;
  white-space: nowrap;
}
.site-header .site-header__logout {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.site-header .site-header__logout-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 8px;
  cursor: pointer;
}
.site-header .site-header__cta {
  color: var(--nav-text);
  border: 1px solid currentColor;
  background: transparent;
}
.site-header .site-header__cta:hover {
  color: var(--nav-hover);
  border-color: var(--nav-hover);
  background-color: #fff;
}
.site-header .site-header__language {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1;
  flex-shrink: 0;
}
.site-header .site-header__language .gtranslate_wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.site-header .site-header__language .gtranslate_wrapper a,
.site-header .site-header__language .gtranslate_wrapper span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.site-header .site-header__language .gtranslate_wrapper img {
  display: block;
  width: 24px;
  height: auto;
  margin: 0;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  .site-header .site-header__language {
    margin-right: 4px;
  }
  .site-header .site-header__language .gtranslate_wrapper {
    transform: scale(0.9);
    transform-origin: center right;
  }
}

/* =========================================================
   Header State
   - site-header--dark: ?щ챸 ?ㅻ뜑 ????湲??   - site-header--solid: 泥섏쓬遺????諛곌꼍
   - site-header--solid-dark: ?꾩껜 ?ㅽ겕??寃??諛곌꼍
   - is-scrolled / is-nav-open: 湲곕낯? ??諛곌꼍, ?ㅽ겕 ?ㅻ뜑???덉쇅
   ========================================================= */
.site-header.site-header--dark {
  --nav-text: #fff;
  --nav-muted: rgba(255, 255, 255, 0.72);
  --nav-hover: #2563eb;
  --header-line: rgba(255, 255, 255, 0.2);
}
.site-header.site-header--dark .site-header__logo .site-header__logo-text {
  color: var(--nav-text);
}
.site-header.site-header--solid, .site-header:not(.site-header--solid-dark).is-scrolled, .site-header.site-header--mega:not(.site-header--solid-dark).is-nav-open {
  --header-bg: var(--scroll-bg);
  --header-line: rgba(17, 24, 39, 0.08);
  --nav-text: var(--scroll-nav-text);
  --nav-muted: var(--scroll-nav-muted);
  --nav-hover: #2563eb;
}
.site-header.site-header--solid .site-header__logo .site-header__logo-text, .site-header:not(.site-header--solid-dark).is-scrolled .site-header__logo .site-header__logo-text, .site-header.site-header--mega:not(.site-header--solid-dark).is-nav-open .site-header__logo .site-header__logo-text {
  color: #2563eb;
}
.site-header.site-header--solid-dark {
  --header-bg: #000;
  --header-line: rgba(255, 255, 255, 0.16);
  --nav-text: #fff;
  --nav-muted: rgba(255, 255, 255, 0.72);
  --nav-hover: #2563eb;
}
.site-header.site-header--solid-dark .site-header__logo .site-header__logo-text {
  color: var(--nav-text);
}
@media (max-width: 1024px) {
  .site-header:not(.site-header--solid-dark).site-header--dark {
    --header-bg: var(--scroll-bg);
    --header-line: var(--scroll-line);
    --nav-text: var(--scroll-nav-text);
    --nav-muted: var(--scroll-nav-muted);
    --nav-hover: #2563eb;
  }
  .site-header:not(.site-header--solid-dark).site-header--dark .site-header__logo .site-header__logo-text {
    color: #2563eb;
  }
}

.site-header.site-header--nav-right .site-header__right {
  gap: 16px;
}
.site-header.site-header--nav-right .site-header__center {
  justify-content: flex-end;
  padding-right: 32px;
}
.site-header.site-header--nav-right .site-header__all-menu-toggle span {
  height: 2px;
}
@media (max-width: 1024px) {
  .site-header.site-header--nav-right .site-header__center {
    padding-right: 0;
  }
}

/*
 * 불투명 고정 헤더는 문서 흐름의 공간을 차지하지 않으므로
 * 본문을 헤더 높이만큼 내려 히어로 상단이 가려지지 않게 한다.
 * 투명 헤더는 기존처럼 히어로 위에 겹쳐 표시한다.
 */
.site-header:is(.site-header--solid, .site-header--solid-dark) ~ #page {
  padding-top: var(--header-h);
}
.site-header:is(.site-header--solid, .site-header--solid-dark) ~ #page > .hero.hero-fullscreen {
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
}

.site-header.site-header--with-utility:is(.site-header--solid, .site-header--solid-dark) ~ #page {
  padding-top: calc(var(--header-h) + var(--header-utility-h));
}
.site-header.site-header--with-utility:is(.site-header--solid, .site-header--solid-dark) ~ #page > .hero.hero-fullscreen {
  height: calc(100vh - var(--header-h) - var(--header-utility-h));
  height: calc(100dvh - var(--header-h) - var(--header-utility-h));
}
@media (max-width: 1024px) {
  .site-header.site-header--with-utility:is(.site-header--solid, .site-header--solid-dark) ~ #page {
    padding-top: var(--header-h);
  }
  .site-header.site-header--with-utility:is(.site-header--solid, .site-header--solid-dark) ~ #page > .hero.hero-fullscreen {
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
  }
}

.site-header .site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header .site-header__action,
.site-header .site-header__all-menu-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--nav-text);
  cursor: pointer;
  transition: color 220ms ease;
}
.site-header .site-header__action:hover,
.site-header .site-header__all-menu-toggle:hover {
  color: var(--nav-hover);
}
.site-header .site-header__action svg,
.site-header .site-header__all-menu-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}
.site-header .site-header__all-menu-toggle {
  flex-direction: column;
  gap: 8px;
}
.site-header .site-header__all-menu-toggle span {
  width: 32px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 220ms ease;
}
@media (max-width: 1024px) {
  .site-header .site-header__actions {
    display: none;
  }
}

.header-all-menu {
  position: fixed;
  z-index: calc(1000 + 1);
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: #fff;
  background: color-mix(in srgb, #1e40af 32%, #0f172a);
}
.header-all-menu[hidden] {
  display: none;
}
.header-all-menu__panel {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: 96px;
}
.header-all-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.header-all-menu__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}
.header-all-menu__brand .site-header__logo-symbol--orthopedic,
.header-all-menu__brand .site-header__logo-text {
  color: #fff;
}
.header-all-menu__logo {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.header-all-menu__brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.header-all-menu__close {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}
.header-all-menu__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.header-all-menu__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header-all-menu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header-all-menu__close:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(90deg);
}
.header-all-menu__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.header-all-menu__content {
  padding-top: clamp(48px, 7vh, 128px);
}
.header-all-menu__heading {
  margin-bottom: clamp(48px, 6vh, 96px);
}
.header-all-menu__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.header-all-menu__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.045em;
}
.header-all-menu__nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.header-all-menu__group {
  min-width: 0;
  padding: 32px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.header-all-menu__group:first-child {
  padding-left: 0;
}
.header-all-menu__group:last-child {
  padding-right: 0;
  border-right: 0;
}
.header-all-menu__group-link {
  display: inline-flex;
  color: #fff;
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: color 220ms ease;
}
.header-all-menu__group-link:hover, .header-all-menu__group-link:focus-visible {
  color: #60a5fa;
}
.header-all-menu__subnav {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.header-all-menu__subnav a {
  display: inline-flex;
  padding-block: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}
.header-all-menu__subnav a:hover, .header-all-menu__subnav a:focus-visible {
  color: #fff;
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .header-all-menu {
    display: none !important;
  }
}

.site-header--with-utility .header-all-menu__top {
  margin-top: var(--header-utility-h);
}

.site-header .site-header__mobile-toggle,
.site-header .site-header__mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  color: #111827;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.site-header .site-header__mobile-toggle {
  display: none;
}
.site-header .site-header__mobile-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}
.site-header .site-header__mobile-overlay {
  z-index: calc(1000 - 1);
}
.site-header .site-header__mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.site-header .site-header__mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100%;
  background: #fff;
  border-left: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 220ms ease;
  display: flex;
  flex-direction: column;
}
.site-header [data-header-mobile-menu]:not([hidden]) .site-header__mobile-panel {
  transform: translateX(0);
}
.site-header .site-header__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}
.site-header .site-header__mobile-title {
  font-weight: 700;
  letter-spacing: -0.01em;
}
.site-header .site-header__mobile-close {
  display: inline-flex;
}
.site-header .site-header__mobile-close svg {
  width: 18px;
  height: 18px;
  display: block;
}
.site-header .site-header__mobile-body {
  padding: 16px;
  overflow: auto;
}
.site-header .site-header__mobile-nav {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .site-header__mobile-nav-link {
  display: block;
  padding: 12px 8px;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
}
.site-header .site-header__mobile-nav-item--cta {
  order: 1;
}
.site-header .site-header__mobile-submenu {
  list-style: none;
  margin: 0 0 12px;
  padding: 0 0 0 12px;
}
.site-header .site-header__mobile-submenu-link {
  display: block;
  padding: 10px 8px;
  text-decoration: none;
  color: #374151;
}
.site-header .site-header__mobile-auth {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}
.site-header .site-header__mobile-auth a,
.site-header .site-header__mobile-auth button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 8px;
  color: #111827;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}
.site-header .site-header__mobile-nav-item.has-children .site-header__mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}
.site-header .site-header__mobile-nav-item.has-children.is-open .site-header__mobile-submenu {
  max-height: 520px;
}
.site-header .site-header__mobile-nav-item.has-children.is-open .site-header__mobile-nav-chevron {
  transform: rotate(180deg);
}
.site-header .site-header__mobile-nav-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  color: #111827;
  text-align: left;
}
.site-header .site-header__mobile-nav-chevron {
  width: 18px;
  height: 18px;
  transition: transform 220ms ease;
}
@media (max-width: 1024px) {
  .site-header .site-header__logo .site-header__logo-symbol {
    width: 32px;
    height: 32px;
  }
  .site-header .site-header__logo .site-header__logo-image--full {
    max-width: 150px;
    height: 32px;
  }
  .site-header .site-header__logo .site-header__logo-text {
    font-size: 1.25rem;
  }
  .site-header .site-header__center {
    display: none;
  }
  .site-header .site-header__mobile-toggle {
    display: inline-flex;
  }
}

.jinsol-site.no-scroll {
  overflow: hidden;
}

/* frontend/layout/header/_header-nav-dropdown.scss */
.site-header.site-header--dropdown .site-header__nav .site-header__nav-item.has-children {
  position: relative;
}
.site-header.site-header--dropdown .site-header__nav .site-header__submenu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 4px 0;
  margin: 0;
  list-style: none;
  background: #2563eb;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  --nav-muted: rgba(255, 255, 255, 0.82);
  --nav-hover: #2563eb;
}
.site-header.site-header--dropdown .site-header__nav .site-header__nav-item.has-children.is-open > .site-header__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}
.site-header.site-header--dropdown .site-header__nav .site-header__submenu-link {
  display: block;
  padding: 8px 16px;
  margin: 2px 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-header.site-header--dropdown .site-header__nav .site-header__submenu-link:hover, .site-header.site-header--dropdown .site-header__nav .site-header__submenu-link:focus-visible {
  background: #1e40af;
  color: #fff;
  outline: none;
}

/* frontend/layout/header/_header-nav-mega.scss */
.site-header.site-header--mega .site-header__nav-wrap {
  position: relative;
  --mega-cols: 1;
  --mega-inner-x: 0px;
  --mega-inner-width: 0px;
  --mega-col-width: 0px;
  --mega-col-gap: var(--nav-gap, 64px);
}
.site-header.site-header--mega .site-header__nav-wrap > .site-header__mega {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-total-h, var(--header-h, 80px));
  width: 100%;
  transform: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  z-index: calc(1000 - 1);
  --nav-text: #111827;
  --nav-muted: #4b5563;
  --nav-hover: #2563eb;
}
.site-header.site-header--mega.is-nav-open .site-header__nav-wrap > .site-header__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}
@media (max-width: 1023px) {
  .site-header.site-header--mega .site-header__nav-wrap > .site-header__mega {
    display: none;
  }
}
.site-header.site-header--mega .site-header__nav-wrap .site-header__mega-surface {
  background: var(--panel-bg, #fff);
  padding: 24px 0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.03);
}
.site-header.site-header--mega .site-header__nav-wrap .site-header__mega-inner {
  width: min(100% - 24px * 2, 1400px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .site-header.site-header--mega .site-header__nav-wrap .site-header__mega-inner {
    width: min(100% - 16px * 2, 1400px);
  }
}
@media (min-width: 1024px) {
  .site-header.site-header--mega .site-header__nav-wrap .site-header__mega-inner {
    width: var(--mega-inner-width, min(100% - 24px * 2, 1400px));
    margin-left: var(--mega-inner-x, auto);
    margin-right: auto;
  }
}
.site-header.site-header--mega .site-header__nav-wrap .site-header__mega-grid {
  display: grid;
  grid-template-columns: repeat(var(--mega-cols, 1), minmax(0, var(--mega-col-width, 1fr)));
  column-gap: var(--mega-col-gap, var(--nav-gap, 64px));
  row-gap: 24px;
  justify-content: start;
}
.site-header.site-header--mega .site-header__nav-wrap .site-header__mega-link {
  display: block;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--nav-muted);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.site-header.site-header--mega .site-header__nav-wrap .site-header__mega-link:hover {
  color: var(--nav-hover);
}

.site-footer--basic {
  background-color: #111827;
  color: #d1d5db;
  padding-block: 48px;
}
.site-footer--basic .site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #374151;
}
.site-footer--basic .site-footer__column {
  min-width: 0;
  color: #d1d5db;
}
.site-footer--basic .site-footer__title {
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}
.site-footer--basic .site-footer__text {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #d1d5db;
  overflow-wrap: anywhere;
}
.site-footer--basic .site-footer__line {
  display: block;
}
.site-footer--basic .site-footer__line + .site-footer__line {
  margin-top: 4px;
}
.site-footer--basic .site-footer__link {
  color: #2563eb;
  overflow-wrap: anywhere;
}
.site-footer--basic .site-footer__link:visited {
  color: #2563eb;
}
.site-footer--basic .site-footer__link:hover {
  text-decoration: underline;
}
.site-footer--basic .site-footer__links {
  display: block;
}
.site-footer--basic .site-footer__links li {
  margin-bottom: 4px;
  padding: 0;
}
.site-footer--basic .site-footer__links li:last-child {
  margin-bottom: 0;
}
.site-footer--basic .site-footer__links a {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.8;
  color: #d1d5db;
  overflow-wrap: anywhere;
}
.site-footer--basic .site-footer__links a:visited {
  color: #d1d5db;
}
.site-footer--basic .site-footer__links a:hover {
  color: #2563eb;
}
.site-footer--basic .site-footer__bottom {
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
}
.site-footer--basic .site-footer__bottom p {
  line-height: 1.8;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
@media (max-width: 1024px) {
  .site-footer--basic .site-footer__grid {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .site-footer--basic {
    padding-block: 32px;
  }
  .site-footer--basic .container {
    padding-inline: 20px;
  }
  .site-footer--basic .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 24px;
  }
  .site-footer--basic .site-footer__title {
    margin-bottom: 8px;
  }
  .site-footer--basic .site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 4px;
  }
  .site-footer--basic .site-footer__links li {
    margin-bottom: 0;
  }
  .site-footer--basic .site-footer__bottom {
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .site-footer--basic {
    padding-block: 24px;
  }
  .site-footer--basic .container {
    padding-inline: 16px;
  }
  .site-footer--basic .site-footer__grid {
    gap: 16px;
    padding-bottom: 16px;
  }
  .site-footer--basic .site-footer__column:nth-child(2) {
    display: none;
  }
  .site-footer--basic .site-footer__links {
    grid-template-columns: 1fr;
  }
  .site-footer--basic .site-footer__bottom {
    margin-top: 16px;
    padding-top: 0;
  }
}

.site-footer--industrial {
  background: #000;
  border-top: 1px solid #111;
  color: #777;
  padding-block: clamp(4rem, 6vw, 6rem) 48px;
}
.site-footer--industrial .site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 48px;
  border-bottom: 1px solid #111;
}
.site-footer--industrial .site-footer__column {
  color: #666;
}
.site-footer--industrial .site-footer__title {
  margin-bottom: 16px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer--industrial .site-footer__text {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #666;
}
.site-footer--industrial .site-footer__line {
  display: block;
}
.site-footer--industrial .site-footer__line + .site-footer__line {
  margin-top: 4px;
}
.site-footer--industrial .site-footer__link {
  color: #999;
}
.site-footer--industrial .site-footer__link:visited {
  color: #999;
}
.site-footer--industrial .site-footer__link:hover {
  color: #fff;
}
.site-footer--industrial .site-footer__links a {
  color: #777;
}
.site-footer--industrial .site-footer__links a:visited {
  color: #777;
}
.site-footer--industrial .site-footer__links a:hover {
  color: #fff;
}
.site-footer--industrial .site-footer__bottom {
  margin-top: 32px;
  padding-top: 0;
  font-size: 0.75rem;
  color: #444;
  text-align: left;
}
.site-footer--industrial .site-footer__bottom p {
  color: #444;
}
@media (max-width: 1024px) {
  .site-footer--industrial .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .site-footer--industrial {
    padding-block: 48px;
  }
  .site-footer--industrial .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer--industrial .site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 4px;
  }
}
@media (max-width: 480px) {
  .site-footer--industrial {
    padding-block: 24px;
  }
  .site-footer--industrial .site-footer__grid {
    gap: 16px;
    padding-bottom: 16px;
  }
  .site-footer--industrial .site-footer__column:nth-child(2) {
    display: none;
  }
  .site-footer--industrial .site-footer__title {
    margin-bottom: 8px;
  }
  .site-footer--industrial .site-footer__links {
    grid-template-columns: 1fr;
  }
  .site-footer--industrial .site-footer__bottom {
    margin-top: 16px;
  }
}

.site-footer--standard {
  --footer-bg: #fff;
  --footer-fg: #111827;
  --footer-muted: #4b5563;
  --footer-faint: #6b7280;
  --footer-line: rgba(15, 23, 42, 0.1);
  --footer-accent: #2563eb;
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-line);
  color: var(--footer-fg);
  padding-block: clamp(56px, 6vw, 84px) 32px;
}
.site-footer--standard .site-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
}
.site-footer--standard .site-footer__brand {
  min-width: 0;
}
.site-footer--standard .site-footer__logo {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--footer-accent);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}
.site-footer--standard .site-footer__summary {
  max-width: 380px;
  margin: 0;
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
}
.site-footer--standard .site-footer__title {
  margin: 0 0 18px;
  color: var(--footer-fg);
  font-size: 15px;
  font-weight: 800;
}
.site-footer--standard .site-footer__links {
  display: grid;
  gap: 10px;
}
.site-footer--standard .site-footer__links a,
.site-footer--standard .site-footer__meta a,
.site-footer--standard .site-footer__policy a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}
.site-footer--standard .site-footer__links a:hover,
.site-footer--standard .site-footer__meta a:hover,
.site-footer--standard .site-footer__policy a:hover {
  color: var(--footer-accent);
}
.site-footer--standard .site-footer__links a {
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.5;
}
.site-footer--standard .site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 22px 0;
  border-top: 1px solid var(--footer-line);
  color: var(--footer-faint);
  font-size: 13px;
  line-height: 1.6;
}
.site-footer--standard .site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--footer-line);
  color: var(--footer-faint);
  font-size: 13px;
}
.site-footer--standard .site-footer__bottom p {
  margin: 0;
}
.site-footer--standard .site-footer__policy {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
}
.site-footer--standard .site-footer__policy a:first-child {
  color: var(--footer-fg);
  font-weight: 800;
}
@media (max-width: 1024px) {
  .site-footer--standard .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .site-footer--standard {
    padding-block: 48px 28px;
  }
  .site-footer--standard .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 34px;
  }
  .site-footer--standard .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

.law-footer {
  color: rgba(255, 255, 255, 0.64);
  background: #071722;
}
.law-footer__inner {
  padding-top: 64px;
  padding-bottom: 32px;
}
.law-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
}
.law-footer__logo {
  flex: 0 0 auto;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}
.law-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 32px;
}
.law-footer__nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.law-footer__nav a:hover, .law-footer__nav a:focus-visible {
  color: #fff;
}
.law-footer__nav .law-footer__privacy {
  color: #fff;
  font-weight: 700;
}
.law-footer__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 22rem);
  align-items: start;
  gap: 64px;
  padding: 32px 0 64px;
}
.law-footer__info {
  display: grid;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.law-footer__info p {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 32px;
  margin: 0;
}
.law-footer__info strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}
.law-footer__info b,
.law-footer__info a {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  text-decoration: none;
}
.law-footer__consult {
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}
.law-footer__consult p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  font-weight: 500;
}
.law-footer__consult a {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}
.law-footer__consult span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  line-height: 1.6;
}
.law-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
}
.law-footer__bottom p {
  margin: 0;
}
@media (max-width: 768px) {
  .law-footer__top, .law-footer__body {
    display: grid;
    grid-template-columns: 1fr;
  }
  .law-footer__nav {
    justify-content: flex-start;
  }
  .law-footer__body {
    gap: 32px;
  }
  .law-footer__info p {
    display: grid;
    gap: 4px;
  }
}

.hospital-footer {
  background: #0f172a;
  color: #fff;
}
.hospital-footer--orthopedic {
  background: color-mix(in srgb, #1e40af 32%, #0f172a);
}
.hospital-footer__main {
  padding-block: 64px 48px;
}
.hospital-footer__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
  align-items: start;
  gap: 128px;
}
.hospital-footer__brand-label {
  display: block;
  margin-bottom: 12px;
  color: color-mix(in srgb, #60a5fa 64%, #fff);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
}
.hospital-footer__brand-name {
  display: block;
  color: #fff;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
.hospital-footer__description {
  max-width: 480px;
  margin: 16px 0 0;
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.8;
}
.hospital-footer__info {
  display: grid;
  gap: 8px;
  margin: 0;
}
.hospital-footer__info-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  padding-block: 4px;
}
.hospital-footer__info-item dt,
.hospital-footer__info-item dd {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}
.hospital-footer__info-item dt {
  color: #6b7280;
  font-weight: 500;
}
.hospital-footer__info-item dd {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
  color: #d1d5db;
  font-weight: 500;
}
.hospital-footer__phone {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}
.hospital-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hospital-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
}
.hospital-footer__copyright {
  margin: 0;
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.6;
}
.hospital-footer__policy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.hospital-footer__policy a {
  position: relative;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 220ms ease;
}
.hospital-footer__policy a:hover {
  color: #fff;
}
.hospital-footer__policy a:first-child {
  color: #e5e7eb;
  font-weight: 600;
}
.hospital-footer__policy a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%);
}
.hospital-footer--orthopedic .hospital-footer__brand-label {
  color: rgba(255, 255, 255, 0.72);
}
.hospital-footer--orthopedic .hospital-footer__description {
  color: rgba(255, 255, 255, 0.74);
}
.hospital-footer--orthopedic .hospital-footer__info-item {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
}
.hospital-footer--orthopedic .hospital-footer__info-item dt {
  color: rgba(255, 255, 255, 0.62);
}
.hospital-footer--orthopedic .hospital-footer__info-item dd {
  color: rgba(255, 255, 255, 0.86);
}
.hospital-footer--orthopedic .hospital-footer__info {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
}
.hospital-footer--orthopedic .hospital-footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.14);
}
.hospital-footer--orthopedic .hospital-footer__copyright {
  color: rgba(255, 255, 255, 0.58);
}
.hospital-footer--orthopedic .hospital-footer__policy a {
  color: rgba(255, 255, 255, 0.7);
}
.hospital-footer--orthopedic .hospital-footer__policy a:first-child {
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 1023.98px) {
  .hospital-footer__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 479.98px) {
  .hospital-footer__main {
    padding-block: 48px 32px;
  }
  .hospital-footer__info-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
  }
  .hospital-footer--orthopedic .hospital-footer__info {
    grid-template-columns: 1fr;
  }
  .hospital-footer--orthopedic .hospital-footer__info-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }
  .hospital-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 16px;
    min-height: auto;
    padding-block: 24px;
  }
  .hospital-footer__policy {
    gap: 12px 24px;
  }
}

/* frontend/layout/overlay/_popup.scss */
/* ==========================================
   Frontend Global Popup Layer
========================================== */
.popup-layer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}

.popup-layer__window {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  min-width: 280px;
  max-width: min(420px, 90vw);
  max-height: 90vh;
  pointer-events: auto;
}

.popup-layer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.popup-layer__body {
  flex: 1 1 auto;
  overflow: auto;
}

.popup-layer__body > a,
.popup-layer__body > img {
  display: block;
}

.popup-layer__body img {
  width: 100%;
  height: auto;
  display: block;
}

.popup-layer__footer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 12px;
  font-size: 0.875rem;
  background: #f9fafb;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.popup-layer__dont-show {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #4b5563;
  user-select: none;
  white-space: nowrap;
}

.popup-layer__dont-show input[type=checkbox] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: #2563eb;
}

.popup-layer__close {
  border: 0;
  background: none;
  padding: 4px 8px;
  font-size: 0.875rem;
  color: #2563eb;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.popup-layer__close:hover {
  background: rgba(37, 99, 235, 0.08);
}

.popup-layer__window.is-hidden {
  display: none;
}

@media (max-width: 480px) {
  .popup-layer__window {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 92vw;
    max-width: 92vw;
    height: auto;
    max-height: 90vh;
  }
  .popup-layer__inner {
    height: auto;
    max-height: 90vh;
  }
}
/* 
 * ?쒖뒪???먭? / ?쒕퉬??以묐떒 ???몄텧?섎뒗
 * ?꾩껜 ?붾㈃ ?ㅻ쾭?덉씠 ?덈궡 ?⑤꼸(UI ?꾩슜, ?섏씠吏 ?泥댁슜)
 */
/* =============================
 * ?꾩껜 諛곌꼍 + 媛?대뜲 ?뺣젹
 * ============================= */
.system-maint {
  min-height: 100vh;
  background: #e5e7eb;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
@media (max-width: 480px) {
  .system-maint {
    padding: 16px;
  }
}

.system-maint__panel {
  width: min(720px, 100%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(209, 213, 219, 0.9);
  overflow: hidden;
}

.system-maint__header {
  padding: 14px 20px;
  background: linear-gradient(90deg, #2563eb, #366fed);
  color: #f9fafb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.system-maint__header-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.system-maint__header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.system-maint__header-title {
  font-size: 14px;
  font-weight: 700;
}

.system-maint__header-subtitle {
  font-size: 12px;
  opacity: 0.9;
}

.system-maint__body {
  padding: 22px 22px 20px;
}
@media (max-width: 480px) {
  .system-maint__body {
    padding: 18px 16px 16px;
  }
}

.system-maint__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}
@media (max-width: 480px) {
  .system-maint__title {
    font-size: 18px;
  }
}

.system-maint__message {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 14px;
}

.system-maint__description {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 18px;
}

.system-maint__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.system-maint__button {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.14s ease, box-shadow 0.18s ease;
}

.system-maint__button--primary {
  background: #2563eb;
  border-color: #2563eb;
  color: #f9fafb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}
.system-maint__button--primary:hover {
  background: #1658ea;
  transform: translateY(-1px);
}

.system-maint__button--outline {
  background: #fff;
  color: #4b5563;
  border-color: #d1d5db;
}
.system-maint__button--outline:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

/* frontend/component/_index.scss */
/* ===================================================
  Button Component (Common)
  - class: .c-btn (base)
  - variants: primary, secondary, outline, ghost, soft, danger, brand
  - sizes: sm, md, lg, xl
  - width: .c-btn--block
  - icon: .c-btn__icon
=================================================== */
.c-btn {
  --c-btn-h: 46px;
  --c-btn-px: 18px;
  --c-btn-radius: 9px;
  --c-btn-font-size: 15px;
  --c-btn-font-weight: 600;
  --c-btn-bg: #2563eb;
  --c-btn-fg: #fff;
  --c-btn-bd: transparent;
  --c-btn-hover-bg: #2563eb;
  --c-btn-hover-fg: #fff;
  --c-btn-hover-bd: transparent;
  --c-btn-secondary-bg: #1f2937;
  --c-btn-secondary-fg: #fff;
  --c-btn-secondary-bd: #1f2937;
  --c-btn-soft-bg: rgba(0, 0, 0, 0.06);
  --c-btn-soft-fg: #000;
  --c-btn-soft-bd: transparent;
  --c-btn-outline-bg: transparent;
  --c-btn-outline-fg: #000;
  --c-btn-outline-bd: rgba(0, 0, 0, 0.18);
  --c-btn-ghost-bg: transparent;
  --c-btn-ghost-fg: #000;
  --c-btn-ghost-bd: transparent;
  --c-btn-danger-bg: #ef4444;
  --c-btn-danger-fg: #fff;
  --c-btn-danger-bd: #ef4444;
  --c-btn-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --c-btn-shadow-hover: 0 7px 18px rgba(0, 0, 0, 0.14);
  --c-btn-focus: 0 0 0 4px rgba(0, 0, 0, 0.12);
  --c-btn-gap: 10px;
  --c-btn-icon-size: 18px;
  --c-btn-trans: 0.18s;
  --c-btn-ease: cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--c-btn-gap);
  height: var(--c-btn-h);
  padding: 0 var(--c-btn-px);
  border-radius: var(--c-btn-radius);
  border: 1px solid var(--c-btn-bd);
  background: var(--c-btn-bg);
  color: var(--c-btn-fg);
  font-size: var(--c-btn-font-size);
  font-family: inherit;
  font-weight: var(--c-btn-font-weight);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  box-shadow: var(--c-btn-shadow);
  transition: transform var(--c-btn-trans) var(--c-btn-ease), box-shadow var(--c-btn-trans) var(--c-btn-ease), background var(--c-btn-trans) var(--c-btn-ease), color var(--c-btn-trans) var(--c-btn-ease), border-color var(--c-btn-trans) var(--c-btn-ease), opacity var(--c-btn-trans) var(--c-btn-ease);
}
.c-btn:hover {
  background: var(--c-btn-hover-bg);
  color: var(--c-btn-hover-fg);
  border-color: var(--c-btn-hover-bd);
  box-shadow: var(--c-btn-shadow-hover);
  transform: translateY(-1px);
}
.c-btn:active {
  transform: translateY(0);
}
.c-btn:focus-visible {
  outline: none;
  box-shadow: var(--c-btn-shadow-hover), var(--c-btn-focus);
}
.c-btn:disabled, .c-btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.c-btn--secondary {
  --c-btn-bg: var(--c-btn-secondary-bg);
  --c-btn-fg: var(--c-btn-secondary-fg);
  --c-btn-bd: var(--c-btn-secondary-bd);
  --c-btn-hover-bg: #111827;
  --c-btn-hover-fg: #fff;
  --c-btn-hover-bd: #111827;
}

.c-btn--primary {
  --c-btn-bg: #2563eb;
  --c-btn-fg: #fff;
  --c-btn-bd: transparent;
  --c-btn-hover-bg: #2563eb;
  --c-btn-hover-fg: #fff;
  --c-btn-hover-bd: transparent;
}
.c-btn--primary:hover {
  transform: none;
}

.c-btn--soft {
  --c-btn-bg: var(--c-btn-soft-bg);
  --c-btn-fg: var(--c-btn-soft-fg);
  --c-btn-bd: var(--c-btn-soft-bd);
  --c-btn-hover-bg: rgba(0, 0, 0, 0.1);
  --c-btn-hover-fg: var(--c-btn-soft-fg);
  --c-btn-hover-bd: var(--c-btn-soft-bd);
  box-shadow: none;
}
.c-btn--soft:hover {
  box-shadow: none;
}

.c-btn--outline {
  --c-btn-bg: var(--c-btn-outline-bg);
  --c-btn-fg: var(--c-btn-outline-fg);
  --c-btn-bd: var(--c-btn-outline-bd);
  --c-btn-hover-bg: rgba(0, 0, 0, 0.06);
  --c-btn-hover-fg: var(--c-btn-outline-fg);
  --c-btn-hover-bd: rgba(0, 0, 0, 0.26);
  box-shadow: none;
}
.c-btn--outline:hover {
  box-shadow: none;
}

.c-btn--ghost {
  --c-btn-bg: var(--c-btn-ghost-bg);
  --c-btn-fg: var(--c-btn-ghost-fg);
  --c-btn-bd: var(--c-btn-ghost-bd);
  --c-btn-hover-bg: rgba(0, 0, 0, 0.06);
  --c-btn-hover-fg: var(--c-btn-ghost-fg);
  --c-btn-hover-bd: var(--c-btn-ghost-bd);
  box-shadow: none;
}
.c-btn--ghost:hover {
  box-shadow: none;
}

.c-btn--danger {
  --c-btn-bg: var(--c-btn-danger-bg);
  --c-btn-fg: var(--c-btn-danger-fg);
  --c-btn-bd: var(--c-btn-danger-bd);
  --c-btn-hover-bg: #dc2626;
  --c-btn-hover-fg: #fff;
  --c-btn-hover-bd: #dc2626;
  --c-btn-focus: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.c-btn--naver {
  --c-btn-bg: #03c75a;
  --c-btn-fg: #fff;
  --c-btn-bd: #03c75a;
  --c-btn-hover-bg: #02ad4e;
  --c-btn-hover-fg: #fff;
  --c-btn-hover-bd: #02ad4e;
}

.c-btn--kakao {
  --c-btn-bg: #fee500;
  --c-btn-fg: #191919;
  --c-btn-bd: #fee500;
  --c-btn-hover-bg: #f2d900;
  --c-btn-hover-fg: #191919;
  --c-btn-hover-bd: #f2d900;
}

.c-btn--sm {
  --c-btn-h: 40px;
  --c-btn-px: 14px;
  --c-btn-radius: 8px;
  --c-btn-font-size: 14px;
}

.c-btn--md {
  --c-btn-h: 46px;
  --c-btn-px: 18px;
  --c-btn-radius: 9px;
  --c-btn-font-size: 15px;
}

.c-btn--lg {
  --c-btn-h: 56px;
  --c-btn-px: 22px;
  --c-btn-radius: 11px;
  --c-btn-font-size: 16px;
}

.c-btn--xl {
  --c-btn-h: 64px;
  --c-btn-px: 28px;
  --c-btn-radius: 12px;
  --c-btn-font-size: 17px;
}

.c-btn--block {
  width: 100%;
}

/* Icon */
.c-btn__icon {
  width: var(--c-btn-icon-size);
  height: var(--c-btn-icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-btn__icon svg {
  width: 100%;
  height: 100%;
}

.c-btn-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (max-width: 768px) {
  .c-btn {
    --c-btn-h: 40px;
    --c-btn-px: 14px;
    --c-btn-radius: 8px;
    --c-btn-font-size: 14px;
    --c-btn-gap: 8px;
    --c-btn-icon-size: 16px;
    --c-btn-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    --c-btn-shadow-hover: 0 10px 22px rgba(0, 0, 0, 0.16);
  }
  .c-btn--sm {
    --c-btn-h: 36px;
    --c-btn-px: 12px;
    --c-btn-radius: 7px;
    --c-btn-font-size: 13px;
  }
  .c-btn--lg {
    --c-btn-h: 48px;
    --c-btn-px: 18px;
    --c-btn-radius: 9px;
    --c-btn-font-size: 15px;
  }
  .c-btn--xl {
    --c-btn-h: 52px;
    --c-btn-px: 20px;
    --c-btn-radius: 10px;
    --c-btn-font-size: 15px;
  }
  .c-btn-group {
    gap: 8px;
  }
}
/* Icon-only controls such as close, menu, and carousel navigation buttons. */
.c-icon-btn {
  --c-icon-btn-size: 44px;
  --c-icon-btn-icon-size: 20px;
  --c-icon-btn-radius: 12px;
  --c-icon-btn-bg: #fff;
  --c-icon-btn-fg: #111827;
  --c-icon-btn-bd: #e5e7eb;
  box-sizing: border-box;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--c-icon-btn-size);
  height: var(--c-icon-btn-size);
  padding: 0;
  border: 1px solid var(--c-icon-btn-bd);
  border-radius: var(--c-icon-btn-radius);
  background: var(--c-icon-btn-bg);
  color: var(--c-icon-btn-fg);
  font: inherit;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}
.c-icon-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-1px);
}
.c-icon-btn:active {
  transform: translateY(0);
}
.c-icon-btn:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.c-icon-btn:disabled, .c-icon-btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}
.c-icon-btn > svg,
.c-icon-btn > i {
  width: var(--c-icon-btn-icon-size);
  height: var(--c-icon-btn-icon-size);
}

.c-icon-btn--sm {
  --c-icon-btn-size: 36px;
  --c-icon-btn-icon-size: 16px;
  --c-icon-btn-radius: 10px;
}

.c-icon-btn--lg {
  --c-icon-btn-size: 52px;
  --c-icon-btn-icon-size: 24px;
  --c-icon-btn-radius: 14px;
}

.c-icon-btn--ghost {
  --c-icon-btn-bg: transparent;
  --c-icon-btn-bd: transparent;
}

.c-icon-btn--danger {
  --c-icon-btn-fg: #ef4444;
}

/* Shared form layout and field controls for general frontend pages. */
.c-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--c-form-row-gap, 16px) var(--c-form-column-gap, 24px);
  min-width: 0;
}

@media (min-width: 768px) {
  .c-form-grid--two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.c-form-grid__full {
  grid-column: 1/-1;
}

.c-field {
  display: flex;
  flex-direction: column;
  gap: var(--c-field-gap, 4px);
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.c-field__label {
  margin: 0;
  color: var(--c-field-label-color, #374151);
  font-size: var(--c-field-label-size, 0.875rem);
  font-weight: 600;
  line-height: 1.4;
}

.c-field__required {
  margin-left: 2px;
  color: #ef4444;
}

.c-field__control {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: var(--c-field-control-height, 46px);
  padding: 0 var(--c-field-control-padding-x, 14px);
  border: 1px solid var(--c-field-control-border, #d1d5db);
  border-radius: var(--c-field-control-radius, 4px);
  background: var(--c-field-control-bg, #fff);
  color: var(--c-field-control-color, #111827);
  font: inherit;
  font-size: 1rem;
  line-height: 1.6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.c-field__control::placeholder {
  color: #94a3b8;
}
.c-field__control:hover:not(:disabled, [readonly]) {
  border-color: #94a3b8;
}
.c-field__control:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}
.c-field__control:disabled, .c-field__control[readonly] {
  background: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.5;
}
.c-field__control[type=file] {
  height: auto;
  min-height: var(--c-field-control-height, 46px);
  padding: 8px var(--c-field-control-padding-x, 14px);
}

textarea.c-field__control {
  height: auto;
  min-height: var(--c-field-textarea-min-height, 160px);
  padding-block: 12px;
  resize: vertical;
}

select.c-field__control {
  appearance: auto;
}

.c-field.has-error .c-field__control,
.c-field__control.is-invalid,
.c-field__control[aria-invalid=true] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.c-field__help,
.c-field__error {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
}

.c-field__help {
  color: #6b7280;
}

.c-field__error {
  color: #ef4444;
}

.c-field__static {
  min-height: 46px;
  display: flex;
  align-items: center;
  color: #374151;
  font-size: 1rem;
}

.c-checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  width: fit-content;
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}

.c-checkbox__control {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #2563eb;
}

.c-checkbox__label {
  min-width: 0;
}

.c-checkbox a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.c-card {
  background: #fff;
  border: 1px solid color-mix(in srgb, #e5e7eb 84%, #fff);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--card-padding, 32px);
  color: var(--card-color, #111827);
  min-height: var(--card-min-h, auto);
}
.c-card:focus-within {
  outline: 2px solid color-mix(in srgb, #0ea5e9 45%, transparent);
  outline-offset: 2px;
}

.c-card--sm {
  --card-padding: 24px;
}

.c-card--lg {
  --card-padding: 48px;
}

.c-card--flush {
  --card-padding: 0;
}

.c-card--soft {
  background: #f8fafc;
  box-shadow: none;
}

.c-card--outlined {
  box-shadow: none;
}

.c-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--card-body-gap, 8px);
  flex: 1;
}

.c-card__kicker {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--card-kicker-color, #6b7280);
}

.c-card__title {
  margin: 0;
  font-size: var(--card-title-size, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--card-title-color, #111827);
}

.c-card__desc {
  margin: 0;
  font-size: var(--card-desc-size, 0.875rem);
  line-height: 1.7;
  color: var(--card-desc-color, #4b5563);
}

.c-card__media {
  overflow: hidden;
  border-radius: var(--card-media-radius, 12px);
}
.c-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.c-card__footer {
  margin-top: auto;
  padding-top: var(--card-footer-pt, 16px);
}

.c-card.c-card--interactive:hover,
.c-card.is-hoverable:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in srgb, #0ea5e9 22%, #e5e7eb);
}
@media (hover: none) {
  .c-card.c-card--interactive:hover,
  .c-card.is-hoverable:hover {
    transform: none;
  }
}

.c-badge {
  --badge-color: #374151;
  --badge-bg: #f3f4f6;
  --badge-border: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid var(--badge-border);
  border-radius: 999px;
  background: var(--badge-bg);
  color: var(--badge-color);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.c-badge--md {
  min-height: 32px;
  padding-inline: 16px;
  font-size: 0.875rem;
}

.c-badge--primary {
  --badge-color: #2563eb;
  --badge-bg: color-mix(in srgb, #2563eb 10%, #fff);
  --badge-border: color-mix(in srgb, #2563eb 18%, #fff);
}

.c-badge--success {
  --badge-color: #22c55e;
  --badge-bg: color-mix(in srgb, #22c55e 10%, #fff);
  --badge-border: color-mix(in srgb, #22c55e 20%, #fff);
}

.c-badge--warning {
  --badge-color: #f59e0b;
  --badge-bg: color-mix(in srgb, #f59e0b 10%, #fff);
  --badge-border: color-mix(in srgb, #f59e0b 20%, #fff);
}

.c-badge--danger {
  --badge-color: #ef4444;
  --badge-bg: color-mix(in srgb, #ef4444 10%, #fff);
  --badge-border: color-mix(in srgb, #ef4444 20%, #fff);
}

.c-badge--outline {
  --badge-bg: transparent;
}

.c-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  border-radius: 999px;
  background: #fff;
}

.c-chip__label {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.c-chip__value {
  color: #111827;
  font-size: 0.875rem;
  font-weight: 500;
}

.c-data-list {
  --data-label-width: 96px;
  --data-row-gap: 16px;
  --data-row-py: 12px;
  --data-row-px: 0;
  --data-divider: rgba(17, 24, 39, 0.08);
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-data-row {
  display: grid;
  grid-template-columns: minmax(0, var(--data-label-width)) minmax(0, 1fr);
  gap: var(--data-row-gap);
  align-items: baseline;
  padding: var(--data-row-py) var(--data-row-px);
  border-bottom: 1px solid var(--data-divider);
}
.c-data-row:last-child {
  border-bottom: 0;
}

.c-data-row__label {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-data-row__value {
  min-width: 0;
  margin: 0;
  color: #111827;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.c-data-list--compact {
  --data-row-py: 8px;
}

.c-data-list--dashed {
  --data-divider: color-mix(in srgb, rgba(17, 24, 39, 0.08) 70%, transparent);
}
.c-data-list--dashed .c-data-row {
  border-bottom-style: dashed;
}

.c-data-list--boxed {
  gap: 8px;
}
.c-data-list--boxed .c-data-row {
  --data-row-py: 16px;
  --data-row-px: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
}

.c-data-list--spread .c-data-row {
  display: flex;
  justify-content: space-between;
}
.c-data-list--spread .c-data-row__value {
  text-align: right;
}

@media (max-width: 480px) {
  .c-data-list:not(.c-data-list--spread) .c-data-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.c-alert {
  --alert-color: #374151;
  --alert-bg: #f9fafb;
  --alert-border: #e5e7eb;
  padding: 24px;
  border: 1px solid var(--alert-border);
  border-radius: 12px;
  background: var(--alert-bg);
  color: var(--alert-color);
  font-size: 0.875rem;
  line-height: 1.7;
}

.c-alert--compact {
  padding: 16px;
  border-radius: 8px;
}

.c-alert--info {
  --alert-color: #0ea5e9;
  --alert-bg: color-mix(in srgb, #0ea5e9 8%, #fff);
  --alert-border: color-mix(in srgb, #0ea5e9 22%, #fff);
}

.c-alert--success {
  --alert-color: #22c55e;
  --alert-bg: color-mix(in srgb, #22c55e 8%, #fff);
  --alert-border: color-mix(in srgb, #22c55e 22%, #fff);
}

.c-alert--warning {
  --alert-color: color-mix(in srgb, #f59e0b 72%, #111827);
  --alert-bg: color-mix(in srgb, #f59e0b 9%, #fff);
  --alert-border: color-mix(in srgb, #f59e0b 28%, #fff);
}

.c-alert--danger {
  --alert-color: #ef4444;
  --alert-bg: color-mix(in srgb, #ef4444 8%, #fff);
  --alert-border: color-mix(in srgb, #ef4444 22%, #fff);
}

.c-alert__title {
  display: block;
  margin: 0 0 4px;
  color: currentColor;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.c-alert__text {
  margin: 0;
}

.c-alert__list {
  margin: 0;
  padding-left: 24px;
}

/* ============================
   Toast Root (오른쪽 상단 고정)
============================ */
.c-toast {
  position: fixed;
  top: 80px;
  right: 20px;
  left: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3000;
  pointer-events: none;
  align-items: flex-end;
}

/* ============================
   Toast Item
============================ */
.c-toast__item {
  min-width: 260px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(16px) translateY(-4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.c-toast__item--success {
  background-color: #22c55e;
}

.c-toast__item--error {
  background-color: #ef4444;
}

.c-toast__item--warning {
  background-color: #f59e0b;
  color: #1f2937;
}

.c-toast__item--info {
  background-color: #0ea5e9;
}

.c-toast__item.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.c-toast__item.is-hiding {
  opacity: 0;
  transform: translateX(16px) translateY(-4px);
}

.c-disclosure__trigger {
  position: relative;
}
.c-disclosure__trigger:focus-visible {
  outline: 2px solid color-mix(in srgb, #2563eb 55%, transparent);
  outline-offset: -2px;
}

.c-disclosure__icon {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-left: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.c-disclosure__trigger[aria-expanded=true] .c-disclosure__icon {
  transform: rotate(225deg);
}

@media (prefers-reduced-motion: reduce) {
  .c-disclosure__icon,
  .c-disclosure__panel {
    transition: none;
  }
}
.c-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.c-filter {
  padding: 8px 16px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.c-filter:hover {
  border-color: #94a3b8;
}
.c-filter:focus-visible {
  outline: 2px solid color-mix(in srgb, #2563eb 55%, transparent);
  outline-offset: 2px;
}
.c-filter[aria-pressed=true], .c-filter.is-active {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

.c-toolbar {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.c-toolbar__title {
  flex: 1 1 auto;
  min-width: 0;
}

.c-toolbar__heading {
  margin: 0;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.c-toolbar__desc {
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.5;
  word-break: keep-all;
}

.c-toolbar__actions {
  flex: 0 0 auto;
  margin-left: auto;
}

.c-search__group {
  --c-field-control-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.c-search__group .c-field__control {
  font-size: 0.875rem;
}

.c-search__select {
  min-width: 84px;
}

.c-search__input {
  min-width: clamp(180px, 28vw, 320px);
}

.c-search__button {
  height: var(--c-field-control-height);
}

@media (max-width: 768px) {
  .c-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .c-toolbar__actions,
  .c-search__group {
    width: 100%;
  }
  .c-search__group {
    display: grid;
    grid-template-columns: minmax(96px, 0.35fr) minmax(0, 1fr) auto;
  }
}
@media (max-width: 480px) {
  .c-search__group {
    grid-template-columns: 1fr;
  }
  .c-search__group > * {
    width: 100%;
  }
}
.c-pagination {
  display: flex;
  justify-content: center;
}

.c-pagination__list {
  display: inline-flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-pagination__item {
  display: inline-flex;
}

.c-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.c-pagination__link:hover {
  border-color: #2563eb;
  background: #60a5fa;
  color: #1e40af;
}
.c-pagination__link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.c-pagination__item.is-active .c-pagination__link {
  border-color: #2563eb;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  pointer-events: none;
}

.c-pagination__item.is-disabled .c-pagination__link {
  border-color: #e5e7eb;
  background: #f9fafb;
  color: #94a3b8;
  cursor: not-allowed;
  pointer-events: none;
}

.c-pagination__item:is(.is-prev, .is-next, .is-first, .is-last) .c-pagination__link {
  font-weight: 600;
}

@media (max-width: 480px) {
  .c-pagination__item.is-first,
  .c-pagination__item.is-last {
    display: none;
  }
  .c-pagination__link {
    min-width: 36px;
    height: 36px;
  }
}
.c-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #1f2937;
  background: transparent;
}
.c-table th,
.c-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
  font-size: 0.9rem;
}
.c-table thead th {
  background: #f9fafb;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.c-table__empty {
  padding-block: 48px;
}

.c-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 180px;
  padding: 48px 24px;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  background: #f9fafb;
  color: #4b5563;
  text-align: center;
}

.c-empty-state--compact {
  min-height: 120px;
  padding-block: 32px;
}

.c-empty-state__title {
  margin: 0;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-empty-state__desc {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

.c-floating-panel {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
}

.c-floating-panel--menu {
  border-radius: 0 0 8px 8px;
}

.c-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .c-floating-panel,
  .c-backdrop {
    transition: none;
  }
}
.section-header {
  --sh-align: left;
  --sh-pretitle-size: clamp(0.8125rem, 0.85vw, 0.95rem);
  --sh-pretitle-lh: 1.4;
  --sh-pretitle-weight: 700;
  --sh-pretitle-letter: 0.08em;
  --sh-title-size: clamp(2rem, 2.7vw, 2.8rem);
  --sh-title-lh: 1.2;
  --sh-title-weight: 700;
  --sh-subtitle-size: clamp(1rem, 1.05vw, 1.125rem);
  --sh-subtitle-lh: 1.75;
  --sh-subtitle-weight: 400;
  --sh-gap-y: 96px;
  --sh-measure: 60ch;
  --sh-pretitle-color: #2563eb;
  --sh-title-color: #111827;
  --sh-subtitle-color: #4b5563;
  margin-bottom: var(--sh-gap-y, 64px);
  text-align: var(--sh-align, left);
}
.section-header .section-pretitle {
  color: var(--sh-pretitle-color, #2563eb);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.section-header .section-title {
  color: var(--sh-title-color, #1f2937);
  font-weight: 700;
  font-size: var(--sh-title-size, clamp(1.75rem, 2.4vw, 2.75rem));
  line-height: var(--sh-title-lh, 1.16);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: var(--sh-measure, 70ch);
  white-space: normal;
  overflow-wrap: anywhere;
}
.section-header .section-subtitle {
  color: var(--sh-subtitle-color, #4b5563);
  font-size: var(--sh-subtitle-size, clamp(1rem, 1.05vw, 1.125rem));
  line-height: var(--sh-subtitle-lh, 1.75);
  margin: 0;
  opacity: 0.96;
  max-width: var(--sh-measure, 70ch);
  white-space: normal;
  overflow-wrap: anywhere;
}
.section-header .section-title,
.section-header .section-subtitle {
  word-break: keep-all;
  overflow-wrap: normal;
}

.section-header.is-left {
  --sh-align: left;
}

.section-header.is-center {
  --sh-align: center;
}
.section-header.is-center .section-title,
.section-header.is-center .section-subtitle {
  margin-inline: auto;
}

.section-header.is-right {
  --sh-align: right;
}
.section-header.is-right .section-title,
.section-header.is-right .section-subtitle {
  margin-left: auto;
}

.section-header.sh-layout-split {
  display: grid;
  column-gap: clamp(56px, 8vw, 120px);
  align-items: end;
}
.section-header.sh-layout-split .section-pretitle,
.section-header.sh-layout-split .section-title {
  grid-column: 1;
}
.section-header.sh-layout-split .section-pretitle {
  grid-row: 1;
}
.section-header.sh-layout-split .section-title {
  grid-row: 2;
}
.section-header.sh-layout-split .section-subtitle {
  grid-column: 2;
  grid-row: 1/span 2;
  align-self: end;
  justify-self: end;
  margin-bottom: 16px;
  text-align: left;
}

.section-header.sh-size-sm,
.section-header.sh-variant-compact,
.section-header.sh-variant-minimal,
.section-header.sh-variant-side {
  --sh-pretitle-size: 0.8125rem;
  --sh-title-size: clamp(1.35rem, 1.9vw, 1.9rem);
  --sh-title-lh: 1.25;
  --sh-subtitle-size: clamp(0.9rem, 0.95vw, 1rem);
  --sh-subtitle-lh: 1.75;
}

.section-header.sh-size-md,
.section-header.sh-variant-muted {
  --sh-title-size: clamp(1.9rem, 2.5vw, 2.65rem);
  --sh-subtitle-size: clamp(1rem, 1.05vw, 1.1rem);
}

.section-header.sh-size-lg,
.section-header.sh-variant-hero,
.section-header.sh-variant-hero-inverse {
  --sh-pretitle-size: clamp(0.875rem, 0.95vw, 1rem);
  --sh-title-size: clamp(2.35rem, 3.3vw, 3.4rem);
  --sh-title-lh: 1.12;
  --sh-subtitle-size: clamp(1.0625rem, 1.15vw, 1.25rem);
  --sh-subtitle-lh: 1.7;
}

.section-header.sh-tone-muted,
.section-header.sh-variant-compact,
.section-header.sh-variant-muted {
  --sh-pretitle-color: #6b7280;
  --sh-subtitle-color: #374151;
}

.section-header.sh-tone-inverse,
.section-header.sh-variant-inverse,
.section-header.sh-variant-hero-inverse {
  --sh-pretitle-color: rgba(255, 255, 255, 0.78);
  --sh-title-color: #fff;
  --sh-subtitle-color: rgba(255, 255, 255, 0.86);
}

.section-header.sh-gap-sm,
.section-header.sh-variant-compact,
.section-header.sh-variant-minimal,
.section-header.sh-variant-side {
  --sh-gap-y: 32px;
}

.section-header.sh-gap-md,
.section-header.sh-variant-hero,
.section-header.sh-variant-hero-inverse {
  --sh-gap-y: 64px;
}

.section-header.sh-gap-lg {
  --sh-gap-y: 96px;
}

.section-header.sh-measure-sm {
  --sh-measure: 48ch;
}

.section-header.sh-measure-md,
.section-header.sh-variant-compact,
.section-header.sh-variant-minimal,
.section-header.sh-variant-side {
  --sh-measure: 56ch;
}

.section-header.sh-measure-lg {
  --sh-measure: 70ch;
}

@media (max-width: 1024px) {
  .section-header {
    --sh-title-size: clamp(1.8rem, 3.6vw, 2.5rem);
    --sh-gap-y: 64px;
  }
  .section-header.sh-variant-hero,
  .section-header.sh-variant-hero-inverse {
    --sh-title-size: clamp(2rem, 4.6vw, 2.7rem);
    --sh-subtitle-size: clamp(1rem, 1.8vw, 1.125rem);
  }
}
@media (max-width: 768px) {
  .section-header {
    --sh-title-size: clamp(1.6rem, 6.4vw, 2.1rem);
    --sh-subtitle-size: clamp(0.925rem, 3.5vw, 1rem);
    --sh-gap-y: 48px;
  }
  .section-header.sh-layout-split {
    display: block;
  }
  .section-header.sh-layout-split .section-subtitle {
    max-width: var(--sh-measure);
    margin-top: 24px;
  }
  .section-header.sh-variant-hero,
  .section-header.sh-variant-hero-inverse {
    --sh-title-size: clamp(1.8rem, 7.2vw, 2.3rem);
    --sh-subtitle-size: clamp(0.95rem, 3.6vw, 1.0625rem);
  }
}
.tone-primary {
  color: #2563eb;
}

.tone-primary-dark {
  color: #1e40af;
}

.tone-primary-light {
  color: #60a5fa;
}

.tone-primary-soft {
  color: rgba(37, 99, 235, 0.08);
}

.tone-info,
.tone-sky {
  color: #0ea5e9;
}

.tone-warning,
.tone-orange {
  color: #f59e0b;
}

.tone-success {
  color: #22c55e;
}

.tone-danger {
  color: #ef4444;
}

.tone-white {
  color: #fff;
}

.tone-muted {
  color: #6b7280;
}

.tone-dark {
  color: #111827;
}

.tone-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tone-gradient-info {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.surface-white {
  background: #fff;
}

.surface-gray {
  background: #f8fafc;
}

.surface-blue {
  background: #eaf2fd;
}

.surface-primary {
  background: #2563eb;
}

.surface-primary-dark {
  background: #1e40af;
}

.surface-primary-light {
  background: #60a5fa;
}

.surface-primary-soft {
  background: rgba(37, 99, 235, 0.08);
}

.surface-info,
.surface-sky {
  background: color-mix(in srgb, #0ea5e9 10%, #fff);
}

.surface-warning,
.surface-orange {
  background: color-mix(in srgb, #f59e0b 10%, #fff);
}

.surface-success {
  background: color-mix(in srgb, #22c55e 10%, #fff);
}

.surface-danger {
  background: color-mix(in srgb, #ef4444 10%, #fff);
}

.theme-primary {
  --theme-color: #2563eb;
  --theme-color-dark: #1e40af;
  --theme-color-light: #60a5fa;
  --theme-soft: rgba(37, 99, 235, 0.08);
  --theme-border: color-mix(in srgb, #2563eb 22%, #e5e7eb);
  --theme-text: #1e40af;
  --theme-on-color: #fff;
}

.theme-info,
.theme-sky {
  --theme-color: #0ea5e9;
  --theme-color-dark: #0ea5e9;
  --theme-color-light: color-mix(in srgb, #0ea5e9 70%, #fff);
  --theme-soft: color-mix(in srgb, #0ea5e9 10%, #fff);
  --theme-border: color-mix(in srgb, #0ea5e9 22%, #e5e7eb);
  --theme-text: #0ea5e9;
  --theme-on-color: #fff;
}

.theme-warning,
.theme-orange {
  --theme-color: #f59e0b;
  --theme-color-dark: #f59e0b;
  --theme-color-light: color-mix(in srgb, #f59e0b 70%, #fff);
  --theme-soft: color-mix(in srgb, #f59e0b 10%, #fff);
  --theme-border: color-mix(in srgb, #f59e0b 22%, #e5e7eb);
  --theme-text: #f59e0b;
  --theme-on-color: #fff;
}

.theme-success {
  --theme-color: #22c55e;
  --theme-color-dark: #22c55e;
  --theme-color-light: color-mix(in srgb, #22c55e 70%, #fff);
  --theme-soft: color-mix(in srgb, #22c55e 10%, #fff);
  --theme-border: color-mix(in srgb, #22c55e 22%, #e5e7eb);
  --theme-text: #22c55e;
  --theme-on-color: #fff;
}

.theme-danger {
  --theme-color: #ef4444;
  --theme-color-dark: #ef4444;
  --theme-color-light: color-mix(in srgb, #ef4444 70%, #fff);
  --theme-soft: color-mix(in srgb, #ef4444 10%, #fff);
  --theme-border: color-mix(in srgb, #ef4444 22%, #e5e7eb);
  --theme-text: #ef4444;
  --theme-on-color: #fff;
}

.theme-muted {
  --theme-color: #6b7280;
  --theme-color-dark: #374151;
  --theme-color-light: #d1d5db;
  --theme-soft: #f9fafb;
  --theme-border: #e5e7eb;
  --theme-text: #374151;
  --theme-on-color: #fff;
}

.theme-white {
  --theme-color: #fff;
  --theme-color-dark: #111827;
  --theme-color-light: #fff;
  --theme-soft: #fff;
  --theme-border: #e5e7eb;
  --theme-text: #111827;
  --theme-on-color: #111827;
}

.hero {
  --hero-bg: #000;
  --hero-color: #fff;
  --hero-overlay: none;
  --hero-pad-y: 0px;
  --hero-pad-x: 0px;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--hero-bg);
  color: var(--hero-color);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--hero-overlay);
}
.hero > .hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero > .hero__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  padding-block: var(--hero-pad-y);
  padding-inline: var(--hero-pad-x);
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero .hero__content,
.hero .hero__content *,
.hero .hero__actions,
.hero .hero__actions * {
  pointer-events: auto;
}

.hero--image {
  --hero-overlay: linear-gradient(
    90deg,
    rgba(3, 7, 18, 0.85) 0%,
    rgba(3, 7, 18, 0.55) 45%,
    rgba(3, 7, 18, 0.2) 100%
  );
}
.hero--image .hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__scroll {
  position: absolute;
  z-index: 30;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll--line {
  left: 50%;
  bottom: clamp(24px, 4vh, 44px);
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll--line i {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, currentColor, transparent);
}

.hero__scroll--mouse {
  left: 50%;
  bottom: clamp(24px, 4vh, 44px);
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll--mouse i {
  width: 22px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 999px;
  position: relative;
}
.hero__scroll--mouse i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.hero__scroll--corner {
  right: clamp(24px, 5vw, 64px);
  bottom: clamp(28px, 5vh, 56px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__scroll--corner i {
  width: 56px;
  height: 1px;
  background: linear-gradient(to right, currentColor, transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 820px;
  --hc-gap: 24px;
  --hc-title-desc-gap: 8px;
  --hc-kicker-title-gap: 8px;
  --hc-buttons-gap: 16px;
  --hc-buttons-mt: 16px;
  --hc-title-lh: 1.12;
  --hc-desc-lh: 1.6;
  --hc-safe-x: clamp(14px, 2.2vw, 28px);
  gap: var(--hc-gap);
  --hc-color: inherit;
  --hc-kicker-opacity: 0.9;
  --hc-desc-opacity: 0.92;
  --hc-btn-color: var(--hc-color);
  --hc-btn-outline-border: currentColor;
  --hc-btn-ghost-bg: transparent;
  color: var(--hc-color);
}
.hero__content--left {
  align-items: flex-start;
  text-align: left;
  padding-left: var(--hc-safe-x);
}
.hero__content--center {
  align-items: center;
  margin-inline: auto;
  text-align: center;
}
.hero__content--right {
  align-items: flex-end;
  text-align: right;
  padding-right: var(--hc-safe-x);
}
.hero__content--white {
  --hc-color: #fff;
  --hc-btn-outline-border: rgba(255, 255, 255, 0.72);
  --hc-btn-ghost-bg: rgba(255, 255, 255, 0.14);
  --hc-kicker-opacity: 0.9;
  --hc-desc-opacity: 0.92;
}
.hero__content--dark {
  --hc-color: #111827;
  --hc-btn-outline-border: rgba(0, 0, 0, 0.22);
  --hc-btn-ghost-bg: rgba(0, 0, 0, 0.06);
  --hc-kicker-opacity: 0.85;
  --hc-desc-opacity: 0.9;
}
.hero__content--muted {
  --hc-color: #374151;
  --hc-btn-outline-border: rgba(0, 0, 0, 0.18);
  --hc-btn-ghost-bg: rgba(0, 0, 0, 0.05);
  --hc-kicker-opacity: 0.9;
  --hc-desc-opacity: 0.9;
}

.hero__kicker {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: inherit;
  opacity: var(--hc-kicker-opacity, 0.9);
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: var(--hc-title-lh);
  color: inherit;
  display: block;
  overflow: visible;
}

.hero__description {
  margin: 0;
  margin-top: var(--hc-title-desc-gap);
  font-size: 1.25rem;
  line-height: var(--hc-desc-lh);
  color: inherit;
  opacity: var(--hc-desc-opacity, 0.92);
}

.hero__title + .hero__description {
  margin-top: var(--hc-title-desc-gap);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hc-buttons-gap);
  margin-top: var(--hc-buttons-mt);
}
.hero__content--center .hero__actions {
  justify-content: center;
}
.hero__content--right .hero__actions {
  justify-content: flex-end;
}
.hero__actions .c-btn {
  color: var(--hc-btn-color);
}
.hero__actions .c-btn--outline {
  border-color: var(--hc-btn-outline-border);
}
.hero__actions .c-btn--ghost {
  background: var(--hc-btn-ghost-bg);
}

@media (max-width: 1023.98px) {
  .hero__content {
    max-width: 720px;
    --hc-gap: 16px;
    --hc-title-desc-gap: 8px;
    --hc-buttons-mt: 8px;
    --hc-safe-x: clamp(20px, 3vw, 32px);
  }
  .hero__description {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .hero__content {
    max-width: 100%;
    --hc-gap: 16px;
    --hc-title-desc-gap: 8px;
    --hc-safe-x: 16px;
  }
  .hero__kicker {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
  }
  .hero__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .hero__description {
    font-size: 0.95rem;
    display: none;
  }
  .hero__content--left {
    align-items: flex-start;
    text-align: left;
    padding-left: var(--hc-safe-x);
    padding-right: 16px;
  }
  .hero__content--right {
    align-items: flex-end;
    padding-right: var(--hc-safe-x);
    padding-left: 16px;
    text-align: right;
  }
  .hero__content--left .hero__actions {
    justify-content: flex-start;
  }
  .hero__content--right .hero__actions {
    justify-content: flex-end;
  }
}
@media (max-width: 479.98px) {
  .hero__title {
    font-size: clamp(1.35rem, 6.3vw, 1.75rem);
  }
  .hero__description {
    font-size: 0.9rem;
  }
}
.policy-page {
  padding: 64px 0;
}

.policy-page__inner {
  max-width: 920px;
  margin: 0 auto;
}

.policy-page__title {
  margin: 0 0 32px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
}

.policy-page__content {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: #111827;
}
.policy-page__content p {
  margin: 0 0 16px;
}
.policy-page__content ul,
.policy-page__content ol {
  margin: 0 0 24px;
  padding-left: 1.25rem;
}
.policy-page__content li {
  margin: 4px 0;
}
.policy-page__content hr {
  border: 0;
  height: 1px;
  background: rgba(17, 24, 39, 0.08);
  margin: 32px 0;
}
.policy-page__content h2 {
  margin: 48px 0 16px;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
}
.policy-page__content h3 {
  margin: 32px 0 8px;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 600;
  color: #111827;
}
.policy-page__content strong,
.policy-page__content b {
  font-weight: 700;
}
.policy-page__content a {
  color: #2563eb;
  text-underline-offset: 3px;
}
.policy-page__content a:hover {
  color: #1e40af;
}

@media (max-width: 768px) {
  .policy-page {
    padding: 48px 0;
  }
  .policy-page__title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
  .policy-page__content {
    line-height: 1.6;
  }
}
.hero.hero--slider {
  position: relative;
  padding: 0;
  height: 72vh;
  --hero-overlay: none;
}
.hero.hero--slider .hero__content {
  width: 100%;
  padding-inline: clamp(48px, 5vw, 96px);
}
@media (min-width: 1024px) {
  .hero.hero--slider {
    height: 78vh;
  }
  .hero.hero--slider.hero-fullscreen {
    height: 100dvh;
    height: 100vh;
  }
}
@media (min-width: 1280px) {
  .hero.hero--slider .hero__content {
    max-width: 960px;
    padding-inline: 48px;
  }
  .hero.hero--slider .hero__description {
    max-width: 820px;
  }
  .hero.hero--slider .hero__prev {
    left: -2px;
  }
  .hero.hero--slider .hero__next {
    right: -2px;
  }
}
@media (max-width: 1023.98px) {
  .hero.hero--slider {
    height: clamp(560px, 68vh, 680px);
  }
  .hero.hero--slider .hero__content {
    width: 100%;
    max-width: 100%;
    padding-inline: clamp(48px, 7vw, 96px);
  }
}
@media (max-width: 767.98px) {
  .hero.hero--slider {
    height: clamp(460px, 54svh, 580px);
    --hero-content-safe-x: calc(38px + 10px + 8px);
  }
  .hero.hero--slider .hero__inner .container {
    width: 100%;
    padding-inline: 0;
  }
  .hero.hero--slider .hero__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: var(--hero-content-safe-x);
  }
  .hero.hero--slider .hero__kicker,
  .hero.hero--slider .hero__title,
  .hero.hero--slider .hero__description,
  .hero.hero--slider .hero__actions {
    max-width: 100%;
    min-width: 0;
  }
  .hero.hero--slider .hero__title,
  .hero.hero--slider .hero__description {
    word-break: keep-all;
    overflow-wrap: normal;
  }
}
.hero.hero--slider .hero__swiper {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero.hero--slider .hero__swiper .swiper,
.hero.hero--slider .hero__swiper .swiper-wrapper,
.hero.hero--slider .hero__swiper .swiper-slide.hero__slide {
  width: 100%;
  height: 100%;
}
.hero.hero--slider .swiper-slide.hero__slide {
  position: relative;
  overflow: hidden;
  --slide-overlay: rgba(0, 0, 0, 0.18);
}
.hero.hero--slider .swiper-slide.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--slide-overlay);
}
.hero.hero--slider .swiper-slide.hero__slide .hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero.hero--slider .hero__slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero.hero--slider .hero__slide-media .hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  transition: transform 7000ms ease;
  pointer-events: none;
}
.hero.hero--slider .swiper-slide-active .hero__slide-media .hero__image {
  transform: scale(1);
}
.hero.hero--slider .hero__nav,
.hero.hero--slider .hero__pagination,
.hero.hero--slider .swiper-pagination {
  z-index: 30;
  pointer-events: auto;
}
.hero.hero--slider .hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0;
  appearance: none;
}
.hero.hero--slider .hero__nav::before {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
  transform: rotate(135deg);
}
.hero.hero--slider .hero__prev {
  left: 18px;
}
.hero.hero--slider .hero__prev::before {
  transform: rotate(135deg) translateX(1px) translateY(-1px);
}
.hero.hero--slider .hero__next {
  right: 18px;
}
.hero.hero--slider .hero__next::before {
  transform: rotate(-45deg) translateX(-1px) translateY(1px);
}
.hero.hero--slider .hero__swiper .hero__pagination,
.hero.hero--slider .hero__swiper .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30;
  pointer-events: auto;
}
.hero.hero--slider .hero__swiper .swiper-horizontal > .swiper-pagination-bullets,
.hero.hero--slider .hero__swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  left: 0;
  right: 0;
  width: 100%;
}
.hero.hero--slider .hero__swiper .swiper-pagination-bullet {
  position: relative;
  width: 56px;
  height: 3px;
  margin: 0 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
  opacity: 1;
}
.hero.hero--slider .hero__swiper .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background: rgba(255, 255, 255, 0.96);
}
.hero.hero--slider .hero__swiper .swiper-pagination-bullet-active::before {
  animation: hero-progress 6000ms linear forwards;
}
@keyframes hero-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.hero.hero--slider .hero__kicker,
.hero.hero--slider .hero__title,
.hero.hero--slider .hero__description,
.hero.hero--slider .hero__actions {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.hero.hero--slider .swiper-slide-active .hero__kicker {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 180ms;
}
.hero.hero--slider .swiper-slide-active .hero__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 280ms;
}
.hero.hero--slider .swiper-slide-active .hero__description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 380ms;
}
.hero.hero--slider .swiper-slide-active .hero__actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 480ms;
}

@media (max-width: 767.98px) {
  .hero__nav {
    width: 38px;
    height: 38px;
  }
  .hero__nav::before {
    width: 12px;
    height: 12px;
  }
  .hero__prev {
    left: 10px;
  }
  .hero__next {
    right: 10px;
  }
  .hero__swiper .hero__pagination,
  .hero__swiper .swiper-pagination {
    bottom: 12px;
  }
}
.hero.hero--slider {
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}
.hero.hero--slider .hero__swiper {
  overflow: hidden;
}

.hero-bridge-section {
  position: relative;
  margin-top: -34px;
  padding-top: 72px;
  background: #f3f3f3;
  z-index: 5;
}
.hero-bridge-section__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(36vw, 520px);
  height: 110px;
  background: #f3f3f3;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bridge-section__inner {
  position: relative;
  z-index: 2;
  min-height: 240px;
}
.hero-bridge-section .hero__pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 767.98px) {
  .hero-bridge-section {
    margin-top: -24px;
    padding-top: 52px;
  }
  .hero-bridge-section__notch {
    width: min(100% - 32px, 280px);
    height: 76px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }
  .hero-bridge-section .hero__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

.sub-hero-section {
  --hero-bg: url("/assets/common/images/hero-default-2f53d449f1aff46217af9ea1cf3cff2c.jpg");
  --hero-position: center center;
  --hero-h: 460px;
  --overlay-start: 0.3;
  --overlay-end: 0.45;
  --sub-hero-title-color: #fff;
  --sub-hero-subtitle-color: #fff;
  --sub-hero-text-color: #fff;
  position: relative;
  min-height: var(--hero-h);
  padding-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--sub-hero-text-color);
  background-image: var(--hero-bg);
  background-position: var(--hero-position);
  background-size: cover;
  background-repeat: no-repeat;
}
.sub-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, var(--overlay-start)), rgba(0, 0, 0, var(--overlay-end)));
}
.sub-hero-section > .container {
  position: relative;
  z-index: 1;
}
.sub-hero-section h1 {
  margin-bottom: 10px;
  color: var(--sub-hero-title-color);
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.sub-hero-section p {
  color: var(--sub-hero-subtitle-color);
  font-size: clamp(0.95rem, 1.4vw, 1.125rem);
  line-height: 1.7;
  font-weight: 400;
  opacity: 0.9;
}
.sub-hero-section.is-left {
  text-align: left;
}
.sub-hero-section.is-center {
  text-align: center;
}
.sub-hero-section.is-right {
  text-align: right;
}
@media (max-width: 768px) {
  .sub-hero-section {
    padding-top: 64px;
  }
}

.tabbar-wrap {
  --tab-text: #6b7280;
  --tab-active: #111827;
  --tab-bg: #fff;
  --tab-border: #e5e7eb;
  --tab-accent: #2563eb;
  --tab-dark-bg: #0b1b3a;
  --tab-underline: var(--tab-accent);
  --tab-underline-thickness: 2px;
  background: var(--tab-bg);
  border-bottom: 1px solid var(--tab-border);
}

.tabbar {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabbar::-webkit-scrollbar {
  display: none;
}
.tabbar[data-sticky=true] {
  position: sticky;
  top: var(--header-h, 86px);
  z-index: 1100;
  background: inherit;
}
.tabbar .tabbar__tab {
  position: relative;
  min-height: 72px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tab-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.tabbar .tabbar__tab:hover, .tabbar .tabbar__tab.is-active {
  color: var(--tab-active);
}
.tabbar .tabbar__tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--tab-underline-thickness);
  background: var(--tab-underline);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0.45;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.tabbar .tabbar__tab:hover::after, .tabbar .tabbar__tab.is-active::after {
  transform: scaleX(1);
}
.tabbar .tabbar__tab.is-active::after {
  opacity: 1;
}
.tabbar .tabbar__indicator {
  display: none;
}

.tabbar-wrap .tabbar--left {
  justify-content: flex-start;
}

.tabbar-wrap .tabbar--center {
  justify-content: center;
}

.tabbar-wrap .tabbar--right {
  justify-content: flex-end;
}

.tabbar-wrap--line {
  background: var(--tab-bg);
  border-bottom: 1px solid var(--tab-border);
}

.tabbar-wrap--lineFull {
  background: var(--tab-dark-bg);
  border-bottom: 0;
}
.tabbar-wrap--lineFull .tabbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: flex-start;
  gap: 0;
}
.tabbar-wrap--lineFull .tabbar__tab {
  min-width: 170px;
  min-height: 68px;
  padding: 0 32px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.tabbar-wrap--lineFull .tabbar__tab:first-child {
  border-left: 0;
}
.tabbar-wrap--lineFull .tabbar__tab::after {
  display: none;
}
.tabbar-wrap--lineFull .tabbar__tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.tabbar-wrap--lineFull .tabbar__tab.is-active {
  color: #111827;
  background: #fff;
}

.tabbar-wrap--overlapCard {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  background: transparent;
  border-bottom: 0;
}
.tabbar-wrap--overlapCard .tabbar {
  width: fit-content;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  gap: 0;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(16px + 2px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.tabbar-wrap--overlapCard .tabbar__tab {
  min-width: 164px;
  min-height: 66px;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.tabbar-wrap--overlapCard .tabbar__tab:first-child {
  border-left: 0;
}
.tabbar-wrap--overlapCard .tabbar__tab::after {
  display: none;
}
.tabbar-wrap--overlapCard .tabbar__tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.tabbar-wrap--overlapCard .tabbar__tab.is-active {
  color: #111827;
  background: #fff;
}

.tabbar-wrap--filterPill {
  background: transparent;
  border-bottom: 0;
}
.tabbar-wrap--filterPill .tabbar {
  justify-content: flex-start;
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 20px;
}
.tabbar-wrap--filterPill .tabbar__tab {
  min-height: 42px;
  padding: 0 16px;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
}
.tabbar-wrap--filterPill .tabbar__tab::after {
  display: none;
}
.tabbar-wrap--filterPill .tabbar__tab:hover {
  color: #111827;
  border-color: #94a3b8;
  background: #f9fafb;
}
.tabbar-wrap--filterPill .tabbar__tab.is-active {
  color: #fff;
  background: #111827;
  border-color: #111827;
}

.tabbar-wrap--glass {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  background: transparent;
  border-bottom: 0;
}
.tabbar-wrap--glass .tabbar {
  width: fit-content;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: calc(16px + 2px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.tabbar-wrap--glass .tabbar__tab {
  min-width: auto;
  min-height: auto;
  padding: 12px 24px;
  color: #374151;
  font-weight: 600;
  border-left: 0;
  border-radius: 12px;
}
.tabbar-wrap--glass .tabbar__tab::after {
  display: none;
}
.tabbar-wrap--glass .tabbar__tab:hover {
  color: #111827;
  background: rgba(255, 255, 255, 0.45);
}
.tabbar-wrap--glass .tabbar__tab.is-active {
  color: #111827;
  background: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
@supports not ((backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px))) {
  .tabbar-wrap--glass .tabbar {
    background: rgba(255, 255, 255, 0.92);
  }
}

.subnav {
  height: 72px;
  display: flex;
  justify-content: center;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.subnav .subnav__inner {
  width: 100%;
  max-width: 1400px;
  display: flex;
}
.subnav .subnav__home,
.subnav .subnav__select {
  position: relative;
  border-left: 1px solid #e5e7eb;
}
.subnav .subnav__home {
  width: 72px;
  flex: 0 0 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 1.25rem;
  text-decoration: none;
}
.subnav .subnav__select {
  width: 240px;
  flex: 0 0 240px;
}
.subnav .subnav__select:last-child {
  border-right: 1px solid #e5e7eb;
}
.subnav .subnav__select.is-open .subnav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.subnav .subnav__select.is-open .subnav__arrow {
  transform: rotate(180deg);
}
.subnav .subnav__button {
  width: 100%;
  height: 70px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 0;
  color: #111827;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.subnav .subnav__arrow {
  font-size: 0.75rem;
  color: #6b7280;
  transition: transform 0.2s ease;
}
.subnav .subnav__menu {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  z-index: 1100;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.subnav .subnav__menu a {
  display: block;
  padding: 12px 24px;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.subnav .subnav__menu a:hover, .subnav .subnav__menu a.is-active {
  color: #111827;
  background: #f9fafb;
}

.subnav--dark {
  position: relative;
  z-index: 3;
  margin-top: -72px;
  background: rgba(17, 24, 39, 0.72);
  border: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.subnav--dark .subnav__home,
.subnav--dark .subnav__select {
  border-color: rgba(255, 255, 255, 0.16);
}
.subnav--dark .subnav__select:last-child {
  border-right-color: rgba(255, 255, 255, 0.16);
}
.subnav--dark .subnav__button,
.subnav--dark .subnav__home {
  background: transparent;
  color: #fff;
}
.subnav--dark .subnav__arrow {
  color: rgba(255, 255, 255, 0.72);
}
.subnav--dark .subnav__menu {
  background: rgba(17, 24, 39, 0.96);
  border-color: rgba(255, 255, 255, 0.14);
}
.subnav--dark .subnav__menu a {
  color: rgba(255, 255, 255, 0.78);
}
.subnav--dark .subnav__menu a:hover, .subnav--dark .subnav__menu a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .subnav--dark {
    background: rgba(17, 24, 39, 0.92);
  }
}

@media (max-width: 1024px) {
  .tabbar {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .tabbar {
    justify-content: flex-start;
    gap: 16px;
    padding: 0 20px;
  }
  .tabbar .tabbar__tab {
    min-height: 60px;
    font-size: 0.875rem;
  }
  .tabbar-wrap--line .tabbar,
  .tabbar-wrap--lineFull .tabbar,
  .tabbar-wrap--overlapCard .tabbar,
  .tabbar-wrap--glass .tabbar {
    padding: 0;
  }
  .tabbar-wrap--overlapCard,
  .tabbar-wrap--glass {
    margin-top: -28px;
  }
  .tabbar-wrap--lineFull .tabbar__tab,
  .tabbar-wrap--overlapCard .tabbar__tab {
    min-width: 132px;
    min-height: 58px;
    padding: 0 16px;
  }
  .tabbar-wrap--glass .tabbar {
    gap: 8px;
    padding: 8px;
    max-width: calc(100% - 24px);
  }
  .tabbar-wrap--glass .tabbar__tab {
    padding: 12px 16px;
    font-size: 0.875rem;
  }
  .tabbar-wrap--filterPill .tabbar {
    padding: 12px 20px;
    gap: 8px;
  }
  .tabbar-wrap--filterPill .tabbar__tab {
    min-height: 38px;
    padding: 0 12px;
  }
  .subnav {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .subnav .subnav__inner {
    min-width: max-content;
  }
  .subnav .subnav__home {
    width: 64px;
    flex-basis: 64px;
  }
  .subnav .subnav__select {
    width: 180px;
    flex-basis: 180px;
  }
  .subnav .subnav__button {
    height: 64px;
    padding: 0 16px;
    font-size: 0.875rem;
  }
  .subnav--dark {
    margin-top: -64px;
  }
}
@media (max-width: 480px) {
  .tabbar .tabbar__tab {
    min-height: 56px;
    font-size: 0.875rem;
  }
  .tabbar-wrap--lineFull .tabbar__tab,
  .tabbar-wrap--overlapCard .tabbar__tab {
    min-width: 118px;
    padding: 0 12px;
  }
  .tabbar-wrap--glass .tabbar__tab {
    padding: 8px 12px;
  }
  .subnav {
    height: 60px;
  }
  .subnav .subnav__home {
    width: 60px;
    flex-basis: 60px;
  }
  .subnav .subnav__select {
    width: 168px;
    flex-basis: 168px;
  }
  .subnav .subnav__button {
    height: 58px;
  }
  .subnav--dark {
    margin-top: -60px;
  }
}
/* -----------------------------------------------------------
  SPLIT FEATURE
  section:
  1. default : 좌측 텍스트 + 우측 카드 그리드
  2. media   : 이미지 카드형
  3. icon    : 아이콘 카드형
  4. step    : 숫자 단계형

  card:
  1. elevated : hover 상승 효과
----------------------------------------------------------- */
.split-feature {
  --section-bg: #fff;
  --sf-layout-min-h: 560px;
  --sf-layout-gap: 64px;
  --sf-card-radius: 16px;
  --sf-card-padding: 48px;
  --sf-card-padding-lg: 32px;
  --sf-card-min-h: 190px;
  --sf-card-min-h-lg: 180px;
  --sf-media-ratio: 16 / 10;
  --sf-title-size: clamp(18px, 1.4vw, 22px);
  --sf-headline-size: clamp(30px, 2.5vw, 44px);
  --sf-headline-size-md: clamp(26px, 7vw, 34px);
  --sf-lead-size: clamp(15px, 1vw, 17px);
  background: var(--section-bg);
}
.split-feature__layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: var(--sf-layout-gap);
  align-items: center;
  min-height: var(--sf-layout-min-h);
}
.split-feature__content {
  max-width: 52ch;
}
.split-feature__headline {
  margin: 0 0 16px;
  font-size: var(--sf-headline-size);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #111827;
  word-break: keep-all;
}
.split-feature__lead {
  margin: 0;
  font-size: var(--sf-lead-size);
  line-height: 1.8;
  color: #4b5563;
}
.split-feature__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.split-feature__card {
  position: relative;
  min-height: var(--sf-card-min-h);
  padding: var(--sf-card-padding);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, #e5e7eb 84%, #fff);
  border-radius: var(--sf-card-radius);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}
.split-feature__media {
  margin: calc(var(--sf-card-padding) * -1) calc(var(--sf-card-padding) * -1) 24px;
  aspect-ratio: var(--sf-media-ratio);
  overflow: hidden;
  border-bottom: 1px solid color-mix(in srgb, #e5e7eb 84%, #fff);
  background: #f3f4f6;
}
.split-feature__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.split-feature__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0 0 16px;
  border: 1px solid color-mix(in srgb, #0ea5e9 16%, #fff);
  border-radius: 14px;
  background: color-mix(in srgb, #0ea5e9 10%, #fff);
}
.split-feature__icon i {
  width: 22px;
  height: 22px;
  color: #0ea5e9;
}
.split-feature__body {
  display: flex;
  flex-direction: column;
}
.split-feature__eyebrow {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #6b7280;
}
.split-feature__title {
  margin: 0 0 8px;
  font-size: var(--sf-title-size);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #111827;
}
.split-feature__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #4b5563;
}

.split-feature--media {
  --sf-card-padding: 24px;
  --sf-card-padding-lg: 24px;
  --sf-card-min-h: 0;
  --sf-card-min-h-lg: 0;
  --sf-media-ratio: 16 / 9;
}
.split-feature--media .split-feature__cards {
  gap: 16px;
}
.split-feature--media .split-feature__card {
  height: 100%;
}
.split-feature--media .split-feature__card:hover .split-feature__media img {
  transform: scale(1.05);
}

.split-feature--icon .split-feature__media {
  display: none;
}

.split-feature--step .split-feature__media,
.split-feature--step .split-feature__icon {
  display: none;
}
.split-feature--step .split-feature__card {
  overflow: visible;
  padding-top: calc(var(--sf-card-padding) + 16px);
}
.split-feature--step .split-feature__eyebrow {
  position: absolute;
  top: -16px;
  left: 32px;
  min-width: 64px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #0ea5e9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
  text-align: center;
  font-weight: 800;
}

.split-feature__card--elevated:hover {
  transform: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  border-color: #e5e7eb;
}

@media (max-width: 1023.98px) {
  .split-feature__layout {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }
  .split-feature__card {
    min-height: var(--sf-card-min-h-lg);
    padding: var(--sf-card-padding-lg);
  }
  .split-feature__media {
    margin: calc(var(--sf-card-padding-lg) * -1) calc(var(--sf-card-padding-lg) * -1) 24px;
  }
  .split-feature__card--elevated:hover {
    transform: translateY(-10px);
  }
}
@media (max-width: 767.98px) {
  .split-feature__headline {
    font-size: var(--sf-headline-size-md);
    line-height: 1.35;
  }
  .split-feature__lead {
    line-height: 1.75;
  }
  .split-feature__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .split-feature__card {
    min-height: auto;
  }
  .split-feature__card--elevated:hover {
    transform: translateY(-6px);
  }
}
.metrics-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #111114;
  background-image: none;
}
.metrics-section > .container {
  position: relative;
  z-index: 1;
}
.metrics-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--section-bg-image, none);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.4;
  pointer-events: none;
}
.metrics-section--dark {
  color: #fff;
  background-color: #070707;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.035), transparent 8rem);
}
.metrics-section--dark .metrics-split__desc, .metrics-section--dark .metrics-split__label {
  color: rgba(255, 255, 255, 0.62);
}
.metrics-section--dark .metrics-split__list {
  border-left-color: rgba(255, 255, 255, 0.16);
}
.metrics-section--dark .metrics-split__item:not(:last-child) {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}
.metrics-section--dark .metrics-split__value {
  color: #fff;
}
.metrics-section--light {
  color: #000;
  background-color: #fff;
}
.metrics-section__grid {
  display: flex;
  min-height: 26rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.metrics-section__stack {
  display: flex;
  flex-direction: column;
}

.metrics-section__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.82fr);
  min-height: 100vh;
  padding-top: clamp(7rem, 12vh, 10rem);
  padding-bottom: clamp(4rem, 8vh, 7rem);
}

.metrics-split__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(3rem, 8vw, 9rem);
}
.metrics-split__kicker {
  margin: 0 0 1.5rem;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.metrics-split__title {
  margin: 0;
  color: inherit;
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.045em;
  word-break: keep-all;
}
.metrics-split__desc {
  max-width: 35rem;
  margin: 2rem 0 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 1rem;
  line-height: 1.8;
  word-break: keep-all;
}
.metrics-split__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.metrics-split__item {
  padding: clamp(1.5rem, 3vh, 2.5rem) 0 clamp(1.5rem, 3vh, 2.5rem) clamp(2rem, 5vw, 5rem);
}
.metrics-split__item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.metrics-split__label {
  margin: 0 0 0.65rem;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
}
.metrics-split__value {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  margin: 0;
  color: #000;
}
.metrics-split__num {
  font-size: clamp(2.5rem, 4.6vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
}
.metrics-split__unit {
  color: #2563eb;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-weight: 700;
}

.metrics-card {
  position: relative;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  padding: 40px;
  cursor: pointer;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(0.3125rem);
  transition: flex 0.6s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.5s ease, color 0.3s ease;
}
.metrics-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.metrics-card:hover {
  flex: 1.6;
  background-color: rgba(37, 99, 235, 0.9);
  backdrop-filter: none;
}
.metrics-card:hover .metric-num,
.metrics-card:hover .metrics-card__unit,
.metrics-card:hover .metrics-card__title,
.metrics-card:hover .metrics-card__desc {
  color: #000;
}
.metrics-card:hover .metrics-card__desc {
  opacity: 1;
  transform: translateY(0);
}
.metrics-card__num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.metrics-card__unit {
  color: #2563eb;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.metrics-card__title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
.metrics-card__desc {
  max-width: 16rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.875rem;
  line-height: 1.6;
  word-break: keep-all;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.metric-num {
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 800;
  line-height: 1;
}

.metrics-stack-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.metrics-stack-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: #2563eb;
  transition: width 0.5s ease;
}
.metrics-stack-card:last-child {
  border-bottom: 0;
}
.metrics-stack-card:hover {
  transform: translateX(0.75rem);
  border-bottom-color: rgba(37, 99, 235, 0.35);
}
.metrics-stack-card:hover::before {
  width: 100%;
}
.metrics-stack-card:hover .metrics-stack-card__index {
  color: #2563eb;
  opacity: 1;
  transform: translateY(-0.25rem);
}
.metrics-stack-card:hover .metrics-stack-card__title,
.metrics-stack-card:hover .metrics-stack-card__num,
.metrics-stack-card:hover .metrics-stack-card__unit {
  color: #2563eb;
}
.metrics-stack-card__index {
  flex: 0 0 clamp(4rem, 8vw, 7rem);
  color: rgba(255, 255, 255, 0.22);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.metrics-stack-card__content {
  flex: 1;
  min-width: 0;
}
.metrics-stack-card__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  word-break: keep-all;
  transition: color 0.3s ease;
}
.metrics-stack-card__desc {
  display: none;
}
.metrics-stack-card__data {
  flex: 0 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  min-width: clamp(7rem, 12vw, 11rem);
  text-align: right;
}
.metrics-stack-card__num {
  color: #fff;
  font-size: clamp(3.75rem, 7vw, 5.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  transition: color 0.3s ease;
}
.metrics-stack-card__unit {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  transition: color 0.3s ease;
}

.metrics-section--light .metrics-section__grid {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.metrics-section--light .metrics-card {
  background-color: rgba(0, 0, 0, 0.035);
}
.metrics-section--light .metrics-card:not(:last-child) {
  border-right-color: rgba(0, 0, 0, 0.1);
}
.metrics-section--light .metrics-card__title,
.metrics-section--light .metrics-card .metric-num {
  color: #000;
}
.metrics-section--light .metrics-card__desc {
  color: rgba(0, 0, 0, 0.62);
}
.metrics-section--light .metrics-stack-card {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.metrics-section--light .metrics-stack-card__index {
  color: rgba(0, 0, 0, 0.18);
}
.metrics-section--light .metrics-stack-card__title, .metrics-section--light .metrics-stack-card__num, .metrics-section--light .metrics-stack-card__unit {
  color: #000;
}
.metrics-section--light .metrics-stack-card:hover {
  border-bottom-color: rgba(37, 99, 235, 0.35);
}
.metrics-section--light .metrics-stack-card:hover .metrics-stack-card__index,
.metrics-section--light .metrics-stack-card:hover .metrics-stack-card__title,
.metrics-section--light .metrics-stack-card:hover .metrics-stack-card__num,
.metrics-section--light .metrics-stack-card:hover .metrics-stack-card__unit {
  color: #2563eb;
}

@media (max-width: 1024px) {
  .metrics-section__split {
    grid-template-columns: 1fr 0.9fr;
  }
  .metrics-section__grid {
    flex-direction: column;
  }
  .metrics-card {
    flex: none;
    min-height: 12.5rem;
    padding: 32px;
  }
  .metrics-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .metrics-card:hover {
    flex: none;
  }
  .metrics-card__desc {
    opacity: 1;
    transform: translateY(0);
  }
  .metrics-stack-card {
    padding: 56px 0;
  }
  .metrics-stack-card__data {
    flex: 0 0 auto;
  }
}
@media (max-width: 768px) {
  .metrics-section__split {
    display: block;
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
  .metrics-split__intro {
    padding-right: 0;
    padding-bottom: 3rem;
  }
  .metrics-split__list {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-left: 0;
  }
  .metrics-split__item {
    padding: 1.5rem 0;
  }
  .metrics-section--dark .metrics-split__list {
    border-top-color: rgba(255, 255, 255, 0.16);
  }
  .metrics-stack-card {
    display: grid;
    grid-template-columns: 3.25rem 1fr;
    column-gap: 16px;
    padding: 2rem 0;
    transform: none;
  }
  .metrics-stack-card:hover {
    transform: none;
  }
  .metrics-stack-card__index {
    display: block;
    margin: 0;
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
    opacity: 0.35;
  }
  .metrics-stack-card__content {
    min-width: 0;
  }
  .metrics-stack-card__title {
    font-size: clamp(1.125rem, 5vw, 1.35rem);
    line-height: 1.35;
  }
  .metrics-stack-card__data {
    grid-column: 2;
    justify-content: flex-start;
    margin-top: 8px;
    text-align: left;
  }
  .metrics-stack-card__num {
    font-size: clamp(2.75rem, 13vw, 3.6rem);
    letter-spacing: -0.04em;
  }
  .metrics-stack-card__unit {
    font-size: 1.1rem;
  }
}
.expand-cards-section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  color: #111827;
}

.expand-cards-grid {
  display: flex;
  gap: 16px;
  height: 32rem;
}

.expand-card {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f3f4f6;
  background-image: var(--expand-card-bg, url("/assets/images/frontend/samples/capability-default.webp"));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  filter: grayscale(0.8);
  transition: flex 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.expand-card:hover {
  flex: 3.5;
  filter: grayscale(0);
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.expand-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.32) 45%, rgba(0, 0, 0, 0.04) 100%);
}
.expand-card__content {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: -6rem;
  z-index: 2;
  opacity: 0;
  transition: bottom 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
}
.expand-card:hover .expand-card__content {
  bottom: 2rem;
  opacity: 1;
}
.expand-card__title {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.expand-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.6;
  word-break: keep-all;
}

.expand-cards-grid:hover .expand-card:not(:hover) {
  opacity: 0.7;
  filter: grayscale(1) blur(1px);
}

.expand-cards-section.expand-cards-section--dark {
  background-color: #070707;
  color: #fff;
}
.expand-cards-section.expand-cards-section--dark .expand-card {
  border: 0;
  background-color: #111827;
  box-shadow: none;
  filter: grayscale(0.6) brightness(0.9);
}
.expand-cards-section.expand-cards-section--dark .expand-card:hover {
  border: 0;
  background-color: #151c26;
  filter: grayscale(0) brightness(1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.expand-cards-section.expand-cards-section--dark .expand-cards-grid:hover .expand-card:not(:hover) {
  opacity: 0.78;
  filter: grayscale(1) brightness(0.58) blur(0.5px);
}
.expand-cards-section.expand-cards-section--dark .expand-card__title {
  color: #fff;
}
.expand-cards-section.expand-cards-section--dark .expand-card__text {
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 1024px) {
  .expand-cards-grid {
    flex-direction: column;
    height: auto;
    gap: 8px;
  }
  .expand-card {
    flex: none;
    height: 14rem;
    filter: grayscale(0);
  }
  .expand-card:hover {
    flex: none;
    transform: scale(1.02);
  }
  .expand-card__content {
    bottom: 1.5rem;
    opacity: 1;
  }
  .expand-card__overlay {
    background: rgba(0, 0, 0, 0.45);
  }
  .expand-cards-section.expand-cards-section--dark .expand-card {
    filter: grayscale(1) brightness(0.72);
  }
  .expand-cards-section.expand-cards-section--dark .expand-card:hover {
    filter: grayscale(0) brightness(1);
  }
}
.partner-loop-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(6.5rem, 10vw, 10rem) 0;
  background: radial-gradient(circle at center, rgba(26, 26, 26, 0.72) 0%, rgba(0, 0, 0, 0.92) 100%), var(--section-bg-image, linear-gradient(180deg, #111827 0%, #020617 100%));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.partner-loop-section .section-header {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(4rem, 6vw, 5.5rem);
}

.partner-loop-section.overlay-dark {
  background: radial-gradient(circle at center, rgba(26, 26, 26, 0.68) 0%, rgba(0, 0, 0, 0.9) 100%), var(--section-bg-image, linear-gradient(180deg, #111827 0%, #020617 100%));
}

.partner-loop-section.overlay-light {
  color: #111827;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.88)), var(--section-bg-image, linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%));
}

.partner-loop-section.overlay-none {
  background: var(--section-bg-image, linear-gradient(180deg, #111827 0%, #020617 100%));
}

.partner-loop {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.partner-loop__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.partner-loop__track:hover {
  animation-play-state: paused;
}

.partner-loop__track--left {
  animation: partner-loop-left 25s linear infinite;
}

.partner-loop__track--right {
  animation: partner-loop-right 25s linear infinite;
}

.partner-loop__card {
  width: 19rem;
  height: 8.25rem;
  margin-right: 2rem;
  padding: 1.25rem 1.5rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  backdrop-filter: blur(0.625rem);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.partner-loop__card:hover {
  background: #fff;
  border-color: #fff;
  transform: scale(1.05);
}
.partner-loop__card:hover .partner-loop__name {
  color: #000;
}
.partner-loop__card:hover .partner-loop__category {
  color: #888;
}

.partner-loop__name {
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.partner-loop__category {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes partner-loop-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes partner-loop-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .partner-loop-section {
    padding: clamp(4.5rem, 14vw, 6rem) 0;
  }
  .partner-loop {
    gap: 1.5rem;
  }
  .partner-loop__card {
    width: 14.5rem;
    height: 6.75rem;
    margin-right: 1rem;
  }
  .partner-loop__name {
    font-size: 1.25rem;
  }
  .partner-loop__category {
    font-size: 0.6875rem;
  }
}
.about .section-header {
  margin-bottom: 32px;
  margin-bottom: var(--sh-gap-y, 64px);
  text-align: var(--sh-align, left);
}
.about .section-header .section-pretitle {
  color: var(--sh-pretitle-color, #2563eb);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.about .section-header .section-title {
  color: var(--sh-title-color, #1f2937);
  font-weight: 700;
  font-size: var(--sh-title-size, clamp(1.75rem, 2.4vw, 2.75rem));
  line-height: var(--sh-title-lh, 1.16);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: var(--sh-measure, 70ch);
  white-space: normal;
  overflow-wrap: anywhere;
}
.about .section-header .section-subtitle {
  color: var(--sh-subtitle-color, #4b5563);
  font-size: var(--sh-subtitle-size, clamp(1rem, 1.05vw, 1.125rem));
  line-height: var(--sh-subtitle-lh, 1.75);
  margin: 0;
  opacity: 0.96;
  max-width: var(--sh-measure, 70ch);
  white-space: normal;
  overflow-wrap: anywhere;
}
.about .section-header .section-pretitle {
  color: #2563eb;
}
.about .features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0 40px;
  padding: 0;
  list-style: none;
}
.about .features li {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.about .features li .feature-icon {
  background: #2563eb;
  color: #fff;
  border-radius: 9999px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.about .features li .feature-text {
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
}
.about .features li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #f3f4f6;
}
.about .features li:hover .feature-text {
  color: #2563eb;
}
.about .c-btn.primary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 32px;
  background: #2563eb;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.about .c-btn.primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.about .c-btn.primary:hover {
  background: #1e40af;
  text-decoration: none;
}
.about .about-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about .about-card:hover {
  transform: scale(1.03);
}
.about .about-card .about-image {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
  display: block;
}

.about-overview-section .about-overview__header {
  max-width: 70ch;
}
.about-overview-section .about-overview__header .section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.about-overview-section .about-overview__header .section-subtitle {
  font-size: 1rem;
  line-height: 1.9;
}
.about-overview-section .about-overview__hero {
  margin: 0 0 64px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.about-overview-section .about-overview__hero-img {
  display: block;
  width: 100%;
  height: clamp(240px, 28vw, 420px);
  object-fit: cover;
}
.about-overview-section .about-overview__content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  .about-overview-section .about-overview__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.about-overview-section .about-overview__desc {
  margin: 0 0 32px;
  font-size: 1rem;
  line-height: 1.9;
  color: #374151;
  max-width: 52ch;
}
.about-overview-section .about-overview__bullets {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.about-overview-section .about-overview__bullets li {
  position: relative;
  padding-left: 16px;
  color: #374151;
  line-height: 1.6;
}
.about-overview-section .about-overview__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, #2563eb 70%, #fff);
}
.about-overview-section .about-overview__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-overview-section .profile-card__head {
  padding: 32px;
  border-bottom: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
}
.about-overview-section .profile-card__title {
  margin: 0 0 4px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.about-overview-section .profile-card__desc {
  margin: 0;
  font-size: 0.875rem;
  color: #4b5563;
}
.about-overview-section .profile-list {
  padding: 0 32px;
}
.about-overview-section .keyword-row {
  padding: 24px 32px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-overview-section .note-card {
  margin-top: 24px;
}
.about-overview-section .note-card .note-title {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}
.about-overview-section .note-card .note-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #374151;
}

.ceo-message-section.modern-style {
  --section-bg: #ffffff;
  --panel: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --line: rgba(17, 24, 39, 0.08);
  --brand: #2563eb;
  color: var(--text);
}
.ceo-message-section.modern-style .ceo-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .ceo-message-section.modern-style .ceo-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.ceo-message-section.modern-style .ceo-visual {
  position: relative;
}
.ceo-message-section.modern-style .ceo-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid color-mix(in srgb, var(--line) 85%, #000);
  background: radial-gradient(900px 420px at 20% 10%, color-mix(in srgb, var(--brand) 10%, #fff), transparent 60%), #f9fafb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.ceo-message-section.modern-style .ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
  transform: scale(1.02);
}
.ceo-message-section.modern-style .ceo-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.28));
  pointer-events: none;
}
.ceo-message-section.modern-style .ceo-content {
  max-width: 680px;
}
.ceo-message-section.modern-style .ceo-message {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}
.ceo-message-section.modern-style .ceo-message p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
}
.ceo-message-section.modern-style .ceo-points {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.ceo-message-section.modern-style .ceo-points li {
  border: 1px solid color-mix(in srgb, var(--line) 88%, #000);
  border-radius: 12px;
  background: color-mix(in srgb, #fff 94%, var(--brand));
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: baseline;
}
@media (max-width: 768px) {
  .ceo-message-section.modern-style .ceo-points li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.ceo-message-section.modern-style .ceo-points strong {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.ceo-message-section.modern-style .ceo-points span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.ceo-message-section.modern-style .ceo-sign {
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--line) 92%, #000);
  display: grid;
  gap: 4px;
}
.ceo-message-section.modern-style .ceo-sign__name {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.ceo-message-section.modern-style .ceo-sign__meta {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--muted) 90%, #000);
  line-height: 1.6;
}

/* -----------------------------------------------------------
  FEATURE COMPONENT

  HTML 기준:
  <section class="section feature feature--info">
    <div class="feature-grid feature-grid--count-3">
      <article class="feature-card feature-card--md feature-card--elevated">
        ...
      </article>
    </div>
  </section>

  base:
  - 기본 .feature-card 는 이미지 오버레이 카드

  variants:
  - .feature--card : 이미지 상단 + 본문 하단 흰색 카드
  - .feature--dark : 다크 배경형 카드
  - .feature--info : 제품/정보 설명형 카드

  effects:
  - .feature-card--elevated
  - .feature-card--reveal
----------------------------------------------------------- */
/* -----------------------------------------------------------
  Root
----------------------------------------------------------- */
.feature {
  --feature-card-min-h: 300px;
  --feature-card-radius: 16px;
  --feature-card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --feature-overlay-1: rgba(10, 24, 40, 0.62);
  --feature-overlay-2: rgba(10, 24, 40, 0.4);
  --feature-overlay-3: rgba(10, 24, 40, 0.18);
  --feature-overlay-4: rgba(10, 24, 40, 0);
  --feature-hover-scale: 1.06;
  --feature-hover-scale-tablet: 1.05;
  --feature-hover-scale-mobile: 1.03;
}

/* -----------------------------------------------------------
  Grid
----------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.feature-grid--count-1 {
  grid-template-columns: 1fr;
}

.feature-grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid--count-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* -----------------------------------------------------------
  Base Card - Overlay Type
----------------------------------------------------------- */
.feature-card {
  position: relative;
  min-height: var(--feature-card-min-h);
  overflow: hidden;
  border-radius: var(--feature-card-radius);
  background: #111827;
  box-shadow: var(--feature-card-shadow);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--feature-overlay-1) 0%, var(--feature-overlay-2) 40%, var(--feature-overlay-3) 70%, var(--feature-overlay-4) 100%);
}
.feature-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.06);
  transform: scale(1.001);
  transition: transform 0.3s ease, filter 0.3s ease;
  will-change: transform;
}
.feature-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}
.feature-card__kicker {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
}
.feature-card__title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}
.feature-card__desc {
  margin-top: 32px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}
.feature-card:hover .feature-card__media img {
  transform: scale(var(--feature-hover-scale));
  filter: brightness(0.9) contrast(1.06);
}
.feature-card--xl {
  min-height: calc(var(--feature-card-min-h) + 80px);
}
.feature-card--md {
  min-height: var(--feature-card-min-h);
}

/* -----------------------------------------------------------
  Variant: White Picture Card
----------------------------------------------------------- */
.feature--card,
.feature-section--card {
  --feature-card-radius: 12px;
}
.feature--card .feature-grid,
.feature-section--card .feature-grid {
  gap: 32px;
}
.feature--card .feature-card,
.feature-section--card .feature-card {
  min-height: auto;
  border: 1px solid #e5e7eb;
  border-radius: var(--feature-card-radius);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.feature--card .feature-card::before,
.feature-section--card .feature-card::before {
  display: none;
}
.feature--card .feature-card__media,
.feature-section--card .feature-card__media {
  position: relative;
  inset: auto;
  z-index: auto;
  aspect-ratio: 1/1.3;
  border-radius: var(--feature-card-radius) var(--feature-card-radius) 0 0;
  background: #f9fafb;
  overflow: hidden;
}
.feature--card .feature-card__media img,
.feature-section--card .feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature--card .feature-card__body,
.feature-section--card .feature-card__body {
  position: relative;
  z-index: auto;
  display: block;
  min-height: auto;
  padding: 24px;
  text-align: center;
  color: #111827;
  text-shadow: none;
  background: #fff;
}
.feature--card .feature-card__kicker,
.feature-section--card .feature-card__kicker {
  margin-bottom: 4px;
  font-size: 1.25rem;
  color: #2563eb;
}
.feature--card .feature-card__title,
.feature-section--card .feature-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}
.feature--card .feature-card__desc,
.feature-section--card .feature-card__desc {
  display: none;
}
.feature--card .feature-card:hover .feature-card__media img,
.feature-section--card .feature-card:hover .feature-card__media img {
  transform: scale(1.04);
  filter: none;
}
.feature--card .feature-card--xl, .feature--card .feature-card--md,
.feature-section--card .feature-card--xl,
.feature-section--card .feature-card--md {
  min-height: auto;
}

/* -----------------------------------------------------------
  Variant: Dark
----------------------------------------------------------- */
.feature--dark,
.feature-section--dark {
  background: #0a0a0a;
  color: #fff;
}
.feature--dark .feature-grid,
.feature-section--dark .feature-grid {
  gap: 24px;
}
.feature--dark .feature-card,
.feature-section--dark .feature-card {
  min-height: 340px;
  border: 1px solid #222;
  background: #111;
  box-shadow: none;
}
.feature--dark .feature-card::before,
.feature-section--dark .feature-card::before {
  display: none;
}
.feature--dark .feature-card__media,
.feature-section--dark .feature-card__media {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.feature--dark .feature-card__media img,
.feature-section--dark .feature-card__media img {
  filter: none;
  transform: scale(1);
}
.feature--dark .feature-card__body,
.feature-section--dark .feature-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  min-height: auto;
  padding: 32px;
  text-shadow: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0));
}
.feature--dark .feature-card__kicker,
.feature-section--dark .feature-card__kicker {
  margin-bottom: 4px;
  font-size: 0.75rem;
  color: #2563eb;
}
.feature--dark .feature-card__title,
.feature-section--dark .feature-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.feature--dark .feature-card__desc,
.feature-section--dark .feature-card__desc {
  display: none;
}
.feature--dark .feature-card:hover,
.feature-section--dark .feature-card:hover {
  border-color: #2563eb;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}
.feature--dark .feature-card:hover .feature-card__media,
.feature-section--dark .feature-card:hover .feature-card__media {
  opacity: 1;
}
.feature--dark .feature-card:hover .feature-card__media img,
.feature-section--dark .feature-card:hover .feature-card__media img {
  transform: scale(1.04);
  filter: none;
}
.feature--dark .feature-card--xl, .feature--dark .feature-card--md,
.feature-section--dark .feature-card--xl,
.feature-section--dark .feature-card--md {
  min-height: 340px;
}

/* -----------------------------------------------------------
  Variant: Info / Product Lineup
----------------------------------------------------------- */
.feature--info,
.feature-section--info {
  background-color: #fff;
  color: #111827;
}
.feature--info .feature-grid,
.feature-section--info .feature-grid {
  gap: 28px;
}
.feature--info .feature-card,
.feature-section--info .feature-card {
  position: relative;
  min-height: 520px;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.feature--info .feature-card:hover,
.feature-section--info .feature-card:hover {
  transform: translateY(-10px);
  border-color: #b8c7e6;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}
.feature--info .feature-card::before,
.feature-section--info .feature-card::before {
  display: none;
}
.feature--info .feature-card__media,
.feature-section--info .feature-card__media {
  position: relative;
  inset: auto;
  z-index: auto;
  height: 250px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, rgba(11, 92, 255, 0.12), rgba(15, 23, 42, 0.03)), #f9fafb;
  overflow: hidden;
}
.feature--info .feature-card__media img,
.feature-section--info .feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature--info .feature-card__body,
.feature-section--info .feature-card__body {
  position: relative;
  z-index: auto;
  display: block;
  min-height: auto;
  padding: 36px 34px 40px;
  color: #111827;
  text-shadow: none;
  background: #fff;
}
.feature--info .feature-card__kicker,
.feature-section--info .feature-card__kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #2563eb;
}
.feature--info .feature-card__title,
.feature-section--info .feature-card__title {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
}
.feature--info .feature-card__desc,
.feature-section--info .feature-card__desc {
  margin: 0;
  min-height: 84px;
  font-size: 16px;
  line-height: 1.75;
  color: #4b5563;
}
.feature--info .feature-card:hover .feature-card__media img,
.feature-section--info .feature-card:hover .feature-card__media img {
  transform: scale(1.04);
  filter: none;
}
.feature--info .feature-card--xl, .feature--info .feature-card--md,
.feature-section--info .feature-card--xl,
.feature-section--info .feature-card--md {
  min-height: 520px;
}

/* -----------------------------------------------------------
  Effect: Elevated
----------------------------------------------------------- */
.feature-card--elevated {
  transform: translateY(0);
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.35s ease;
}
.feature-card--elevated:hover {
  z-index: 5;
  transform: translateY(-18px);
  border-color: #2563eb;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
}
.feature-card--elevated:hover .feature-card__media img {
  transform: scale(1.035);
}

/* -----------------------------------------------------------
  Effect: Reveal
----------------------------------------------------------- */
.feature-card--reveal::before {
  opacity: 0;
  transition: opacity 0.35s ease;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.82) 100%);
}
.feature-card--reveal .feature-card__body {
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card--reveal:hover::before {
  opacity: 1;
}
.feature-card--reveal:hover .feature-card__body {
  opacity: 1;
  transform: translateY(0);
}
.feature-card--reveal:hover .feature-card__media img {
  transform: scale(1.08);
  filter: brightness(0.72) contrast(1.08);
}

/* -----------------------------------------------------------
  Responsive
----------------------------------------------------------- */
@media (max-width: 1024px) {
  .feature,
  .feature-section {
    --feature-card-min-h: 240px;
  }
  .feature-grid {
    gap: 24px;
  }
  .feature-grid--count-3,
  .feature-grid--count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-card__body {
    padding: 32px;
  }
  .feature-card:hover .feature-card__media img {
    transform: scale(var(--feature-hover-scale-tablet));
  }
  .feature--dark .feature-card,
  .feature-section--dark .feature-card {
    min-height: 320px;
  }
  .feature--dark .feature-card--xl, .feature--dark .feature-card--md,
  .feature-section--dark .feature-card--xl,
  .feature-section--dark .feature-card--md {
    min-height: 320px;
  }
  .feature-card--elevated:hover {
    transform: translateY(-7px);
  }
  .feature-card--elevated:hover .feature-card__media img {
    transform: scale(1.035);
  }
}
@media (max-width: 768px) {
  .feature,
  .feature-section {
    --feature-card-min-h: 260px;
  }
  .feature-grid,
  .feature-grid--count-1,
  .feature-grid--count-2,
  .feature-grid--count-3,
  .feature-grid--count-4 {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    gap: 16px;
  }
  .feature-card--xl, .feature-card--md {
    min-height: var(--feature-card-min-h);
  }
  .feature-card:hover .feature-card__media img {
    transform: scale(var(--feature-hover-scale-mobile));
  }
  .feature--card .feature-card__media,
  .feature-section--card .feature-card__media {
    aspect-ratio: 1/0.75;
  }
  .feature--card .feature-card__body,
  .feature-section--card .feature-card__body {
    padding: 16px;
  }
  .feature--card .feature-card__title,
  .feature-section--card .feature-card__title {
    font-size: 1.125rem;
  }
  .feature--info .feature-card,
  .feature-section--info .feature-card {
    min-height: auto;
  }
  .feature--info .feature-card__media,
  .feature-section--info .feature-card__media {
    height: 220px;
  }
  .feature--info .feature-card__body,
  .feature-section--info .feature-card__body {
    padding: 24px;
  }
  .feature--info .feature-card__title,
  .feature-section--info .feature-card__title {
    font-size: 24px;
  }
  .feature--info .feature-card__desc,
  .feature-section--info .feature-card__desc {
    min-height: auto;
  }
  .feature--info .feature-card--xl, .feature--info .feature-card--md,
  .feature-section--info .feature-card--xl,
  .feature-section--info .feature-card--md {
    min-height: auto;
  }
  .feature--dark .feature-card,
  .feature-section--dark .feature-card {
    min-height: 300px;
  }
  .feature--dark .feature-card--xl, .feature--dark .feature-card--md,
  .feature-section--dark .feature-card--xl,
  .feature-section--dark .feature-card--md {
    min-height: 300px;
  }
  .feature-card--elevated:hover {
    transform: translateY(-4px);
  }
  .feature-card--elevated:hover .feature-card__media img {
    transform: scale(1.025);
  }
}
.location-section .location-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}
.location-section .location-map {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  background: #f3f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.location-section .location-map iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 46vw, 460px);
  border: 0;
}
@media (max-width: 1024px) {
  .location-section .location-map iframe {
    height: clamp(280px, 58vw, 360px);
  }
}
.location-section .location-info {
  display: grid;
  gap: 32px;
  position: static;
  overflow: visible;
  background: transparent;
}
.location-section .location-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #111827;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}
@media (max-width: 1024px) {
  .location-section .location-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .location-section .location-list {
    grid-template-columns: 1fr;
  }
}
.location-section .location-item {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid rgba(17, 24, 39, 0.08);
}
.location-section .location-item:last-child {
  border-right: 0;
}
@media (max-width: 1024px) {
  .location-section .location-item {
    min-height: auto;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }
  .location-section .location-item:nth-child(2n) {
    border-right: 0;
  }
  .location-section .location-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}
@media (max-width: 480px) {
  .location-section .location-item {
    border-right: 0;
  }
  .location-section .location-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }
  .location-section .location-item:last-child {
    border-bottom: 0;
  }
}
.location-section .location-label {
  margin: 0 0 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
}
.location-section .location-value {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
  color: #1f2937;
  word-break: keep-all;
}
.location-section .location-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, #111827 25%, transparent);
}
.location-section .location-value a:hover {
  color: #2563eb;
  border-bottom-color: color-mix(in srgb, #2563eb 60%, transparent);
}
@media (max-width: 1024px) {
  .location-section .location-value {
    font-size: 0.875rem;
    overflow-wrap: anywhere;
  }
}
.location-section .location-desc {
  margin: 4px 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4b5563;
}
@media (max-width: 1024px) {
  .location-section .location-desc {
    font-size: 0.75rem;
  }
}
.location-section .location-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 480px) {
  .location-section .location-actions {
    gap: 8px;
  }
  .location-section .location-actions > * {
    flex: 1 1 100%;
  }
}

.biz-primary-section .biz-primary {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  .biz-primary-section .biz-primary {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.biz-primary-section .biz-primary__bullets {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.biz-primary-section .biz-primary__bullets li {
  position: relative;
  padding-left: 16px;
  color: #374151;
  line-height: 1.6;
}
.biz-primary-section .biz-primary__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, #2563eb 70%, #fff);
}
.biz-primary-section .biz-primary__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 32px;
}
.biz-primary-section .biz-primary__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.biz-primary-section .biz-media-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.biz-primary-section .biz-media-card .biz-thumb {
  height: 420px;
  background: url("/assets/common/images/business1-ce21df226bf9bfac865c1f08116b1084.webp") center/cover no-repeat;
  border: 0;
  box-shadow: none;
}
.biz-primary-section .biz-media-card__bottom {
  padding: 32px;
}
.biz-primary-section .biz-media-card__caption {
  margin: 0 0 24px;
  font-size: 0.875rem;
  color: #4b5563;
}
.biz-primary-section .biz-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 480px) {
  .biz-primary-section .biz-stats {
    grid-template-columns: 1fr;
  }
}
.biz-primary-section .stat {
  padding: 16px;
  border-radius: 12px;
  background: color-mix(in srgb, #2563eb 6%, #fff);
  border: 1px solid color-mix(in srgb, #2563eb 12%, rgba(17, 24, 39, 0.08));
}
.biz-primary-section .stat .stat__label {
  display: block;
  font-size: 0.75rem;
  color: #4b5563;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.biz-primary-section .stat .stat__value {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.biz-secondary-section {
  /* ======================
     Section Tokens
  ====================== */
  --section-bg: #fff;
  --panel-bg: #fff;
  --card-bg: #fbfcff;
  --border: color-mix(in srgb, rgba(17, 24, 39, 0.08) 92%, #000);
  --text: #111827;
  --muted: #374151;
  --subtle: #6b7280;
  --brand: #2563eb;
  background: var(--section-bg);
}
.biz-secondary-section .biz-secondary {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 96px;
  align-items: center;
}
.biz-secondary-section .biz-media-stack {
  position: relative;
  border-radius: 16px;
}
.biz-secondary-section .biz-thumb {
  height: 620px;
  overflow: hidden;
  background: url("/assets/common/images/business2-1ef2a84d6f819f3b8e233dfbdcde9147.webp") center/cover no-repeat;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1), 0 2px 10px rgba(15, 23, 42, 0.06);
}
.biz-secondary-section .biz-mini-card {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: min(400px, 92%);
  padding: 48px;
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12), 0 2px 10px rgba(15, 23, 42, 0.06);
}
.biz-secondary-section .biz-mini-card__title {
  margin: 0 0 24px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.biz-secondary-section .biz-mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.biz-secondary-section .biz-mini-list li {
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: -0.01em;
}
.biz-secondary-section .biz-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 80%, #fff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 12%, #fff);
}
.biz-secondary-section .biz-secondary__desc {
  margin: 0 0 48px;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--muted);
  max-width: 62ch;
  letter-spacing: -0.01em;
}
.biz-secondary-section .biz-secondary__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 48px;
}
.biz-secondary-section .biz-point {
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.biz-secondary-section .biz-point__k {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
}
.biz-secondary-section .biz-point__v {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.biz-secondary-section .biz-point__desc {
  margin: 8px 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.biz-secondary-section .biz-secondary__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .biz-secondary-section .biz-secondary {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .biz-secondary-section .biz-mini-card {
    position: static;
    width: 100%;
    margin-top: 32px;
    right: auto;
    bottom: auto;
  }
}
@media (max-width: 768px) {
  .biz-secondary-section .biz-thumb {
    height: 360px;
  }
}
@media (max-width: 480px) {
  .biz-secondary-section .biz-secondary__grid {
    grid-template-columns: 1fr;
  }
}

.business-zigzag__list {
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.business-zigzag__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.business-zigzag__item:nth-child(even) .business-zigzag__image {
  order: 2;
}
.business-zigzag__image {
  overflow: hidden;
  border-radius: 28px;
  background: #e5e7eb;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}
.business-zigzag__image img {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
}
.business-zigzag__number {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 800;
  color: #2563eb;
}
.business-zigzag__content h3 {
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #111827;
}
.business-zigzag__content p {
  margin-bottom: 16px;
  font-size: 17px;
  color: #6b7280;
}
.business-zigzag__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .business-zigzag {
    padding: 76px 0;
  }
  .business-zigzag__item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .business-zigzag__item:nth-child(even) .business-zigzag__image {
    order: 0;
  }
  .business-zigzag__image img {
    height: 320px;
  }
}
@media (max-width: 480px) {
  .business-zigzag__list {
    gap: 64px;
  }
  .business-zigzag__content h3 {
    font-size: 26px;
  }
  .business-zigzag__content p {
    font-size: 1rem;
  }
  .business-zigzag__image {
    border-radius: 22px;
  }
  .business-zigzag__image img {
    height: 280px;
  }
}
.business-wide__image {
  overflow: hidden;
  border-radius: 34px;
  background: #e5e7eb;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
}
.business-wide__image img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.3s;
}
.business-wide__image:hover img {
  transform: scale(1.03);
}
.business-wide__content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  margin-top: 64px;
}
.business-wide__title h3 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: #111827;
}
.business-wide__text p {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
}
.business-wide__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .business-wide {
    padding: 64px 0 64px;
  }
  .business-wide__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .business-wide__image img {
    height: 380px;
  }
  .business-wide__title h3 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .business-wide__image {
    border-radius: 24px;
  }
  .business-wide__image img {
    height: 260px;
  }
  .business-wide__title h3 {
    font-size: 28px;
  }
  .business-wide__text p {
    font-size: 1rem;
  }
}
.business-brand-story__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.business-brand-story__item {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: #fff;
}
.business-brand-story__item:nth-child(even) {
  flex-direction: row-reverse;
}
.business-brand-story__image {
  flex: 1;
  overflow: hidden;
  min-height: 400px;
  border-radius: 18px;
  background: #e5e7eb;
}
.business-brand-story__image img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.business-brand-story__item:hover .business-brand-story__image img {
  transform: scale(1.035);
}
.business-brand-story__content {
  flex: 1;
}
.business-brand-story__number {
  display: block;
  margin-bottom: 16px;
  font-size: 0.875rem;
  font-weight: 800;
  color: #2563eb;
}
.business-brand-story__content h3 {
  margin-bottom: 24px;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.04em;
  color: #111827;
}
.business-brand-story__content p {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
}
.business-brand-story__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 48px;
  margin-top: 8px;
  padding: 0 24px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.business-brand-story__button:hover {
  background: #374151;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .business-brand-story {
    padding: 64px 0 64px;
  }
  .business-brand-story__item, .business-brand-story__item:nth-child(even) {
    flex-direction: column;
    align-items: stretch;
  }
  .business-brand-story__image {
    min-height: auto;
  }
  .business-brand-story__image img {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .business-brand-story__list {
    gap: 48px;
  }
  .business-brand-story__item {
    padding: 24px;
    border-radius: 22px;
  }
  .business-brand-story__image {
    border-radius: 16px;
  }
  .business-brand-story__image img {
    height: 260px;
  }
  .business-brand-story__content h3 {
    font-size: 27px;
  }
  .business-brand-story__content p {
    font-size: 1rem;
  }
  .business-brand-story__button {
    width: 100%;
  }
}
.business-image-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 32px;
}
.business-image-card__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 44px;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  background: #fff;
}
.business-image-card__number {
  display: block;
  margin-bottom: 16px;
  font-size: 0.875rem;
  font-weight: 800;
  color: #2563eb;
}
.business-image-card__content h3 {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #111827;
}
.business-image-card__content p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: #6b7280;
}
.business-image-card__content p:last-child {
  margin-bottom: 0;
}
.business-image-card__image {
  overflow: hidden;
  margin-top: auto;
  padding-top: 32px;
  border-radius: 22px;
  background: transparent;
}
.business-image-card__image img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  background: #e5e7eb;
  transition: transform 0.3s ease;
}
.business-image-card__item:hover .business-image-card__image img {
  transform: scale(1.035);
}

@media (max-width: 1024px) {
  .business-image-card {
    padding: 64px 0 64px;
  }
  .business-image-card__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .business-image-card__item {
    padding: 24px;
    border-radius: 24px;
  }
  .business-image-card__image {
    padding-top: 24px;
  }
  .business-image-card__image img {
    height: 230px;
    border-radius: 16px;
  }
  .business-image-card__content h3 {
    font-size: 24px;
  }
}
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  color: #fff;
  background: #111;
}
.cta .cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.8s ease;
  will-change: transform;
}
.cta .cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.18) 0%, rgba(8, 12, 18, 0.58) 100%);
}
.cta .cta-marquee {
  display: none;
}
.cta .container,
.cta .cta-box {
  position: relative;
  z-index: 2;
}
.cta .cta-box {
  max-width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) 0;
}
.cta h2 {
  margin: 0 0 clamp(14px, 1.4vw, 16px);
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}
.cta p {
  max-width: 60ch;
  margin: 0 auto clamp(24px, 2vw, 32px);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}
.cta .c-btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cta .c-btn--outline {
  --c-btn-outline-fg: #fff;
  --c-btn-outline-bd: rgba(255, 255, 255, 0.52);
  --c-btn-hover-bg: rgba(255, 255, 255, 0.12);
  --c-btn-hover-fg: #fff;
  --c-btn-hover-bd: rgba(255, 255, 255, 0.8);
}
.cta .c-btn--ghost {
  --c-btn-ghost-fg: #fff;
  --c-btn-hover-bg: rgba(255, 255, 255, 0.1);
  --c-btn-hover-fg: #fff;
}
.cta.cta--parallax {
  --cta-min-h: 360px;
  --cta-pad-y: clamp(84px, 8vw, 132px);
  --cta-ov: 0.58;
  --cta-ov-2: 0.36;
  min-height: var(--cta-min-h);
  background-image: var(--cta-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.cta.cta--parallax .cta-bg {
  display: none;
}
.cta.cta--parallax .cta-overlay {
  background: radial-gradient(1200px 480px at 55% 35%, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, var(--cta-ov-2))), rgba(0, 0, 0, var(--cta-ov));
}
.cta.cta--parallax .cta-box {
  max-width: 760px;
  padding: var(--cta-pad-y) 0;
}
.cta.cta--parallax h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 2.4vw, 44px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
  word-break: keep-all;
  color: rgba(255, 255, 255, 0.88);
}
.cta.cta--parallax p {
  margin: 0 auto 32px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.75;
  word-break: keep-all;
  color: rgba(255, 255, 255, 0.88);
}
.cta.cta--parallax .c-btn-group {
  gap: 8px;
}
.cta.cta--parallax .c-btn-group .c-btn {
  transition: transform 160ms ease, filter 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.cta.cta--parallax .c-btn--primary {
  color: #fff;
  background: color-mix(in srgb, #0ea5e9 86%, #000);
  border: 1px solid color-mix(in srgb, #0ea5e9 30%, rgba(255, 255, 255, 0.5));
}
.cta.cta--parallax .c-btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}
.cta.cta--parallax .c-btn--outline {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(8px);
}
.cta.cta--parallax .c-btn--outline:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.52);
}
.cta.cta--zoom .cta-overlay {
  background: linear-gradient(180deg, rgba(5, 10, 16, 0.12) 0%, rgba(5, 10, 16, 0.62) 100%), radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 42%);
}
.cta.cta--zoom:hover .cta-bg {
  transform: scale(1.08);
}
.cta.cta--zoom .cta-box {
  max-width: 880px;
}
.cta.cta--glass .cta-overlay {
  background: linear-gradient(135deg, rgba(9, 14, 22, 0.22) 0%, rgba(9, 14, 22, 0.68) 100%);
}
.cta.cta--glass .cta-box {
  max-width: 860px;
  margin: clamp(56px, 6vw, 88px) auto;
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.06) 100%);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateZ(0);
  will-change: backdrop-filter;
}
.cta.cta--glass h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.4rem);
}
.cta.cta--glass p {
  max-width: 56ch;
}
.cta.cta--split {
  text-align: left;
}
.cta.cta--split .cta-overlay {
  background: linear-gradient(90deg, rgba(7, 11, 17, 0.82) 0%, rgba(7, 11, 17, 0.58) 46%, rgba(7, 11, 17, 0.18) 100%);
}
.cta.cta--split .cta-box {
  max-width: 720px;
  margin: 0;
  padding: clamp(84px, 10vw, 132px) 0;
}
.cta.cta--split p {
  max-width: 54ch;
  margin-right: 0;
  margin-left: 0;
}
.cta.cta--split .c-btn-group {
  justify-content: flex-start;
}
.cta.cta--box {
  padding: clamp(56px, 6vw, 88px) 0;
  color: #111827;
  background: transparent;
  text-align: left;
}
.cta.cta--box .cta-bg,
.cta.cta--box .cta-overlay,
.cta.cta--box .cta-marquee {
  display: none;
}
.cta.cta--box .cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 100%;
  padding: 54px 60px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}
.cta.cta--box h2 {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: #111827;
  text-shadow: none;
}
.cta.cta--box p {
  max-width: none;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  text-shadow: none;
}
.cta.cta--box .c-btn-group {
  flex: 0 0 auto;
  justify-content: flex-end;
}
.cta.cta--box .c-btn-group .c-btn {
  min-width: 120px;
}
@media (max-width: 768px) {
  .cta.cta--box {
    padding: 32px 0;
  }
  .cta.cta--box .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 28px;
    border-radius: 26px;
  }
  .cta.cta--box h2 {
    font-size: 24px;
  }
  .cta.cta--box .c-btn-group {
    width: 100%;
    justify-content: flex-start;
  }
  .cta.cta--box .c-btn-group .c-btn {
    width: 100%;
  }
}
.cta.cta--marquee {
  min-height: 420px;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.12), transparent 32rem), linear-gradient(to bottom, #070707 0%, #080b12 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cta.cta--marquee .cta-bg {
  display: none;
}
.cta.cta--marquee .cta-overlay {
  background: radial-gradient(720px 320px at 50% 48%, rgba(255, 255, 255, 0.06), transparent 70%), linear-gradient(180deg, rgba(7, 7, 7, 0.2) 0%, rgba(7, 7, 7, 0.92) 100%);
}
.cta.cta--marquee .cta-marquee {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  display: flex;
  width: 200%;
  pointer-events: none;
  transform: translateY(-50%);
  animation: cta-marquee 24s linear infinite;
  will-change: transform;
}
.cta.cta--marquee .cta-marquee span {
  flex: 0 0 50%;
  padding-right: 0.2em;
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
}
.cta.cta--marquee .cta-box {
  max-width: 760px;
  padding: clamp(96px, 10vw, 148px) 0;
}
.cta.cta--marquee h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}
.cta.cta--marquee p {
  color: rgba(255, 255, 255, 0.72);
}
.cta.cta--marquee .c-btn-group .c-btn {
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.cta.cta--marquee .c-btn--primary {
  color: #070707;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.96);
}
.cta.cta--marquee .c-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(255, 255, 255, 0.18);
}
.cta.cta--marquee .c-btn--outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}
.cta.cta--marquee .c-btn--outline:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.56);
}
@media (max-width: 1023px) {
  .cta .cta-box {
    padding: clamp(56px, 8vw, 84px) 0;
  }
  .cta.cta--parallax {
    background-attachment: scroll;
    background-position: center 40%;
  }
  .cta.cta--glass .cta-box {
    margin: 40px auto;
    padding: 32px 24px;
    border-radius: 22px;
  }
  .cta.cta--split {
    text-align: center;
  }
  .cta.cta--split .cta-overlay {
    background: linear-gradient(180deg, rgba(7, 11, 17, 0.3) 0%, rgba(7, 11, 17, 0.72) 100%);
  }
  .cta.cta--split .cta-box {
    max-width: 100%;
    margin: 0 auto;
  }
  .cta.cta--split p {
    margin-right: auto;
    margin-left: auto;
  }
  .cta.cta--split .c-btn-group {
    justify-content: center;
  }
  .cta.cta--marquee {
    min-height: 360px;
  }
  .cta.cta--marquee .cta-box {
    padding: clamp(72px, 10vw, 112px) 0;
  }
  .cta.cta--marquee .cta-marquee span {
    font-size: clamp(4rem, 16vw, 9rem);
  }
}
@media (max-width: 767px) {
  .cta h2 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  .cta p {
    font-size: 0.95rem;
  }
  .cta .c-btn-group {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 320px);
    margin: 0 auto;
  }
  .cta .c-btn-group .c-btn {
    width: 100%;
  }
  .cta.cta--parallax {
    --cta-min-h: 320px;
    --cta-pad-y: clamp(72px, 10vw, 104px);
  }
  .cta.cta--marquee {
    min-height: 340px;
  }
  .cta.cta--marquee .cta-marquee {
    animation-duration: 18s;
  }
  .cta.cta--marquee .cta-marquee span {
    font-size: clamp(3.5rem, 22vw, 7rem);
  }
}

@keyframes cta-marquee {
  from {
    transform: translateX(0) translateY(-50%);
  }
  to {
    transform: translateX(-50%) translateY(-50%);
  }
}
.container {
  --container-max: 1600px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container {
    --container-px: 16px;
  }
}

.site-header .site-header__container {
  --container-max: 1600px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .site-header .site-header__container {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .site-header .site-header__container {
    --container-px: 16px;
  }
}
