@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: #fe7201;
  --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: #fe7201;
}
.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: #fe7201;
  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: #fe7201;
  --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: #fe7201;
}
.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: #fe7201;
}
.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: #fe7201;
}
.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: #fe7201;
  }
  .site-header:not(.site-header--solid-dark).site-header--dark .site-header__logo .site-header__logo-text {
    color: #fe7201;
  }
}

.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, #d86100 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: #ff9b47;
}
.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: #fe7201;
  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: #fe7201;
}
.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: #d86100;
  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: #fe7201;
}
.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: #fe7201;
  overflow-wrap: anywhere;
}
.site-footer--basic .site-footer__link:visited {
  color: #fe7201;
}
.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: #fe7201;
}
.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: #fe7201;
  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, #d86100 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, #ff9b47 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: #fe7201;
}

.popup-layer__close {
  border: 0;
  background: none;
  padding: 4px 8px;
  font-size: 0.875rem;
  color: #fe7201;
  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, #fe7201, #fe7d15);
  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: #fe7201;
  border-color: #fe7201;
  color: #f9fafb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}
.system-maint__button--primary:hover {
  background: #ef6b01;
  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: #fe7201;
  --c-btn-fg: #fff;
  --c-btn-bd: transparent;
  --c-btn-hover-bg: #fe7201;
  --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: #fe7201;
  --c-btn-fg: #fff;
  --c-btn-bd: transparent;
  --c-btn-hover-bg: #fe7201;
  --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 #fe7201;
  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: #fe7201;
  outline: none;
  box-shadow: 0 0 0 3px rgba(254, 114, 1, 0.09);
}
.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: #fe7201;
}

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

.c-checkbox a {
  color: #fe7201;
  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: #fe7201;
  --badge-bg: color-mix(in srgb, #fe7201 10%, #fff);
  --badge-border: color-mix(in srgb, #fe7201 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, #fe7201 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, #fe7201 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: #fe7201;
  background: #ff9b47;
  color: #d86100;
}
.c-pagination__link:focus-visible {
  outline: 2px solid #fe7201;
  outline-offset: 2px;
}

.c-pagination__item.is-active .c-pagination__link {
  border-color: #fe7201;
  background: #fe7201;
  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: #fe7201;
  --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, #fe7201);
  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: #fe7201;
}

.tone-primary-dark {
  color: #d86100;
}

.tone-primary-light {
  color: #ff9b47;
}

.tone-primary-soft {
  color: rgba(254, 114, 1, 0.09);
}

.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, #fe7201 0%, #ff9b47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tone-gradient-info {
  background: linear-gradient(135deg, #fe7201 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: #fe7201;
}

.surface-primary-dark {
  background: #d86100;
}

.surface-primary-light {
  background: #ff9b47;
}

.surface-primary-soft {
  background: rgba(254, 114, 1, 0.09);
}

.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: #fe7201;
  --theme-color-dark: #d86100;
  --theme-color-light: #ff9b47;
  --theme-soft: rgba(254, 114, 1, 0.09);
  --theme-border: color-mix(in srgb, #fe7201 22%, #e5e7eb);
  --theme-text: #d86100;
  --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: #fe7201;
  text-underline-offset: 3px;
}
.policy-page__content a:hover {
  color: #d86100;
}

@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--video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 72vh;
  --hero-poster-pc: none;
  --hero-poster-mobile: var(--hero-poster-pc);
  --hero-video-brightness: 0.95;
  --hero-video-saturate: 0.92;
  --hero-video-contrast: 1.02;
  --hero-bloom: radial-gradient(
    120% 90% at 18% 18%,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  --hero-grade:
    linear-gradient(
      90deg,
      rgba(3, 5, 9, 0.95) 0%,
      rgba(3, 5, 9, 0.88) 34%,
      rgba(3, 5, 9, 0.62) 60%,
      rgba(3, 5, 9, 0.34) 82%,
      rgba(3, 5, 9, 0.28) 100%
    ),
    linear-gradient(180deg, rgba(3, 5, 9, 0.4) 0%, rgba(3, 5, 9, 0.72) 100%);
  --hero-tint: linear-gradient(0deg, rgba(8, 12, 20, 0.22), rgba(8, 12, 20, 0.22));
  --hero-overlay: linear-gradient(rgba(8, 12, 20, 0.35), rgba(8, 12, 20, 0.35));
  --hero-noise-opacity: 0.02;
}
@media (min-width: 1024px) {
  .hero.hero--video:not(.hero-fullscreen) {
    height: 78vh;
  }
  .hero.hero--video.hero-fullscreen {
    height: 100dvh;
    height: 100vh;
  }
}
@media (max-width: 1023.98px) {
  .hero.hero--video {
    height: clamp(560px, 68vh, 680px);
  }
}
@media (max-width: 767.98px) {
  .hero.hero--video {
    height: clamp(460px, 54svh, 580px);
  }
}
.hero.hero--video > .hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero.hero--video > .hero__background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--hero-bloom), var(--hero-grade), var(--hero-tint), var(--hero-poster-pc);
  background-position: center, center, center, center;
  background-size: cover, cover, cover, cover;
  background-repeat: no-repeat;
}
.hero.hero--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: var(--hero-noise-opacity);
  mix-blend-mode: normal;
  background-image: url("/assets/images/common/noise-1.png");
  background-repeat: repeat;
  background-size: 180px 180px;
}
.hero.hero--video .hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero.hero--video .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: brightness(var(--hero-video-brightness)) saturate(var(--hero-video-saturate)) contrast(var(--hero-video-contrast));
  transform: none;
}
.hero.hero--video .hero__video--pc {
  display: block;
}
.hero.hero--video .hero__video--mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .hero.hero--video > .hero__background::before {
    background: var(--hero-bloom), var(--hero-grade), var(--hero-tint), var(--hero-poster-mobile);
  }
  .hero.hero--video .hero__video--pc {
    display: none;
  }
  .hero.hero--video .hero__video--mobile {
    display: block;
  }
}
.hero.hero--video .hero__kicker,
.hero.hero--video .hero__title,
.hero.hero--video .hero__description,
.hero.hero--video .hero__actions {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.hero.hero--video.is-in .hero__kicker {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 180ms;
}
.hero.hero--video.is-in .hero__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 280ms;
}
.hero.hero--video.is-in .hero__description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 380ms;
}
.hero.hero--video.is-in .hero__actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 480ms;
}

.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: #fe7201;
  --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;
  }
}
/* =========================================================
 * Quick Menu
 * ---------------------------------------------------------
 * solid  : 기본 박스형 (기업/제조/일반)
 * card   : 화이트 카드형 (IT/스타트업/진솔소프트)
 * circle : 원형 아이콘형 (미니멀 스타일)
 * slim   : 슬림형 (공간 절약형)
 * ========================================================= */
.quick-menu {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}
.quick-menu__item {
  width: 82px;
  height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  background: #d86100;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.quick-menu__item i,
.quick-menu__item svg {
  width: 23px;
  height: 23px;
  color: currentColor;
  stroke-width: 2.2;
}
.quick-menu__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.quick-menu__item--top {
  height: 38px;
}
.quick-menu__item--top span {
  display: none;
}
.quick-menu__item--top i,
.quick-menu__item--top svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 1024px) {
  .quick-menu {
    display: none;
  }
}

.quick-menu--solid .quick-menu__item {
  color: #fff;
  background: #08182e;
  border-radius: 8px;
}
.quick-menu--solid .quick-menu__item:hover {
  color: #fff;
  background: #fe7201;
}
.quick-menu--solid .quick-menu__item--top {
  background: #08182e;
}

.quick-menu--card .quick-menu__item {
  color: #111827;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}
.quick-menu--card .quick-menu__item:hover {
  color: #fe7201;
  background: #fff;
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.18);
}
.quick-menu--card .quick-menu__item--top {
  color: #fff;
  background: #111827;
}
.quick-menu--card .quick-menu__item--top:hover {
  color: #fff;
  background: #fe7201;
}

.quick-menu--circle {
  gap: 12px;
}
.quick-menu--circle .quick-menu__item {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: #111827;
}
.quick-menu--circle .quick-menu__item span {
  display: none;
}
.quick-menu--circle .quick-menu__item:hover {
  background: #fe7201;
}
.quick-menu--circle .quick-menu__item--top {
  height: 56px;
}

.quick-menu--slim .quick-menu__item {
  width: 72px;
  height: 58px;
  border-radius: 10px;
  font-size: 12px;
  color: #fff;
  background: #08182e;
}
.quick-menu--slim .quick-menu__item i,
.quick-menu--slim .quick-menu__item svg {
  width: 20px;
  height: 20px;
}
.quick-menu--slim .quick-menu__item:hover {
  background: #fe7201;
}
.quick-menu--slim .quick-menu__item--top {
  height: 34px;
}

.site-features__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 200px 1fr;
  gap: 22px;
  height: 460px;
  margin-left: 364px;
}
@media (max-width: 1280px) {
  .site-features__grid {
    margin-left: 200px;
  }
}
@media (max-width: 1024px) {
  .site-features__grid {
    margin-left: 100px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    height: auto;
  }
}
@media (max-width: 768px) {
  .site-features__grid {
    margin-left: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}
@media (max-width: 480px) {
  .site-features__grid {
    gap: 16px;
  }
}

.site-features__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(40, 60, 120, 0.09);
  padding: 30px 28px 18px;
  min-height: 170px;
  cursor: pointer;
  transition: transform 0.16s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.site-features__card .site-features__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: -0.5px;
  color: #fff;
}
@media (max-width: 480px) {
  .site-features__card .site-features__title {
    font-size: 1.2rem;
  }
}
.site-features__card .site-features__desc {
  font-size: 1rem;
  opacity: 1;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 480px) {
  .site-features__card .site-features__desc {
    font-size: 0.95rem;
  }
}
.site-features__card .site-features__icon {
  position: absolute;
  right: 20px;
  bottom: -15px;
  width: 150px;
  height: 150px;
}
.site-features__card .site-features__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-features__card:hover {
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 12px 38px 0 rgba(40, 34, 43, 0.15);
  z-index: 2;
}

.site-features__card--design {
  background: #429aff;
  grid-column: 1/2;
  grid-row: 1/2;
}

.site-features__card--admin {
  background: #846aff;
  grid-column: 2/3;
  grid-row: 1/2;
}

.site-features__card--seo {
  background: #232428;
  grid-column: 3/4;
  grid-row: 1/3;
}

.site-features__card--responsive {
  background: #11c5bb;
  grid-column: 1/2;
  grid-row: 2/3;
}

.site-features__card--price {
  background: #ff862d;
  grid-column: 2/3;
  grid-row: 2/3;
}

@media (max-width: 1024px) {
  .site-features__card {
    grid-column: auto;
    grid-row: auto;
  }
}
.admin-preview__figure {
  margin: 0;
}

.admin-preview__content {
  display: grid;
  gap: 32px;
  justify-items: center;
}

.admin-preview__figure {
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.admin-preview__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .admin-preview__content {
    gap: 48px;
  }
  .admin-preview__actions {
    gap: 24px;
  }
  .admin-preview__figure {
    border-radius: 12px;
  }
}
.template-grid {
  container-name: template-grid;
  container-type: inline-size;
}
.template-grid .template-grid__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
}
.template-grid .template-grid__header {
  text-align: center;
  margin-bottom: 48px;
}
.template-grid .template-grid__filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.template-grid .template-grid__filter {
  min-width: 84px;
  padding: 8px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #fff;
  color: #4b5563;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
.template-grid .template-grid__filter:hover, .template-grid .template-grid__filter.is-active {
  border-color: #fe7201;
  background: #fe7201;
  color: #fff;
}
.template-grid .template-grid__card {
  box-sizing: border-box;
  background: #fff;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.template-grid .template-grid__card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.template-grid .template-grid__card[hidden] {
  display: none;
}
.template-grid .template-grid__thumbnail {
  position: relative;
  display: block;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 0;
  background: #f0f0f6;
  cursor: pointer;
  margin-bottom: 16px;
}
.template-grid .template-grid__cursor {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.18s;
}
.template-grid .template-grid__thumbnail:hover .template-grid__cursor {
  opacity: 1;
}
.template-grid .template-grid__thumbnail img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 9s cubic-bezier(0.18, 0.98, 0.18, 1);
}
.template-grid .template-grid__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.53) 15%, rgba(15, 15, 15, 0.78) 100%);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.29s cubic-bezier(0.32, 0.56, 0.36, 1);
}
.template-grid .template-grid__card:hover .template-grid__thumbnail img {
  transform: translateY(calc(260px - 100%));
}
.template-grid .template-grid__badges {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  position: relative;
  margin-top: -30px;
  margin-left: 16px;
  z-index: 11;
  pointer-events: none;
}
.template-grid .template-grid__category {
  display: inline-flex;
  align-items: center;
  background-color: rgba(254, 114, 1, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
}
.template-grid .template-grid__category--type {
  background-color: rgba(17, 24, 39, 0.82);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.template-grid .template-grid__name {
  margin: 0;
  font-size: 1rem;
  color: #111827;
  font-weight: 600;
  letter-spacing: -0.5px;
  padding: 20px 0;
}
.template-grid .template-grid__actions {
  box-sizing: border-box;
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 0 20px 20px;
}
.template-grid .template-grid__actions .c-btn {
  flex: 1;
  --c-btn-h: 38px;
  --c-btn-px: 12px;
  --c-btn-radius: 4px;
  --c-btn-font-size: 13px;
  --c-btn-bg: #fff;
  --c-btn-fg: #111827;
  --c-btn-bd: #d1d5db;
  --c-btn-hover-bg: #fe7201;
  --c-btn-hover-fg: #fff;
  --c-btn-hover-bd: #fe7201;
  --c-btn-shadow: none;
  --c-btn-shadow-hover: none;
}
.template-grid .template-grid__actions .c-btn:hover {
  transform: none;
}
.template-grid .template-grid__more {
  margin-top: 24px;
  text-align: center;
}
.template-grid .template-grid__more[hidden] {
  display: none;
}
.template-grid .template-grid__more-button {
  --c-btn-radius: 4px;
  --c-btn-hover-bg: transparent;
  --c-btn-hover-fg: var(--c-btn-fg);
  --c-btn-hover-bd: #fe7201;
  --c-btn-shadow-hover: none;
  min-width: 112px;
  justify-content: center;
  gap: 4px;
  box-shadow: none;
}
.template-grid .template-grid__more-button:hover {
  transform: none;
}
.template-grid .template-grid__more-button:hover .template-grid__more-icon {
  color: #fe7201;
}
.template-grid .template-grid__more-icon {
  flex: 0 0 auto;
}
.template-grid .template-grid__notice {
  margin: 24px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  letter-spacing: -0.02em;
}
@media (max-width: 1024px) {
  .template-grid .template-grid__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .template-grid .template-grid__filters {
    justify-content: flex-start;
    gap: 4px;
    margin-inline: -16px;
    padding-inline: 16px;
    overflow-x: auto;
  }
  .template-grid .template-grid__filter {
    min-width: auto;
    flex: 0 0 auto;
    padding-inline: 16px;
  }
  .template-grid .template-grid__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@container template-grid (max-width: 1024px) {
  .template-grid .template-grid__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@container template-grid (max-width: 480px) {
  .template-grid .template-grid__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .template-grid .template-grid__actions {
    padding-inline: 16px;
  }
}

.site-cta {
  background: #0f172a;
  position: relative;
  color: #fff;
  padding: 100px 0 100px 0;
  text-align: center;
  overflow: hidden;
}
.site-cta__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/assets/clients/jinsolsoft/images/cta-d397d39a0e6a6bde4066601e4c08c79e.webp") center/cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
  filter: blur(1.5px);
}
.site-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-cta__message {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 32px;
  letter-spacing: -1.2px;
  word-break: keep-all;
}
.site-cta__message span {
  font-size: 1.125rem;
  color: #ffd8ae;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-bottom: 4px;
  display: inline-block;
}

@media (max-width: 1024px) {
  .site-cta {
    padding: 64px 8px 64px;
  }
  .site-cta .site-cta__message {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .site-cta {
    padding: 32px 4px 32px;
  }
  .site-cta .site-cta__message {
    font-size: 1.25rem;
  }
  .site-cta .site-cta__message span {
    font-size: 0.875rem;
  }
}
.benefits {
  --text: #111827;
  --muted: #4b5563;
  --line: #d1d5db;
  --bg: #fff;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 360px) {
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.benefits .benefits__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px 24px;
  position: relative;
  color: var(--text);
  transition: box-shadow 0.25s, transform 0.25s, background-color 0.25s, color 0.25s, border-color 0.25s;
}
.benefits .benefits__card:hover {
  background: #fe7201;
  border-color: #fe7201;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  color: #fff;
}
.benefits .benefits__card:hover .benefits__title, .benefits .benefits__card:hover .benefits__description, .benefits .benefits__card:hover .benefits__number {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.benefits .benefits__card:hover .benefits__divider::before, .benefits .benefits__card:hover .benefits__divider::after {
  background: #fff;
}
@media (max-width: 640px) {
  .benefits .benefits__card {
    padding: 18px 14px 14px;
  }
}
@media (max-width: 420px) {
  .benefits .benefits__card {
    padding: 16px 12px 12px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .benefits .benefits__card:hover {
    transform: none;
    box-shadow: none;
  }
}
.benefits .benefits__icon {
  width: 120px;
  height: 120px;
  border-radius: 4px;
  display: grid;
  place-items: center;
}
.benefits .benefits__icon img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .benefits .benefits__icon {
    width: 84px;
    height: 84px;
  }
}
@media (max-width: 420px) {
  .benefits .benefits__icon {
    width: 72px;
    height: 72px;
  }
}
.benefits .benefits__divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.benefits .benefits__divider::before, .benefits .benefits__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
@media (max-width: 640px) {
  .benefits .benefits__divider {
    gap: 10px;
    margin-bottom: 10px;
  }
}
.benefits .benefits__number {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #555;
  font-weight: 700;
  background: #fff;
}
@media (max-width: 640px) {
  .benefits .benefits__number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}
@media (max-width: 420px) {
  .benefits .benefits__number {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}
.benefits .benefits__title {
  margin: 0;
  text-align: center;
}
@media (max-width: 420px) {
  .benefits .benefits__title {
    font-size: 0.98rem;
    line-height: 1.25;
  }
}
.benefits .benefits__description {
  margin: 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
  max-width: 520px;
  font-size: 1rem;
}
@media (max-width: 640px) {
  .benefits .benefits__description {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}
@media (max-width: 420px) {
  .benefits .benefits__description {
    font-size: 0.88rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
@media (max-width: 360px) {
  .benefits .benefits__description {
    -webkit-line-clamp: unset;
    display: block;
  }
}

.included {
  --color-primary: #fe7201;
  --color-ink: #111827;
  --color-muted: #4b5563;
  --color-bg: #fff;
  --radius-md: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
}
.included .included__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.included .included__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.included .included__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.included .included__item:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}
.included .included__media {
  position: relative;
  width: 100%;
  padding-top: 50%;
  overflow: hidden;
}
.included .included__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.included__item:hover .included .included__media img {
  transform: scale(1.05);
}
.included .included__content {
  padding: var(--space-lg) var(--space-xl);
}
.included .included__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}
.included .included__description {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .included .included__item,
  .included .included__item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .included .included__media {
    padding-top: 56%;
  }
  .included .included__content {
    padding: var(--space-lg);
  }
}

.admin-overview {
  --bg: #fff;
  --fg: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --brand: #fe7201;
  --chip-bg: #f3f4f6;
  --chip-fg: #374151;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --radius: 12px;
  --radius-sm: 8px;
}
.admin-overview .admin-overview__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.admin-overview .admin-overview__row + .admin-overview__row {
  margin-top: 120px;
}
.admin-overview .admin-overview__row--reverse .admin-overview__media {
  order: 2;
}
.admin-overview .admin-overview__row--reverse .admin-overview__content {
  order: 1;
}
.admin-overview .admin-overview__media {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--bg);
  cursor: zoom-in;
}
.admin-overview .admin-overview__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.admin-overview .admin-overview__media::after {
  content: "클릭해서 확대";
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
@media (hover: hover) {
  .admin-overview .admin-overview__media:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (hover: none) {
  .admin-overview .admin-overview__media::after {
    opacity: 1;
    transform: none;
  }
}
.admin-overview .admin-overview__media--contain img {
  object-fit: contain;
  background: #0b1220;
  max-height: 560px;
}
@media (max-width: 1024px) {
  .admin-overview .admin-overview__media--contain img {
    max-height: 420px;
  }
}
.admin-overview .admin-overview__content {
  display: grid;
  align-content: start;
  gap: 14px;
}
.admin-overview .admin-overview__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 800;
  font-size: 14px;
}
.admin-overview .admin-overview__title {
  margin: 0;
  color: var(--fg);
  letter-spacing: -0.01em;
  font-size: 32px;
}
.admin-overview .admin-overview__summary {
  margin: 8px 0 12px;
  color: #374151;
  font-size: 18px;
  line-height: 1.8;
}
.admin-overview .admin-overview__note {
  margin: 32px 0 0;
  padding: 14px 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
}
.admin-overview .admin-overview__note p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}
.admin-overview .admin-overview__note p + p {
  margin-top: 6px;
}
@media (max-width: 1024px) {
  .admin-overview .admin-overview__row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 0;
  }
  .admin-overview .admin-overview__content {
    order: 1;
  }
  .admin-overview .admin-overview__media {
    order: 2;
  }
  .admin-overview .admin-overview__title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .admin-overview .admin-overview__title {
    font-size: 22px;
  }
  .admin-overview .admin-overview__kicker {
    font-size: 13px;
  }
}

/* 여기부터는 section 바깥 전역 */
.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.82);
}

.media-lightbox.is-open {
  display: flex;
}

.media-lightbox__img {
  display: block;
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.media-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10000;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

.process-flow {
  --brand: #fe7201;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --surface: #f9fafb;
  --white: #fff;
  /*
   * 단계 번호
   */
  /*
   * 기존 세로 레일 미사용
   */
  /*
   * 본문
   */
  /*
   * 안내 문구
   */
  /*
   * CTA
   */
}
.process-flow .process-flow__list {
  margin: 52px 0 36px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}
.process-flow .process-flow__item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 150px;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s ease;
}
.process-flow .process-flow__item:hover,
.process-flow .process-flow__item.is-active {
  background: #fafafa;
}
.process-flow .process-flow__number {
  display: flex;
  align-items: center;
  padding-left: 4px;
  color: #d8dce1;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
  transition: color 0.2s ease, transform 0.2s ease;
}
.process-flow .process-flow__item:hover .process-flow__number,
.process-flow .process-flow__item.is-active .process-flow__number {
  color: var(--brand);
  transform: translateX(4px);
}
.process-flow .process-flow__line {
  display: none;
}
.process-flow .process-flow__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 32px 24px 32px 8px;
}
.process-flow .process-flow__title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.035em;
}
.process-flow .process-flow__description {
  max-width: 760px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: -0.015em;
}
.process-flow .process-flow__guide {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: flex-start;
  gap: 14px;
  margin-top: 34px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.process-flow .process-flow__guide-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--brand);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.process-flow .process-flow__guide-icon [data-lucide] {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}
.process-flow .process-flow__guide-content {
  min-width: 0;
}
.process-flow .process-flow__guide-content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.5;
}
.process-flow .process-flow__guide-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.process-flow .process-flow__actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
@media (max-width: 992px) {
  .process-flow .process-flow__item {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 140px;
  }
  .process-flow .process-flow__number {
    font-size: 3.2rem;
  }
  .process-flow .process-flow__content {
    padding: 28px 20px 28px 6px;
  }
}
@media (max-width: 640px) {
  .process-flow .process-flow__list {
    margin: 36px 0 28px;
  }
  .process-flow .process-flow__item {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 26px 16px;
    text-align: center;
  }
  .process-flow .process-flow__number {
    justify-content: center;
    padding: 0;
    color: var(--brand);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }
  .process-flow .process-flow__item:hover .process-flow__number,
  .process-flow .process-flow__item.is-active .process-flow__number {
    transform: none;
  }
  .process-flow .process-flow__content {
    align-items: center;
    padding: 10px 0 0;
  }
  .process-flow .process-flow__title {
    font-size: 1.08rem;
  }
  .process-flow .process-flow__description {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.65;
  }
  .process-flow .process-flow__description br {
    display: none;
  }
  .process-flow .process-flow__guide {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 11px;
    margin-top: 26px;
    padding: 17px;
  }
  .process-flow .process-flow__guide-icon {
    width: 32px;
    height: 32px;
  }
  .process-flow .process-flow__guide-icon [data-lucide] {
    width: 14px;
    height: 14px;
  }
  .process-flow .process-flow__guide-content strong {
    font-size: 0.88rem;
  }
  .process-flow .process-flow__guide-content p {
    font-size: 0.82rem;
  }
  .process-flow .process-flow__actions {
    justify-content: center;
    margin-top: 28px;
  }
  .process-flow .process-flow__actions .c-btn {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .process-flow .process-flow__item,
  .process-flow .process-flow__number {
    transition: none;
  }
}

.prep {
  --primary: #fe7201;
  --primary-soft: #fff7f1;
  --text: #111827;
  --body: #374151;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --surface: #f9fafb;
  --white: #fff;
  --dark: #1f2937;
  /*
   * 상품 카드 영역
   */
  /*
   * 상품 카드
   */
  /*
   * 상품 카드 헤더
   */
  /*
   * 핵심 설명
   */
  /*
   * 준비 자료
   */
  /*
   * 상품 하단 안내
   */
  /*
   * 운영형 CMS
   */
  /*
   * 공통 자료 전달 안내
   */
  /*
   * 하단 CTA
   */
  /*
   * 태블릿
   */
  /*
   * 모바일
   */
}
.prep .prep__board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.prep .prep__plan {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 48px 44px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: 0 2px 4px rgba(17, 24, 39, 0.02), 0 18px 45px rgba(17, 24, 39, 0.055);
}
.prep .prep__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.prep .prep__type {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.11em;
}
.prep .prep__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.055em;
}
.prep .prep__icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #505966;
  background: var(--surface);
  border-radius: 50%;
}
.prep .prep__icon i[data-lucide],
.prep .prep__icon svg.lucide {
  width: 25px;
  height: 25px;
  stroke-width: 1.7;
}
.prep .prep__summary {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.prep .prep__summary-label {
  display: block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.04em;
}
.prep .prep__summary strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.55;
  letter-spacing: -0.035em;
}
.prep .prep__summary p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.prep .prep__materials {
  flex: 1;
  padding-top: 34px;
}
.prep .prep__materials-title {
  margin: 0 0 21px;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.5;
}
.prep .prep__materials-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.prep .prep__materials-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 36px;
  color: var(--body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
}
.prep .prep__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #67717d;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.prep .prep__check i[data-lucide],
.prep .prep__check svg.lucide {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}
.prep .prep__note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 17px;
  align-items: flex-start;
  margin-top: 36px;
  padding: 23px 24px;
  background: var(--surface);
  border-radius: 10px;
}
.prep .prep__note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.prep .prep__note-icon i[data-lucide],
.prep .prep__note-icon svg.lucide {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}
.prep .prep__note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.5;
}
.prep .prep__note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}
.prep .prep__cms {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-top: 32px;
  padding: 32px 36px;
  color: var(--white);
  background: var(--dark);
  border-radius: 14px;
}
.prep .prep__cms-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.prep .prep__cms-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.prep .prep__cms-icon i[data-lucide],
.prep .prep__cms-icon svg.lucide {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}
.prep .prep__cms-heading span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
}
.prep .prep__cms-heading strong {
  display: block;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.4;
}
.prep .prep__cms > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  line-height: 1.8;
}
.prep .prep__cms-state {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}
.prep .prep__common {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 48px;
  margin-top: 32px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
}
.prep .prep__common-header {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}
.prep .prep__common-header > span {
  display: block;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.11em;
}
.prep .prep__common-header h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.45;
  letter-spacing: -0.035em;
}
.prep .prep__common-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.prep .prep__common-item {
  min-width: 0;
}
.prep .prep__common-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 17px;
  color: #5f6874;
  background: var(--surface);
  border-radius: 50%;
}
.prep .prep__common-icon i[data-lucide],
.prep .prep__common-icon svg.lucide {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}
.prep .prep__common-item strong {
  display: block;
  margin-bottom: 9px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.55;
}
.prep .prep__common-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}
.prep .prep__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
@media (max-width: 1024px) {
  .prep .prep__plan {
    padding: 40px 32px;
  }
  .prep .prep__cms {
    grid-template-columns: 190px minmax(0, 1fr);
  }
  .prep .prep__cms-state {
    grid-column: 2;
    justify-self: flex-start;
  }
  .prep .prep__common {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .prep .prep__common-header {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .prep .prep__common-header h3 br {
    display: none;
  }
}
@media (max-width: 760px) {
  .prep .prep__board {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 42px;
  }
  .prep .prep__plan {
    padding: 34px 26px;
    border-radius: 14px;
  }
  .prep .prep__header {
    padding-bottom: 27px;
  }
  .prep .prep__title {
    font-size: 1.8rem;
  }
  .prep .prep__icon {
    width: 48px;
    height: 48px;
  }
  .prep .prep__icon i[data-lucide],
  .prep .prep__icon svg.lucide {
    width: 22px;
    height: 22px;
  }
  .prep .prep__summary {
    padding: 29px 0;
  }
  .prep .prep__summary strong {
    font-size: 1.22rem;
  }
  .prep .prep__summary p {
    font-size: 0.94rem;
  }
  .prep .prep__materials {
    padding-top: 28px;
  }
  .prep .prep__materials-title {
    font-size: 1.05rem;
  }
  .prep .prep__materials-list {
    gap: 13px;
  }
  .prep .prep__materials-list li {
    font-size: 0.95rem;
  }
  .prep .prep__note {
    margin-top: 29px;
    padding: 20px;
  }
  .prep .prep__cms {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-top: 22px;
    padding: 27px 24px;
  }
  .prep .prep__cms-state {
    grid-column: auto;
  }
  .prep .prep__common {
    gap: 24px;
    margin-top: 22px;
    padding: 30px 25px;
  }
  .prep .prep__common-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .prep .prep__common-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
    align-items: flex-start;
  }
  .prep .prep__common-icon {
    margin-bottom: 0;
  }
  .prep .prep__actions {
    margin-top: 28px;
  }
}
@media (max-width: 440px) {
  .prep .prep__plan {
    padding-right: 21px;
    padding-left: 21px;
  }
  .prep .prep__icon {
    display: none;
  }
  .prep .prep__summary strong br {
    display: none;
  }
  .prep .prep__common {
    padding-right: 21px;
    padding-left: 21px;
  }
}

.pricing {
  --color-primary: #fe7201;
  --color-primary-100: rgba(254, 114, 1, 0.18);
  --color-muted: #6b7280;
  --color-line: #e5e7eb;
  --color-line-strong: #d1d5db;
  --color-surface: #fff;
  /* badge tokens */
  --badge-bg: #f4f6f8;
  --badge-border: #e2e6ea;
  --badge-text: #333;
  --badge-business-bg: rgba(47, 92, 255, 0.08);
  --badge-business-border: rgba(47, 92, 255, 0.22);
  --badge-business-text: #2f5cff;
  --badge-featured-bg: #111;
  --badge-featured-text: #fff;
  --radius-lg: 12px;
  --space-sm: 8px;
  --space-md: 14px;
  --space-lg: 18px;
  --space-xl: 24px;
  --space-2xl: 36px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --tr-fast: 0.15s ease;
  --tr-base: 0.22s ease;
  /* =========================
     Basics
  ========================== */
  /* =========================
     Packages Grid (HTML: pricing__grid)
  ========================== */
  /* =========================
     Compare table (기존 유지)
  ========================== */
}
.pricing .pricing__divider {
  border: 0;
  height: 1px;
  margin: var(--space-2xl) 0;
  background: linear-gradient(to right, transparent, var(--color-line), transparent);
}
.pricing .pricing__packages {
  margin-top: var(--space-xl);
}
.pricing .pricing__grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}
@media (max-width: 1024px) {
  .pricing .pricing__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 56px;
  }
}
.pricing .pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 30px 32px 28px;
  overflow: visible;
  border: 1px solid var(--color-line-strong);
  border-radius: 9px;
  background: var(--color-surface);
  box-shadow: none;
  /* 리스트는 왼쪽 정렬(가독성) */
}
.pricing .pricing__card--featured {
  border-color: var(--color-primary);
  box-shadow: 0 12px 28px rgba(254, 114, 1, 0.1);
}
.pricing .pricing__card .pricing__title {
  margin: 0 0 8px;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.03em;
  text-align: left;
}
.pricing .pricing__card--business .pricing__title {
  color: var(--color-primary);
}
.pricing .pricing__card .pricing__top-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  height: 38px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
  z-index: 3;
  box-shadow: 0 10px 24px rgba(254, 114, 1, 0.22);
}
.pricing .pricing__card .pricing__price,
.pricing .pricing__card .pricing__badge {
  text-align: center;
}
.pricing .pricing__card .pricing__subtitle {
  min-height: 2.9em;
  margin: 0 0 22px;
  font-size: 0.98rem;
  color: var(--color-muted);
  line-height: 1.45;
  text-align: left;
  word-break: keep-all;
}
.pricing .pricing__card .pricing__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px 8px;
  min-height: 70px;
  margin: 0;
  color: #111827;
  line-height: 1.2;
}
.pricing .pricing__card .pricing__price strong {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.pricing .pricing__card .pricing__price span {
  display: inline-block;
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
  vertical-align: baseline;
  white-space: nowrap;
}
.pricing .pricing__card .pricing__price-original {
  display: inline-block;
  margin: 0;
  font-size: 0.95rem;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  vertical-align: baseline;
  white-space: nowrap;
}
.pricing .pricing__card .pricing__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 24px 0;
  width: 100%;
  min-height: 45px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  background: #f8fafc;
  border: 1px solid var(--badge-border);
  color: #111827;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}
@media (max-width: 420px) {
  .pricing .pricing__card .pricing__badge {
    font-size: 0.86rem;
    padding: 7px 12px;
  }
}
.pricing .pricing__card .pricing__features {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.pricing .pricing__card .pricing__features li {
  position: relative;
  padding-left: 26px;
  line-height: 1.55;
  color: #111827;
  word-break: keep-all;
}
.pricing .pricing__card .pricing__features li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-100);
  transform: translateY(-50%);
}
.pricing .pricing__card .pricing__note-group {
  margin-top: auto;
  display: grid;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--color-line);
}
.pricing .pricing__card .pricing__note {
  display: block;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.45;
  word-break: keep-all;
}
.pricing .pricing__card .pricing__action {
  width: 100%;
}
@media (max-width: 768px) {
  .pricing .pricing__card {
    padding: 30px 22px 24px;
  }
  .pricing .pricing__card .pricing__subtitle,
  .pricing .pricing__card .pricing__price {
    min-height: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pricing .pricing__card {
    transition: none;
  }
}
.pricing .pricing__table-wrap {
  width: 100%;
  padding: 0;
  background: transparent;
  border-radius: var(--radius-lg);
}
.pricing .pricing__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
  border: 2px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing .pricing__table thead th {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1rem;
  text-align: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-line);
  background: #f8fafc;
  color: #0f172a;
}
.pricing .pricing__table thead th.th-label {
  background: #f3f4f6;
  color: #111827;
}
.pricing .pricing__table thead th.th-plan {
  background: #111827;
  color: #fff;
}
.pricing .pricing__table thead th.th-featured {
  background: #fe7201;
  color: #fff;
}
.pricing .pricing__table tbody td,
.pricing .pricing__table tbody th[scope=row] {
  padding: 14px 16px;
  border-top: 1px solid var(--color-line);
  text-align: center;
  vertical-align: middle;
  line-height: 1.55;
  word-break: keep-all;
}
.pricing .pricing__table tbody th[scope=row] {
  text-align: center;
  color: #475569;
  font-weight: 700;
  width: 28%;
}
.pricing .pricing__table tbody tr:nth-child(even) td,
.pricing .pricing__table tbody tr:nth-child(even) th[scope=row] {
  background: #fafafa;
}
.pricing .pricing__table tbody td + td {
  border-left: 1px solid var(--color-line);
}
.pricing .pricing__table td.is-featured-cell {
  box-shadow: inset 0 0 0 9999px rgba(255, 128, 0, 0.06);
  border-left: 1px solid rgba(255, 128, 0, 0.35);
  border-right: 1px solid rgba(255, 128, 0, 0.35);
}
.pricing .pricing__compare-cards {
  display: none;
}
@media (max-width: 1024px) {
  .pricing .pricing__table-wrap {
    display: none;
  }
  .pricing .pricing__compare-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing .compare-card {
    border: 1px solid #e6e8ec;
    border-radius: 14px;
    padding: 16px 16px 14px;
    background: #fff;
  }
  .pricing .compare-card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .pricing .compare-card__title {
    font-weight: 800;
    font-size: 1.05rem;
    color: #2c2c2c;
    letter-spacing: -0.2px;
  }
  .pricing .compare-card__price {
    font-weight: 800;
    font-size: 1.05rem;
    color: #111827;
  }
  .pricing .compare-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 0.95rem;
    color: #3a3f46;
  }
  .pricing .compare-card__list li {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 10px;
    align-items: flex-start;
  }
  .pricing .compare-card__list .compare-card__key {
    color: #6b7280;
  }
  .pricing .compare-card__list .compare-card__val {
    color: #111827;
  }
}
@media (min-width: 1025px) {
  .pricing .pricing__compare-cards {
    display: none;
  }
}
.pricing .pricing__muted {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #6b7280;
  text-align: leftr;
}
.pricing .pricing__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.maintenance {
  --primary: #fe7201;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e2e8f0;
  --card: #fcfdfe;
  --section-bg: #f4f6f8;
  --navy: #202b3d;
  background: var(--section-bg);
}
.maintenance .maintenance__plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.maintenance .maintenance__plan {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--card);
}
.maintenance .maintenance__plan--featured {
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(254, 114, 1, 0.1);
}
.maintenance .maintenance__plan-label,
.maintenance .maintenance__common-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.maintenance .maintenance__plan h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.03em;
}
.maintenance .maintenance__plan-summary {
  min-height: 4.7em;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  word-break: keep-all;
}
.maintenance .maintenance__plan ul,
.maintenance .maintenance__common ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.maintenance .maintenance__plan li,
.maintenance .maintenance__common li {
  position: relative;
  padding-left: 25px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
  word-break: keep-all;
}
.maintenance .maintenance__plan li::before,
.maintenance .maintenance__common li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(254, 114, 1, 0.1);
  transform: translateY(-50%);
}
.maintenance .maintenance__common {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-top: 20px;
  padding: 28px 30px;
  border: 1px solid var(--navy);
  border-radius: 9px;
  background: var(--navy);
}
.maintenance .maintenance__common li {
  color: #fff;
}
.maintenance .maintenance__common li {
  font-weight: 500;
}
.maintenance .maintenance__common-heading h3,
.maintenance .maintenance__extra h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.maintenance .maintenance__common-heading h3 {
  color: #fff;
}
.maintenance .maintenance__common ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}
.maintenance .maintenance__extra {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 20px;
  padding: 26px 30px;
  border: 1px solid rgba(254, 114, 1, 0.25);
  border-radius: 9px;
  background: #fff8f2;
}
.maintenance .maintenance__extra-label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(254, 114, 1, 0.12);
  color: #d86100;
  font-size: 0.78rem;
  font-weight: 800;
}
.maintenance .maintenance__extra p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  word-break: keep-all;
}
.maintenance .maintenance__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .maintenance .maintenance__plans {
    grid-template-columns: 1fr;
  }
  .maintenance .maintenance__plan-summary {
    min-height: 0;
  }
  .maintenance .maintenance__common,
  .maintenance .maintenance__extra {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .maintenance .maintenance__plan,
  .maintenance .maintenance__common,
  .maintenance .maintenance__extra {
    padding: 24px 20px;
  }
  .maintenance .maintenance__common ul {
    grid-template-columns: 1fr;
  }
  .maintenance .maintenance__actions .c-btn {
    width: 100%;
  }
}

.support-contact {
  display: grid;
  gap: 20px;
}

.support-contact__form {
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 4px;
  padding: 20px;
  box-sizing: border-box;
  max-width: 100%;
}

.support-contact__honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.support-contact__agreement {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 12px;
  margin-bottom: 12px;
  border: 0;
  padding: 0;
}
.support-contact__agreement .c-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  margin: 0 auto;
}

.support-contact__policy-link {
  margin-left: 8px;
  font-weight: 700;
  text-decoration: underline;
  color: #374151;
}
.support-contact__policy-link:hover {
  text-decoration: none;
}

.support-contact__policy-note {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 13px;
}

.support-contact__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.support-contact .section-header {
  --sh-gap-y: clamp(20px, 5vw, 64px);
  margin-bottom: var(--sh-gap-y);
}

/* ===============================
   Typing Text (Hero)
=============================== */
.site-hero__typing {
  font-size: 2.8rem;
  line-height: 1.36;
  font-weight: 800;
  letter-spacing: -0.01em;
  word-break: keep-all;
  color: #fff;
  background: linear-gradient(92deg, #fff 88%, #d86100 170%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 4px 22px rgba(30, 40, 90, 0.36), 0 0 2px rgba(0, 0, 0, 0.22), 0 0 0.5px #000, 1px 1px 2px #000;
  max-width: 700px;
  margin-bottom: 32px;
  transition: color 0.2s;
  padding-left: 0;
  margin-left: 0;
  text-align: left;
  justify-self: start;
  align-self: start;
}
@media (max-width: 1280px) {
  .site-hero__typing {
    font-size: 1.8rem;
  }
}
@media (max-width: 1024px) {
  .site-hero__typing {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .site-hero__typing {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .site-hero__typing {
    font-size: 1.2rem;
  }
}

.site-hero__cursor {
  display: inline-block;
  margin-left: 1px;
  font-size: 1em;
  font-weight: 800;
  color: #ff9b47;
  filter: drop-shadow(0 0 8px #fff);
  animation: blink 0.82s steps(1) infinite;
  transition: color 0.2s;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.admin-preview__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 24px;
}
