@charset "utf-8";

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p, blockquote, figure, address { margin: 0; }
button, input, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
address { font-style: normal; }
em { font-style: normal; color: var(--color-primary); }
.wrapper { overflow-x: hidden; }
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn i { transition: transform var(--transition); }
.btn:hover i { transform: translateX(3px); }
.btn-sm { min-height: 38px; padding: 0 16px; font-size: 0.9rem; }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-hover); }
.btn-dark { background: var(--color-dark); color: #fff; }
.btn-dark:hover { background: var(--color-primary); }
.btn-ghost {
  background: #fff;
  color: var(--color-dark);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.btn-ghost:hover { background: var(--color-primary); color: #fff; }
.link-btn {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: #444;
  color: #fff;
  font-size: 0.82rem;
}
.link-btn.point { background: var(--color-footer-link); }

/* ── Header: 영상 축소 후 등장 ── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.9s ease,
    border-color 0.9s ease,
    visibility 0s linear 0.9s;
}
body.hero-settled .site-header {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.9s ease,
    border-color 0.9s ease,
    visibility 0s linear 0s;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--header-height);
}
.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1.15;
  min-width: 0;
}
.brand strong {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: var(--letter-tight);
  color: var(--color-primary);
}
.brand span {
  font-size: 0.76rem;
  color: var(--color-text-light);
}
.nav-desktop { display: none; margin-left: auto; }
.nav-list { display: flex; align-items: stretch; height: var(--header-height); }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 14px;
  font-size: var(--fs-nav);
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-list > li > a .fa { font-size: 0.65em; opacity: 0.45; }
.nav-list > li:hover > a,
.nav-list > li:focus-within > a,
.nav-list > li.is-active > a { color: var(--color-primary); }
.nav-list > li.is-active > a { font-weight: 700; }
.submenu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 148px;
  padding: 8px 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dropdown);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}
.nav-list > li:hover .submenu,
.nav-list > li:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.submenu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
}
.submenu a:hover { background: var(--color-hero); color: var(--color-primary); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  color: var(--color-text);
}
.nav-mobile {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-dropdown);
}
.nav-mobile[hidden] { display: none !important; }
.nav-mobile .mobile-link,
.nav-mobile .mobile-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 15px var(--gutter);
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
  text-align: left;
}
.nav-mobile .mobile-sub { display: none; background: var(--color-bg-soft); }
.nav-mobile .mobile-group.is-open .mobile-sub { display: block; }
.nav-mobile .mobile-group.is-open .mobile-toggle .fa { transform: rotate(180deg); }
.nav-mobile .mobile-sub a {
  display: block;
  padding: 12px var(--gutter) 12px calc(var(--gutter) + 12px);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
  font-weight: 400;
}
.nav-mobile .mobile-toggle .fa { transition: transform var(--transition); opacity: 0.5; }

@media (min-width: 1024px) {
  .nav-desktop { display: block; }
  .menu-toggle { display: none; }
  .header-actions { margin-left: 8px; }
  .nav-mobile { display: none !important; }
}

/* ── Hero: 풀블리드 영상 → 축소 후 헤더 여백 ── */
.hero--stage {
  position: relative;
  margin-top: 0;
  background: #0b1c2e;
  transition: margin-top 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
body.hero-settled .hero--stage {
  margin-top: var(--header-height);
}
.hero-stage {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0b1c2e;
  transition:
    background 1.6s cubic-bezier(0.22, 1, 0.36, 1),
    min-height 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    max-height 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
body.hero-settled .hero-stage {
  min-height: calc(100vh - var(--header-height));
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transition:
    top 1.7s cubic-bezier(0.22, 1, 0.36, 1),
    right 1.7s cubic-bezier(0.22, 1, 0.36, 1),
    bottom 1.7s cubic-bezier(0.22, 1, 0.36, 1),
    left 1.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 1.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 1.7s ease;
  box-shadow: none;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0f2740;
}
.hero-media-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 20, 34, 0.78) 0%, rgba(8, 20, 34, 0.35) 52%, rgba(8, 20, 34, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 20, 34, 0.15) 0%, transparent 40%, rgba(8, 20, 34, 0.4) 100%);
  pointer-events: none;
  transition: opacity 1.5s ease;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: clamp(36px, 6vw, 64px) 0;
}
.hero-copy {
  max-width: 34em;
  color: #fff;
}
.hero-title {
  font-size: var(--fs-hero);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: var(--letter-tight);
  color: #fff;
  transition: color 1.4s ease;
}
.hero-line {
  display: block;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color 1.4s ease;
}
.hero-line:nth-child(2) {
  font-weight: 700;
  color: #fff;
}
.hero-brand {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(2.15rem, 1.4rem + 3.2vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  transition: color 1.4s ease;
}
.hero-desc {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
  font-weight: 400;
  max-width: 34em;
  line-height: 1.7;
  transition: color 1.4s ease;
}
.br-desktop { display: none; }
.hero--stage .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transition: background 1.4s ease, color 1.4s ease, box-shadow 1.4s ease;
}
.hero--stage .btn-ghost:hover {
  background: #fff;
  color: var(--color-primary);
}
.hero--stage .btn-dark {
  transition: background 1.4s ease, color 1.4s ease;
}

/* 스크롤 유도: 수치 바 위, 작고 반투명 */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  top: -28px;
  z-index: 6;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transform: translateX(-50%);
  color: rgba(26, 58, 92, 0.38);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease 0.35s;
  animation: none;
}
body.hero-settled .hero-scroll-cue:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  animation: cueFloat 2.2s ease-in-out infinite;
}
.hero-scroll-cue i {
  font-size: 0.85rem;
  opacity: 0.75;
}
.hero-scroll-cue[hidden] {
  display: none !important;
}
@keyframes cueFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(4px); }
}

.media-photo {
  width: 100%;
  max-width: min(480px, 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26, 58, 92, 0.1);
  background: #dfeaf4;
}
.media-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.media-photo--square img { aspect-ratio: 16 / 11; }
.media-photo--wide { max-width: none; }
.media-photo--wide img { aspect-ratio: 21 / 9; max-height: 280px; }

/* 중간 폭·세로 FHD: 축소 연출 없이 스택 (위 영상 / 아래 카피) */
@media (max-width: 1100px), ((orientation: portrait) and (max-width: 1200px)) {
  .split-media .media-photo {
    max-width: min(340px, 88%);
    margin-inline: auto;
  }
  .hero--stage,
  body.hero-settled .hero--stage {
    margin-top: var(--header-height);
  }
  .hero-stage,
  body.hero-settled .hero-stage {
    min-height: auto;
    max-height: none;
    padding-bottom: 36px;
    align-items: start;
    background: #0b1c2e;
  }
  .hero-media,
  .hero--stage.is-settled .hero-media {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    aspect-ratio: 16 / 10;
    border-radius: 0 0 16px 16px;
    margin-bottom: 8px;
    box-shadow: none;
  }
  .hero-media-veil,
  .hero--stage.is-settled .hero-media-veil {
    opacity: 1;
    background: linear-gradient(180deg, transparent 45%, rgba(8, 20, 34, 0.5) 100%);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 8px 0 0;
  }
  .hero-copy {
    grid-column: auto;
    padding: 0 var(--gutter) 28px;
    max-width: none;
  }
  .hero--stage.is-settled .hero-title,
  .hero--stage.is-settled .hero-line:nth-child(2),
  .hero--stage.is-settled .hero-line,
  .hero--stage.is-settled .hero-brand,
  .hero--stage.is-settled .hero-desc {
    color: #fff;
  }
  .hero--stage.is-settled .hero-line {
    color: rgba(255, 255, 255, 0.78);
  }
  .hero--stage.is-settled .hero-line:nth-child(2) {
    color: #fff;
  }
  .hero-scroll-cue { display: none; }
}

/* 좁은 폰: 헤더 CTA·타이포 보정 */
@media (max-width: 480px) {
  .header-actions .btn-sm {
    padding: 0 10px;
    font-size: 0.82rem;
    min-height: 34px;
  }
  .brand strong { font-size: 1.15rem; }
  .brand span { font-size: 0.68rem; }
  .hero-brand {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }
  .stats { margin-top: -28px; }
  .stat-item { padding: 22px 10px 18px; }
  .stat-value { font-size: 1.55rem; }
  .compare-switch {
    font-size: 0.72rem;
  }
  .compare-switch a { padding: 6px 10px; }
}

/* 가로 와이드: 풀샷 → 우측 카드 축소, 카피는 원래처럼 세로 중앙 */
@media (min-width: 1101px) and (orientation: landscape) {
  .hero-stage {
    min-height: 100vh;
    max-height: 100vh;
    align-items: center;
  }
  body.hero-settled .hero-stage {
    min-height: calc(100vh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 0;
  }
  .hero-copy {
    grid-column: 1;
    max-width: 28em;
  }
  .br-desktop { display: inline; }

  .hero--stage.is-settled .hero-stage {
    background:
      linear-gradient(90deg, #f3f6f9 0%, #f3f6f9 48%, #0b1c2e 48%);
  }
  .hero--stage.is-settled .hero-media {
    top: 10%;
    right: 4%;
    bottom: 10%;
    left: 52%;
    border-radius: 18px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
    aspect-ratio: auto;
  }
  .hero--stage.is-settled .hero-media-veil {
    opacity: 0.12;
  }
  .hero--stage.is-settled .hero-title,
  .hero--stage.is-settled .hero-line:nth-child(2) {
    color: var(--color-text);
  }
  .hero--stage.is-settled .hero-line {
    color: var(--color-text-muted);
  }
  .hero--stage.is-settled .hero-brand {
    color: var(--color-primary);
  }
  .hero--stage.is-settled .hero-desc {
    color: var(--color-text-muted);
  }
  .hero--stage.is-settled .btn-ghost {
    background: #fff;
    color: var(--color-dark);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  }
  .hero--stage.is-settled .btn-ghost:hover {
    background: var(--color-primary);
    color: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .hero-media-veil,
  .hero-title,
  .hero-line,
  .hero-brand,
  .hero-desc,
  .hero--stage .btn-ghost {
    transition: none !important;
  }
  @media (min-width: 1101px) and (orientation: landscape) {
    .hero--stage .hero-stage {
      background:
        linear-gradient(90deg, #f3f6f9 0%, #f3f6f9 48%, #0b1c2e 48%);
    }
    .hero--stage .hero-media {
      top: 10%;
      right: 4%;
      bottom: 10%;
      left: 52%;
      border-radius: 18px;
    }
    .hero--stage .hero-media-veil { opacity: 0.12; }
    .hero--stage .hero-title,
    .hero--stage .hero-line:nth-child(2) { color: var(--color-text); }
    .hero--stage .hero-line { color: var(--color-text-muted); }
    .hero--stage .hero-brand { color: var(--color-primary); }
    .hero--stage .hero-desc { color: var(--color-text-muted); }
  }
}

/* ── Sections ── */
.section { padding: var(--space-section) 0; }
.section-soft { background: var(--color-bg-soft); }
.section-head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-head-left { text-align: left; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}
.section-label i { color: var(--color-primary); }
.section-head h2 {
  font-size: var(--fs-section);
  font-weight: 800;
  letter-spacing: var(--letter-tight);
  line-height: var(--line-height-heading);
  color: var(--color-text);
}
.section-head h2 em {
  color: inherit;
}
.section-lead {
  margin: 14px auto 0;
  max-width: 40em;
  color: var(--color-text-muted);
  font-size: var(--fs-body);
}
.section-head-left .section-lead { margin-left: 0; }

/* ── Tabs (text underline) ── */
.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.tabs--text .tab {
  display: block;
  width: 100%;
  padding: 14px 8px 12px;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  color: var(--color-text-light);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  transition: color var(--transition), border-color var(--transition);
}
.tabs--text .tab:hover { color: var(--color-text); }
.tabs--text .tab.is-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.tab-panels {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(16px, 3vw, 24px);
}
.tab-panel[hidden] { display: none !important; }

/* ── Split layout ── */
.split {
  display: grid;
  gap: 20px;
  align-items: center;
}
.split-media .media-photo {
  max-width: min(400px, 100%);
  margin-inline: auto;
}
.split-body h3 {
  font-size: var(--fs-card-title);
  font-weight: 800;
  margin-bottom: 12px;
}
.split-body h4 {
  font-size: clamp(1.2rem, 1rem + 1.1vw, 1.65rem);
  font-weight: 800;
  letter-spacing: var(--letter-tight);
  margin-bottom: 14px;
  line-height: var(--line-height-heading);
}
.split-body p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: var(--fs-body);
}
.bullet-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  line-height: 1.65;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-muted);
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* 태블릿: 글자 비중↑, 사진 비중↓ */
@media (min-width: 860px) {
  .split {
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(24px, 3vw, 40px);
  }
  .split-media .media-photo {
    max-width: 100%;
    margin-inline: 0;
  }
  .feature-item.is-reverse .split-media { order: 2; }
  .feature-item.is-reverse .split-body { order: 1; }
  .tab-panel .split {
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
  }
}

@media (min-width: 1100px) {
  .split {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  }
  .split-media .media-photo { max-width: 440px; }
}

/* ── Reviews (Swiper) ── */
.reviews {
  margin-top: clamp(40px, 6vw, 72px);
  padding: clamp(18px, 3vw, 28px);
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.reviews-head h3 {
  font-size: clamp(1.1rem, 1rem + 0.8vw, 1.35rem);
  font-weight: 800;
}
.reviews-nav { display: flex; gap: 8px; flex-shrink: 0; }
.reviews-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-primary);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.reviews-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.reviews-swiper { padding-bottom: 36px; overflow: hidden; }
.review-card {
  height: auto;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.5vw, 24px);
  border-radius: 16px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
}
.review-card--dark {
  background: var(--color-primary);
  border-color: transparent;
  color: #fff;
}
.review-card--stat {
  background: #fff;
  border-color: rgba(26, 58, 92, 0.12);
}
.review-stat {
  margin-bottom: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}
.review-stat strong {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin: 0 4px;
}
.review-text {
  flex: 1;
  font-size: clamp(0.92rem, 0.85rem + 0.3vw, 0.98rem);
  line-height: 1.75;
  color: var(--color-text-muted);
}
.review-card--dark .review-text { color: rgba(255, 255, 255, 0.92); }
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-hero);
  color: var(--color-primary);
  font-weight: 800;
  flex-shrink: 0;
}
.review-avatar--accent {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}
.review-card--dark .review-avatar {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.review-meta strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-text);
}
.review-meta em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--color-text-light);
}
.review-card--dark .review-meta strong,
.review-card--dark .review-meta em { color: rgba(255, 255, 255, 0.9); }
.reviews-pagination { bottom: 0 !important; }
.reviews-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: var(--color-border-dark);
  opacity: 0.45;
}
.reviews-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
  width: 20px;
  border-radius: 999px;
}

/* ── Features: 좌 타이틀 + 우 필라 + 세로 스트립 ── */
.features-top {
  display: grid;
  gap: 28px;
  margin-bottom: clamp(28px, 4vw, 40px);
  align-items: end;
}
.features-top__copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 1.05rem + 1.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: var(--letter-tight);
  line-height: 1.3;
  color: var(--color-text);
  word-break: keep-all;
  overflow-wrap: break-word;
}
.features-top__copy h2 em {
  color: inherit;
}
.features-top__line {
  display: inline-block;
  max-width: 100%;
}
.features-top__copy p {
  margin: 14px 0 0;
  max-width: 22em;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--color-text-muted);
}
.feature-pillars {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-pillars li {
  display: grid;
  gap: 8px;
  padding: 20px 18px;
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  min-height: 150px;
  align-content: end;
}
.feature-pillars__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}
.feature-pillars strong {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.feature-pillars p {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-text-muted);
}
@media (min-width: 700px) {
  .feature-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .feature-pillars li {
    min-height: 200px;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
  }
  .feature-pillars li:hover {
    background: var(--color-bg);
    border-color: var(--color-border-dark);
    transform: translateY(-3px);
  }
}
@media (min-width: 960px) {
  .features-top {
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1.35fr);
    gap: 36px;
    align-items: end;
  }
  .features-top__copy h2 {
    font-size: clamp(1.5rem, 1.15rem + 1vw, 1.95rem);
  }
}
@media (min-width: 1200px) {
  .features-top__copy h2 {
    font-size: clamp(1.65rem, 1.2rem + 0.9vw, 2.05rem);
  }
  .features-top__line {
    white-space: nowrap;
  }
}

.feature-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 72vw);
  gap: 10px;
  margin: 0;
  padding: 12px 0 0;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.feature-strip::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.feature-strip li {
  position: relative;
  scroll-snap-align: start;
  min-height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(26, 58, 92, 0.12);
  cursor: pointer;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    filter 0.45s ease,
    opacity 0.45s ease;
  opacity: 0.72;
  filter: saturate(0.85);
}
.feature-strip li::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 39, 64, 0.08) 15%, rgba(15, 39, 64, 0.9) 100%);
  z-index: 1;
  transition: background 0.45s ease;
}
.feature-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.feature-strip__body {
  position: relative;
  z-index: 2;
  padding: 20px 16px;
}
.feature-strip strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.feature-strip span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}
.feature-strip .is-focus {
  opacity: 1;
  filter: none;
  box-shadow: 0 16px 36px rgba(26, 58, 92, 0.22);
  z-index: 2;
}
.feature-strip .is-focus::after {
  background: linear-gradient(180deg, rgba(15, 39, 64, 0.05) 10%, rgba(15, 39, 64, 0.82) 100%);
}
.feature-strip .is-focus img { transform: scale(1.06); }
@media (min-width: 900px) {
  .feature-strip {
    grid-auto-flow: unset;
    grid-auto-columns: unset;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    scroll-snap-type: none;
    gap: 12px;
    padding: 18px 4px 8px;
    align-items: stretch;
  }
  .feature-strip li { min-height: 340px; }
  .feature-strip .is-focus {
    transform: translateY(-8px) scale(1.03);
  }
}

/* ── Timeline process ── */
.timeline {
  position: relative;
  margin-top: 12px;
  padding: clamp(8px, 2vw, 16px);
  border-radius: 20px;
  background:
    radial-gradient(circle at 10% 0%, rgba(26, 58, 92, 0.06), transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(61, 126, 181, 0.08), transparent 40%),
    #fff;
  border: 1px solid rgba(26, 58, 92, 0.08);
  box-shadow: 0 12px 40px rgba(26, 58, 92, 0.06);
}
.timeline-track {
  display: none;
}
.timeline-steps {
  display: grid;
  gap: 14px;
}
.timeline-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
}
.timeline-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 58, 92, 0.18);
  background: #fff;
  color: var(--color-text-muted);
  box-shadow: 0 6px 18px rgba(26, 58, 92, 0.08);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.timeline-num {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.timeline-card {
  padding: 20px 18px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 58, 92, 0.08);
  box-shadow: 0 2px 10px rgba(26, 58, 92, 0.03);
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease,
    background 0.4s ease;
}
.timeline-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.timeline-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.timeline-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.timeline-card li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  background: transparent;
  padding: 0 0 0 10px;
  border-radius: 0;
  position: relative;
}
.timeline-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-primary);
}
/* hover는 JS is-active만 사용 — :hover와 겹치면 1·2가 동시 활성화됨 */
.timeline-step.is-active .timeline-node {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(26, 58, 92, 0.28);
}
.timeline-step.is-active .timeline-card {
  border-color: rgba(26, 58, 92, 0.18);
  background: #fff;
  box-shadow: 0 14px 32px rgba(26, 58, 92, 0.12);
  transform: translateY(-4px);
}

@media (min-width: 960px) {
  .timeline { padding: 28px 20px 24px; }
  .timeline-track {
    display: block;
    position: absolute;
    top: 55px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(26, 58, 92, 0.12);
    border-radius: 999px;
    overflow: hidden;
  }
  .timeline-progress {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary), #3d7eb5);
    box-shadow: 0 0 12px rgba(61, 126, 181, 0.45);
    transition: width 0.55s ease;
  }
  .timeline-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    position: relative;
    z-index: 1;
  }
  .timeline-step {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .timeline-node { margin: 0 auto 18px; }
  .timeline-card {
    text-align: left;
    min-height: 220px;
  }
  .timeline-card ul { justify-content: flex-start; }
}

/* ── Forms ── */
.form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 36px);
  box-shadow: 0 4px 24px rgba(26, 58, 92, 0.04);
}
.form-card--rich {
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.form-grid {
  display: grid;
  gap: 28px;
}
.form-block { margin: 0; padding: 0; border: 0; min-width: 0; }
.form-block legend,
.form-block-head h3 {
  padding: 0;
  margin-bottom: 6px;
  font-size: 1.15rem;
  font-weight: 800;
}
.form-block-head { margin-bottom: 20px; }
.form-block-head p {
  color: var(--color-text-muted);
  font-size: var(--fs-caption);
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.field > span:first-child {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}
.field input,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  font-size: 1.05rem;
  line-height: 1.45;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.field textarea {
  min-height: 180px;
  padding-top: 14px;
  resize: vertical;
}
.field input:hover,
.field textarea:hover { border-color: var(--color-border-dark); }
.field input:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(26, 58, 92, 0.1);
}
.field-control {
  position: relative;
  display: block;
}
.field-control > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
  pointer-events: none;
  font-size: 0.95rem;
}
.field--icon .field-control input { padding-left: 40px; }
.field-row {
  display: grid;
  gap: 0 16px;
}
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

/* 신청 유형: 세로·가로 모두 한 줄(3열) 인라인 */
.choice-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-bg-soft);
  padding: 12px 10px;
  min-width: 0;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}
@media (max-width: 559px) {
  .choice-card { padding: 10px 6px; border-radius: 10px; }
  .choice-card__body { align-items: center; text-align: center; gap: 2px; }
  .choice-card__body strong { font-size: 0.82rem; }
  .choice-card__body small { font-size: 0.7rem; }
}
.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.choice-card__body strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text);
}
.choice-card__body small {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.choice-card:hover {
  border-color: rgba(26, 58, 92, 0.35);
  background: #fff;
}
.choice-card.is-checked,
.choice-card:has(input:checked) {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}
.choice-card.is-checked .choice-card__body strong,
.choice-card:has(input:checked) .choice-card__body strong {
  color: var(--color-primary);
}

.form-agree {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.agree-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.agree-check input { width: 18px; height: 18px; accent-color: var(--color-primary); }
.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.form-actions-left { justify-content: flex-start; }
.btn-lg { min-height: 54px; padding: 0 28px; font-size: 1.05rem; }

@media (min-width: 860px) {
  .form-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── Clients ── */
.clients-hero {
  max-width: none;
  margin: 0 auto 28px;
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.client-grid li {
  display: grid;
  place-items: center;
  min-height: 80px;
  padding: 16px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-align: center;
  transition: border-color var(--transition), color var(--transition);
}
.client-grid li:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
@media (min-width: 760px) {
  .client-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

/* ── Apply layout: 폼 전폭 → 안내 하단 ── */
.apply-layout {
  display: grid;
  gap: 28px;
}
/* 폼과 톤 맞춤: 카드/네이비 밴드 없이 선·타이포만 */
.apply-support {
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}
.apply-support__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 16px;
}
.apply-support__head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
}
.apply-support__head p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.apply-support__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.apply-support__list li {
  display: grid;
  grid-template-columns: 3.5em 1fr;
  gap: 12px;
  align-items: baseline;
  min-width: 0;
}
.apply-support__list span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-light);
}
.apply-support__list a,
.apply-support__list em {
  margin: 0;
  font-style: normal;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text);
  overflow-wrap: anywhere;
  word-break: keep-all;
}
.apply-support__list a {
  color: var(--color-text);
  text-decoration: none;
}
.apply-support__list a:hover { color: var(--color-text); }
@media (min-width: 800px) {
  .apply-support__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 28px;
  }
  .apply-support__list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-right: 12px;
    border-right: 1px solid var(--color-border);
  }
  .apply-support__list li:last-child {
    border-right: 0;
    padding-right: 0;
  }
}

/* ── FAQ ── */
.faq-list { border-top: 2px solid var(--color-text); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-weight: 700;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\f078';
  font-family: FontAwesome;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p {
  padding: 0 4px 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ── Footer ── */
.site-footer {
  padding: 40px 0 72px;
  border-top: 1px solid var(--color-border);
}
.footer-brand {
  display: block;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 800;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 16px;
}
.footer-links a,
.footer-links .link-btn {
  background: none;
  color: var(--color-text);
  font-weight: 700;
  padding: 0;
  font-size: 0.92rem;
}
.footer-links .point { color: var(--color-footer-link); }
.site-footer address {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ── 디자인안 비교 전환 ── */
.compare-switch {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(26, 58, 92, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(26, 58, 92, 0.12);
  font-size: 0.78rem;
}
.compare-switch__label {
  color: #8896a6;
  padding: 0 4px 0 6px;
  font-weight: 600;
}
.compare-switch a {
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: #5a6b7d;
  text-decoration: none;
}
.compare-switch a.is-active {
  background: var(--color-primary);
  color: #fff;
}
.compare-switch a:not(.is-active):hover {
  background: #f0f3f6;
}
@media (max-width: 640px) {
  .compare-switch {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: center;
  }
  .top-btn {
    bottom: 62px;
    right: 12px;
  }
}

/* ── Top / Modal / Toast ── */
.top-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: background var(--transition), color var(--transition), opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.top-btn.is-show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.top-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.media-photo:hover { box-shadow: 0 18px 40px rgba(26, 58, 92, 0.16); }
@keyframes fadePanel {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.stat-item.is-counted .stat-value {
  animation: popStat 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes popStat {
  0% { transform: scale(0.96); opacity: 0.85; }
  60% { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.modal-box {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(80vh, 640px);
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: var(--color-primary);
  color: #fff;
}
.modal-head h5 {
  font-size: 1.15rem;
  font-weight: 700;
}
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}
.modal-body {
  padding: 24px;
  overflow-y: auto;
  line-height: 1.7;
  color: var(--color-text-muted);
}
.privacy-doc p { margin: 0 0 14px; }
.privacy-doc ol {
  margin: 0 0 16px;
  padding-left: 1.2em;
  list-style: decimal;
}
.privacy-doc li {
  margin-bottom: 8px;
  color: var(--color-text-muted);
}
.privacy-doc__company {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.75;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 220;
  transform: translateX(-50%);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: var(--color-dark);
  color: #fff;
  font-size: 0.92rem;
  box-shadow: var(--shadow-card);
  max-width: calc(100% - 32px);
  text-align: center;
}
.toast[hidden] { display: none !important; }

/* ── Styleguide helpers ── */
.sg-page { padding: calc(var(--header-height) + 40px) 0 80px; }
.sg-header { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 2px solid var(--color-text); }
.sg-header h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 8px; }
.sg-header p { color: var(--color-text-muted); }
.sg-section { margin-bottom: 48px; }
.sg-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.sg-row { display: flex; flex-wrap: wrap; gap: 14px; }
.sg-swatch { width: 120px; text-align: center; }
.sg-swatch__color {
  height: 72px;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.sg-swatch code { font-size: 0.75rem; color: var(--color-text-muted); }
.sg-buttons { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ── Stats strip: 영상 축소 후 등장 ── */
.stats {
  margin-top: -48px;
  position: relative;
  z-index: 2;
  padding: 0 0 12px;
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
body.hero-settled .stats {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
body.hero-settled .stats .container {
  pointer-events: auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(26, 58, 92, 0.08);
  border-radius: 24px;
  box-shadow:
    0 4px 10px rgba(26, 58, 92, 0.04),
    0 22px 48px rgba(26, 58, 92, 0.12);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.stat-item {
  position: relative;
  text-align: center;
  padding: 30px 16px 26px;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease;
}
.stat-item.is-visible {
  opacity: 1;
  transform: none;
}
.stat-item:hover { background: #f7fafc; }
.stat-item:nth-child(odd) { border-right: 1px solid rgba(26, 58, 92, 0.08); }
.stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(26, 58, 92, 0.08); }
.stat-value {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  word-break: keep-all;
}
.stat-label {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.stat-desc {
  margin-top: 5px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0;
}
@media (min-width: 820px) {
  .stats { margin-top: -56px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-item {
    padding: 38px 20px 34px;
    border-right: 1px solid rgba(26, 58, 92, 0.08);
    border-bottom: none !important;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(26, 58, 92, 0.08); }
  .stat-item:last-child { border-right: none; }
}

/* ── Reveal motion ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.timeline-step,
.tab-panels,
.reviews,
.client-grid li,
.faq-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow var(--transition), border-color var(--transition);
}
.timeline-step.is-visible,
.tab-panels.is-visible,
.reviews.is-visible,
.client-grid li.is-visible,
.faq-item.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .timeline-step,
  .tab-panels,
  .reviews,
  .client-grid li,
  .faq-item,
  .hero-copy {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Page hero (subpages) ── */
.page-hero {
  margin-top: var(--header-height);
  padding: clamp(48px, 7vw, 80px) 0;
  background:
    linear-gradient(120deg, rgba(26, 58, 92, 0.88), rgba(0, 16, 31, 0.72)),
    center / cover no-repeat;
  color: #fff;
}
.page-hero .section-label,
.page-hero .section-label i { color: rgba(255, 255, 255, 0.9); }
.page-hero h1 {
  font-size: var(--fs-section);
  font-weight: 800;
  letter-spacing: var(--letter-tight);
  line-height: var(--line-height-heading);
  max-width: 16em;
}
.page-hero p {
  margin-top: 14px;
  max-width: 38em;
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}
.page-hero--apply { background-image: linear-gradient(120deg, rgba(26, 58, 92, 0.88), rgba(0, 16, 31, 0.72)), url('../assets/apply-consult.png'); }
.page-hero--clients { background-image: linear-gradient(120deg, rgba(26, 58, 92, 0.88), rgba(0, 16, 31, 0.72)), url('../assets/clients-team.png'); }
.page-hero--support { background-image: linear-gradient(120deg, rgba(26, 58, 92, 0.88), rgba(0, 16, 31, 0.72)), url('../assets/support-hero.png'); }

/* ── CTA band ── */
.cta-band {
  padding: clamp(48px, 7vw, 72px) 0;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: var(--letter-tight);
}
.cta-band p {
  margin: 12px auto 24px;
  max-width: 34em;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--fs-body);
}
.cta-band .btn-ghost {
  background: #fff;
  color: var(--color-primary);
}
.cta-band .btn-ghost:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ── Case / client extras ── */
.case-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 860px) {
  .case-grid { grid-template-columns: 1.2fr 0.8fr; align-items: stretch; }
}
.case-card {
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.case-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.case-card p { color: var(--color-text-muted); font-size: var(--fs-body); }
.anchor-offset { scroll-margin-top: calc(var(--header-height) + 12px); }
