@charset "UTF-8";

/* ==========================================================================
   SnapCompany — style.css
   Single-file CSS organized by sections.
   Mobile-first; breakpoints: 768 / 1024 / 1440 (see SPEC.md §3.1)
   ========================================================================== */


/* ==========================================================================
   1. DESIGN TOKENS  (cached from Figma — see .claude/local/figma-design-tokens.json)
   ========================================================================== */
:root {
  /* Brand */
  --color-brand:          #33C4AC;
  --color-brand-accent:   #F9E000;

  /* Text */
  --color-text:           #262626;
  --color-text-secondary: #444444;
  --color-text-tertiary:  #606061;
  --color-text-muted:     #919194;

  /* Surface */
  --color-bg:             #FFFFFF;
  --color-bg-alt:         #F7F8FA;
  --color-bg-alt-2:       #F3F5F8;
  --color-surface-dark:   #231916;

  /* Border */
  --color-border:         #D9D9D9;
  --color-border-soft:    #BBBBBB;

  /* Status / accent (icons, badges) */
  --color-accent-red:     #C10230;
  --color-accent-blue:    #2699FB;
  --color-accent-orange:  #FF7724;

  /* Typography */
  --font-base: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
               'Apple SD Gothic Neo', 'Noto Sans KR', 'Segoe UI', Roboto, sans-serif;

  --fs-sm:   0.875rem;   /* 14 */
  --fs-base: 0.9375rem;  /* 15 — body / nav */
  --fs-md:   1rem;       /* 16 */
  --fs-lg:   1.125rem;   /* 18 */
  --fs-xl:   1.375rem;   /* 22 */
  --fs-2xl:  1.625rem;   /* 26 */
  --fs-3xl:  2rem;       /* 32 */
  --fs-4xl:  2.5rem;     /* 40 */
  --fs-5xl:  3rem;       /* 48 — hero */

  --lh-tight:  1.2;
  --lh-snug:   1.35;
  --lh-base:   1.5;
  --lh-relax:  1.6;

  --tracking-tight:    -0.02em;
  --tracking-tighter:  -0.03em;
  --tracking-tightest: -0.05em;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max:       1200px;
  --container-max-wide:  1400px;
  --container-padding:   1rem;
  --header-height:       64px;

  /* Motion */
  --ease-out:  cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-fast:    150ms;
  --t-base:    220ms;
  --t-slow:    400ms;

  /* Radius / shadow */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  :root {
    --container-padding: 1.5rem;
    --header-height: 72px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 2rem;
    --header-height: 80px;
  }
}

@media (min-width: 1440px) {
  :root {
    --container-padding: 2.5rem;
  }
}


/* ==========================================================================
   2. RESET / NORMALIZE  (modern minimal reset)
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-base);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  letter-spacing: var(--tracking-tighter);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

@media (max-width: 0) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ==========================================================================
   3. LAYOUT HELPERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

@media (min-width: 1440px) {
  .container {
    max-width: var(--container-max-wide);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-text);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  z-index: 1000;
  transition: top var(--t-fast) var(--ease-out);
}
.skip-to-content:focus {
  top: 0;
}


/* ==========================================================================
   4. SITE HEADER     — Figma 2878:783
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: transform var(--t-base) var(--ease-out);
  will-change: transform;
}
/* 스크롤 down 시 사이트 헤더 전체를 위로 슬라이드 — JS 토글 */
.site-header.is-hidden { transform: translateY(-100%); }
@media (max-width: 0) {
  .site-header { transition: opacity var(--t-fast) var(--ease-out); }
  .site-header.is-hidden { transform: none; opacity: 0; pointer-events: none; }
}

.top-banner {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px var(--container-padding);
  display:none;
}
.top-banner__text {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-tighter);
}
@media (min-width: 768px) {
  .top-banner { padding-block: 12px; }
  .top-banner__text { font-size: var(--fs-md); }
}

.nav-bar {
  position: relative;            /* 데스크탑 메가 메뉴 풀폭 anchor */
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--t-fast) var(--ease-out),
              -webkit-backdrop-filter var(--t-fast),
              backdrop-filter var(--t-fast),
              box-shadow var(--t-fast);
}
/* 스크롤 중일 때(reappear 포함) 더 반투명·glass — JS 가 .is-scrolled 토글 */
.site-header.is-scrolled .nav-bar {
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
          backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}
.nav-bar__inner {
  position: relative;            /* 모바일 .nav-panel absolute anchor */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-height);
}

.nav-bar__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-bar__logo img {
  height: 28px;
  width: auto;
}
@media (min-width: 768px) { .nav-bar__logo img { height: 36px; } }
@media (min-width: 1024px) { .nav-bar__logo img { height: 44px; } }

/* Hamburger */
.nav-bar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
}
.nav-bar__toggle:hover { background: var(--color-bg-alt); }
.nav-bar__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-out),
              opacity var(--t-fast);
}
.nav-bar__toggle[aria-expanded="true"] .nav-bar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-bar__toggle[aria-expanded="true"] .nav-bar__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-bar__toggle[aria-expanded="true"] .nav-bar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Collapsible nav panel (mobile drawer / desktop inline) */
.nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  padding: 1rem var(--container-padding) 1.5rem;
  gap: 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height var(--t-base) var(--ease-out),
              opacity var(--t-fast) var(--ease-out),
              visibility 0s linear var(--t-base);
}
.nav-panel.is-open {
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
  transition: max-height var(--t-base) var(--ease-out),
              opacity var(--t-fast) var(--ease-out),
              visibility 0s linear 0s;
}

.nav-menu__list {
  display: flex;
  flex-direction: column;
}
.nav-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0.5rem;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: var(--tracking-tighter);
  border-radius: var(--radius-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-menu__link:hover,
.nav-menu__link:focus-visible {
  background: var(--color-bg-alt);
  color: var(--color-text);
}
.chevron-icon {
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

/* 솔루션 페이지 헤더 우측 로그인 버튼 컨테이너 */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .nav-actions { display: none; }
}

/* 헤더 우측 액션 — 좌측 nav-menu__link 와 동일한 텍스트형 스타일
   (도입 문의 button + 로그인 anchor 공통) */
.nav-inquiry,
.nav-login {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 0.5rem;
  font-family: inherit;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: var(--tracking-tighter);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-inquiry:hover,
.nav-inquiry:focus-visible,
.nav-login:hover,
.nav-login:focus-visible {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

/* ==========================================================================
   우측 하단 플로팅 문의 버튼 (모든 페이지 공통)
   ========================================================================== */

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 84px;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--color-primary-500, #2699FB);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow:
    0 10px 28px -8px rgba(38, 153, 251, 0.55),
    0 4px 12px -4px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.floating-contact:hover,
.floating-contact:focus-visible {
  transform: translateY(-2px);
  background: #1F8AE6;
  box-shadow:
    0 14px 32px -8px rgba(38, 153, 251, 0.65),
    0 6px 16px -4px rgba(15, 23, 42, 0.22);
  color: #fff;
  outline: none;
}
.floating-contact:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.floating-contact { border: 0; cursor: pointer; font: inherit; }
.floating-contact__icon { flex-shrink: 0; display: inline-flex; }
.floating-contact__icon--close { display: none; }
.floating-contact__label { white-space: nowrap; }

/* 팝업 열림 상태 — X 아이콘으로 변형 + 텍스트 숨김 */
.floating-contact.is-open .floating-contact__icon--open { display: none; }
.floating-contact.is-open .floating-contact__icon--close { display: inline-flex; }
.floating-contact.is-open .floating-contact__label { display: none; }
.floating-contact.is-open { padding: 14px; }

/* 페이지의 #contact 가 viewport 진입 시 자동 페이드 아웃 */
.floating-contact.is-faded {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.9);
  pointer-events: none;
}

/* 모바일: 텍스트 숨기고 동그란 아이콘 버튼으로 */
@media (max-width: 640px) {
  .floating-contact {
    right: 16px;
    bottom: 36px;
    padding: 14px;
  }
  .floating-contact__label { display: none; }
}

@media (max-width: 0) {
  .floating-contact { transition: opacity 0.2s; }
  .floating-contact:hover { transform: none; }
}

/* ─── 플로팅 문의 팝업 (채널톡 스타일) ─── */
.floating-popup {
  position: fixed;
  right: 24px;
  bottom: 160px;
  z-index: 111; /* site-header(100) · 플로팅 버튼(110) 위 */
  width: min(380px, calc(100vw - 32px));
  max-height: calc(100vh - 220px);
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 24px 60px -12px rgba(15, 23, 42, 0.32),
    0 10px 24px -10px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  display: flex; flex-direction: column;
  transform-origin: bottom right;
  transform: translateY(16px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}
.floating-popup.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.floating-popup__head {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 22px 22px 18px;
  background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 100%);
  color: #fff;
}
.floating-popup__head-text { flex: 1; min-width: 0; }
.floating-popup__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 4px;
}
.floating-popup__sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  letter-spacing: -0.012em;
  line-height: 1.5;
  word-break: keep-all;
}
.floating-popup__close {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.floating-popup__close:hover { background: rgba(255, 255, 255, 0.3); }

.floating-popup__form {
  padding: 18px 22px 22px;
  overflow-y: auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.floating-popup__field { display: flex; flex-direction: column; gap: 5px; }
.floating-popup__field label {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  letter-spacing: -0.01em;
}
.floating-popup__field input,
.floating-popup__field textarea {
  width: 100%;
  padding: 10px 12px;
  background: #F8FAFC;
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  font: inherit;
  font-size: 13.5px;
  color: #0F172A;
  letter-spacing: -0.012em;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.floating-popup__field textarea { resize: vertical; min-height: 80px; }
.floating-popup__field input::placeholder,
.floating-popup__field textarea::placeholder { color: #94A3B8; }
.floating-popup__field input:focus,
.floating-popup__field textarea:focus,
.floating-popup__field select:focus {
  outline: none;
  background: #fff;
  border-color: #2699FB;
  box-shadow: 0 0 0 3px rgba(38, 153, 251, 0.14);
}

/* 솔루션 select — 네이티브 select + 커스텀 caret (legacy) */
.floating-popup__select {
  position: relative;
}
.floating-popup__select select {
  width: 100%;
  padding: 10px 34px 10px 12px;
  background: #F8FAFC;
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  font: inherit;
  font-size: 13.5px;
  color: #0F172A;
  letter-spacing: -0.012em;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.floating-popup__select i {
  position: absolute;
  top: 50%; right: 12px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #6B7280;
}

/* 문의 솔루션 멀티 체크박스 — 복수 선택 */
.floating-popup__field-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #6B7280;
  letter-spacing: -0.012em;
}
.floating-popup__field-hint {
  font-size: 10.5px;
  font-weight: 600;
  color: #2699FB;
  padding: 2px 7px;
  background: #EFF6FF;
  border-radius: 999px;
  letter-spacing: -0.01em;
}
.floating-popup__checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 2px;
}
.floating-popup__check {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 10px;
  background: #F8FAFC;
  border: 1px solid #E6E9F0;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1F2937;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  letter-spacing: -0.012em;
}
.floating-popup__check input[type="checkbox"] {
  width: 14px; height: 14px;
  accent-color: #2699FB;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
}
.floating-popup__check:hover {
  background: #F1F4F8;
  border-color: #C7CDD7;
}
.floating-popup__check:has(input:checked) {
  background: #EFF6FF;
  border-color: #2699FB;
  color: #1664A9;
}
.floating-popup__check:last-child:nth-child(odd) {
  grid-column: 1 / -1;  /* 7번째 "기타" 가 홀수면 풀 폭 */
}

.floating-popup__submit {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  margin-top: 4px;
  padding: 12px 18px;
  background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 100%);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.015em;
  cursor: pointer;
  box-shadow: 0 8px 18px -8px rgba(38, 153, 251, 0.55);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.floating-popup__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -8px rgba(38, 153, 251, 0.7);
}
.floating-popup__submit:disabled { cursor: default; transform: none; }
.floating-popup__submit.is-done {
  background: #10B981;
  box-shadow: 0 8px 18px -8px rgba(16, 185, 129, 0.55);
}
.floating-popup__note {
  margin: 4px 0 0;
  font-size: 11px;
  color: #94A3B8;
  text-align: center;
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .floating-popup {
    right: 12px;
    left: 12px;
    bottom: 100px;
    width: auto;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .nav-bar__toggle { display: none; }
  .nav-panel {
    position: static;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-left: 3rem;
    padding: 0;
    gap: 1.5rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  .nav-menu__list { flex-direction: row; gap: 0.75rem; }
  .nav-menu__link { padding: 8px 16px; }
}

@media (min-width: 1440px) {
  .nav-panel { margin-left: 5rem; }
}

/* Mega menu — "서비스소개" 통합 패널
   Mobile: nav-panel 내부 인라인 아코디언 (.is-open 시 펼침)
   Desktop (≥1024px): nav-bar__inner 에 absolute 정착, hover/focus-within 으로 노출 */
.mega-menu {
  display: none;
  margin-top: 0.25rem;
  padding: 0.75rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}
.nav-menu__item--has-mega.is-open > .mega-menu {
  display: block;
}
.nav-menu__item--has-mega.is-open > .nav-menu__link .chevron-icon {
  transform: rotate(180deg);
}

.mega-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mega-menu__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.mega-menu__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.mega-menu__product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
}
.mega-menu__product:hover,
.mega-menu__product:focus-visible {
  background: #fff;
}
.mega-menu__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  color: var(--color-brand);
}
.mega-menu__product:hover .mega-menu__icon,
.mega-menu__product:focus-visible .mega-menu__icon {
  background: var(--color-bg-alt);
}
.mega-menu__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mega-menu__name {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: var(--tracking-tighter);
}
.mega-menu__desc {
  font-size: 0.8125rem;
  color: var(--color-text-tertiary);
  letter-spacing: var(--tracking-tighter);
  line-height: 1.4;
}

.mega-menu__promos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

/* ---- 신규 솔루션 / 스냅푸시 배너 ----
   배경 그라디언트 + decorative blob + ring + 큰 워터마크 아이콘 + CTA */
.mega-menu__banner {
  --b-bg-from: #1A88F0;
  --b-bg-to:   #2699FB;
  --b-fg:      #fff;
  --b-tag-bg:  rgba(255, 255, 255, 0.22);

  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem 1.2rem;
  min-height: 132px;
  background: linear-gradient(135deg, var(--b-bg-from) 0%, var(--b-bg-to) 100%);
  color: var(--b-fg);
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.mega-menu__banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(7, 32, 59, 0.20);
}

/* NEW · 스냅핏 — 청록 그라디언트 */
.mega-menu__banner--new {
  --b-bg-from: #0EA784;
  --b-bg-to:   #33C4AC;
}

/* HOT · 스냅푸시 — 스냅블루 그라디언트 */
.mega-menu__banner--push {
  --b-bg-from: #1664A9;
  --b-bg-to:   #2699FB;
}

/* decorative bg layer */
.mega-menu__banner-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.mega-menu__banner-blob {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  right: -40px; bottom: -50px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(32px);
}
.mega-menu__banner-ring {
  position: absolute;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}
.mega-menu__banner-ring--a { width: 120px; height: 120px; right: -30px; top: -40px; }
.mega-menu__banner-ring--b { width: 80px;  height: 80px;  right: 30px;  top: -20px; }

.mega-menu__banner-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.mega-menu__banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--b-tag-bg);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.mega-menu__banner-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
  animation: mega-banner-pulse 1.6s ease infinite;
}
@keyframes mega-banner-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.30); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}
@media (max-width: 0) {
  .mega-menu__banner-tag-dot { animation: none; }
}

.mega-menu__banner-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-top: 2px;
}
.mega-menu__banner-sub {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.mega-menu__banner-sub b { color: #fff; font-weight: 700; }

.mega-menu__banner-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  transition: gap var(--t-fast) var(--ease-out);
}
.mega-menu__banner:hover .mega-menu__banner-cta { gap: 9px; }

.mega-menu__banner-mark {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 56px; height: 56px;
  color: rgba(255, 255, 255, 0.32);
  display: none;
}
@media (min-width: 1024px) {
  .mega-menu__banner-mark { display: inline-flex; }
}

@media (min-width: 1024px) {
  /* 데스크탑: 메가 메뉴를 .nav-bar (full viewport width) 에 정착시키기 위해
     .nav-bar__inner 의 relative 컨텍스트를 풀어 줌. 모바일은 그대로 유지. */
  .nav-bar__inner { position: static; }

  /* 트리거 hover 영역을 nav-bar 풀높이로 늘려 링크와 패널 사이 빈틈을 제거.
     이전: <a> padding만 → 36px hover 영역 / 위아래 ~14px 빈 구간 → 깜빡임.
     이후: <li> 가 헤더 풀높이 → 빈 구간 0, 마우스가 아래로 내려가도 hover 유지. */
  .nav-menu__item--has-mega {
    position: static;
    align-self: stretch;
    display: flex;
    align-items: center;
  }

  .mega-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 2rem 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--t-fast) var(--ease-out),
                transform var(--t-base) var(--ease-out),
                visibility 0s linear var(--t-base);
    z-index: 90;
  }
  /* 패널 상단에 투명 hover 브리지 — 혹시 남은 1~2px 마이크로갭을 흡수 */
  .mega-menu::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: -8px;
    height: 8px;
  }
  .nav-menu__item--has-mega:hover > .mega-menu,
  .nav-menu__item--has-mega:focus-within > .mega-menu,
  .nav-menu__item--has-mega.is-open > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--t-fast) var(--ease-out),
                transform var(--t-base) var(--ease-out),
                visibility 0s linear 0s;
  }
  .nav-menu__item--has-mega:hover > .nav-menu__link .chevron-icon,
  .nav-menu__item--has-mega:focus-within > .nav-menu__link .chevron-icon,
  .nav-menu__item--has-mega.is-open > .nav-menu__link .chevron-icon {
    transform: rotate(180deg);
  }

  /* 내부 콘텐츠는 컨테이너 max-width 로 정렬 — 패널 자체는 풀폭 */
  .mega-menu__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 2.5rem;
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
  }
  .mega-menu__products {
    flex: 1 1 auto;
    min-width: 0;
  }
  .mega-menu__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem 1rem;
  }
  .mega-menu__product { padding: 0.75rem; }

  .mega-menu__promos {
    flex: 0 0 360px;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 0.75rem;
    margin-top: 0;
    padding: 0 0 0 2rem;
    border-top: 0;
    border-left: 1px solid var(--color-border);
  }
}

@media (min-width: 1440px) {
  .mega-menu { padding-block: 2.5rem; }
  .mega-menu__inner { max-width: var(--container-max-wide); gap: 3rem; }
  .mega-menu__promos { flex-basis: 400px; padding-left: 3rem; }
}

/* ==========================================================================
   narrow dropdown (회사 소개 같은 2~3개 짧은 서브 메뉴)
   ========================================================================== */
.nav-sub__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-sub__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  color: var(--color-text);
  text-decoration: none;
  transition: background var(--t-fast);
}
.nav-sub__item:hover,
.nav-sub__item:focus-visible {
  background: var(--color-bg-alt);
  outline: none;
}
.nav-sub__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--color-bg-alt);
  color: var(--color-accent-blue);
}
.nav-sub__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.nav-sub__name { font-weight: 700; font-size: 0.9375rem; color: var(--color-text); }
.nav-sub__desc { font-size: 0.8125rem; color: var(--color-text-secondary); }

/* 데스크탑: narrow 패널 — 풀폭이 아닌 트리거 아래 작게 정렬 */
@media (min-width: 1024px) {
  .mega-menu--narrow {
    left: auto;
    right: auto;
    width: 320px;
    padding: 0.75rem;
    border-radius: 12px;
    border-top: 0;
    margin-top: 8px;
  }
  .mega-menu--narrow .mega-menu__inner {
    flex-direction: column;
    padding: 0;
    max-width: none;
    width: 100%;
  }
}


/* Button component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  min-height: 44px;
  font-size: var(--fs-base);
  font-weight: 500;
  letter-spacing: var(--tracking-tighter);
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast);
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--color-accent-blue);
  color: #fff;
}
.btn--primary:hover { background: #1A88F0; }
.btn--secondary {
  background: #fff;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}
.btn--secondary:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-border-soft);
}
.btn__icon { flex-shrink: 0; }

/* ─ 페이지별 lp.css 가 .btn 클래스를 재정의해도 헤더 안 버튼은 보존
     specificity 올려 사이트 헤더 톤 유지 (.nav-bar .btn = 0,2,0) ─ */
.nav-bar .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  min-height: 44px;
  font-size: var(--fs-base);
  font-weight: 500;
  letter-spacing: var(--tracking-tighter);
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
  border: 0;
  text-transform: none;
  box-shadow: none;
  line-height: 1.2;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast);
}
.nav-bar .btn--primary {
  background: var(--color-accent-blue);
  color: #fff;
}
.nav-bar .btn--primary:hover { background: #1A88F0; color: #fff; }
.nav-bar .btn--secondary {
  background: #fff;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}
.nav-bar .btn--secondary:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-border-soft);
  color: var(--color-text);
}

@media (min-width: 1024px) {
  .btn { padding: 13px 16px; min-height: 48px; }
}


/* ==========================================================================
   5. HERO (content0) — Figma 2878:816
   ========================================================================== */
.hero {
  position: relative;
  padding: 3.5rem 0 3rem;
  overflow: hidden;
  text-align: center;
  /* 다음 섹션(흰색)과 매끄럽게 이어지도록 솔리드 흰색.
     하단 mint 글로우는 0.10 alpha 로 매우 미세하게 유지 */
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(51, 196, 172, 0.10), transparent 70%),
    #fff;
  /* hero rotator 와 동기 — JS 가 회전 시 갱신하는 솔루션 컬러 (rgb 트리플렛) */
  --hero-glow: 38, 153, 251;
}
/* Figma Rectangle 2 (id=2878:825) — blur blob.
   bottom 을 15% 띄워서 hero 하단의 hard-cut 을 방지 (blur 가 자연 페이드되도록). */
.hero::before {
  content: '';
  position: absolute;
  top: 28%;
  left: 0;
  right: 0;
  bottom: 12%;
  background: radial-gradient(50% 50% at 50% 50%,
    rgb(var(--hero-glow)) 0%,
    rgba(var(--hero-glow), 0.5) 100%);
  opacity: 0.2;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero__container,
.hero__marquee {
  position: relative;
  z-index: 1;
}
.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  .hero__copy {
    flex: 1;
    gap: 2rem;
  }
  .hero__copy .hero__title { text-align: left; }
}
.hero__title {
  font-size: clamp(1.75rem, 6.4vw, 4rem);    /* 28 → 64 */
  font-weight: 700;
  letter-spacing: var(--tracking-tightest);
  line-height: 1.2;
  color: var(--color-text);
}
@keyframes hero-caret-blink {
  from { opacity: 1; }
  to   { opacity: 0; }
}
.hero__title-suffix {
  display: inline-block;
  transition: opacity 220ms var(--ease-out);
}
.hero__title-suffix.is-swapping {
  opacity: 0;
}
/* reduce-motion 환경에서도 회전 페이드는 살림 (의도된 마케팅 비주얼) */
@media (max-width: 0) {
  .hero__title-suffix { transition-duration: 220ms !important; }
}

/* 데코용 데모 박스 — 실제 입력 받지 않음. */
.hero__search {
  width: 100%;
  max-width: 650px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: #fff;
  border-radius: 16px;
  /* 글로우 색상은 hero 의 --hero-glow 변수에 의해 결정 — rotator 와 동기 */
  box-shadow: 0 0 48px 0 rgba(var(--hero-glow, 38, 153, 251), 0.30);
  transition: box-shadow 800ms cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}
.hero__search-input {
  flex: 1;
  min-width: 0;
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-tighter);
  padding: 0.625rem 0;
  white-space: nowrap;
  overflow: hidden;
  min-height: 1.5em;
  text-align: left;
}
/* 타이핑 caret — 텍스트 끝에서 깜빡임. 타이핑 중엔 정지(=입력 중 느낌) */
.hero__search-input::after {
  content: '|';
  display: inline-block;
  margin-left: 0.08em;
  color: var(--color-text);
  font-weight: 400;
  animation: hero-caret-blink 1s steps(2) infinite;
}
.hero__search-input.is-typing::after {
  animation: none;
  opacity: 1;
}
/* reduce-motion 환경에서도 caret blink 유지 (의도된 마케팅 비주얼) */
@media (max-width: 0) {
  .hero__search-input::after {
    animation-duration: 1s !important;
    animation-iteration-count: infinite !important;
  }
}
.hero__search-send {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-text);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero { padding: 5rem 0 4rem; }
  .hero__container { gap: 2rem; }
  .hero__search {
    padding: 0.75rem 0.75rem 0.75rem 1.5rem;
    border-radius: 18px;
  }
  .hero__search-input { font-size: var(--fs-lg); padding: 0.75rem 0; }
  .hero__search-send { width: 44px; height: 44px; border-radius: 11px; }
}
@media (min-width: 1024px) {
  .hero { padding: 7rem 0 5rem; }
  .hero__container { gap: 2.5rem; }
  .hero__search {
    padding: 1rem 1rem 1rem 1.75rem;
    border-radius: 20px;
  }
  .hero__search-input { font-size: 1.25rem; }   /* 20px */
  .hero__search-send { width: 48px; height: 48px; border-radius: 12px; }
}
@media (min-width: 1440px) {
  .hero { padding: 8rem 0 6rem; }
  .hero__search-input { font-size: 1.5rem; }    /* 24px — matches Figma */
}

/* ==========================================================================
   HERO · SnapPush AI mockup (CEO 요청 — 첫 화면 노출)
   ========================================================================== */
.hero__ai {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (min-width: 1024px) {
  .hero__ai {
    flex: 0 0 460px;
    max-width: 460px;
    margin: 0;
    align-items: flex-end;
  }
}
@media (min-width: 1440px) {
  .hero__ai { flex: 0 0 460px; max-width: 460px; }
}

.hero__ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #2C7DE8 0%, #6E3DB5 100%);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 16px -6px rgba(110, 61, 181, 0.45);
}
.hero__ai-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
  animation: hero-ai-pulse 1.6s ease-in-out infinite;
}
@keyframes hero-ai-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.7); }
}

/* ─── SnapPush AI 4-step 위저드 (자동 순환) ─── */
.ai-wiz {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #EEF0F4;
  box-shadow:
    0 30px 60px -20px rgba(15, 23, 42, 0.18),
    0 12px 28px -10px rgba(44, 125, 232, 0.18);
  font-family: var(--font-family-base, 'Pretendard Variable', sans-serif);
  overflow: hidden;
  text-align: left;
}

/* 4-step 스텝퍼 (자동 active 회전) */
.ai-wiz__steps {
  margin: 0;
  padding: 14px 20px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-bottom: 1px solid #EEF0F4;
}
.ai-wiz__step {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: -0.005em;
  white-space: nowrap;
  animation: 10.667s ease-in-out infinite; /* 1.5x speed */
}
.ai-wiz__step b {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #F1F4F9;
  color: #94A3B8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  animation: 10.667s ease-in-out infinite; /* 1.5x speed */
}
.ai-wiz__step:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1px;
  background: #E2E7EE;
  margin-left: 4px;
}

/* 각 스텝의 텍스트 회전 — pending → active(진하게) → done(중간) */
.ai-wiz__step--n01       { animation-name: wizStepText01; }
.ai-wiz__step--n02       { animation-name: wizStepText02; }
.ai-wiz__step--n03       { animation-name: wizStepText03; }
.ai-wiz__step--n04       { animation-name: wizStepText04; }
.ai-wiz__step--n01 b     { animation-name: wizStepCircle01; }
.ai-wiz__step--n02 b     { animation-name: wizStepCircle02; }
.ai-wiz__step--n03 b     { animation-name: wizStepCircle03; }
.ai-wiz__step--n04 b     { animation-name: wizStepCircle04; }

/* 텍스트: pending=회색 / active=진한네이비+굵게 / done=중간그레이 */
@keyframes wizStepText01 {
  0%, 22%    { color: #0F172A; font-weight: 800; }
  25%, 100%  { color: #475569; font-weight: 600; }
}
@keyframes wizStepText02 {
  0%, 22%    { color: #94A3B8; font-weight: 600; }
  25%, 47%   { color: #0F172A; font-weight: 800; }
  50%, 100%  { color: #475569; font-weight: 600; }
}
@keyframes wizStepText03 {
  0%, 47%    { color: #94A3B8; font-weight: 600; }
  50%, 72%   { color: #0F172A; font-weight: 800; }
  75%, 100%  { color: #475569; font-weight: 600; }
}
@keyframes wizStepText04 {
  0%, 72%    { color: #94A3B8; font-weight: 600; }
  75%, 100%  { color: #0F172A; font-weight: 800; }
}

/* 원형 마커: pending=회색 / active=파랑그라데+그림자 / done=라이트블루 */
@keyframes wizStepCircle01 {
  0%, 22%    { background: linear-gradient(160deg, #2699FB, #5BB6FF); color: #fff; box-shadow: 0 4px 10px -3px rgba(38, 153, 251, 0.55); }
  25%, 100%  { background: #E0F2FE; color: #0284C7; box-shadow: none; }
}
@keyframes wizStepCircle02 {
  0%, 22%    { background: #F1F4F9; color: #94A3B8; box-shadow: none; }
  25%, 47%   { background: linear-gradient(160deg, #2699FB, #5BB6FF); color: #fff; box-shadow: 0 4px 10px -3px rgba(38, 153, 251, 0.55); }
  50%, 100%  { background: #E0F2FE; color: #0284C7; box-shadow: none; }
}
@keyframes wizStepCircle03 {
  0%, 47%    { background: #F1F4F9; color: #94A3B8; box-shadow: none; }
  50%, 72%   { background: linear-gradient(160deg, #2699FB, #5BB6FF); color: #fff; box-shadow: 0 4px 10px -3px rgba(38, 153, 251, 0.55); }
  75%, 100%  { background: #E0F2FE; color: #0284C7; box-shadow: none; }
}
@keyframes wizStepCircle04 {
  0%, 72%    { background: #F1F4F9; color: #94A3B8; box-shadow: none; }
  75%, 100%  { background: linear-gradient(160deg, #2699FB, #5BB6FF); color: #fff; box-shadow: 0 4px 10px -3px rgba(38, 153, 251, 0.55); }
}

/* 패널 덱 — 4 step 콘텐츠가 절대위치로 겹쳐 순환 (step 02 기준 높이 확보) */
.ai-wiz__deck {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}
.ai-wiz__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  animation: 10.667s ease-in-out infinite; /* 1.5x speed */
}
.ai-wiz__panel--n01 { animation-name: wizPanel01; }
.ai-wiz__panel--n02 { animation-name: wizPanel02; }
.ai-wiz__panel--n03 { animation-name: wizPanel03; }
.ai-wiz__panel--n04 { animation-name: wizPanel04; }
@keyframes wizPanel01 {
  0%   { opacity: 1; visibility: visible; }
  22%  { opacity: 1; visibility: visible; }
  25%  { opacity: 0; visibility: hidden; }
  97%  { opacity: 0; visibility: hidden; }
  100% { opacity: 1; visibility: visible; }
}
@keyframes wizPanel02 {
  0%, 22%   { opacity: 0; visibility: hidden; }
  25%       { opacity: 1; visibility: visible; }
  47%       { opacity: 1; visibility: visible; }
  50%, 100% { opacity: 0; visibility: hidden; }
}
@keyframes wizPanel03 {
  0%, 47%   { opacity: 0; visibility: hidden; }
  50%       { opacity: 1; visibility: visible; }
  72%       { opacity: 1; visibility: visible; }
  75%, 100% { opacity: 0; visibility: hidden; }
}
@keyframes wizPanel04 {
  0%, 72%   { opacity: 0; visibility: hidden; }
  75%       { opacity: 1; visibility: visible; }
  100%      { opacity: 1; visibility: visible; }
}

.ai-wiz__body { flex: 1; }
.ai-wiz__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid #F1F4F9;
}
.ai-wiz__head-title {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.015em;
}
.ai-wiz__head-title i {
  font-size: 15px;
  color: #2699FB;
}
.ai-wiz__head-count {
  flex-shrink: 0;
  padding: 4px 10px;
  background: #E0F2FE;
  color: #0284C7;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.005em;
}

/* 서브 탭 (3-step within step 02) */
.ai-wiz__tabs {
  display: flex;
  gap: 14px;
  padding: 10px 18px 0;
  border-bottom: 1px solid #F1F4F9;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ai-wiz__tabs::-webkit-scrollbar { display: none; }
.ai-wiz__tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 0 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: -0.01em;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
}
.ai-wiz__tab b {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #F1F4F9;
  color: #94A3B8;
  font-size: 10px;
  font-weight: 800;
}
.ai-wiz__tab.is-active {
  color: #2699FB;
  font-weight: 800;
  border-bottom-color: #2699FB;
}
.ai-wiz__tab.is-active b {
  background: linear-gradient(160deg, #2699FB, #5BB6FF);
  color: #fff;
}

/* body */
.ai-wiz__body {
  padding: 16px 18px 18px;
}
.ai-wiz__status {
  margin-bottom: 14px;
}
.ai-wiz__status-title {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.012em;
}
.ai-wiz__status-note {
  margin: 0;
  font-size: 11px;
  color: #94A3B8;
  letter-spacing: -0.005em;
  line-height: 1.5;
}
.ai-wiz__q {
  margin: 14px 0 8px;
  font-size: 12px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.012em;
}

/* 옵션 리스트 */
.ai-wiz__opts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ai-wiz__opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #E2E7EE;
  border-radius: 10px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.ai-wiz__opt-check {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1.5px solid #CBD5E1;
  background: #fff;
  position: relative;
}
.ai-wiz__opt.is-selected {
  background: linear-gradient(160deg, #F0F8FF 0%, #E5F2FF 100%);
  border-color: #2699FB;
  box-shadow: 0 4px 10px -4px rgba(38, 153, 251, 0.18);
}
.ai-wiz__opt.is-selected .ai-wiz__opt-check {
  background: linear-gradient(160deg, #2699FB, #5BB6FF);
  border-color: #2699FB;
}
.ai-wiz__opt.is-selected .ai-wiz__opt-check::after {
  content: '';
  position: absolute;
  top: 3px; left: 5px;
  width: 3px; height: 7px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.ai-wiz__opt-body {
  display: flex; flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.ai-wiz__opt-body b {
  font-size: 12.5px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.012em;
  line-height: 1.3;
}
.ai-wiz__opt-body em {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  color: #94A3B8;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

/* 하단 버튼 */
.ai-wiz__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid #F1F4F9;
  background: #FAFBFE;
}
.ai-wiz__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: default;
}
.ai-wiz__btn--ghost {
  background: #fff;
  color: #CBD5E1;
  border: 1px solid #E2E7EE;
}
.ai-wiz__btn--primary {
  background: linear-gradient(160deg, #2699FB, #5BB6FF);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(38, 153, 251, 0.55);
}
.ai-wiz__btn--wait {
  color: #94A3B8;
  font-style: italic;
  font-weight: 600;
}

/* ─── STEP 01 — 진입 (welcome + input + suggestion chips) ─── */
.ai-wiz__welcome {
  margin: 0 0 16px;
  font-size: 13px;
  color: #475569;
  letter-spacing: -0.01em;
  line-height: 1.6;
  text-align: center;
}
.ai-wiz__welcome b {
  color: #0F172A;
  font-weight: 800;
}
.ai-wiz__input {
  display: flex; align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #F7F9FC;
  border: 1.5px solid #2699FB;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px -6px rgba(38, 153, 251, 0.22);
}
.ai-wiz__input i {
  font-size: 16px;
  color: #2699FB;
  flex-shrink: 0;
}
.ai-wiz__input-text {
  flex: 1;
  font-size: 12px;
  color: #94A3B8;
  letter-spacing: -0.005em;
}
.ai-wiz__input-caret {
  width: 1.5px; height: 14px;
  background: #2699FB;
  animation: wizCaretBlink 1s steps(2) infinite;
}
@keyframes wizCaretBlink {
  from { opacity: 1; }
  to   { opacity: 0; }
}
.ai-wiz__sugg {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: center;
}
.ai-wiz__sugg-pill {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #E2E7EE;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  letter-spacing: -0.005em;
}

/* ─── STEP 03 — 데이터 분석 (process list + progress) ─── */
.ai-wiz__proc {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-wiz__proc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #E2E7EE;
  border-radius: 10px;
}
.ai-wiz__proc-item.is-active {
  background: linear-gradient(160deg, #F0F8FF, #E5F2FF);
  border-color: #2699FB;
  box-shadow: 0 4px 14px -6px rgba(38, 153, 251, 0.22);
}
.ai-wiz__proc-item.is-done {
  background: #fff;
}
.ai-wiz__proc-mark {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #F1F4F9;
  display: inline-flex; align-items: center; justify-content: center;
  color: #CBD5E1;
}
.ai-wiz__proc-item.is-done .ai-wiz__proc-mark {
  background: linear-gradient(160deg, #22C55E, #16A34A);
  color: #fff;
}
.ai-wiz__proc-item.is-done .ai-wiz__proc-mark i { font-size: 12px; }
.ai-wiz__proc-item.is-active .ai-wiz__proc-mark {
  background: linear-gradient(160deg, #2699FB, #5BB6FF);
}
.ai-wiz__proc-spin {
  width: 12px; height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wizSpin 0.9s linear infinite;
}
@keyframes wizSpin {
  to { transform: rotate(360deg); }
}
.ai-wiz__proc-body {
  display: flex; flex-direction: column;
  gap: 2px;
}
.ai-wiz__proc-body b {
  font-size: 12.5px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.01em;
}
.ai-wiz__proc-body em {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  color: #94A3B8;
  letter-spacing: -0.005em;
}
.ai-wiz__progress {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.ai-wiz__progress-bar {
  position: relative;
  display: block;
  width: 100%;
  height: 4px;
  background: #E2E7EE;
  border-radius: 2px;
  overflow: hidden;
}
.ai-wiz__progress-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 62%;
  background: linear-gradient(90deg, #2699FB, #5BB6FF);
  border-radius: 2px;
  animation: wizProgress 2.2s ease-in-out infinite alternate;
}
@keyframes wizProgress {
  from { width: 50%; }
  to   { width: 80%; }
}
.ai-wiz__progress-meta {
  font-size: 10.5px;
  font-weight: 600;
  color: #94A3B8;
  text-align: right;
}

/* ─── STEP 04 — AI 답변 (answer + insights) ─── */
.ai-wiz__answer {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  padding: 16px 14px;
  margin-bottom: 12px;
  background: linear-gradient(160deg, #F0F8FF, #E5F2FF);
  border: 1px solid #2699FB;
  border-radius: 12px;
  box-shadow: 0 8px 20px -8px rgba(38, 153, 251, 0.30);
}
.ai-wiz__answer-label {
  font-size: 11px;
  font-weight: 700;
  color: #2699FB;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ai-wiz__answer-value {
  display: inline-flex; align-items: baseline;
  font-size: 36px;
  font-weight: 900;
  color: #2699FB;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ai-wiz__answer-value em {
  font-style: normal;
  font-size: 20px;
  font-weight: 800;
  margin-left: 2px;
}
.ai-wiz__answer-meta {
  font-size: 10.5px;
  font-weight: 600;
  color: #475569;
  letter-spacing: -0.005em;
}
.ai-wiz__insights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ai-wiz__insights li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #E2E7EE;
  border-radius: 8px;
  font-size: 11.5px;
  color: #475569;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.ai-wiz__insights li i {
  font-size: 14px;
  color: #2699FB;
  flex-shrink: 0;
  margin-top: 1px;
}
.ai-wiz__insights li b {
  color: #0F172A;
  font-weight: 800;
}

/* 좁은 화면 — 위저드는 좁아져도 옵션은 그대로 */
@media (max-width: 480px) {
  .ai-wiz__steps { padding: 12px 14px; gap: 4px; }
  .ai-wiz__step { font-size: 10px; }
  .ai-wiz__step b { width: 20px; height: 20px; font-size: 9.5px; }
  .ai-wiz__step:not(:last-child)::after { width: 8px; }
  .ai-wiz__tabs { padding: 10px 14px 0; gap: 10px; }
  .ai-wiz__tab { font-size: 10.5px; }
  .ai-wiz__head { padding: 14px 14px; }
  .ai-wiz__head-title { font-size: 12.5px; }
  .ai-wiz__body { padding: 14px 14px; }
  .ai-wiz__foot { padding: 12px 14px; }
  .ai-wiz__deck { min-height: 520px; }
  .ai-wiz__answer-value { font-size: 32px; }
}

/* Marquee — 2 rows, opposite directions */
.hero__marquee {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  /* 블루 글로우는 .hero::before pseudo 에서 통합 처리
     (검색바 ~ 마퀴 전체를 한 덩어리의 blur blob 으로 묶음) */
}
.hero__marquee-row {
  overflow: hidden;
}
.hero__marquee-track {
  display: flex;
  width: max-content;
  animation: hero-marquee 140s linear infinite;
}
.hero__marquee-track--reverse {
  animation-direction: reverse;
  animation-duration: 168s;   /* 살짝 다른 속도 → 시각적 풍성함 */
}
.marquee-set {
  display: flex;
  gap: 0.75rem;
  padding-right: 0.75rem;   /* set 끝의 trailing 갭 = 내부 갭과 동일 → 무한루프 이음새 매끄러움 */
}
@keyframes hero-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-100% / 3), 0, 0); }   /* 3 set 구조 → -33.33% = 한 set 길이 */
}
/* reduce-motion 환경에서도 마퀴는 계속 회전 (의도된 마케팅 비주얼).
   CSS reset 의 animation-duration + iteration-count 둘 다 override */
@media (max-width: 0) {
  .hero__marquee-track {
    animation-duration: 140s !important;
    animation-iteration-count: infinite !important;
  }
  .hero__marquee-track--reverse {
    animation-duration: 168s !important;
  }
}

@media (min-width: 768px) {
  .hero__marquee { margin-top: 3rem; gap: 1rem; }
  .marquee-set { gap: 1rem; padding-right: 1rem; }
}

/* Card — 고객사 로고 (강조) + 사용 솔루션 chips (소형) */
.hero-card {
  flex: 0 0 220px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.hero-card__logo {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.hero-card__logo img {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
/* 저해상도 로고 — 자연 크기 이하로 캡 (업스케일 흐림 방지)
   TODO: 추후 고해상도 PNG/SVG 받아 교체 시 이 규칙 삭제 */
.hero-card__logo img[src$="/09women.png"]  { max-height: 36px !important; max-width: 200px; }
.hero-card__logo img[src$="/dkpharm.png"]  { max-height: 44px !important; max-width: 130px; }
.hero-card__logo img[src$="/andar.jpg"]    { max-height: 80px !important; max-width: 150px; }
.hero-card__logo img[src$="/ihi.png"]      { max-height: 80px !important; max-width: 240px; }
.hero-card__logo img[src$="/soim.png"]     { max-height: 80px !important; max-width: 200px; }
.hero-card__logo-text {
  font-size: 1.375rem;     /* 22px */
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: 0.01em;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
}
.hero-card__tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  flex-shrink: 0;
  max-width: 100%;
}
.hero-card__tool {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 0.6875rem;    /* 11px */
  font-weight: 600;
  color: var(--color-text-secondary);
  background: var(--color-bg-alt);
  border-radius: 999px;
  letter-spacing: var(--tracking-tight);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .hero-card {
    flex: 0 0 260px;
    height: 180px;
    padding: 20px 22px;
    gap: 14px;
  }
  .hero-card__logo img { max-height: 76px; }
  .hero-card__logo-text { font-size: 1.625rem; }   /* 26px */
}
@media (min-width: 1024px) {
  .hero-card {
    flex: 0 0 300px;
    height: 200px;
    padding: 22px 26px;
  }
  .hero-card__logo img { max-height: 88px; }
  .hero-card__logo-text { font-size: 1.875rem; }   /* 30px */
  .hero-card__tool { font-size: 0.75rem; padding: 3px 10px; }   /* 12px */
}


/* ==========================================================================
   SECTION BASE / TYPOGRAPHY HELPERS
   ========================================================================== */
.section {
  padding: 3.5rem 0;
}
@media (min-width: 768px)  { .section { padding: 5rem 0; } }
@media (min-width: 1024px) { .section { padding: 6rem 0; } }
@media (min-width: 1440px) { .section { padding: 7rem 0; } }

.section-title {
  font-size: clamp(1.625rem, 4vw, 3rem);  /* 26 → 48 */
  font-weight: 700;
  letter-spacing: var(--tracking-tightest);
  line-height: 1.25;
  color: var(--color-text);
}
.section-title--center { text-align: center; }
.section-lead {
  font-size: var(--fs-md);
  color: var(--color-text-tertiary);
  letter-spacing: var(--tracking-tighter);
  line-height: 1.6;
  margin-top: 1rem;
}


/* ==========================================================================
   6. SECTION 1 — 실적 지표 (content1, Figma 2878:915)
   Bento grid: 4 cols × 3 rows on desktop, simpler stacking on mobile.
   ========================================================================== */
.section--stats-intro__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stats-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

.stat {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border-radius: 16px;
  min-height: 140px;
  overflow: hidden;
}

.stat__head {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  line-height: 1;
}
.stat__value {
  font-size: 1.75rem;          /* 28 mobile */
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
}
.stat__plus {
  font-weight: 700;
  margin-left: 1px;
}
.stat__unit {
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
  font-weight: 500;
}
.stat__label {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: var(--tracking-tighter);
  margin-top: auto;
}

/* big featured tile */
.stat--big { grid-column: 1 / -1; min-height: 240px; padding: 1.5rem; }
.stat--big .stat__value { font-size: 2.5rem; }
.stat--big .stat__unit  { font-size: 0.875rem; }

.stat__viz--pie {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 55%;
  max-width: 240px;
  aspect-ratio: 1;
  background: url('/assets/img/content1-pie.png') no-repeat center/contain;
}

.stat--mau   .stat__value { font-size: 1.625rem; }
.stat--rank  .stat__value { font-size: 2rem; }
.stat--daily .stat__value { font-size: 1.5rem; word-break: keep-all; }

/* photo tiles */
.stat--photo {
  background-color: var(--color-bg-alt-2);
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  min-height: 160px;
}
.stat--bldg   { background-image: url('/assets/img/content1-bldg.png'); }
.stat--people { background-image: url('/assets/img/content1-people.png'); }

/* ---- Tablet & up (≥ 768px) — full bento 4×3 ---- */
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1rem;
    aspect-ratio: 780 / 586;
  }
  .stat        { padding: 1.5rem; min-height: 0; }
  .stat--big   { grid-column: 1 / 3; grid-row: 1 / 3; padding: 2rem; }
  .stat--mau   { grid-column: 3 / 5; grid-row: 1; }
  .stat--rank  { grid-column: 3;     grid-row: 2; }
  .stat--bldg  { grid-column: 4;     grid-row: 2; }
  .stat--people{ grid-column: 1 / 3; grid-row: 3; }
  .stat--daily { grid-column: 3 / 5; grid-row: 3; }

  .stat--big   .stat__value { font-size: clamp(2.75rem, 5vw, 4rem); }
  .stat--big   .stat__unit  { font-size: 1rem; }
  .stat--mau   .stat__value { font-size: clamp(1.75rem, 2.6vw, 2.25rem); }
  .stat--rank  .stat__value { font-size: clamp(2rem, 3vw, 2.5rem); }
  .stat--daily .stat__value { font-size: clamp(1.5rem, 2.2vw, 2rem); }
}

/* ---- Desktop & up (≥ 1024px) — title left, grid right ---- */
@media (min-width: 1024px) {
  .section--stats-intro__layout {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
  }
  .section--stats-intro__layout .section-heading {
    flex: 0 0 280px;
    padding-top: 1rem;
  }
  .section--stats-intro__layout .section-title {
    text-align: left;
  }
  .stats-grid {
    flex: 1;
    gap: 1.25rem;
  }
  .stat--big .stat__value { font-size: clamp(3rem, 4.5vw, 4.25rem); }
}

@media (min-width: 1440px) {
  .section--stats-intro__layout { gap: 4rem; }
}


/* ==========================================================================
   7. SECTION 2 — 솔루션 카드 (content2, Figma 2878:945)
   ========================================================================== */
.section--products .section-title { margin-bottom: 2.5rem; }

/* ===== Mobile/Tablet: 단순 카드 stack (모든 패널 다 표시) ===== */
.product-bookmark__tabs { display: none; }
.product-bookmark__panels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-panel {
  background: var(--c, var(--color-text));
  color: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 240px;
  opacity: 1;
  visibility: visible;
}
.product-panel[hidden] { display: flex; }   /* 모바일에선 hidden 어트리뷰트 무시 */
.product-panel__head { display: flex; flex-direction: column; gap: 0.5rem; flex-shrink: 0; }
.product-panel__name {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tightest);
  line-height: 1.2;
}
.product-panel__desc {
  font-size: var(--fs-base);
  font-weight: 500;
  letter-spacing: var(--tracking-tighter);
  opacity: 0.92;
  line-height: 1.55;
}
.product-panel__media {
  flex: 1;
  min-height: 160px;
  background-color: rgba(255, 255, 255, 0.10);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
}
.product-panel__media--empty {
  background: rgba(255, 255, 255, 0.10);
}

@media (min-width: 768px) {
  .product-bookmark__panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .product-panel { min-height: 320px; padding: 2.25rem; }
  /* 푸시는 태블릿에서 폭 강조 */
  #panel-push { grid-column: span 2; }
}

/* ===== Desktop+ : 책갈피 탭 + 공유 패널 ===== */
@media (min-width: 1024px) {
  .product-bookmark {
    display: flex;
    flex-direction: column;
  }
  /* 탭 strip — 모두 표시, 활성 탭만 와이드 */
  .product-bookmark__tabs {
    display: flex;
    gap: 6px;
    align-items: stretch;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }
  .product-tab {
    flex: 1;
    background: var(--c);
    color: rgba(255, 255, 255, 0.78);
    padding: 1.25rem 1.5rem 1rem;
    border: 0;
    border-radius: 20px 20px 0 0;
    cursor: pointer;
    text-align: left;
    overflow: hidden;
    min-width: 0;
    transition: flex 450ms cubic-bezier(0.65, 0, 0.35, 1),
                color 200ms ease,
                padding 450ms cubic-bezier(0.65, 0, 0.35, 1);
  }
  .product-tab:hover { color: #fff; }
  .product-tab.is-active {
    flex: 4;
    color: #fff;
    padding: 1.5rem 2rem 1.25rem;
  }
  .product-tab__name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: var(--tracking-tighter);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: font-size 300ms ease;
  }
  .product-tab.is-active .product-tab__name { font-size: 1.625rem; }

  /* 공유 패널 영역 — 활성 패널만 보임 */
  .product-bookmark__panels {
    position: relative;
    display: block;
    height: 480px;
    gap: 0;
  }
  .product-panel {
    position: absolute;
    inset: 0;
    margin: 0;
    border-radius: 0 0 24px 24px;
    padding: 2.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    min-height: 0;
    grid-column: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 280ms ease;
  }
  .product-panel[hidden] { display: grid; }   /* hidden 어트리뷰트 비활성 */
  .product-panel.is-active {
    opacity: 1;
    visibility: visible;
  }
  .product-panel__head {
    justify-content: center;
    gap: 1rem;
  }
  .product-panel__name {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
  }
  .product-panel__desc {
    font-size: var(--fs-md);
  }
  .product-panel__media {
    min-height: 0;
    height: 100%;
    align-self: stretch;
  }
}

@media (min-width: 1440px) {
  .product-bookmark__panels { height: 520px; }
  .product-panel { padding: 3rem 3.5rem; gap: 3rem; }
}


/* ==========================================================================
   8. SECTION 3 — 탭 기능 (content3, Figma 2878:984)
   ========================================================================== */
.tab-feature__nav {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  margin-inline: calc(-1 * var(--container-padding));
  padding-inline: var(--container-padding);
  padding-bottom: 0.5rem;
}
.tab-feature__tab {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.75rem 0.75rem;
  min-width: 96px;
  font-size: var(--fs-base);
  color: var(--color-text-tertiary);
  border-radius: 12px;
  font-weight: 500;
  letter-spacing: var(--tracking-tighter);
  scroll-snap-align: start;
  transition: background var(--t-fast), color var(--t-fast);
}
.tab-feature__tab:hover { background: var(--color-bg-alt); }
.tab-feature__tab.is-active {
  color: var(--color-text);
  background: var(--color-bg-alt);
}
.tab-feature__tab-icon {
  width: 36px;
  height: 36px;
  background: var(--color-bg-alt-2);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--t-fast);
}
.tab-feature__tab.is-active .tab-feature__tab-icon {
  background: var(--color-brand);
  color: #fff;
}

/* 패널 컨테이너 — 활성 패널만 표시 (JS 가 .is-active + hidden 어트리뷰트 토글) */
.tab-feature__panels {
  position: relative;
  margin-top: 2rem;
}
.tab-feature__panel {
  display: grid;
  gap: 2rem;
}
.tab-feature__panel[hidden] { display: none; }
.tab-feature__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.tab-feature__title {
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tightest);
  line-height: 1.3;
  color: var(--color-text);
}
.tab-feature__desc {
  font-size: var(--fs-md);
  color: var(--color-text-tertiary);
  line-height: 1.65;
  letter-spacing: var(--tracking-tighter);
}
.tab-feature__more {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-accent-blue);
  letter-spacing: var(--tracking-tighter);
  transition: color var(--t-fast);
}
.tab-feature__more:hover { color: #1A88F0; }
.tab-feature__mockup {
  background: var(--color-bg-alt-2);
  border-radius: 20px;
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow-md);
}
.tab-feature__mockup--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .tab-feature__tab { padding: 0.875rem 1rem; min-width: 110px; }
  .tab-feature__tab-icon { width: 40px; height: 40px; font-size: 20px; }
}
@media (min-width: 1024px) {
  .tab-feature__nav { justify-content: center; gap: 0.5rem; margin-inline: 0; padding-inline: 0; }
  .tab-feature__panels { margin-top: 3rem; }
  .tab-feature__panel {
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: center;
  }
}


/* ==========================================================================
   9. SECTION 4 — 6 기능 그리드 (content4, Figma 2878:1035)
   ========================================================================== */
.section--features .section-title { margin-bottom: 2.5rem; }
.features-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.feature-tile {
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 200px;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.feature-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-tile__icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.feature-tile__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tighter);
  color: var(--color-text);
}
.feature-tile__desc {
  font-size: var(--fs-base);
  color: var(--color-text-tertiary);
  line-height: 1.6;
  letter-spacing: var(--tracking-tighter);
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .feature-tile { padding: 2rem; min-height: 280px; }
}


/* ==========================================================================
   10. SECTION 5 — 고객사 로고 월 (content5, Figma 2878:1116)
   ========================================================================== */
.section--clients { background: var(--color-bg-alt-2); }
.section--clients .section-title { margin-bottom: 1rem; }
.section--clients .section-lead { margin-bottom: 2.5rem; }
.section-lead--center {
  text-align: center;
  margin-inline: auto;
  max-width: 640px;
}
.clients-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.client-logo {
  height: 96px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1rem;
  transition: transform var(--t-base) var(--ease-out);
}
.client-logo:hover { transform: translateY(-2px); }
.client-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.client-logo__text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.2;
}
.clients-footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
  letter-spacing: var(--tracking-tighter);
}
.clients-footer strong {
  color: var(--color-text);
  font-weight: 700;
}
@media (min-width: 768px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .client-logo { height: 110px; }
}
@media (min-width: 1024px) {
  .clients-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .client-logo { height: 130px; }
}
@media (min-width: 1440px) {
  .clients-grid { grid-template-columns: repeat(6, 1fr); }
}


/* ==========================================================================
   11. SECTION 6 — 최종 CTA (content6, Figma 2878:1186)
   ========================================================================== */
.section--cta {
  background: #000;
  padding: 3.5rem 0;
}
.section--cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}
.section--cta__title {
  font-size: clamp(1.5rem, 4.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tightest);
  line-height: 1.3;
  color: #fff;
}
.section--cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  max-width: 320px;
}
.btn--white { background: #fff; color: var(--color-text); }
.btn--white:hover { background: var(--color-bg-alt); }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}
.section--cta__actions .btn { width: 100%; }

@media (min-width: 768px) {
  .section--cta { padding: 4.5rem 0; }
  .section--cta__inner { gap: 2.25rem; }
  .section--cta__actions {
    flex-direction: row;
    width: auto;
    max-width: none;
  }
  .section--cta__actions .btn { width: auto; }
}
@media (min-width: 1024px) {
  .section--cta { padding: 5rem 0; }
}


/* ==========================================================================
   12. SITE FOOTER   — Figma 2878:1195
   ========================================================================== */
.site-footer {
  background: #fff;
  padding: 48px 0 56px;
  border-top: 1px solid var(--color-border);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.site-footer__main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.site-footer__legal a {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: var(--tracking-tighter);
  transition: color var(--t-fast);
}
.site-footer__legal a:hover { color: var(--color-accent-blue); }

/* 회사소개서 — 다운로드 강조 (아이콘 + 푸른 톤) */
.site-footer__brochure {
  display: inline-flex; align-items: center;
  gap: 6px;
  color: var(--color-accent-blue) !important;
  font-weight: 600 !important;
}
.site-footer__brochure i {
  font-size: 1.05em;
  transition: transform var(--t-fast);
}
.site-footer__brochure:hover i { transform: translateY(1px); }

.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.site-footer__company {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: var(--tracking-tighter);
  margin-bottom: 0.125rem;
}
.site-footer__line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: var(--tracking-tighter);
}
.site-footer__line a {
  transition: color var(--t-fast);
}
.site-footer__line a:hover {
  color: var(--color-accent-blue);
  text-decoration: underline;
}
.site-footer__label {
  color: var(--color-text-muted, #6B7280);
  font-weight: 600;
  margin-right: 0.125rem;
}
.site-footer__divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: currentColor;
  opacity: 0.4;
}

.site-footer__copy {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  margin-top: 1rem;
  letter-spacing: var(--tracking-tight);
}

.site-footer__side {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .site-footer { padding: 56px 0 64px; }
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 3rem;
  }
  .site-footer__main { gap: 3rem; }
  .site-footer__side {
    align-items: flex-end;
    justify-content: flex-start;
    padding-top: 0;
    border-top: 0;
    text-align: right;
  }
  /* 우측에 단독으로 놓일 때 가로 정렬 */
  .site-footer__side .site-footer__legal {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-footer { padding: 56px 0 88px; }
  .site-footer__side .site-footer__legal a { font-size: 1rem; }
}


/* ==========================================================================
   13. PRODUCT DETAIL PAGE — /solution/{slug}/
   --product-color 는 entry 의 body[style] 로 주입됨
   ========================================================================== */
.product-page { background: #fff; }

/* Hero */
.product-hero {
  position: relative;
  padding: 4rem 0 4.5rem;
  background: var(--product-color, var(--color-text));
  color: #fff;
  overflow: hidden;
}
.product-hero > .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product-hero__copy { max-width: 720px; }
.product-hero__mockup {
  position: relative;
  z-index: 1;
}
.product-hero__mockup img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  background: #fff;
}
@media (min-width: 1024px) {
  .product-hero--with-mockup > .container {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
  .product-hero--with-mockup .product-hero__copy {
    flex: 1 1 0;
    min-width: 0;
  }
  .product-hero--with-mockup .product-hero__mockup {
    flex: 1.1 1 0;
    min-width: 0;
  }
}
.product-hero::before {
  /* 우상단 데코 라디얼 (브랜드 컬러 위에 살짝 밝은 톤) */
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 130%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
}
.product-hero > .container { position: relative; z-index: 1; }
.product-hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 1rem;
}
.product-hero__title {
  font-size: clamp(1.875rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: var(--tracking-tightest);
  line-height: 1.2;
  margin: 0;
  word-break: keep-all;
}
.product-hero__lead {
  font-size: var(--fs-md);
  font-weight: 500;
  margin-top: 1.25rem;
  opacity: 0.92;
  line-height: 1.6;
  max-width: 640px;
  word-break: keep-all;
}
.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* 일반 섹션 */
.product-section {
  padding: 4rem 0;
}
.product-section--alt {
  background: var(--color-bg-alt);
}
.product-section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tightest);
  line-height: 1.3;
  text-align: center;
  color: var(--color-text);
}
.product-section__lead {
  margin-top: 0.75rem;
  text-align: center;
  font-size: var(--fs-md);
  color: var(--color-text-tertiary);
  margin-bottom: 2.5rem;
  letter-spacing: var(--tracking-tighter);
}

/* Feature grid */
.product-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.product-feature {
  background: var(--color-bg-alt);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-height: 180px;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.product-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.product-feature__icon {
  min-width: 48px;
  height: 48px;
  padding: 0 0.75rem;
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--product-color, var(--color-text));
  letter-spacing: -0.02em;
  flex-shrink: 0;
  width: max-content;
}

/* Screenshots gallery */
.product-shots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.product-shot {
  margin: 0;
  background: var(--color-bg-alt);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-shot img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}
.product-shot__caption {
  padding: 0.875rem 1.25rem 1rem;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: var(--tracking-tighter);
}
@media (min-width: 768px) {
  .product-shots { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .product-shots { gap: 2rem; }
  .product-shot__caption { padding: 1rem 1.5rem 1.25rem; font-size: var(--fs-md); }
}

/* FAQ */
.product-faqs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 880px;
  margin-inline: auto;
}
.product-faq {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.product-faq__q {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: var(--tracking-tighter);
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.product-faq__q::-webkit-details-marker { display: none; }
.product-faq__q::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text-tertiary);
  transition: transform var(--t-fast);
}
.product-faq[open] .product-faq__q::after { content: '−'; }
.product-faq__a {
  padding: 0 1.25rem 1.125rem;
  font-size: var(--fs-base);
  color: var(--color-text-tertiary);
  line-height: 1.65;
  letter-spacing: var(--tracking-tighter);
}
.product-faq__a a {
  color: var(--color-accent-blue);
  text-decoration: underline;
}
.product-feature__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tighter);
  color: var(--color-text);
  line-height: 1.3;
}
.product-feature__desc {
  font-size: var(--fs-base);
  color: var(--color-text-tertiary);
  line-height: 1.6;
  letter-spacing: var(--tracking-tighter);
  word-break: keep-all;
  white-space: pre-line;       /* 데이터 소스의 \n 줄바꿈 렌더링 */
}

/* Channels */
.product-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.product-channel {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: border-color var(--t-fast), transform var(--t-base);
}
.product-channel:hover {
  border-color: var(--product-color, var(--color-brand));
  transform: translateY(-2px);
}
.product-channel__label {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: var(--tracking-tighter);
}
.product-channel__desc {
  font-size: var(--fs-base);
  color: var(--color-text-tertiary);
  letter-spacing: var(--tracking-tighter);
}

/* Responsive */
@media (min-width: 768px) {
  .product-hero { padding: 5.5rem 0 6rem; }
  .product-section { padding: 5rem 0; }
  .product-feature-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .product-feature { padding: 1.75rem; min-height: 200px; }
  .product-channels { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 1024px) {
  .product-hero { padding: 7rem 0 7.5rem; }
  .product-section { padding: 6rem 0; }
  .product-feature-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .product-feature { padding: 2rem; min-height: 220px; }
  .product-channels { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1440px) {
  .product-hero { padding: 8rem 0 8.5rem; }
}


/* ==========================================================================
   LP — index.php 개편 섹션 (다크 프리미엄 톤 + 계층적 솔루션 + 카운터)
   prefix: .lp-* (landing page)
   ========================================================================== */
:root {
  --lp-ink:        #07203B;
  --lp-ink-2:      #0C2A4D;
  --lp-ink-soft:   #143A66;
  --lp-blue:       #2699FB;
  --lp-blue-glow:  #5BB6FF;
  --lp-blue-soft:  #E5F2FF;
  --lp-on-ink:     rgba(255, 255, 255, 0.92);
  --lp-on-ink-2:   rgba(255, 255, 255, 0.66);
  --lp-on-ink-3:   rgba(255, 255, 255, 0.42);
  --lp-bord-ink:   rgba(255, 255, 255, 0.10);
}

.lp-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
@media (min-width: 768px)  { .lp-section { padding: 5.5rem 0; } }
@media (min-width: 1024px) { .lp-section { padding: 7rem 0; } }

.lp-section--ink {
  background: linear-gradient(180deg, var(--lp-ink) 0%, var(--lp-ink-2) 100%);
  color: var(--lp-on-ink);
}

.lp-center { text-align: center; }
.lp-sec-head { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; align-items: flex-start; }
.lp-sec-head.lp-center { align-items: center; }
@media (min-width: 1024px) { .lp-sec-head { margin-bottom: 3.5rem; } }

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-blue);
  background: var(--lp-blue-soft);
  border-radius: 999px;
}
.lp-eyebrow--on-ink {
  color: var(--lp-blue-glow);
  background: rgba(38, 153, 251, 0.14);
}

.lp-h-sec {
  font-size: clamp(1.625rem, 4.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.2;
  color: var(--color-text);
  word-break: keep-all;
}
.lp-h-sec--on-ink { color: #fff; }
.lp-accent {
  background: linear-gradient(90deg, var(--lp-blue-glow), #8FCBFF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lp-accent-light {
  background: linear-gradient(90deg, var(--lp-blue), #1A88F0);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.lp-sub-sec {
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  color: var(--color-text-tertiary);
  line-height: 1.65;
  letter-spacing: -0.02em;
  max-width: 640px;
  word-break: keep-all;
}
.lp-center .lp-sub-sec { margin-inline: auto; }
.lp-sub-sec--on-ink { color: var(--lp-on-ink-2); }

.lp-br-lg { display: none; }
@media (min-width: 1024px) { .lp-br-lg { display: inline; } }

/* ---- scroll reveal ---- */
.lp-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.lp-reveal.is-in { opacity: 1; transform: none; }
.lp-reveal--d1 { transition-delay: 0.08s; }
.lp-reveal--d2 { transition-delay: 0.16s; }
.lp-reveal--d3 { transition-delay: 0.24s; }
.lp-reveal--d4 { transition-delay: 0.32s; }
@media (max-width: 0) {
  .lp-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- decorative orbit rings ---- */
.lp-orbit-rings {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.lp-orbit {
  position: absolute;
  width: var(--d); height: var(--d);
  border: 1px solid rgba(38, 153, 251, 0.18);
  border-radius: 50%;
  opacity: 0.6;
}
.lp-orbit--d1 { --d: 560px; }
.lp-orbit--d2 { --d: 820px; }
.lp-orbit--d3 { --d: 1080px; }

/* lp-acc 솔루션별 accent (CSP 호환 — 인라인 style 대신 data-attr 셀렉터) */
.lp-acc__tab[data-acc-key="snappush"],
.lp-acc__panel[data-acc-panel="snappush"]   { --accent: #2699FB; }
.lp-acc__tab[data-acc-key="snapreview"],
.lp-acc__panel[data-acc-panel="snapreview"] { --accent: #5BB6FF; }
.lp-acc__tab[data-acc-key="snapq"],
.lp-acc__panel[data-acc-panel="snapq"]      { --accent: #A553E5; }
.lp-acc__tab[data-acc-key="snapads"],
.lp-acc__panel[data-acc-panel="snapads"]    { --accent: #33C4AC; }

/* ==========================================================================
   A · 통합 플랫폼 메시지 (hub viz)
   ========================================================================== */
.lp-hub__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 1rem;
}
.lp-hub__inner .lp-h-sec { text-align: center; }

.lp-hub__stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-top: 2.5rem;
  height: 240px;
}
@media (min-width: 1024px) { .lp-hub__stage { height: 280px; margin-top: 3.5rem; } }

.lp-hub__channels {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 14px;
  z-index: 2;
}
.lp-hub__channels--left  { left: 0; }
.lp-hub__channels--right { right: 0; }
.lp-hub__chan {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-bord-ink);
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-on-ink);
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lp-hub__lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  opacity: 0.7;
}
.lp-hub__lines path {
  fill: none;
  stroke: var(--lp-blue-glow);
  stroke-width: 1.6;
  stroke-dasharray: 6 6;
  animation: lp-dashflow 1.2s linear infinite;
}
@keyframes lp-dashflow { to { stroke-dashoffset: -24; } }
/* hero-marquee 와 동일 패턴 — 사이트 글로벌 reduce-motion 리셋 override */
@media (max-width: 0) {
  .lp-hub__lines path {
    animation-duration: 1.2s !important;
    animation-iteration-count: infinite !important;
  }
}

.lp-hub__center {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 2;
}
.lp-hub__center-inner {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--lp-blue), #1664A9);
  border-radius: 18px;
  box-shadow: 0 14px 42px rgba(38, 153, 251, 0.42), 0 0 0 4px rgba(38, 153, 251, 0.18);
  color: #fff;
  animation: lp-hub-pulse 2.4s ease-in-out infinite;
}
@keyframes lp-hub-pulse {
  0%, 100% { box-shadow: 0 14px 42px rgba(38, 153, 251, 0.42), 0 0 0 4px rgba(38, 153, 251, 0.18); }
  50%      { box-shadow: 0 14px 56px rgba(38, 153, 251, 0.58), 0 0 0 8px rgba(38, 153, 251, 0.10); }
}
@media (max-width: 0) {
  .lp-hub__center-inner { animation: none; }
}
.lp-hub__center-mark { display: inline-flex; }
.lp-hub__center-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; }

@media (max-width: 640px) {
  .lp-hub__chan { font-size: 0.6875rem; padding: 6px 10px; }
  .lp-hub__channels { gap: 10px; }
}

/* ==========================================================================
   B · 카운터 KPI
   ========================================================================== */
.lp-counters__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.lp-counters__head .lp-eyebrow { align-self: center; }

.lp-counters__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px)  { .lp-counters__grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.lp-counter {
  padding: 1.75rem 1.25rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.lp-counter:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.lp-counter__row {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--lp-ink);
}
.lp-counter__val {
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.lp-counter__suffix {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: var(--lp-blue);
  letter-spacing: -0.03em;
}
.lp-counter__unit {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-tertiary);
  margin-left: 4px;
}
.lp-counter__label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: -0.02em;
}

/* ==========================================================================
   C · 메인 솔루션 4개
   ========================================================================== */
.lp-featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .lp-featured__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .lp-featured__grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.lp-featured__card {
  position: relative;
  display: flex; flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-bord-ink);
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out),
              background var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.lp-featured__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
  pointer-events: none;
}
.lp-featured__card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--lp-bord-ink));
  box-shadow: 0 20px 48px rgba(7, 32, 59, 0.45);
}
.lp-featured__card:hover::before { opacity: 1; }

.lp-featured__tag {
  align-self: flex-start;
  padding: 3px 10px;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 999px;
  text-transform: uppercase;
}
.lp-featured__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.6s var(--ease-out);
}
.lp-featured__icon svg { width: 28px; height: 28px; }
.lp-featured__card:hover .lp-featured__icon {
  transform: translateY(-4px) rotate(-6deg);
}

.lp-featured__name {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.lp-featured__desc {
  font-size: 0.9375rem;
  color: var(--lp-on-ink-2);
  line-height: 1.6;
  letter-spacing: -0.02em;
  word-break: keep-all;
  flex: 1;
}
.lp-featured__go {
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  transform: translateX(0);
  transition: transform var(--t-fast) var(--ease-out);
}
.lp-featured__card:hover .lp-featured__go { transform: translateX(6px); }

/* ==========================================================================
   D · 보조 솔루션 row
   ========================================================================== */
.lp-secondary { background: #F7F9FC; padding-block: 3.5rem; }
@media (min-width: 1024px) { .lp-secondary { padding-block: 5rem; } }

.lp-secondary__title {
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.lp-secondary__title-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-blue);
}

.lp-secondary__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) { .lp-secondary__row { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }

.lp-secondary__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-fast) var(--ease-out),
              border-color var(--t-fast),
              box-shadow var(--t-fast) var(--ease-out);
}
.lp-secondary__card:hover {
  transform: translateY(-2px);
  border-color: var(--lp-blue);
  box-shadow: 0 8px 24px rgba(38, 153, 251, 0.10);
}
.lp-secondary__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--lp-blue-soft);
  color: var(--lp-blue);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--t-base) var(--ease-out);
}
.lp-secondary__icon svg { width: 22px; height: 22px; }
.lp-secondary__card:hover .lp-secondary__icon { transform: rotate(-8deg); }

.lp-secondary__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.lp-secondary__name { font-size: 1rem; font-weight: 700; color: var(--color-text); letter-spacing: -0.02em; }
.lp-secondary__desc { font-size: 0.8125rem; color: var(--color-text-tertiary); letter-spacing: -0.02em; line-height: 1.5; }
.lp-secondary__arrow {
  font-size: 1.125rem;
  color: var(--lp-blue);
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease-out);
}
.lp-secondary__card:hover .lp-secondary__arrow { transform: translateX(4px); }

/* ==========================================================================
   E · 핵심 기능 6 그리드
   ========================================================================== */
.lp-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .lp-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-features__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.lp-feature {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base),
              box-shadow var(--t-base) var(--ease-out);
}
.lp-feature:hover {
  transform: translateY(-4px);
  border-color: var(--lp-blue);
  box-shadow: 0 12px 32px rgba(38, 153, 251, 0.10);
}
.lp-feature__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--lp-blue-soft);
  color: var(--lp-blue);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.6s var(--ease-out);
}
.lp-feature__icon svg { width: 26px; height: 26px; }
.lp-feature:hover .lp-feature__icon { transform: rotate(8deg); }

.lp-feature__title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.lp-feature__desc {
  font-size: 0.875rem;
  color: var(--color-text-tertiary);
  line-height: 1.6;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   F · 고객사 로고
   ========================================================================== */
.lp-clients { background: var(--color-bg-alt-2); }
.lp-clients__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px)  { .lp-clients__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .lp-clients__grid { grid-template-columns: repeat(6, 1fr); } }

.lp-clients__logo {
  height: 96px;
  background: #fff;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-fast);
}
.lp-clients__logo:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.lp-clients__logo img { max-height: 60%; max-width: 90%; object-fit: contain; }
.lp-clients__text { font-size: 0.875rem; font-weight: 700; color: var(--color-text); letter-spacing: 0.02em; text-align: center; }
.lp-clients__footer {
  text-align: center;
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
}
.lp-clients__footer strong { color: var(--color-text); font-weight: 800; }

/* ==========================================================================
   G · 최종 CTA (다크 그라디언트)
   ========================================================================== */
.lp-cta {
  background: linear-gradient(135deg, var(--lp-ink) 0%, var(--lp-ink-2) 60%, #0A2F58 100%);
  color: var(--lp-on-ink);
}
.lp-cta__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.lp-cta__glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}
.lp-cta__glow--a { top: -160px; left: -100px; background: var(--lp-blue); }
.lp-cta__glow--b { bottom: -200px; right: -120px; background: #1A88F0; opacity: 0.25; }

.lp-cta__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 1.25rem;
}
.lp-cta__inner .lp-h-sec { text-align: center; }
.lp-cta__inner .lp-sub-sec { margin-inline: auto; }

.lp-cta__actions {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.lp-btn--lg { padding: 14px 26px; font-size: 1rem; }
.lp-btn:active { transform: translateY(1px); }
.lp-btn--white { background: #fff; color: var(--lp-ink); }
.lp-btn--white:hover { background: var(--lp-blue-soft); }
.lp-btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.lp-btn--outline-light:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.55); }

/* ==========================================================================
   §1 · 실시간 성과 지표 (KPI)
   ========================================================================== */
.lp-kpi__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 1024px) {
  .lp-kpi__grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.lp-kpi__card {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.5rem;
  padding: 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 16px;
  cursor: default;
  transition: box-shadow 0.6s var(--ease-out),
              border-color 0.6s var(--ease-out),
              transform 0.5s var(--ease-out);
}
/* 카드별 글로우 색 — hero__search 의 --hero-glow 와 동일한 톤 팔레트 */
.lp-kpi__card:nth-child(1) { --kpi-glow: 38, 153, 251; }   /* blue (스냅푸시) */
.lp-kpi__card:nth-child(2) { --kpi-glow: 91, 182, 255; }   /* light blue (스냅리뷰) */
.lp-kpi__card:nth-child(3) { --kpi-glow: 165, 83, 229; }   /* purple (스냅큐) */
.lp-kpi__card:nth-child(4) { --kpi-glow: 51, 196, 172; }   /* teal (스냅애즈) */

/* 현재 선택된 카드만 hero__search 와 동일한 글로우 적용 — JS 가 한 카드씩 회전 */
.lp-kpi__card.is-spotlight {
  border-color: rgb(var(--kpi-glow, 38, 153, 251));
  box-shadow: 0 0 48px 0 rgba(var(--kpi-glow, 38, 153, 251), 0.35);
  transform: translateY(-3px);
}

@media (max-width: 0) {
  .lp-kpi__card { transition: none; }
  .lp-kpi__card.is-spotlight { transform: none; }
}

.lp-kpi__icon {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--lp-blue-soft);
  color: var(--lp-blue);
}
.lp-kpi__icon svg { width: 22px; height: 22px; }

.lp-kpi__val-row {
  display: flex; align-items: baseline; gap: 4px;
  margin-top: 0.25rem;
}
.lp-kpi__val {
  font-size: clamp(1.85rem, 1.4rem + 2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lp-ink);
  line-height: 1;
}
.lp-kpi__suffix {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--lp-blue);
}
.lp-kpi__unit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-tertiary);
  margin-left: 4px;
}
.lp-kpi__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: -0.02em;
}

.lp-kpi__trend {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.8125rem;
  color: #16A37A;
  border-top: 1px dashed #E6E9F0;
  width: 100%;
}
.lp-kpi__trend svg { color: #16A37A; }
.lp-kpi__trend-val { font-weight: 700; }
.lp-kpi__trend-period { color: var(--color-text-muted); font-weight: 500; }

.lp-kpi__disclaimer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ==========================================================================
   §2 · 통합 CRM 플랫폼 (radial nodes)
   ========================================================================== */
.lp-hub .lp-sec-head { margin-bottom: 2rem; }

.lp-hub__stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 2.5rem auto 0;
  aspect-ratio: 1 / 1;
  max-height: 480px;
}
.lp-hub__center {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 2;
}
.lp-hub__center-inner {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 20px 28px;
  background: linear-gradient(135deg, var(--lp-blue), #1664A9);
  border-radius: 20px;
  box-shadow: 0 14px 42px rgba(38, 153, 251, 0.42), 0 0 0 4px rgba(38, 153, 251, 0.18);
  color: #fff;
  animation: lp-hub-pulse 2.4s ease-in-out infinite;
}
.lp-hub__center-sub {
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 0) {
  .lp-hub__center-inner { animation: none; }
}

.lp-hub__nodes {
  position: absolute; inset: 0;
  list-style: none;
}
.lp-hub__node {
  position: absolute;
  left: 50%; top: 50%;
  --radius: 38%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--radius)) rotate(calc(-1 * var(--angle)));
}
.lp-hub__node-card {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 18px;
  min-width: 124px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-bord-ink);
  border-radius: 14px;
  color: var(--lp-on-ink);
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.lp-hub__node-card:hover {
  transform: scale(1.04);
  border-color: var(--lp-blue-glow);
  background: rgba(91, 182, 255, 0.10);
}
.lp-hub__node-name {
  font-size: 0.9375rem; font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.lp-hub__node-desc {
  font-size: 0.75rem;
  color: var(--lp-on-ink-2);
}

@media (max-width: 767px) {
  .lp-hub__stage { max-height: 360px; }
  .lp-hub__node { --radius: 36%; }
  .lp-hub__node-card { min-width: 92px; padding: 8px 10px; }
  .lp-hub__node-name { font-size: 0.8125rem; }
  .lp-hub__node-desc { font-size: 0.6875rem; }
  .lp-hub__center-inner { padding: 14px 18px; }
}

/* ==========================================================================
   §3 · 고객 여정 맵
   ========================================================================== */
.lp-journey { background: #F7F9FC; }

.lp-journey__rail {
  position: relative;
  display: none;
  margin: 2.5rem auto 0;
  width: 90%; max-width: 1080px;
  height: 16px;
}
@media (min-width: 1024px) {
  .lp-journey__rail { display: flex; align-items: center; justify-content: space-between; }
}
.lp-journey__rail-line {
  position: absolute; left: 0; right: 0; top: 50%;
  height: 2px; background: linear-gradient(90deg, var(--lp-blue) 0%, var(--lp-blue-glow) 100%);
  transform: translateY(-50%);
  z-index: 0;
}
.lp-journey__rail-dot {
  position: relative; z-index: 1;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--lp-blue);
  box-shadow: 0 0 0 4px rgba(38, 153, 251, 0.10);
}

.lp-journey__grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 640px)  { .lp-journey__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-journey__grid { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; margin-top: 0.75rem; } }

.lp-journey__step {
  display: flex; flex-direction: column; align-items: stretch;
  gap: 0.5rem;
}
.lp-journey__stage {
  align-self: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-blue);
}
.lp-journey__card {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px;
  padding: 1.25rem 1.125rem;
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 14px;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.lp-journey__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(38, 153, 251, 0.10);
  border-color: var(--lp-blue);
}
.lp-journey__product {
  font-size: 1rem; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lp-ink);
}
.lp-journey__effect {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
}
.lp-journey__lift {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(22, 163, 122, 0.10);
  color: #16A37A;
  font-size: 0.8125rem;
  font-weight: 700;
}

/* ==========================================================================
   §4 · 솔루션 Deep Dive (좌우 교대)
   ========================================================================== */
.lp-solutions { padding-block: 5rem; }
.lp-solutions .lp-sec-head { margin-bottom: 3rem; }

.lp-solution {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  padding-block: 2.5rem;
  border-top: 1px solid #ECEFF4;
}
.lp-solution:first-of-type { border-top: 0; padding-top: 0; }
.lp-solution:last-of-type { padding-bottom: 0; }

@media (min-width: 900px) {
  .lp-solution { grid-template-columns: 1.05fr 1fr; gap: 3.5rem; padding-block: 4rem; }
  .lp-solution--reverse .lp-solution__media { order: 2; }
  .lp-solution--reverse .lp-solution__copy  { order: 1; }
}

.lp-solution__media-frame {
  position: relative;
  padding: 14px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 60%);
  border-radius: 22px;
  border: 1px solid #ECEFF4;
  box-shadow: 0 24px 48px rgba(14, 30, 60, 0.06);
  overflow: hidden;
}
.lp-solution__media-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 80% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
  pointer-events: none;
}
.lp-solution__media-frame img {
  position: relative;
  width: 100%; height: auto;
  border-radius: 14px;
  display: block;
}

.lp-solution__copy { display: flex; flex-direction: column; gap: 1rem; }
.lp-solution__eyebrow {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.lp-solution__name {
  font-size: clamp(1.4rem, 1rem + 1.6vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--lp-ink);
  line-height: 1.3;
}
.lp-solution__desc {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  letter-spacing: -0.01em;
}
.lp-solution__points {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 10px;
  margin-top: 0.25rem;
}
.lp-solution__points li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
}
.lp-solution__points li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5rem;
  width: 14px; height: 14px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--accent) 25%, transparent);
  box-shadow: inset 0 0 0 2px var(--accent);
}
.lp-solution__cta {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 0.5rem;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform var(--t-fast), filter var(--t-fast), box-shadow var(--t-fast);
}
.lp-solution__cta:hover { transform: translateX(4px); filter: brightness(1.05); box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 35%, transparent); }

/* ==========================================================================
   §5 · A/B 비교
   ========================================================================== */
.lp-ab__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) { .lp-ab__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }

.lp-ab__row {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-bord-ink);
  border-radius: 16px;
}
.lp-ab__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.lp-ab__channel {
  font-size: 1rem; font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.lp-ab__metric {
  flex: 1;
  font-size: 0.8125rem;
  color: var(--lp-on-ink-2);
}
.lp-ab__lift {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(91, 182, 255, 0.18);
  color: var(--lp-blue-glow);
  font-size: 0.8125rem; font-weight: 700;
}
.lp-ab__bars { display: flex; flex-direction: column; gap: 10px; }
.lp-ab__bar {
  display: grid;
  grid-template-columns: 64px 1fr 60px;
  align-items: center;
  gap: 10px;
}
.lp-ab__bar-label {
  font-size: 0.75rem;
  color: var(--lp-on-ink-2);
}
.lp-ab__bar-track {
  position: relative;
  height: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.lp-ab__bar-fill {
  position: absolute; inset: 0 auto 0 0;
  width: var(--w);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transform-origin: left;
}
.lp-ab__bar--after .lp-ab__bar-fill {
  background: linear-gradient(90deg, var(--lp-blue), var(--lp-blue-glow));
  box-shadow: 0 0 18px rgba(91, 182, 255, 0.55);
}
.lp-ab__bar-val {
  text-align: right;
  font-size: 0.875rem; font-weight: 700;
  color: #fff;
}
.lp-ab__disclaimer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--lp-on-ink-3);
  text-align: center;
}

/* ==========================================================================
   §6 · 자동화 플로우
   ========================================================================== */
.lp-flow__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .lp-flow__list { grid-template-columns: repeat(2, 1fr); gap: 1rem 1.25rem; }
}
@media (min-width: 1100px) {
  .lp-flow__list { grid-template-columns: repeat(4, 1fr); }
}

.lp-flow__step {
  position: relative;
  display: flex; flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 14px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.lp-flow__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(38, 153, 251, 0.08);
  border-color: var(--lp-blue);
}
.lp-flow__num {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--lp-blue);
  background: var(--lp-blue-soft);
  padding: 2px 8px;
  border-radius: 999px;
}
.lp-flow__icon {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--lp-blue-soft);
  color: var(--lp-blue);
}
.lp-flow__icon svg { width: 22px; height: 22px; }
.lp-flow__head-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; flex-wrap: wrap;
}
.lp-flow__label {
  font-size: 1rem; font-weight: 800;
  color: var(--lp-ink);
  letter-spacing: -0.02em;
}
.lp-flow__duration {
  font-size: 0.6875rem; font-weight: 700;
  color: var(--lp-blue);
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border: 1px solid var(--lp-blue);
  border-radius: 999px;
}
.lp-flow__desc {
  font-size: 0.8125rem;
  color: var(--color-text-tertiary);
  line-height: 1.6;
}
.lp-flow__arrow {
  display: none;
  position: absolute;
  right: -22px; top: 50%;
  transform: translateY(-50%);
  color: var(--lp-blue);
  opacity: 0.55;
}
.lp-flow__arrow svg { width: 22px; height: 22px; }
@media (max-width: 767px) {
  .lp-flow__arrow {
    display: inline-flex;
    right: 50%;
    top: auto; bottom: -22px;
    transform: translateX(50%);
  }
}

/* ==========================================================================
   §7 · AI Agent 데모
   ========================================================================== */
.lp-agent__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-bord-ink);
  border-radius: 18px;
}
@media (min-width: 900px) {
  .lp-agent__box { grid-template-columns: 280px 1fr; gap: 1.5rem; padding: 1.5rem; }
}

.lp-agent__prompts {
  display: flex; flex-direction: column; gap: 8px;
}
.lp-agent__prompt {
  text-align: left;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid var(--lp-bord-ink);
  border-radius: 10px;
  color: var(--lp-on-ink);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  font-family: inherit;
}
.lp-agent__prompt:hover { background: rgba(91, 182, 255, 0.10); border-color: var(--lp-blue-glow); }
.lp-agent__prompt.is-active {
  background: linear-gradient(90deg, var(--lp-blue), #1A88F0);
  border-color: var(--lp-blue);
  color: #fff;
}

.lp-agent__panel {
  background: #0A1A33;
  border: 1px solid var(--lp-bord-ink);
  border-radius: 14px;
  overflow: hidden;
  min-height: 360px;
  display: flex; flex-direction: column;
}
.lp-agent__panel-head {
  display: flex; align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--lp-bord-ink);
}
.lp-agent__panel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.lp-agent__panel-dot:nth-child(1) { background: #FF5F57; }
.lp-agent__panel-dot:nth-child(2) { background: #FEBC2E; }
.lp-agent__panel-dot:nth-child(3) { background: #28C840; }
.lp-agent__panel-title {
  margin-left: 8px;
  font-family: 'Menlo', 'SF Mono', 'Consolas', monospace;
  font-size: 0.75rem;
  color: var(--lp-on-ink-2);
}

.lp-agent__panel-body {
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column;
  gap: 1rem;
  flex: 1;
  font-family: 'Menlo', 'SF Mono', 'Consolas', monospace;
}
.lp-agent__q {
  font-size: 0.875rem;
  color: var(--lp-blue-glow);
}
.lp-agent__q::before { content: '> '; opacity: 0.6; }
.lp-agent__a {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--lp-on-ink);
  white-space: pre-wrap;
  line-height: 1.7;
  min-height: 7em;
  font-family: inherit;
}
.lp-agent__a::after {
  content: '▍';
  display: inline-block;
  margin-left: 2px;
  color: var(--lp-blue-glow);
  animation: lp-agent-blink 0.9s steps(2) infinite;
}
@keyframes lp-agent-blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.lp-agent__a.is-done::after { display: none; }

.lp-agent__chart {
  display: flex; align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-top: auto;
}
.lp-agent__chart-bar {
  flex: 1;
  position: relative;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  overflow: hidden;
}
.lp-agent__chart-fill {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: var(--h, 0%);
  background: linear-gradient(180deg, var(--lp-blue-glow), var(--lp-blue));
  border-radius: 4px;
  transition: height 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lp-agent__cta {
  display: flex; justify-content: center;
  margin-top: 1.5rem;
}

/* ==========================================================================
   §9 · 온보딩 3단계
   ========================================================================== */
.lp-onboard__grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .lp-onboard__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.lp-onboard__step {
  position: relative;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-bord-ink);
  border-radius: 16px;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.lp-onboard__step:hover { border-color: var(--lp-blue-glow); transform: translateY(-3px); }

.lp-onboard__num {
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--lp-blue-glow);
}
.lp-onboard__icon {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(91, 182, 255, 0.14);
  color: var(--lp-blue-glow);
}
.lp-onboard__icon svg { width: 24px; height: 24px; }
.lp-onboard__title {
  margin-top: 0.25rem;
  font-size: 1.375rem; font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.lp-onboard__time {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(91, 182, 255, 0.16);
  color: var(--lp-blue-glow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lp-onboard__sub {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}
.lp-onboard__detail {
  font-size: 0.8125rem;
  color: var(--lp-on-ink-2);
  line-height: 1.6;
}
.lp-onboard__cta {
  display: flex; justify-content: center;
  margin-top: 2rem;
}

/* ==========================================================================
   §10 · FAQ
   ========================================================================== */
.lp-faq__inner { max-width: 880px; }
.lp-faq__list {
  margin-top: 2rem;
  display: flex; flex-direction: column;
  gap: 10px;
}
.lp-faq__item {
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.lp-faq__item[open] { border-color: var(--lp-blue); box-shadow: 0 10px 22px rgba(38, 153, 251, 0.08); }

.lp-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 1.125rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-size: 1rem; font-weight: 700;
  color: var(--lp-ink);
  letter-spacing: -0.02em;
}
.lp-faq__q::-webkit-details-marker { display: none; }
.lp-faq__chevron {
  display: inline-flex;
  color: var(--color-text-tertiary);
  transition: transform var(--t-fast), color var(--t-fast);
}
.lp-faq__item[open] .lp-faq__chevron { transform: rotate(180deg); color: var(--lp-blue); }

.lp-faq__a {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   주의: 기존 lp-counter / lp-featured / lp-secondary / lp-features 스타일은
   이제 새 마크업에서 사용하지 않음. 후속 패스에서 제거 예정.
   ========================================================================== */


/* ==========================================================================
   §2 솔루션 아코디언 — 좌측 세로 탭(연결 스택) + 우측 패널 1개
   ========================================================================== */
.lp-solutions-acc { padding: 4.5rem 0; background: #fff; }
@media (min-width: 1024px) { .lp-solutions-acc { padding: 7rem 0; } }

/* --- 2-col 레이아웃: 모바일 stack / 데스크탑 320px + 1fr
       align-items: stretch → 우측 패널이 좌측 탭 카드 높이를 따라옴 */
.lp-acc__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 1024px) {
  .lp-acc__layout {
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    margin-top: 3.5rem;
    align-items: stretch;
  }
}
@media (min-width: 1440px) {
  .lp-acc__layout { grid-template-columns: 280px 1fr; gap: 3.5rem; }
}

/* --- 좌측 세로 탭 스택 — 각 카드 독립 + 점선 흐름 connector ---- */
.lp-acc__tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;          /* 각 탭 사이 점선이 들어갈 공간 */
}
.lp-acc__tabs li { position: relative; }

/* 탭 사이 흐르는 점선 — 가운데 정렬, 마지막 항목 뒤에는 없음 */
.lp-acc__tabs li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 2px;
  height: 14px;               /* gap 와 동일 */
  background-image: linear-gradient(to bottom, var(--color-border-soft) 50%, transparent 50%);
  background-size: 2px 5px;
  background-repeat: repeat-y;
  animation: lp-acc-spine-flow 0.9s linear infinite;
  pointer-events: none;
}
@keyframes lp-acc-spine-flow {
  from { background-position: 0 0; }
  to   { background-position: 0 5px; }
}
@media (max-width: 0) {
  .lp-acc__tabs li:not(:last-child)::after { animation: none; }
}
/* 활성 탭 다음 connector 는 accent 컬러로 강조 */
.lp-acc__tabs li:has(.lp-acc__tab.is-active):not(:last-child)::after {
  background-image: linear-gradient(to bottom, var(--accent, var(--color-accent-blue)) 50%, transparent 50%);
}

.lp-acc__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 14px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  color: var(--color-text-secondary);
  text-align: center;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease-out),
              color var(--t-fast),
              border-color var(--t-fast),
              box-shadow var(--t-fast),
              transform var(--t-fast);
  position: relative;
  box-shadow: 0 2px 6px rgba(7, 32, 59, 0.03);
}
.lp-acc__tab:hover {
  background: #fff;
  color: var(--color-text);
  transform: translateY(-1px);
}
.lp-acc__tab:hover .lp-acc__tab-icon {
  background: #fff;
  color: var(--accent, var(--color-accent-blue));
}

/* 활성 탭 — 솔루션 컬러로 채워짐 + accent glow */
.lp-acc__tab.is-active {
  background: var(--accent, var(--color-accent-blue));
  border-color: var(--accent, var(--color-accent-blue));
  color: #fff;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent, var(--color-accent-blue)) 32%, transparent);
}

.lp-acc__tab-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--accent, var(--color-accent-blue));
  border-radius: 12px;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.lp-acc__tab-icon svg { width: 22px; height: 22px; }
.lp-acc__tab.is-active .lp-acc__tab-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: scale(1.05);
}

.lp-acc__tab-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.lp-acc__tab-name {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: var(--tracking-tighter);
  color: inherit;
}

.lp-acc__tab-chev {
  flex-shrink: 0;
  display: inline-flex;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.lp-acc__tab.is-active .lp-acc__tab-chev {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .lp-acc__tab { padding: 22px 22px; }
  .lp-acc__tab.is-active { padding-left: 30px; }
  .lp-acc__tab-name { font-size: 1.125rem; }
  .lp-acc__tab-num { width: 42px; height: 42px; font-size: 0.875rem; }
}

/* --- 우측 패널 영역 (absolute stack + fade)
       높이는 grid stretch 로 좌측 탭 카드와 동기화 — 모바일은 min-height 보장 */
.lp-acc__panels {
  position: relative;
  min-height: 460px;
}
@media (min-width: 1024px) {
  .lp-acc__panels { min-height: 0; height: 100%; }
}

.lp-acc__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 2rem 2.25rem 2.25rem;
  background:
    radial-gradient(110% 70% at 0% 0%, color-mix(in srgb, var(--accent) 16%, transparent) 0%, transparent 55%),
    radial-gradient(100% 60% at 100% 100%, color-mix(in srgb, var(--accent) 10%, transparent) 0%, transparent 60%),
    linear-gradient(160deg, #0E1A2B 0%, #07203B 100%);
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--accent) 26%, rgba(255, 255, 255, 0.06));
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 30px 60px -20px color-mix(in srgb, var(--accent) 28%, rgba(7, 32, 59, 0.35)),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.99);
  transition: opacity 0.5s var(--ease-out),
              transform 0.5s var(--ease-out),
              visibility 0s linear 0.5s;
  pointer-events: none;
}
.lp-acc__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition: opacity 0.5s var(--ease-out),
              transform 0.5s var(--ease-out),
              visibility 0s linear 0s;
  pointer-events: auto;
}
/* 데코 도트 그리드 — 좌상단 페이드 마스크 */
.lp-acc__panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(60% 70% at 15% 25%, #000 30%, transparent 80%);
          mask-image: radial-gradient(60% 70% at 15% 25%, #000 30%, transparent 80%);
  pointer-events: none;
}
.lp-acc__panel > * { position: relative; z-index: 1; }
@media (min-width: 1024px) {
  .lp-acc__panel { padding: 2.5rem 2.75rem 2.75rem; gap: 1rem; }
}
.lp-acc__panel-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: color-mix(in srgb, var(--accent) 18%, rgba(255, 255, 255, 0.04));
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.lp-acc__panel-name {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.15;
}
.lp-acc__panel-title {
  font-size: clamp(1.0625rem, 1.7vw, 1.25rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: var(--tracking-tighter);
  margin-top: 2px;
  line-height: 1.4;
}
.lp-acc__panel-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  letter-spacing: var(--tracking-tighter);
  word-break: keep-all;
}
.lp-acc__panel-points {
  display: flex; flex-direction: column;
  gap: 0.5rem;
  margin: 0.25rem 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.lp-acc__panel-points li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: var(--tracking-tighter);
  line-height: 1.55;
  word-break: keep-all;
}
.lp-acc__panel-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 28%, transparent);
  border: 2px solid var(--accent);
}
.lp-acc__panel-points li::after {
  content: '';
  position: absolute;
  left: 4px; top: 0.78rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.lp-acc__panel-cta {
  display: inline-flex; align-items: center;
  gap: 6px;
  margin-top: 0.75rem;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), gap var(--t-fast);
}
.lp-acc__panel-cta:hover {
  transform: translateY(-2px);
  gap: 10px;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent) 45%, transparent);
}


/* ==========================================================================
   product-detail.php — closing CTA + 폼 (다크 ink + 2-col)
   (snapfit / snapq / snapads 가 공유하는 product-detail.php 템플릿 마지막 섹션)
   ========================================================================== */
.product-closing {
  position: relative;
  background: linear-gradient(180deg, #07203B 0%, #0C2A4D 100%);
  color: rgba(255, 255, 255, 0.92);
  padding: 4rem 0;
  overflow: hidden;
}
@media (min-width: 768px)  { .product-closing { padding: 5.5rem 0; } }
@media (min-width: 1024px) { .product-closing { padding: 7rem 0; } }

.product-closing__rings {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.product-closing__ring {
  position: absolute;
  width: var(--d);
  height: var(--d);
  border: 1px solid rgba(38, 153, 251, 0.18);
  border-radius: 50%;
  opacity: 0.6;
}

.product-closing__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .product-closing__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }
}

.product-closing__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.product-closing__eyebrow {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(38, 153, 251, 0.14);
  color: #5BB6FF;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-closing__title {
  font-size: clamp(1.625rem, 4.4vw, 2.875rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.25;
  word-break: keep-all;
}
.product-closing__accent {
  background: linear-gradient(90deg, #5BB6FF, #8FCBFF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.product-closing__lead {
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
  letter-spacing: -0.02em;
  max-width: 540px;
}
.product-closing__points {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0;
  list-style: none;
}
.product-closing__points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
}
.product-closing__check {
  width: 18px; height: 18px;
  color: var(--product-color, #5BB6FF);
  flex-shrink: 0;
}

/* 우측 폼 */
.product-closing__form {
  background: #fff;
  color: var(--color-text);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(7, 32, 59, 0.30);
}
.product-closing__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0.875rem;
}
.product-closing__field label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.product-closing__field input,
.product-closing__field select,
.product-closing__field textarea {
  padding: 11px 13px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  font-size: 0.9375rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
  font-family: inherit;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.product-closing__field input:focus,
.product-closing__field select:focus,
.product-closing__field textarea:focus {
  outline: 0;
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(38, 153, 251, 0.15);
}
.product-closing__field textarea {
  resize: vertical;
  min-height: 80px;
}
.product-closing__select { position: relative; }
.product-closing__select select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 32px;
  cursor: pointer;
}
.product-closing__caret {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-text-tertiary);
  font-size: 0.875rem;
}
.product-closing__submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 22px;
  background: var(--product-color, var(--color-accent-blue));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), gap var(--t-fast), filter var(--t-fast);
}
.product-closing__submit:hover {
  transform: translateY(-2px);
  gap: 10px;
  filter: brightness(1.08);
  box-shadow: 0 10px 24px rgba(38, 153, 251, 0.30);
}
.product-closing__note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
  text-align: center;
}


/* ==========================================================================
   lp.css 의도된 마케팅 비주얼 — prefers-reduced-motion 글로벌 reset override
   (snapreview / snapskin LP 의 ring orbit · float · dashflow · pulse · loop)
   ========================================================================== */
@media (max-width: 0) {
  /* 히어로 부유 카드 */
  .float-y {
    animation-duration: 6s !important;
    animation-iteration-count: infinite !important;
  }
  /* 수집 stage 점선 흐름 */
  .cs-lines path {
    animation-duration: 1.4s !important;
    animation-iteration-count: infinite !important;
  }
  /* 라이브 인디케이터 펄스 (대시보드 .wl-dot 등) */
  .wl-dot,
  .hv-live .dot,
  .cm-dot {
    animation-duration: 1.6s !important;
    animation-iteration-count: infinite !important;
  }
  /* AI 인사이트 step spinner */
  .cc-spin {
    animation-duration: 0.8s !important;
    animation-iteration-count: infinite !important;
  }
  /* 리뷰 확인 jn-pulse 다층 ripple */
  .jn-pulse,
  .jn-pulse::before,
  .jn-pulse::after {
    animation-duration: 2.4s !important;
    animation-iteration-count: infinite !important;
  }
  /* SnapQ FEATURE 01 미리보기 로딩 루프 — 빈→로딩→일제 등장 */
  .sq-admin-mock__cell,
  .sq-admin-mock__loader {
    animation-duration: 7s !important;
    animation-iteration-count: infinite !important;
  }
  .sq-admin-mock__loader i {
    animation-duration: 1s !important;
    animation-iteration-count: infinite !important;
  }
  /* SnapQ FEATURE 03 아이콘 자동 부착 stagger */
  .sq-icon-mock__badge {
    animation-duration: 8s !important;
    animation-iteration-count: infinite !important;
  }
  /* SnapQ FEATURE 04 알고리즘 룰 평가 루프 */
  .sq-algo-mock__rule {
    animation-duration: 8s !important;
    animation-iteration-count: infinite !important;
  }
  /* SnapQ FEATURE 05 점선 흐름 (채널→ERP, ERP→허브) */
  .sq-collect-mock__lines use {
    animation-duration: 0.9s !important;
    animation-iteration-count: infinite !important;
  }
  .sq-collect-mock__lines--out use {
    animation-duration: 0.7s !important;
    animation-iteration-count: infinite !important;
  }
}

/* ==========================================================================
   /solution/snapq · 스냅큐 LP 전용 (lp.css 디자인 시스템 위에 추가)
   ========================================================================== */

/* 본문 sub-sec 크기 변형 — 인라인 style 대체 */
.sub-sec--lg { font-size: clamp(17px, 1.5vw, 20px); }
/* 와이드 본문 — 한 문장이 길 때 줄바꿈 완화 */
.sub-sec--wide { max-width: 760px; word-break: keep-all; }

/* 풀폭 btn — 인라인 style="width:100%" 대체 (CSP 호환) */
.btn--full { width: 100%; }

/* hero rings 인라인 size 대체 — CSP 호환용 클래스 */
.rings--w520  { width: 520px;  height: 520px;  }
.rings--w640  { width: 640px;  height: 640px;  }
.rings--w760  { width: 760px;  height: 760px;  }
.rings--w980  { width: 980px;  height: 980px;  }
.rings--w1040 { width: 1040px; height: 1040px; }

/* ↓ .sq-hero-mock* (hero swap mockup + #feat-01 overrides) — /assets/css/snapq.css 로 이동됨. */


/* PROBLEM — SnapQ Agent 채팅 (커스텀 톤 — 블루 글로우 + AI 대시보드 느낌) */
.sq-chat-wrap { margin-top: 56px; }
.sq-chat-stage {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 60px;
  isolation: isolate;
}

/* 배경 글로우 (블루→퍼플 그라데이션 halo) */
.sq-chat-glow {
  position: absolute;
  inset: 20px 5% 20px 5%;
  background:
    radial-gradient(50% 60% at 20% 20%, rgba(38, 153, 251, 0.32) 0%, transparent 70%),
    radial-gradient(60% 50% at 80% 80%, rgba(165, 83, 229, 0.22) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: sqGlowDrift 12s ease-in-out infinite;
}
/* 배경 dot mesh */
.sq-chat-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(38, 153, 251, 0.16) 1px, transparent 0);
  background-size: 22px 22px;
  mask-image: radial-gradient(closest-side, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(closest-side, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
@keyframes sqGlowDrift {
  0%, 100% { transform: translate(0, 0)     scale(1); }
  50%      { transform: translate(-2%, 1%)  scale(1.06); }
}

/* 채팅 패널 */
.sq-chat {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(199, 226, 251, 0.7);
  border-radius: 22px;
  box-shadow:
    0 30px 60px -28px rgba(15, 23, 42, 0.22),
    0 12px 28px -14px rgba(38, 153, 251, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

/* 헤더 — 좌측 브랜드 + 우측 라이브 상태 */
.sq-chat__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background:
    linear-gradient(90deg,
      rgba(38, 153, 251, 0.06) 0%,
      rgba(91, 182, 255, 0.04) 50%,
      rgba(165, 83, 229, 0.06) 100%);
  border-bottom: 1px solid rgba(199, 226, 251, 0.55);
}
.sq-chat__brand {
  display: inline-flex; align-items: center; gap: 10px;
  min-width: 0;
}
.sq-chat__mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 60%, #A553E5 130%);
  color: #fff;
  border-radius: 11px;
  font-size: 17px;
  box-shadow:
    0 8px 18px -6px rgba(38, 153, 251, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.sq-chat__brand-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.sq-chat__brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F172A;
  line-height: 1.2;
}
.sq-chat__brand-meta {
  font-size: 11.5px;
  color: #64748B;
  letter-spacing: -0.005em;
  font-weight: 500;
}
.sq-chat__status {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px 6px 10px;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.30);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #047857;
  white-space: nowrap;
}
.sq-chat__status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
  animation: sqLivePulse 1.8s ease-in-out infinite;
}
@keyframes sqLivePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22); }
  50%      { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0.05); }
}

/* 메시지 영역 */
.sq-chat__body {
  display: flex; flex-direction: column;
  gap: 10px;
  padding: 22px 20px 16px;
  min-height: 340px;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(38, 153, 251, 0.04) 0%, transparent 50%),
    radial-gradient(60% 80% at 0% 100%, rgba(165, 83, 229, 0.03) 0%, transparent 50%);
}

/* 메시지 공통 — JS 시퀀스 입장 애니메이션 */
.sq-msg {
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.2, 0.85, 0.25, 1),
              transform 0.45s cubic-bezier(0.2, 0.85, 0.25, 1);
}
.sq-msg.is-shown { opacity: 1; transform: none; }
.sq-msg.is-fadeout {
  opacity: 0 !important;
  transform: translateY(-4px);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}
.sq-msg.is-removed { display: none; }

/* 사용자 메시지 — 입력 영역에서 위로 올라오는 느낌 */
.sq-msg--user { transform: translateY(18px); }
/* 봇 메시지 — 옆에서 자연스럽게 페이드 */
.sq-msg--bot  { transform: translateY(8px); }

/* 사용자 — 우측 정렬, 블루 톤 pill (회색이 아닌 브랜드 라이트) */
.sq-msg--user {
  display: flex; justify-content: flex-end;
}
.sq-msg__pill {
  display: inline-block;
  background: linear-gradient(135deg, #EBF4FF 0%, #DDEAFE 100%);
  color: #1E40AF;
  border: 1px solid rgba(38, 153, 251, 0.22);
  border-radius: 16px 16px 4px 16px;
  padding: 10px 16px;
  max-width: 78%;
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.015em;
  word-break: keep-all;
  box-shadow: 0 2px 6px -2px rgba(38, 153, 251, 0.12);
}

/* 봇 — 좌측, 그라데이션 태그 + 본문 카드 */
.sq-msg--bot {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.sq-bot-tag {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 6px;
  background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 100%);
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.012em;
  color: #fff;
  box-shadow:
    0 6px 16px -6px rgba(38, 153, 251, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.sq-bot-tag__ico {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
}
.sq-bot-tag__ico i {
  animation: sqBotSpin 1.4s linear infinite;
}

.sq-bot-msg {
  position: relative;
  padding: 14px 16px 14px 18px;
  margin-left: 4px;
  background: linear-gradient(160deg, #F8FBFF 0%, #F0F7FF 100%);
  border: 1px solid rgba(199, 226, 251, 0.6);
  border-radius: 14px;
  color: #1F2937;
  font-size: 13.5px;
  line-height: 1.65;
  letter-spacing: -0.012em;
  box-shadow: 0 4px 14px -8px rgba(38, 153, 251, 0.18);
}
/* 좌측 accent bar */
.sq-bot-msg::before {
  content: '';
  position: absolute;
  left: -1px; top: 14px; bottom: 14px;
  width: 3px;
  background: linear-gradient(180deg, #2699FB 0%, #5BB6FF 100%);
  border-radius: 999px;
}
.sq-bot-msg__lead {
  font-weight: 800;
  margin: 0 0 8px;
  color: #0F172A;
  letter-spacing: -0.02em;
}
.sq-bot-msg__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 6px;
}
.sq-bot-msg__list li {
  position: relative;
  padding-left: 14px;
  color: #475569;
  word-break: keep-all;
}
.sq-bot-msg__list li::before {
  content: '';
  position: absolute;
  top: 9px; left: 2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #2699FB;
}
.sq-bot-msg__list li b { color: #0F172A; font-weight: 700; }

/* bullet 점진 등장 */
.sq-bot-msg__list li {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out);
}
.sq-bot-msg__list li.is-shown {
  opacity: 1;
  transform: none;
}
.sq-bot-msg__lead {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.sq-bot-msg__lead.is-shown {
  opacity: 1;
  transform: none;
}

/* SnapQ Agent — 분석 중 (Thinking) */
.sq-bot-thinking {
  margin: 0 0 0 4px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
  letter-spacing: -0.012em;
  display: inline-flex;
  align-items: center;
}
.sq-bot-dots {
  display: inline-flex;
  margin-left: 1px;
  letter-spacing: 2px;
}
.sq-bot-dots span {
  display: inline-block;
  animation: sqDotsWave 1.2s ease-in-out infinite;
  color: #2699FB;
  font-weight: 800;
}
.sq-bot-dots span:nth-child(2) { animation-delay: 0.18s; }
.sq-bot-dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes sqDotsWave {
  0%, 60%, 100% { transform: translateY(0);    opacity: 0.45; }
  30%           { transform: translateY(-3px); opacity: 1;    }
}

/* 인풋 영역 (장식) — 채팅 입력 박스 톤 */
.sq-chat__input {
  position: relative;
  display: flex; align-items: center;
  gap: 8px;
  margin: 0 18px 18px;
  padding: 13px 14px 13px 18px;
  background: #fff;
  border: 1.5px solid rgba(199, 226, 251, 0.7);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 2px rgba(15, 23, 42, 0.03),
    0 2px 6px -2px rgba(38, 153, 251, 0.08);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.sq-chat__input.is-typing {
  border-color: #2699FB;
  box-shadow:
    0 0 0 4px rgba(38, 153, 251, 0.14),
    inset 0 1px 2px rgba(15, 23, 42, 0.03);
}
.sq-chat__placeholder {
  flex: 1;
  font-size: 14px;
  color: #9CA3AF;
  letter-spacing: -0.012em;
  line-height: 1.5;
  word-break: keep-all;
  min-width: 0;
  transition: color 0.2s var(--ease-out);
}
.sq-chat__placeholder.is-typing {
  color: #0F172A;
  font-weight: 500;
}
.sq-chat__placeholder::after {
  content: '';
  display: inline-block;
  width: 1.5px; height: 14px;
  margin-left: 2px;
  vertical-align: -2px;
  background: #2699FB;
  animation: sqCaretBlink 1s steps(2) infinite;
}
.sq-chat__send {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 100%);
  color: #fff;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 8px 18px -6px rgba(38, 153, 251, 0.55);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.sq-chat__send:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -6px rgba(38, 153, 251, 0.7);
}
.sq-chat__send.is-pop {
  transform: scale(0.9);
  box-shadow:
    0 6px 14px -4px rgba(38, 153, 251, 0.65),
    0 0 0 4px rgba(38, 153, 251, 0.18);
}

/* 키프레임 */
@keyframes sqBotSpin {
  to { transform: rotate(360deg); }
}
@keyframes sqCaretBlink {
  to { opacity: 0; }
}

@media (max-width: 640px) {
  .sq-chat-stage { padding: 40px 12px 40px; }
  .sq-chat-glow { inset: 12px 2% 12px 2%; filter: blur(28px); }
  .sq-chat__head { padding: 12px 14px; gap: 8px; }
  .sq-chat__status { padding: 5px 10px 5px 8px; font-size: 11px; }
  .sq-chat__brand-meta { display: none; }
  .sq-chat__body { padding: 18px 14px 14px; min-height: 280px; }
  .sq-msg__pill { max-width: 86%; }
  .sq-chat__input { margin: 0 14px 14px; padding: 11px 12px; }
}

@media (max-width: 0) {
  .sq-msg { transition: none; }
  .sq-bot-tag__ico i,
  .sq-chat__placeholder::after { animation: none; }
}

/* PROBLEM — 직접 운영 vs 스냅큐 비교 카드 */
.sq-vs {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 960px) {
  .sq-vs {
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
  }
}
.sq-vs__card {
  display: flex; flex-direction: column;
  gap: 20px;
  padding: 28px 28px 30px;
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.sq-vs__card--pain {
  background: #FBFBFC;
  border-color: #E2E4E9;
}
.sq-vs__card--gain {
  border-color: #C7E2FB;
  box-shadow: 0 18px 40px -22px rgba(38, 153, 251, 0.25);
  animation: sqGainBorderGlow 3.6s ease-in-out infinite;
}
/* 베이스 그라데이션 */
.sq-vs__card--gain::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(38, 153, 251, 0.08) 0%, rgba(91, 182, 255, 0.04) 60%, transparent 100%),
    radial-gradient(circle at 100% 0%, rgba(38, 153, 251, 0.10) 0%, transparent 45%);
  pointer-events: none;
}
/* 카드 위를 가로지르는 스캔 라인 — AI 분석 느낌 */
.sq-vs__card--gain::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(38, 153, 251, 0.0) 45%,
    rgba(91, 182, 255, 0.28) 50%,
    rgba(38, 153, 251, 0.0) 55%,
    transparent 100%);
  background-size: 100% 220%;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: sqScanLine 4.2s linear infinite;
}
.sq-vs__card > * { position: relative; z-index: 1; }

/* 가운데 화살표 — 데이터 흘러가는 모션 */
.sq-vs__arrow {
  animation: sqArrowGlow 2.4s ease-in-out infinite;
}
.sq-vs__arrow i {
  display: inline-flex;
  animation: sqArrowSlide 2.4s ease-in-out infinite;
}

/* 라이트닝 아이콘 — 펄스 글로우 */
.sq-vs__ico--brand {
  animation: sqLightning 2.6s ease-in-out infinite;
}

/* 체크 아이콘 — 컬러 시프트 stagger */
.sq-vs__card--gain .sq-vs__list li:nth-child(1) i { animation: sqCheckShift 3s ease-in-out 0s infinite; }
.sq-vs__card--gain .sq-vs__list li:nth-child(2) i { animation: sqCheckShift 3s ease-in-out 0.4s infinite; }
.sq-vs__card--gain .sq-vs__list li:nth-child(3) i { animation: sqCheckShift 3s ease-in-out 0.8s infinite; }

/* x 아이콘 — 미세한 펄스 (직접 운영의 비효율 표현) */
.sq-vs__card--pain .sq-vs__list li i {
  animation: sqXBlink 5s ease-in-out infinite;
}

@keyframes sqGainBorderGlow {
  0%, 100% {
    border-color: #C7E2FB;
    box-shadow: 0 18px 40px -22px rgba(38, 153, 251, 0.25);
  }
  50% {
    border-color: #6BB6FF;
    box-shadow:
      0 22px 48px -16px rgba(38, 153, 251, 0.45),
      0 0 0 1px rgba(38, 153, 251, 0.18);
  }
}
@keyframes sqScanLine {
  0%   { background-position: 0 -100%; }
  100% { background-position: 0 220%; }
}
@keyframes sqLightning {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 24px -8px rgba(38, 153, 251, 0.55);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      0 14px 32px -6px rgba(38, 153, 251, 0.75),
      0 0 0 6px rgba(38, 153, 251, 0.14);
  }
}
@keyframes sqArrowGlow {
  0%, 100% {
    box-shadow: 0 6px 18px -6px rgba(38, 153, 251, 0.35);
    border-color: #C7E2FB;
  }
  50% {
    box-shadow:
      0 10px 26px -6px rgba(38, 153, 251, 0.6),
      0 0 0 4px rgba(38, 153, 251, 0.12);
    border-color: #6BB6FF;
  }
}
@keyframes sqArrowSlide {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
@keyframes sqCheckShift {
  0%, 100% { color: #2699FB; transform: scale(1); }
  50%      { color: #5BB6FF; transform: scale(1.12); }
}
@keyframes sqXBlink {
  0%, 100% { opacity: 1; }
  48%, 52% { opacity: 0.45; }
}

@media (max-width: 0) {
  .sq-vs__card--gain,
  .sq-vs__card--gain::after,
  .sq-vs__arrow,
  .sq-vs__arrow i,
  .sq-vs__ico--brand,
  .sq-vs__card--gain .sq-vs__list li i,
  .sq-vs__card--pain .sq-vs__list li i {
    animation: none !important;
  }
}

.sq-vs__head {
  display: flex; align-items: center; gap: 14px;
}
.sq-vs__ico {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: #EEF1F6;
  color: #6B7280;
  font-size: 24px;
}
.sq-vs__ico--brand {
  background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 100%);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(38, 153, 251, 0.55);
}
.sq-vs__tag {
  display: inline-flex;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #6B7280;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.sq-vs__tag--brand { color: #1664A9; }
.sq-vs__title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: #0F172A;
  margin: 0;
}
.sq-vs__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.sq-vs__list li {
  display: flex; align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #374151;
  letter-spacing: -0.015em;
  word-break: keep-all;
}
.sq-vs__list li i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 18px;
}
.sq-vs__card--pain .sq-vs__list li i { color: #9CA3AF; }
.sq-vs__card--gain .sq-vs__list li i { color: #2699FB; }

/* 가운데 화살표 (데스크탑만 노출) */
.sq-vs__arrow {
  display: none;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  align-self: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #C7E2FB;
  color: #2699FB;
  font-size: 22px;
  box-shadow: 0 6px 18px -6px rgba(38, 153, 251, 0.35);
}
@media (min-width: 960px) {
  .sq-vs__arrow { display: inline-flex; }
}

/* 문제 섹션 — 5가지 axes 배지 */
.sq-axes {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.sq-axis {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #E2E7EE;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #4B5563;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  letter-spacing: -0.01em;
}
.sq-axis i {
  font-size: 16px;
  color: #2699FB;
}

/* 5개 핵심 기능 — 3+2 카드 그리드 */
.sq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
}
@media (min-width: 720px) {
  .sq-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1100px) {
  .sq-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
  }
  /* 상단 row: 1·2·3 — 각 2칸씩 */
  .sq-card:nth-child(1) { grid-column: 1 / span 2; }
  .sq-card:nth-child(2) { grid-column: 3 / span 2; }
  .sq-card:nth-child(3) { grid-column: 5 / span 2; }
  /* 하단 row: 4·5 — 2칸씩, 가운데 정렬 (cols 2-3, 4-5) */
  .sq-card:nth-child(4) { grid-column: 2 / span 2; }
  .sq-card:nth-child(5) { grid-column: 4 / span 2; }
}

/* 개별 카드 */
.sq-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out, ease), box-shadow 0.3s var(--ease-out, ease), border-color 0.3s var(--ease-out, ease);
}
.sq-card:hover {
  transform: translateY(-4px);
  border-color: #2699FB;
  box-shadow: 0 18px 40px -16px rgba(38, 153, 251, 0.28);
}
.sq-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #F4F8FF 0%, #E8F2FF 100%);
  border-bottom: 1px solid #E6E9F0;
}
.sq-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sq-card__img[src=""],
.sq-card__img:not([src]) { display: none; }
.sq-card__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: rgba(38, 153, 251, 0.6);
  font-size: 13px;
  letter-spacing: -0.01em;
}
.sq-card__placeholder i { font-size: 40px; }
.sq-card__num {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 44px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1664A9;
}

.sq-card__body {
  display: flex; flex-direction: column;
  gap: 12px;
  padding: 24px 24px 28px;
  flex: 1;
}
.sq-card__name {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: #0F172A;
  margin: 0;
}
.sq-card__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
  word-break: keep-all;
}
.sq-card__points {
  list-style: none;
  padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.sq-card__points li {
  display: flex; align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #1F2937;
  letter-spacing: -0.012em;
}
.sq-card__points li i {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 16px;
  color: #2699FB;
}

/* TRUST 로고 스트립 ---------------------------------------------------- */
.sq-trust { padding-block: 56px; }
.sq-trust__lead {
  font-size: 14.5px;
  color: #6B7280;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.sq-trust__lead b { color: #0F172A; font-weight: 700; }
.sq-trust__note { color: #9CA3AF; font-weight: 500; margin-left: 6px; font-size: 12.5px; }
.sq-trust__strip {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 14px clamp(20px, 3vw, 36px);
}
.sq-trust__brand {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 104px;
  padding: 10px 18px;
  border: 1px dashed #D1D5DB;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9CA3AF;
  background: #F9FAFB;
}

/* HOW IT WORKS — 3 steps ------------------------------------------------ */
.sq-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
}
@media (min-width: 720px) {
  .sq-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.sq-step {
  display: flex; flex-direction: column;
  gap: 14px;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 18px;
  position: relative;
}
.sq-step__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: linear-gradient(160deg, #F4F8FF 0%, #E8F2FF 100%);
  border: 1px solid #DDE7F4;
  overflow: hidden;
  margin-bottom: 6px;
}
.sq-step__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sq-step__img[src=""],
.sq-step__img:not([src]) { display: none; }
.sq-step__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: rgba(38, 153, 251, 0.55);
  font-size: 12.5px;
  letter-spacing: -0.01em;
}
.sq-step__placeholder i { font-size: 36px; }
.sq-step__num {
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #1664A9;
  text-transform: uppercase;
}
.sq-step__name {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: #0F172A;
  margin: 0;
}
.sq-step__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
  word-break: keep-all;
}

/* STATS — 운영 임팩트 -------------------------------------------------- */
.sq-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 880px) {
  .sq-stats__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.sq-stat {
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 16px;
  text-align: left;
}
.sq-stat__num {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #2699FB;
}
.sq-stat__num small {
  font-size: 0.5em;
  font-weight: 700;
  color: #5BB6FF;
  margin-left: 2px;
}
.sq-stat__label {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin: 8px 0 0;
  letter-spacing: -0.02em;
}
.sq-stat__sub {
  font-size: 12.5px;
  color: #6B7280;
  margin: 2px 0 0;
}

/* CASES — 도입 사례 ---------------------------------------------------- */
.sq-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 720px) {
  .sq-cases__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .sq-cases__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.sq-case {
  display: flex; flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 18px;
}
.sq-case__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: linear-gradient(160deg, #EEF2F8 0%, #E2E8F0 100%);
  border: 1px dashed #C8D2E0;
  overflow: hidden;
  margin-bottom: 4px;
}
.sq-case__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sq-case__img[src=""],
.sq-case__img:not([src]) { display: none; }
.sq-case__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(100, 116, 139, 0.5);
}
.sq-case__placeholder i { font-size: 40px; }
.sq-case__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  background: #EFF6FF;
  color: #1664A9;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.sq-case__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: #0F172A;
  margin: 4px 0 0;
}
.sq-case__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
  word-break: keep-all;
}
.sq-case__metrics {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 6px;
  border-top: 1px solid #EEF1F6;
  margin-top: 4px;
}
.sq-case__metrics li {
  font-size: 13px;
  color: #475569;
  letter-spacing: -0.01em;
}
.sq-case__metrics b { color: #2699FB; font-weight: 800; margin-right: 6px; }

/* ==========================================================================
   FEATURES — 개별 섹션 (AI Agent 패널 톤)
   ========================================================================== */
.sq-fsec {
  position: relative;
  overflow: hidden;
}
.sq-fsec--alt { background: #fff; }

.sq-fsec__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) {
  .sq-fsec__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }
  .sq-fsec__grid--reverse .sq-fsec__visual { order: 2; }
  .sq-fsec__grid--reverse .sq-fsec__copy   { order: 1; }
}

/* 좌측 시각 — Agent 패널 */
.sq-fsec__visual {
  position: relative;
  isolation: isolate;
  padding: 16px;
}
.sq-fsec__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 60% at 30% 25%, rgba(38, 153, 251, 0.28) 0%, transparent 70%),
    radial-gradient(60% 50% at 75% 80%, rgba(165, 83, 229, 0.18) 0%, transparent 70%);
  filter: blur(38px);
  pointer-events: none;
  z-index: 0;
  animation: sqGlowDrift 14s ease-in-out infinite;
}
.sq-fsec__mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(38, 153, 251, 0.14) 1px, transparent 0);
  background-size: 22px 22px;
  mask-image: radial-gradient(closest-side, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(closest-side, #000 30%, transparent 78%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.sq-fsec__panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(199, 226, 251, 0.7);
  border-radius: 20px;
  box-shadow:
    0 30px 60px -28px rgba(15, 23, 42, 0.20),
    0 12px 28px -14px rgba(38, 153, 251, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

/* 패널 헤더 */
.sq-fsec__panel-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background:
    linear-gradient(90deg,
      rgba(38, 153, 251, 0.06) 0%,
      rgba(91, 182, 255, 0.04) 50%,
      rgba(165, 83, 229, 0.06) 100%);
  border-bottom: 1px solid rgba(199, 226, 251, 0.55);
}
.sq-fsec__panel-mark {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 60%, #A553E5 130%);
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  box-shadow:
    0 8px 18px -6px rgba(38, 153, 251, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.sq-fsec__panel-info { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.sq-fsec__panel-title {
  font-size: 13.5px; font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F172A;
  line-height: 1.2;
}
.sq-fsec__panel-meta {
  font-size: 11.5px;
  color: #64748B;
  letter-spacing: -0.005em;
  font-weight: 500;
}
.sq-fsec__panel-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px 5px 9px;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.30);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #047857;
  white-space: nowrap;
}
.sq-fsec__panel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
  animation: sqLivePulse 1.8s ease-in-out infinite;
}

/* 패널 본문 — 이미지 placeholder */
.sq-fsec__panel-body {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #F4F8FF 0%, #E8F2FF 100%);
}
.sq-fsec__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sq-fsec__img[src=""],
.sq-fsec__img:not([src]) { display: none; }
.sq-fsec__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: rgba(38, 153, 251, 0.55);
  font-size: 13px;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.sq-fsec__placeholder i { font-size: 40px; }

/* 패널 푸터 — chip 행 */
.sq-fsec__panel-foot {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px 14px;
  background: #fff;
  border-top: 1px solid #F1F3F7;
}
.sq-fsec__chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px 6px 10px;
  background: #F4F8FF;
  border: 1px solid #DBE8F8;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: #1664A9;
}
.sq-fsec__chip i {
  font-size: 12px;
  color: #2699FB;
}

/* 우측 카피 */
.sq-fsec__copy { display: flex; flex-direction: column; }
.sq-fsec__num-row {
  display: inline-flex; align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}
.sq-fsec__num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 50%, #A553E5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sq-fsec__eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #1664A9;
  text-transform: uppercase;
}
.sq-fsec__title {
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #0F172A;
  margin: 0 0 16px;
  word-break: keep-all;
}
.sq-fsec__lead {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 24px;
  word-break: keep-all;
  white-space: pre-line;       /* 데이터 소스의 \n 줄바꿈 렌더링 */
}
.sq-fsec__points {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.sq-fsec__points li {
  display: flex; align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #1F2937;
  letter-spacing: -0.012em;
  word-break: keep-all;
}
.sq-fsec__points li i {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 18px;
  color: #2699FB;
}

@media (max-width: 640px) {
  .sq-fsec__visual { padding: 12px; }
  .sq-fsec__panel-head { padding: 12px 14px; gap: 10px; }
  .sq-fsec__panel-status { padding: 4px 9px 4px 8px; font-size: 10.5px; }
  .sq-fsec__panel-foot { padding: 10px 12px 12px; }
  .sq-fsec__num-row { gap: 10px; margin-bottom: 10px; }
  .sq-fsec__lead { font-size: 15px; margin-bottom: 20px; }
}

/* ──────────────────────────────────────────────────────────────────
   FEATURE 01 · SnapQ 자동진열 관리자 UI mock (16:10 패널 안에 렌더)
   ────────────────────────────────────────────────────────────────── */
.sq-admin-mock {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  font-size: 9px;
  background: #fff;
  color: #1F2937;
  overflow: hidden;
}

/* 사이드바 (다크) */
.sq-admin-mock__sidebar {
  background: linear-gradient(180deg, #1D2530 0%, #161C26 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 7px;
  display: flex; flex-direction: column;
  gap: 12px;
}
.sq-admin-mock__brand {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 4px 6px;
  background: rgba(38, 153, 251, 0.18);
  border-radius: 5px;
  text-align: center;
}
.sq-admin-mock__nav {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 5px;
}
.sq-admin-mock__nav li {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 5px;
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sq-admin-mock__nav li.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}
.sq-admin-mock__nav-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.sq-admin-mock__nav li.is-active .sq-admin-mock__nav-dot {
  background: #5BB6FF;
  box-shadow: 0 0 0 2px rgba(91, 182, 255, 0.25);
}

/* 메인 영역 */
.sq-admin-mock__main {
  display: flex; flex-direction: column;
  min-width: 0;
  background: #F8FAFC;
}
.sq-admin-mock__tabs {
  display: flex; align-items: center;
  padding: 8px 10px;
  background: #fff;
  border-bottom: 1px solid #E6E9F0;
  gap: 12px;
}
.sq-admin-mock__tab {
  font-size: 9px;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: -0.02em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.sq-admin-mock__tab.is-active {
  color: #0F172A;
  border-bottom-color: #2699FB;
  font-weight: 800;
}
.sq-admin-mock__sync {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 9px 4px 7px;
  background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 100%);
  color: #fff;
  font-size: 8.5px;
  font-weight: 700;
  border-radius: 999px;
}
.sq-admin-mock__sync i {
  font-size: 10px;
  animation: sqBotSpin 2.4s linear infinite;
}

.sq-admin-mock__cols {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 10px;
  padding: 10px;
  min-height: 0;
}

/* 좌측 설정 패널 */
.sq-admin-mock__settings {
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  padding: 8px;
  display: flex; flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.sq-admin-mock__field {
  display: flex; flex-direction: column;
  gap: 4px;
}
.sq-admin-mock__field--row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sq-admin-mock__label {
  font-size: 8.5px;
  font-weight: 700;
  color: #475569;
  letter-spacing: -0.015em;
}
.sq-admin-mock__pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 7px;
  background: #EFF6FF;
  border: 1px solid #DBE8F8;
  color: #1664A9;
  border-radius: 4px;
  font-size: 8.5px;
  font-weight: 700;
}
.sq-admin-mock__pill--ghost {
  background: #fff;
  border: 1px solid #E2E7EE;
  color: #0F172A;
  justify-content: space-between;
  min-width: 60px;
}
.sq-admin-mock__pill--num {
  min-width: 26px;
  text-align: center;
  justify-content: center;
}
.sq-admin-mock__pill i { font-size: 9px; color: #94A3B8; }

.sq-admin-mock__days,
.sq-admin-mock__times {
  display: flex; flex-wrap: wrap;
  gap: 3px;
}
.sq-admin-mock__day {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #F1F3F7;
  color: #94A3B8;
  border: 1px solid #E6E9F0;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 700;
}
.sq-admin-mock__day.is-on {
  background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 5px -2px rgba(38, 153, 251, 0.45);
}
.sq-admin-mock__time {
  padding: 3px 6px;
  background: #fff;
  border: 1px solid #DBE8F8;
  color: #1664A9;
  border-radius: 3px;
  font-size: 7.5px;
  font-weight: 700;
}

.sq-admin-mock__toggle {
  position: relative;
  width: 22px; height: 12px;
  background: #2699FB;
  border-radius: 999px;
  flex-shrink: 0;
}
.sq-admin-mock__toggle::after {
  content: '';
  position: absolute;
  top: 1.5px; right: 1.5px;
  width: 9px; height: 9px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 우측 미리보기 */
.sq-admin-mock__preview {
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  padding: 8px;
  display: flex; flex-direction: column;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}
.sq-admin-mock__preview-head {
  display: flex; align-items: center; justify-content: space-between;
}
.sq-admin-mock__preview-title {
  font-size: 9px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
}
.sq-admin-mock__preview-tag {
  display: inline-block;
  padding: 2px 7px;
  background: #EFF6FF;
  color: #1664A9;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
}
.sq-admin-mock__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  min-height: 0;
}
.sq-admin-mock__grid {
  position: relative;
  isolation: isolate;
}

/* 그리드 셀 — 빈 상태로 시작 → 로딩 후 12개 한꺼번에 등장 → 유지 → 사라짐 → 루프 */
.sq-admin-mock__cell {
  position: relative;
  background: linear-gradient(160deg, #E0E7EF 0%, #C7D2DE 100%);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  opacity: 0;
  transform: scale(0.92);
  animation: sqCellLoad 7s var(--ease-out, ease-out) infinite;
}
.sq-admin-mock__cell:nth-child(4n+1) { background: linear-gradient(160deg, #D6DCE5 0%, #B0B9C7 100%); }
.sq-admin-mock__cell:nth-child(4n+2) { background: linear-gradient(160deg, #E5DCD0 0%, #C8B9A6 100%); }
.sq-admin-mock__cell:nth-child(4n+3) { background: linear-gradient(160deg, #DAE2EC 0%, #B9C5D5 100%); }
.sq-admin-mock__cell:nth-child(4n+4) { background: linear-gradient(160deg, #E8D9D2 0%, #C9B1A4 100%); }

@keyframes sqCellLoad {
  /* 0–15% : 빈 화면 (로더가 대신 보임) */
  0%, 15%   { opacity: 0; transform: scale(0.92); filter: blur(2px); }
  /* 22% : 일제 등장 */
  22%       { opacity: 1; transform: scale(1);    filter: blur(0); }
  /* 22–88% : 유지 */
  88%       { opacity: 1; transform: scale(1);    filter: blur(0); }
  /* 93–100% : 페이드 아웃 후 다시 빈 상태로 */
  93%, 100% { opacity: 0; transform: scale(0.95); filter: blur(1px); }
}

.sq-admin-mock__rank {
  position: absolute;
  top: 3px; left: 3px;
  min-width: 14px; height: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 3px;
  background: rgba(255, 255, 255, 0.92);
  color: #0F172A;
  font-size: 8px;
  font-weight: 800;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* 로더 — 빈 화면 시점에 중앙에 표시되었다가 셀 등장 직전 사라짐 */
.sq-admin-mock__loader {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: -0.012em;
  pointer-events: none;
  z-index: 1;
  animation: sqLoaderShow 7s ease-in-out infinite;
}
.sq-admin-mock__loader i {
  font-size: 18px;
  color: #2699FB;
  animation: sqBotSpin 1s linear infinite;
}
@keyframes sqLoaderShow {
  /* 0–15% : 보임 */
  0%, 15%  { opacity: 1; transform: scale(1); }
  /* 18% : 사라짐 (셀 등장과 교차) */
  20%, 92% { opacity: 0; transform: scale(0.9); }
  /* 95–100% : 다시 등장 (셀이 사라진 후) */
  98%,100% { opacity: 1; transform: scale(1); }
}

/* 그리드 빈 상태 표시 — 옅은 셀 윤곽 (가이드라인) */
.sq-admin-mock__grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 calc((100% - 12px) / 3), rgba(15,23,42,0.04) calc((100% - 12px) / 3) calc((100% - 12px) / 3 + 4px)),
    repeating-linear-gradient(90deg, transparent 0 calc((100% - 12px) / 4), rgba(15,23,42,0.04) calc((100% - 12px) / 4) calc((100% - 12px) / 4 + 4px));
  pointer-events: none;
  z-index: -1;
}

/* 자동 갱신 스캔 라인 — 좌→우 천천히 흐르며 "자동 진열 작동 중" 효과 */
.sq-admin-mock__scan {
  position: absolute;
  top: 0; bottom: 0;
  left: 64px; right: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(91, 182, 255, 0.18) 48%,
    rgba(91, 182, 255, 0.32) 50%,
    rgba(91, 182, 255, 0.18) 52%,
    transparent 100%);
  background-size: 200% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: sqAdminScan 5s linear infinite;
  mix-blend-mode: overlay;
}
@keyframes sqAdminScan {
  0%   { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

@media (max-width: 640px) {
  .sq-admin-mock { font-size: 8px; grid-template-columns: 48px 1fr; }
  .sq-admin-mock__sidebar { padding: 8px 5px; }
  .sq-admin-mock__nav li { font-size: 7.5px; padding: 3px 4px; }
  .sq-admin-mock__tabs { gap: 8px; padding: 6px 8px; }
  .sq-admin-mock__cols { gap: 6px; padding: 6px; }
  .sq-admin-mock__settings,
  .sq-admin-mock__preview { padding: 6px; gap: 5px; }
  .sq-admin-mock__day { width: 14px; height: 14px; font-size: 7.5px; }
  .sq-admin-mock__scan { left: 48px; }
}

@media (max-width: 0) {
  .sq-admin-mock__sync i,
  .sq-admin-mock__scan { animation: none; }
}

/* ──────────────────────────────────────────────────────────────────
   FEATURE 02 · 실시간 당일발송 표시 mock (자사몰 상품 페이지 위젯)
   ────────────────────────────────────────────────────────────────── */
.sq-ship-mock {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 14px 16px;
  gap: 8px;
  background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
  color: #1F2937;
  font-size: 9.5px;
  overflow: hidden;
}

/* 헤더 (회색 배너) */
.sq-ship-mock__head {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: #D8DBE2;
  border-radius: 6px;
  color: #1F2937;
}
.sq-ship-mock__head > i:first-child { font-size: 14px; color: #475569; }
.sq-ship-mock__head-title {
  flex: 1;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.sq-ship-mock__head-chev { font-size: 11px; color: #64748B; }

/* 테이블 */
.sq-ship-mock__table {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 6px;
}
.sq-ship-mock__th,
.sq-ship-mock__tr {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 7px 12px;
  align-items: center;
}
.sq-ship-mock__th {
  font-weight: 800;
  color: #0F172A;
  font-size: 9.5px;
  border-bottom: 1px solid #E2E7EE;
  letter-spacing: -0.02em;
}
.sq-ship-mock__th span:last-child { justify-self: end; }
.sq-ship-mock__tr {
  border-bottom: 1px dashed #E2E7EE;
  color: #374151;
  font-size: 9.5px;
}
.sq-ship-mock__tr:last-child { border-bottom: 0; }
.sq-ship-mock__badge {
  justify-self: end;
  padding: 3px 9px;
  background: #F1F3F7;
  color: #475569;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: -0.012em;
}
.sq-ship-mock__badge--today {
  background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 100%);
  color: #fff;
  box-shadow: 0 4px 10px -4px rgba(38, 153, 251, 0.55);
  animation: sqShipPulse 2.4s ease-in-out infinite;
}
@keyframes sqShipPulse {
  0%, 100% { box-shadow: 0 4px 10px -4px rgba(38, 153, 251, 0.55); }
  50%      { box-shadow: 0 6px 14px -3px rgba(38, 153, 251, 0.75), 0 0 0 3px rgba(38, 153, 251, 0.12); }
}

/* 안내 카드 */
.sq-ship-mock__info {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px;
  background: #F6F8FC;
  border: 1px solid #E2E7EE;
  border-radius: 6px;
}
.sq-ship-mock__info > i {
  font-size: 22px;
  color: #2699FB;
  flex-shrink: 0;
  margin-top: 1px;
}
.sq-ship-mock__info ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 3px;
  flex: 1;
  font-size: 9px;
  color: #475569;
  letter-spacing: -0.012em;
}
.sq-ship-mock__info ul li b {
  color: #0F172A;
  font-weight: 800;
  margin-right: 2px;
}

/* 주의사항 (asterisk 표기) */
.sq-ship-mock__notes {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 2px;
  font-size: 8.5px;
  color: #6B7280;
  letter-spacing: -0.012em;
}
.sq-ship-mock__notes li::before {
  content: '*';
  margin-right: 4px;
  color: #94A3B8;
}

/* 푸터 브랜드 */
.sq-ship-mock__brand {
  margin-top: auto;
  align-self: flex-end;
  font-size: 9px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .sq-ship-mock { padding: 10px 12px; gap: 6px; }
  .sq-ship-mock__head { padding: 6px 10px; }
  .sq-ship-mock__head-title { font-size: 9.5px; }
  .sq-ship-mock__th,
  .sq-ship-mock__tr { padding: 5px 10px; font-size: 8.5px; }
  .sq-ship-mock__badge { padding: 2px 7px; font-size: 8px; }
  .sq-ship-mock__info { padding: 8px 10px; gap: 8px; }
  .sq-ship-mock__info > i { font-size: 18px; }
  .sq-ship-mock__info ul { font-size: 8.5px; }
  .sq-ship-mock__notes { font-size: 8px; }
  .sq-ship-mock__notes li:nth-child(n+3) { display: none; }
}

@media (max-width: 0) {
  .sq-ship-mock__badge--today { animation: none; }
}

/* ──────────────────────────────────────────────────────────────────
   FEATURE 03 · 아이콘 자동관리 mock (자사몰 상품 리스트)
   ────────────────────────────────────────────────────────────────── */
.sq-icon-mock {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 14px 16px 10px;
  gap: 10px;
  background: #fff;
  color: #1F2937;
  font-size: 9px;
  overflow: hidden;
}

/* 헤더 — 등록 제품 수 + 정렬 탭 */
.sq-icon-mock__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.sq-icon-mock__count {
  font-size: 9.5px;
  font-weight: 600;
  color: #1F2937;
  letter-spacing: -0.015em;
}
.sq-icon-mock__count b {
  color: #B22A2A;
  font-weight: 800;
  margin: 0 1px;
}
.sq-icon-mock__sorts {
  display: inline-flex; align-items: center;
  font-size: 9px;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: -0.015em;
}
.sq-icon-mock__sorts span {
  padding: 0 6px;
  border-right: 1px solid #D1D5DB;
}
.sq-icon-mock__sorts span:last-child { border-right: 0; padding-right: 0; }
.sq-icon-mock__sorts span:first-child { padding-left: 0; }
.sq-icon-mock__sorts .is-active { color: #0F172A; font-weight: 800; }

/* 4 컬럼 그리드 */
.sq-icon-mock__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  min-height: 0;
}

/* 카드 */
.sq-icon-mock__card {
  display: flex; flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sq-icon-mock__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #F1F4F9 0%, #E1E7F0 100%);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ↓ .sq-icon-mock__media--c1~c6 + .sq-icon-mock__svg → /assets/css/snapq.css 로 이동됨. */

.sq-icon-mock__heart {
  position: absolute;
  right: 4px; bottom: 4px;
  font-size: 10px;
  color: rgba(15, 23, 42, 0.45);   /* 어두운 배경 사라졌으므로 hover-friendly 톤 */
}
.sq-icon-mock__name {
  font-size: 9.5px;
  font-weight: 700;
  color: #0F172A;
  margin: 4px 0 0;
  letter-spacing: -0.018em;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sq-icon-mock__price {
  display: flex; align-items: baseline;
  gap: 4px;
  margin-top: 2px;
  font-size: 9px;
  letter-spacing: -0.015em;
}
.sq-icon-mock__dc {
  font-weight: 800;
  color: #0F172A;
}
.sq-icon-mock__orig {
  color: #94A3B8;
  text-decoration: line-through;
  font-size: 8px;
}
.sq-icon-mock__sale {
  font-weight: 800;
  color: #0F172A;
}
.sq-icon-mock__coupon {
  font-size: 8.5px;
  color: #B22A2A;
  margin: 0;
  letter-spacing: -0.015em;
}
.sq-icon-mock__coupon b {
  font-weight: 700;
}

/* 자동 부착되는 아이콘 row — 핵심 시각 포인트 */
.sq-icon-mock__icons {
  display: flex; flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.sq-icon-mock__badge {
  display: inline-flex; align-items: center;
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border-radius: 3px;
  /* 자동 부착 애니메이션 */
  opacity: 0;
  transform: scale(0.7);
  animation: sqBadgeAttach 8s ease-out infinite;
}
.sq-icon-mock__badge--best {
  background: #97393B;
  color: #fff;
}
.sq-icon-mock__badge--ship {
  background: #EEF1F6;
  color: #1F2937;
  border: 1px solid #D1D5DB;
}

/* 카드별 + 아이콘별 stagger — 4 카드 × 2 아이콘 = 8 단계 */
.sq-icon-mock__card:nth-child(1) .sq-icon-mock__badge:nth-child(1) { animation-delay: 0.20s; }
.sq-icon-mock__card:nth-child(1) .sq-icon-mock__badge:nth-child(2) { animation-delay: 0.40s; }
.sq-icon-mock__card:nth-child(2) .sq-icon-mock__badge:nth-child(1) { animation-delay: 0.60s; }
.sq-icon-mock__card:nth-child(2) .sq-icon-mock__badge:nth-child(2) { animation-delay: 0.80s; }
.sq-icon-mock__card:nth-child(3) .sq-icon-mock__badge:nth-child(1) { animation-delay: 1.00s; }
.sq-icon-mock__card:nth-child(3) .sq-icon-mock__badge:nth-child(2) { animation-delay: 1.20s; }
.sq-icon-mock__card:nth-child(4) .sq-icon-mock__badge:nth-child(1) { animation-delay: 1.40s; }
.sq-icon-mock__card:nth-child(4) .sq-icon-mock__badge:nth-child(2) { animation-delay: 1.60s; }

@keyframes sqBadgeAttach {
  0%       { opacity: 0; transform: scale(0.7);  filter: brightness(1.3); }
  /* 부착 — 살짝 튀어 들어옴 + 하이라이트 */
  4%       { opacity: 1; transform: scale(1.15); filter: brightness(1.3); }
  9%       { opacity: 1; transform: scale(1);    filter: brightness(1); }
  /* 유지 */
  90%      { opacity: 1; transform: scale(1);    filter: brightness(1); }
  /* 페이드 아웃 후 루프 */
  97%, 100%{ opacity: 0; transform: scale(0.85); }
}

@media (max-width: 640px) {
  .sq-icon-mock { padding: 10px 12px 8px; font-size: 8px; }
  .sq-icon-mock__count, .sq-icon-mock__sorts { font-size: 8px; }
  .sq-icon-mock__sorts span:nth-child(n+4) { display: none; }
  .sq-icon-mock__grid { gap: 6px; }
  .sq-icon-mock__name, .sq-icon-mock__sale, .sq-icon-mock__dc { font-size: 8.5px; }
  .sq-icon-mock__badge { font-size: 7px; padding: 2.5px 5px; }
}

@media (max-width: 0) {
  .sq-icon-mock__badge { animation: none; opacity: 1; transform: none; }
}

/* ──────────────────────────────────────────────────────────────────
   FEATURE 04 · 다양한 알고리즘 조건 mock (IF→THEN 룰 매트릭스)
   ────────────────────────────────────────────────────────────────── */
.sq-algo-mock {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 12px 14px;
  gap: 10px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  color: #1F2937;
  font-size: 9.5px;
  overflow: hidden;
}

.sq-algo-mock__head {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  background:
    linear-gradient(90deg,
      rgba(165, 83, 229, 0.07) 0%,
      rgba(91, 182, 255, 0.05) 60%,
      rgba(38, 153, 251, 0.07) 100%);
  border: 1px solid rgba(199, 226, 251, 0.7);
  border-radius: 8px;
}
.sq-algo-mock__mark {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(160deg, #A553E5 0%, #5BB6FF 60%, #2699FB 130%);
  color: #fff;
  border-radius: 7px;
  font-size: 15px;
  box-shadow: 0 4px 10px -4px rgba(165, 83, 229, 0.55);
  animation: sqAlgoMarkPulse 2.4s ease-in-out infinite;
}
@keyframes sqAlgoMarkPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); box-shadow: 0 6px 14px -4px rgba(165, 83, 229, 0.75); }
}
.sq-algo-mock__head-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.sq-algo-mock__head-title {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F172A;
  line-height: 1.2;
}
.sq-algo-mock__head-meta {
  font-size: 9px;
  font-weight: 500;
  color: #64748B;
  letter-spacing: -0.012em;
}
.sq-algo-mock__head-status {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px 4px 7px;
  background: rgba(165, 83, 229, 0.12);
  border: 1px solid rgba(165, 83, 229, 0.30);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #6B21A8;
}
.sq-algo-mock__head-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #A553E5;
  box-shadow: 0 0 0 3px rgba(165, 83, 229, 0.22);
  animation: sqLivePulse 1.6s ease-in-out infinite;
}

.sq-algo-mock__rules {
  list-style: none;
  padding: 0; margin: 0;
  flex: 1;
  display: flex; flex-direction: column;
  gap: 6px;
  min-height: 0;
}
.sq-algo-mock__rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
/* --v1 (구 layout) 만 nth-child 강조 애니메이션 — v2 는 새 keyframe (sqAlgoComboRotate) 사용 */
.sq-algo-mock:not(.sq-algo-mock--v2) .sq-algo-mock__rule {
  animation: sqAlgoEval 8s ease-in-out infinite;
}
.sq-algo-mock:not(.sq-algo-mock--v2) .sq-algo-mock__rule:nth-child(1) { animation-delay: 0s; }
.sq-algo-mock:not(.sq-algo-mock--v2) .sq-algo-mock__rule:nth-child(2) { animation-delay: 2s; }
.sq-algo-mock:not(.sq-algo-mock--v2) .sq-algo-mock__rule:nth-child(3) { animation-delay: 4s; }
.sq-algo-mock:not(.sq-algo-mock--v2) .sq-algo-mock__rule:nth-child(4) { animation-delay: 6s; }
@keyframes sqAlgoEval {
  0%, 22%, 100% {
    background: #fff;
    border-color: #E6E9F0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  }
  6%, 14% {
    background: linear-gradient(90deg, #F4F8FF 0%, #FBF5FF 100%);
    border-color: #C7A6F0;
    box-shadow: 0 8px 20px -8px rgba(165, 83, 229, 0.30);
  }
}

/* ================= V2 — 조건 풀 + 자동 조합 회전 + 무한 footer ================= */

/* 조건 풀 — 6 카테고리 (2 cols × 3 rows). 각 셀: tag + 4 chips 가로 wrap */
.sq-algo-mock__pool {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
  padding: 8px 9px;
  background: linear-gradient(180deg, #FBFBFD 0%, #F4F6FB 100%);
  border: 1px solid #EAEDF3;
  border-radius: 8px;
  flex: 1;                /* 남은 세로 영역 점유 */
  min-height: 0;
  align-content: center;
}
.sq-algo-mock__combine,
.sq-algo-mock__inf { flex-shrink: 0; }
.sq-algo-mock__cat {
  display: flex; align-items: center;
  gap: 6px;
  min-width: 0;
}
.sq-algo-mock__cat-tag {
  flex-shrink: 0;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: -0.012em;
  color: #6B7280;
  padding: 3px 7px;
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 4px;
}
.sq-algo-mock__pchips {
  display: flex; flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}
.sq-algo-mock__pchip {
  display: inline-flex;
  padding: 2px 6px;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: #475569;
  background: #fff;
  border: 1px solid #E1E5EE;
  border-radius: 3px;
  white-space: nowrap;
  /* chip 마다 시차 두고 강조 펄스 — 풀이 살아있는 느낌 */
  animation: sqAlgoPchipPulse 6s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.25s);
}
@keyframes sqAlgoPchipPulse {
  0%, 88%, 100% {
    color: #475569;
    background: #fff;
    border-color: #E1E5EE;
    box-shadow: none;
  }
  92%, 96% {
    color: #1664A9;
    background: #EFF6FF;
    border-color: #BFD9F6;
    box-shadow: 0 2px 6px -2px rgba(38, 153, 251, 0.30);
  }
}

/* 자동 조합 — 라벨 + stage. stage 안에서 6 룰이 stacked 으로 회전 */
.sq-algo-mock__combine {
  display: flex; flex-direction: column;
  gap: 4px;
  padding: 6px 0 0;
}
.sq-algo-mock__combine-label {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #A553E5;
  padding-left: 2px;
}
.sq-algo-mock__combine-label i { font-size: 11px; }
.sq-algo-mock__combine-stage {
  position: relative;
  min-height: 42px;
}
.sq-algo-mock--v2 .sq-algo-mock__combine-stage .sq-algo-mock__rule {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(6px) scale(0.97);
  /* var(--total) 개의 룰이 각자 1/total 만큼 visible time 점유 — 무한 루프 */
  animation: sqAlgoComboRotate calc(var(--total, 6) * 2s) ease-in-out infinite;
  animation-delay: calc(var(--idx, 0) * 2s);
}
@keyframes sqAlgoComboRotate {
  /* 한 룰의 visible window: 0~14% (보이는 동안) + 16%~100% (다음 룰에게 자리 양보) */
  0%   { opacity: 0; transform: translateY(6px) scale(0.97); }
  4%, 14% {
    opacity: 1; transform: translateY(0) scale(1);
    background: linear-gradient(90deg, #F4F8FF 0%, #FBF5FF 100%);
    border-color: #C7A6F0;
    box-shadow: 0 8px 20px -8px rgba(165, 83, 229, 0.30);
  }
  18%, 100% { opacity: 0; transform: translateY(-6px) scale(0.97); }
}

/* 무한 조합 footer */
.sq-algo-mock__inf {
  margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 7px 10px;
  background: linear-gradient(90deg,
    rgba(165, 83, 229, 0.10) 0%,
    rgba(91, 182, 255, 0.08) 60%,
    rgba(38, 153, 251, 0.10) 100%);
  border: 1px solid rgba(199, 226, 251, 0.7);
  border-radius: 8px;
}
.sq-algo-mock__inf-symbol {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  font-size: 16px;
  font-weight: 900;
  font-family: "Times New Roman", serif;
  background: linear-gradient(160deg, #A553E5 0%, #2699FB 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sqAlgoInfSpin 8s linear infinite;
}
@keyframes sqAlgoInfSpin {
  0%   { transform: scale(1) rotate(0deg); }
  50%  { transform: scale(1.18) rotate(180deg); }
  100% { transform: scale(1) rotate(360deg); }
}
.sq-algo-mock__inf-text {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: -0.012em;
  color: #5B3F8C;
  background: linear-gradient(90deg, #6B21A8 0%, #1664A9 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sq-algo-mock__col {
  display: inline-flex; align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}
.sq-algo-mock__kw {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #94A3B8;
}
.sq-algo-mock__kw--then { color: #A553E5; }

.sq-algo-mock__chip {
  display: inline-flex; align-items: center;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: -0.012em;
  border-radius: 4px;
  white-space: nowrap;
}
.sq-algo-mock__chip--cat {
  background: #EFF6FF;
  color: #1664A9;
  border: 1px solid #DBE8F8;
}
.sq-algo-mock__chip--time {
  background: #F5F3FF;
  color: #6B21A8;
  border: 1px solid #DDD6FE;
}
.sq-algo-mock__chip--algo {
  background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 3px 8px -3px rgba(38, 153, 251, 0.45);
}
.sq-algo-mock__chip--cond {
  background: #FFF7ED;
  color: #C2410C;
  border: 1px solid #FED7AA;
}

.sq-algo-mock__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: linear-gradient(160deg, #A553E5 0%, #5BB6FF 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  box-shadow: 0 3px 8px -3px rgba(165, 83, 229, 0.45);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .sq-algo-mock { padding: 10px 12px; gap: 8px; }
  .sq-algo-mock__head { padding: 7px 10px; }
  .sq-algo-mock__mark { width: 24px; height: 24px; font-size: 13px; }
  .sq-algo-mock__head-title { font-size: 9.5px; }
  .sq-algo-mock__head-meta { font-size: 8px; }
  .sq-algo-mock__rule { padding: 6px 8px; gap: 6px; }
  .sq-algo-mock__chip { font-size: 8px; padding: 2px 6px; }
  .sq-algo-mock__arrow { width: 18px; height: 18px; font-size: 9px; }
  .sq-algo-mock__kw { font-size: 7.5px; }
}

/* ──────────────────────────────────────────────────────────────────
   FEATURE 05 · 오픈마켓 판매 데이터 연동 mock (채널 카드 → 허브 통합)
   ────────────────────────────────────────────────────────────────── */
.sq-collect-mock {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 16px 18px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  color: #1F2937;
  font-size: 9.5px;
  overflow: hidden;
}

/* 좌측 채널 카드 리스트 (5개) */
.sq-collect-mock__channels {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 8px;
  width: 36%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.sq-collect-mock__chan {
  padding: 9px 14px;
  background: #fff;
  border: 1px solid #E2E7EE;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  color: #1F2937;
  letter-spacing: -0.015em;
  text-align: center;
  box-shadow: 0 2px 6px -2px rgba(15, 23, 42, 0.06);
}
.sq-collect-mock__chan--more {
  display: flex; flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
}
.sq-collect-mock__chan-title {
  font-size: 10px;
  font-weight: 700;
  color: #1F2937;
}
.sq-collect-mock__chan-sub {
  font-size: 8px;
  font-weight: 500;
  color: #94A3B8;
  letter-spacing: -0.005em;
}

/* SVG 곡선 (점선 + 흐름) */
.sq-collect-mock__lines {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.sq-collect-mock__lines use {
  fill: none;
  stroke: #5BB6FF;
  stroke-width: 0.8;
  stroke-dasharray: 2.5 2;
  vector-effect: non-scaling-stroke;
  animation: sqCollectFlow 0.9s linear infinite;
}
.sq-collect-mock__lines--out use {
  stroke: #2699FB;
  stroke-width: 1.1;
  stroke-dasharray: 3 2;
  animation: sqCollectFlow 0.7s linear infinite;
}
@keyframes sqCollectFlow {
  to { stroke-dashoffset: -9; }
}

/* 점선 따라 흐르는 데이터 펄스 점 */
.sq-collect-mock__pulse {
  fill: #2699FB;
  filter: drop-shadow(0 0 1.5px rgba(38, 153, 251, 0.9));
}
.sq-collect-mock__pulse--out {
  fill: #1664A9;
  filter: drop-shadow(0 0 2px rgba(22, 100, 169, 0.85));
}

/* 중간 ERP 통합 배지 */
.sq-collect-mock__via {
  position: absolute;
  left: 58%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  background: #fff;
  border: 1.5px solid #2699FB;
  border-radius: 10px;
  box-shadow:
    0 10px 24px -10px rgba(38, 153, 251, 0.40),
    0 0 0 4px rgba(38, 153, 251, 0.08);
  z-index: 3;
  white-space: nowrap;
}
.sq-collect-mock__via-mark {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 100%);
  color: #fff;
  border-radius: 7px;
  font-size: 14px;
  box-shadow: 0 4px 10px -4px rgba(38, 153, 251, 0.55);
}
.sq-collect-mock__via-info { display: flex; flex-direction: column; gap: 1px; }
.sq-collect-mock__via-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #0F172A;
  line-height: 1.2;
}
.sq-collect-mock__via-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #64748B;
}

/* 우측 허브 */
.sq-collect-mock__hub {
  position: absolute;
  right: 18px;
  top: 56%;
  transform: translateY(-50%);
  display: flex; flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.sq-collect-mock__hub-core {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #0F1A2C 0%, #182334 100%);
  color: #5BB6FF;
  border-radius: 14px;
  font-size: 30px;
  box-shadow:
    0 16px 32px -10px rgba(15, 26, 44, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}
.sq-collect-mock__hub-core::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(38, 153, 251, 0.18) 0%, rgba(91, 182, 255, 0.12) 100%);
  filter: blur(8px);
  z-index: -1;
}
.sq-collect-mock__hub-label {
  padding: 5px 12px;
  background: #EFF6FF;
  color: #1664A9;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: -0.012em;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .sq-collect-mock { padding: 12px 14px; }
  .sq-collect-mock__channels { width: 42%; gap: 6px; }
  .sq-collect-mock__chan { padding: 7px 10px; font-size: 9px; }
  .sq-collect-mock__chan--more { padding: 6px 8px; }
  .sq-collect-mock__chan-title { font-size: 9px; }
  .sq-collect-mock__chan-sub { font-size: 7px; }
  .sq-collect-mock__via { padding: 6px 10px 6px 6px; gap: 6px; border-width: 1px; }
  .sq-collect-mock__via-mark { width: 22px; height: 22px; font-size: 11px; border-radius: 5px; }
  .sq-collect-mock__via-label { font-size: 9px; }
  .sq-collect-mock__via-sub { font-size: 7px; }
  .sq-collect-mock__hub { right: 12px; gap: 7px; }
  .sq-collect-mock__hub-core { width: 48px; height: 48px; font-size: 22px; border-radius: 11px; }
  .sq-collect-mock__hub-label { font-size: 8.5px; padding: 4px 10px; }
}

/* 점선 흐름은 마케팅 비주얼이라 reduce-motion 에서도 살림 — 글로벌 override 블록에서 처리 */




/* ★ FLAGSHIP 변형 — CRM 전담 마케터 (5번째)
   브랜드 톤(블루·퍼플) 유지, ★ 아이콘과 "★ FLAGSHIP" 라벨로만 차별화 — 별도 컬러 오버라이드 없음 */

/* 기능 섹션 — 인용형 태그라인 */
.sq-fsec__tagline {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  font-weight: 700;
  color: #1664A9;
  margin: 0 0 16px;
  letter-spacing: -0.012em;
  word-break: keep-all;
}

/* ==========================================================================
   /solution/snapq · 히어로 공통 (다른 .sq-* 룰은 /assets/css/snapq.css 로 이동)
   ========================================================================== */
/* 한글 어절 단위로 줄바꿈 */
.page-snapq .hero-h1,
.page-snapq .hero-sub { word-break: keep-all; }

/* snapq 히어로 — 카피가 길어 폰트 cap 살짝 축소 */
.page-snapq .hero-h1 {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.18;
}

/* ==========================================================================
   /terms · /privacy · 약관·개인정보처리방침 (라이트·읽기 전용)
   ========================================================================== */
.page-legal main { background: #fff; }

/* 헤드 */
.legal-head {
  padding: clamp(72px, 9vw, 128px) 0 clamp(28px, 3vw, 44px);
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(38, 153, 251, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #F4F8FF 0%, #FAFBFD 100%);
  border-bottom: 1px solid #E6E9F0;
}
.legal-head__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0F172A;
  margin: 0 0 12px;
}
.legal-head__meta {
  font-size: 13.5px;
  color: #6B7280;
  letter-spacing: 0.02em;
  margin: 0;
  font-weight: 500;
}

/* 본문 컨테이너 */
.legal-body {
  padding: clamp(48px, 6vw, 88px) 0 clamp(80px, 10vw, 140px);
}
.legal-body__inner {
  max-width: 820px;
}

/* 인트로 문단 */
.legal-intro {
  font-size: 15px;
  line-height: 1.85;
  color: #475569;
  margin: 0 0 18px;
  letter-spacing: -0.012em;
  word-break: keep-all;
}

/* 목차 (TOC) */
.legal-toc {
  margin: 0 0 36px;
  padding: 20px 24px 20px 44px;
  background: #F8FAFC;
  border: 1px solid #EEF1F6;
  border-radius: 10px;
  font-size: 14px;
  color: #1F2937;
}
.legal-toc li { margin: 4px 0; }

/* 각 조항 */
.legal-article {
  padding: 28px 0;
  border-bottom: 1px solid #EEF1F6;
}
.legal-article:first-of-type { padding-top: 0; }
.legal-article:last-of-type { border-bottom: 0; }
.legal-article__title {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0F172A;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0F172A;
  display: inline-block;
}
.legal-article p {
  font-size: 15px;
  line-height: 1.85;
  color: #1F2937;
  margin: 0 0 12px;
  letter-spacing: -0.012em;
  word-break: keep-all;
}
.legal-article p:last-child { margin-bottom: 0; }
.legal-article a { color: #2699FB; font-weight: 600; }
.legal-article b, .legal-article strong { color: #0F172A; font-weight: 700; }

/* 리스트 — 원형 ① ② / 알파벳 A B / 숫자 */
.legal-list {
  margin: 12px 0;
  padding: 0;
  list-style: none;
  counter-reset: legal;
  display: flex; flex-direction: column;
  gap: 10px;
}
.legal-list li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.85;
  color: #1F2937;
  letter-spacing: -0.012em;
  word-break: keep-all;
  counter-increment: legal;
}
.legal-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #2699FB;
  font-variant-numeric: tabular-nums;
}
.legal-list--circ > li::before {
  content: counter(legal, decimal) ".";
  min-width: 24px;
}
.legal-list--alpha > li::before {
  content: counter(legal, upper-alpha) ".";
}
.legal-list--num > li::before {
  content: counter(legal) ".";
}

/* 중첩 리스트 — 들여쓰기 */
.legal-list .legal-list {
  margin: 10px 0 4px;
  padding-left: 0;
}
.legal-list .legal-list li {
  font-size: 14.5px;
  color: #374151;
}
.legal-list--alpha {
  counter-reset: legal-alpha;
}
.legal-list--alpha > li {
  counter-increment: legal-alpha;
}
.legal-list--alpha > li::before {
  content: counter(legal-alpha, upper-alpha) ".";
}

/* 하위 블록 (서브 헤더 + 트리) */
.legal-subblock {
  margin: 16px 0;
  padding: 16px 18px;
  background: #F8FAFC;
  border: 1px solid #EEF1F6;
  border-radius: 8px;
}
.legal-subblock > p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #1F2937;
  margin: 8px 0;
  letter-spacing: -0.012em;
}
.legal-subhead {
  font-size: 14px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 6px;
  letter-spacing: -0.018em;
}
.legal-tree {
  list-style: none;
  padding: 0;
  margin: 6px 0 4px;
  display: flex; flex-direction: column;
  gap: 6px;
}
.legal-tree li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.75;
  color: #475569;
  letter-spacing: -0.012em;
  word-break: keep-all;
}
.legal-tree li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: 0;
  color: #94A3B8;
  font-weight: 800;
}

/* 연락처 박스 */
.legal-contact {
  margin: 18px 0;
  padding: 18px 22px;
  background: #F8FAFC;
  border-left: 3px solid #2699FB;
  border-radius: 4px;
}
.legal-contact p { margin: 4px 0; font-size: 14.5px; line-height: 1.7; }
.legal-contact__role {
  font-size: 13px !important;
  font-weight: 800;
  color: #1664A9;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 8px !important;
}

/* 부칙 */
.legal-foot {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid #E6E9F0;
}
.legal-foot__title {
  font-size: 15px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.legal-foot__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 4px;
  font-size: 13.5px;
  color: #6B7280;
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  .legal-article p,
  .legal-list li { font-size: 14px; line-height: 1.8; }
  .legal-list .legal-list li { font-size: 13.5px; }
  .legal-subblock { padding: 14px 16px; }
  .legal-toc { padding: 16px 20px 16px 36px; font-size: 13px; }
}




/* ==========================================================================
   (DEAD) /solution/snapfit · 구버전 Feature Mockups (4종)
   /solution/snapfit/ 가 LP 원본으로 전환되며 사용 안 됨. @media (max-width:0)
   로 감싸서 영구 비활성화 (LP 의 .sf-widget 등과 동일 클래스 충돌 제거).
   ========================================================================== */
@media (max-width: 0px) {
.sf-mock {
  position: absolute; inset: 0;
  background: #F8FAFC;
  color: #1F2937;
  font-size: 11px;
  overflow: hidden;
  padding: 14px;
}
.sf-mock .sf-widget--inner {
  box-shadow: 0 6px 14px -6px rgba(15, 23, 42, 0.10);
}

/* 카드 등장 — .is-active 시 fade-up */
.sf-mock .sf-widget--inner {
  opacity: 0;
  transform: translateY(6px);
}
.sf-mock.is-active .sf-widget--inner {
  animation: sfCardIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.15s;
}
@keyframes sfCardIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Mock 01 — admin-deploy (어드민 + 화살표 + 결과 위젯 세로 스택) ===== */
.sf-mock--deploy {
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 12px;
  overflow: hidden;
}
.sf-mock--deploy .sf-mock__card {
  background: #fff;
  border-radius: 9px;
  border: 1px solid #E5E9EF;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(6px);
}
.sf-mock--deploy.is-active .sf-mock__card--admin  { animation: sfCardIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards; }
.sf-mock--deploy.is-active .sf-mock__card--result { animation: sfCardIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards; }

/* 어드민 패널 */
.sf-mock__top {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 10px;
  background: #F4F8FF;
  border-bottom: 1px solid #E5E9EF;
  color: #1F2937;
}
.sf-mock__top i { color: #2699FB; font-size: 13px; }
.sf-mock__top-t { font-size: 10.5px; font-weight: 700; color: #0F172A; }
.sf-mock__pill {
  margin-left: auto;
  padding: 2px 7px;
  background: #E8EEF6;
  color: #2699FB;
  border-radius: 999px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.04em;
}
.sf-mock__row {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  border-bottom: 1px solid #F1F4F8;
}
.sf-mock__row:last-child { border-bottom: 0; }
.sf-mock__field {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1;
  min-width: 0;
}
.sf-mock__field label {
  font-size: 8px;
  color: #9CA3AF;
  font-weight: 600;
}
.sf-mock__field > span {
  padding: 3px 6px;
  background: #FAFBFD;
  border: 1px solid #EEF1F6;
  border-radius: 4px;
  font-size: 10px; font-weight: 600;
  color: #0F172A;
  text-align: center;
}

/* 자동 반영 화살표 브릿지 */
.sf-mock--deploy .sf-mock__bridge {
  margin: 0 auto;
  padding: 4px 12px;
  background: linear-gradient(90deg, transparent 0%, #EFF6FF 50%, transparent 100%);
  color: #2699FB;
  font-size: 10px; font-weight: 700;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  border-radius: 999px;
  opacity: 0;
}
.sf-mock--deploy.is-active .sf-mock__bridge {
  animation: sfCardIn 0.45s ease-out 0.45s forwards, sfBridgePulse 1.8s ease-in-out 1.2s infinite;
}
.sf-mock--deploy .sf-mock__bridge i { font-size: 13px; }

/* 결과 위젯 — 실측 사이즈표 */
.sf-mock--deploy .sf-widget--inner {
  box-shadow: none;
  border-radius: 0;
}

@keyframes sfBridgePulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}

/* ===== Mock 02 — compare (단일 비교 테이블) ===== */
.sf-mock--compare {
  display: flex; align-items: center; justify-content: center;
}
.sf-widget__table--compare th:first-child,
.sf-widget__table--compare td:first-child { text-align: left; min-width: 84px; }
.sf-mock__cmp-row td { font-weight: 600; }
.sf-mock__cmp-row:last-child td { color: #0F172A; }
.sf-mock__thumb {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #F1F4F8;
  border-radius: 4px;
  color: #C7CDD7;
  font-size: 12px;
  margin-right: 6px;
  vertical-align: middle;
}
.sf-diff {
  display: inline-flex; align-items: center;
  margin-left: 4px;
  font-size: 9px; font-weight: 700;
  padding: 1px 4px;
  border-radius: 999px;
}
.sf-diff--up   { background: #FEF2F2; color: #DC2626; }
.sf-diff--down { background: #EFF6FF; color: #2699FB; }
.sf-diff i { font-size: 9px; margin-right: 1px; }
.sf-mock__caption {
  margin: 6px 12px 0;
  font-size: 9px;
  color: #9CA3AF;
}
/* compare 행 stagger 등장 */
.sf-mock--compare .sf-mock__cmp-row {
  opacity: 0;
  transform: translateY(4px);
}
.sf-mock--compare.is-active .sf-mock__cmp-row { animation: sfRowFade 0.5s ease-out forwards; }
.sf-mock--compare.is-active .sf-mock__cmp-row:nth-child(1) { animation-delay: 0.5s; }
.sf-mock--compare.is-active .sf-mock__cmp-row:nth-child(2) { animation-delay: 0.7s; }
@keyframes sfRowFade {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Mock 03 — reco (폼 + 결과) ===== */
.sf-mock--reco {
  display: flex; align-items: center; justify-content: center;
}
.sf-mock__reco-form {
  display: flex; gap: 8px;
  padding: 12px;
  border-bottom: 1px solid #F1F4F8;
}
.sf-mock__reco-field {
  flex: 1;
  display: flex; flex-direction: column; gap: 4px;
}
.sf-mock__reco-field label {
  font-size: 9.5px;
  color: #9CA3AF; font-weight: 600;
}
.sf-mock__reco-input {
  display: flex; align-items: baseline; gap: 4px;
  padding: 8px 10px;
  background: #F8FAFC;
  border: 1px solid #E5E9EF;
  border-radius: 7px;
  font-size: 14px; font-weight: 700;
  color: #0F172A;
}
.sf-mock__reco-input em {
  font-style: normal;
  font-size: 10px;
  color: #9CA3AF;
  margin-left: auto;
}
.sf-mock__reco-result {
  padding: 14px 12px;
  text-align: center;
  background: linear-gradient(160deg, #F4F8FF 0%, #FAFBFD 100%);
}
.sf-mock__reco-k {
  margin: 0 0 6px;
  font-size: 9.5px;
  color: #6B7280;
}
.sf-mock__reco-size {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 800;
  color: #2699FB;
  letter-spacing: -0.04em;
  line-height: 1;
}
.sf-mock__reco-bar {
  height: 6px;
  background: #E5E9EF;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 8px;
  max-width: 200px;
}
.sf-mock__reco-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #2699FB 0%, #5BB6FF 100%);
  border-radius: inherit;
}
.sf-mock--reco.is-active .sf-mock__reco-bar span { animation: sfBarFill 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.6s forwards; }
@keyframes sfBarFill { to { width: 67%; } }
.sf-mock__reco-meta {
  margin: 0;
  font-size: 10px;
  color: #6B7280;
}
.sf-mock__reco-meta i { color: #2699FB; margin-right: 3px; }
.sf-mock__reco-meta b { color: #0F172A; font-weight: 700; }

/* M 숫자 펄스 */
.sf-mock--reco.is-active .sf-mock__reco-size { animation: sfSizePulse 2.4s ease-in-out 1.4s infinite; }
@keyframes sfSizePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.07); }
}

/* ===== Mock 04 ★ — dual-channel (쇼핑몰 ↔ 외부 채널) ===== */
.sf-mock--dual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 14px;
}
.sf-mock__chan {
  background: #fff;
  border: 1px solid #E5E9EF;
  border-radius: 10px;
  padding: 8px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0;
  transform: translateY(6px);
}
.sf-mock--dual.is-active .sf-mock__chan--shop { animation: sfCardIn 0.55s ease-out 0.3s forwards; }
.sf-mock--dual.is-active .sf-mock__chan--ext  { animation: sfCardIn 0.55s ease-out 0.55s forwards; }
.sf-mock__chan-head {
  display: flex; align-items: center; gap: 5px;
  padding-bottom: 4px;
  border-bottom: 1px solid #F1F4F8;
  font-size: 10px; font-weight: 700;
  color: #0F172A;
}
.sf-mock__chan-head i { color: #2699FB; font-size: 13px; }
.sf-mock__chan-tag {
  margin-left: auto;
  padding: 1px 6px;
  background: #E8EEF6;
  color: #2699FB;
  border-radius: 999px;
  font-size: 8px; font-weight: 700;
}
.sf-mock__url--mini { padding: 5px 8px; font-size: 9px; border-radius: 5px; border: 1px solid #E5E9EF; background: #F4F6FA; }
.sf-mock__mini-widget {
  background: #F8FAFC;
  border: 1px solid #E5E9EF;
  border-radius: 7px;
  padding: 7px;
  display: flex; flex-direction: column; gap: 5px;
}
.sf-mock__mini-bar {
  display: flex; align-items: center; gap: 5px;
  font-size: 9.5px; font-weight: 700; color: #0F172A;
  padding-bottom: 4px;
  border-bottom: 1px solid #EEF1F6;
}
.sf-mock__mini-bar i { color: #2699FB; }
.sf-mock__mini-rows {
  display: flex; flex-direction: column; gap: 3px;
}
.sf-mock__mini-rows span {
  height: 6px;
  background: linear-gradient(90deg, #E5E9EF 0%, #F1F4F8 80%);
  border-radius: 3px;
}
.sf-mock__mini-rows span:nth-child(1) { width: 90%; }
.sf-mock__mini-rows span:nth-child(2) { width: 75%; }
.sf-mock__mini-rows span:nth-child(3) { width: 85%; }
.sf-mock__mini-rows--img span {
  background: linear-gradient(90deg, #BFD9F6 0%, #E5E9EF 80%);
}
.sf-mock__img-frame {
  background: #F4F8FF;
  border: 1px dashed #BFD9F6;
  border-radius: 7px;
  padding: 8px;
  display: flex; flex-direction: column; gap: 5px;
}
.sf-mock__img-label {
  font-size: 8.5px;
  color: #6B7280;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.sf-mock__ext-channels {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 2px;
}
.sf-mock__ext-channels span {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid #E5E9EF;
  border-radius: 50%;
  color: #2699FB;
  font-size: 11px;
}

/* 듀얼 브릿지 */
.sf-mock__dual-bridge {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  opacity: 0;
}
.sf-mock--dual.is-active .sf-mock__dual-bridge { animation: sfCardIn 0.55s ease-out 0.8s forwards; }
.sf-mock__bridge-ico {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #2699FB 0%, #A553E5 130%);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  box-shadow: 0 6px 14px -4px rgba(38, 153, 251, 0.5);
  animation: sfBridgeSpin 2.4s ease-in-out infinite;
}
.sf-mock__bridge-t {
  font-size: 9px; font-weight: 700;
  color: #0F172A;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
@keyframes sfBridgeSpin {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.08) rotate(8deg); }
}

/* 반응형 — 좁은 폭에서 폰트·패딩 축소, 듀얼은 세로 스택 */
@media (max-width: 720px) {
  .sf-mock { padding: 10px; font-size: 10px; }
  .sf-mock__top { padding: 8px 10px; }
  .sf-mock__row { padding: 6px 10px; }
  .sf-mock__field > span { padding: 3px 5px; font-size: 9.5px; }
  .sf-mock__reco-input { font-size: 13px; padding: 6px 8px; }
  .sf-mock__reco-size { font-size: 26px; }
  .sf-mock--dual { grid-template-columns: 1fr; gap: 6px; padding: 10px; }
  .sf-mock__dual-bridge { flex-direction: row; gap: 8px; }
  .sf-mock__bridge-ico { width: 22px; height: 22px; font-size: 11px; }
}
} /* end DEAD @media wrap for 구버전 snapfit feature mockups */

/* ==========================================================================
   /solution/snapq · PROBLEM 24시간 운영 타임라인 (sq-chat 대체)
   ========================================================================== */
.sq-timeline {
  width: 100%;
  max-width: 1200px;
  /* 위·아래 여백 — 섹션 헤더(상)·.sq-axes 칩(하)과 충분히 분리 */
  margin: clamp(80px, 10vw, 140px) auto;
  padding: 28px clamp(20px, 3vw, 40px);
  background: #fff;
  border: 1px solid #E5E9EF;
  border-radius: 18px;
  box-shadow: 0 16px 40px -20px rgba(15, 23, 42, 0.08);
}
.sq-timeline__strip {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
}
.sq-timeline__strip + .sq-timeline__strip { border-top: 1px dashed #E5E9EF; }
.sq-timeline__head {
  display: flex; flex-direction: column; gap: 4px;
}
.sq-timeline__head {
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
}
.sq-timeline__icon {
  grid-row: 1 / 3;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: 16px;
}
.sq-timeline__icon--manual { background: #FEF2F2; color: #DC2626; }
.sq-timeline__icon--auto   { background: linear-gradient(160deg, #2699FB 0%, #5BB6FF 60%, #A553E5 130%); color: #fff; box-shadow: 0 6px 14px -6px rgba(38, 153, 251, 0.5); }
.sq-timeline__label {
  font-size: 14.5px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.01em;
}
.sq-timeline__meta {
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
}
.sq-timeline__track {
  position: relative;
  height: 22px;
  background: #F1F4F8;
  border-radius: 999px;
  overflow: hidden;
}
.sq-timeline__seg {
  position: absolute;
  top: 0; bottom: 0;
  border-radius: inherit;
}
/* 평일 9~18시 = 9/24 ~ 18/24 = 37.5% ~ 75% */
.sq-timeline__seg--manual {
  left: 37.5%;
  width: 37.5%;
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.85) 0%, rgba(239, 68, 68, 0.85) 100%);
}
.sq-timeline__seg--auto {
  left: 0; width: 100%;
  background: linear-gradient(90deg, #2699FB 0%, #5BB6FF 50%, #A553E5 130%);
  animation: sqAutoFlow 6s ease-in-out infinite;
  background-size: 200% 100%;
}
@keyframes sqAutoFlow {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.sq-timeline__axis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 8px;
  padding-left: 218px;   /* head 너비 + gap 만큼 */
  font-size: 11px;
  color: #9CA3AF;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.sq-timeline__axis span:nth-child(1) { text-align: left; }
.sq-timeline__axis span:nth-child(5) { text-align: right; }
.sq-timeline__axis span:not(:first-child):not(:last-child) { text-align: center; }
.sq-timeline__caption {
  margin: 22px 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #0F172A;
  text-align: center;
  letter-spacing: -0.01em;
}

@media (max-width: 720px) {
  .sq-timeline { padding: 22px 18px; }
  .sq-timeline__strip { grid-template-columns: 1fr; gap: 10px; padding: 12px 0; }
  .sq-timeline__axis { padding-left: 0; }
  .sq-timeline__head { grid-template-columns: 30px 1fr; }
  .sq-timeline__icon { width: 30px; height: 30px; }
}




/* DEAD — 구버전 layout 베리에이션 (snapreview 패턴 전환되며 사용 안 함) */
@media (max-width: 0px) {
.sq-fsec--layout-stack .sq-fsec__grid {
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 920px;
  margin: 0 auto;
}
.sq-fsec--layout-stack .sq-fsec__copy {
  text-align: center;
  align-items: center;
  display: flex; flex-direction: column;
}
.sq-fsec--layout-stack .sq-fsec__copy .sq-fsec__eyebrow {
  justify-content: center;
}
.sq-fsec--layout-stack .sq-fsec__points {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 12px;
  max-width: 760px;
}
.sq-fsec--layout-stack .sq-fsec__points li {
  background: rgba(38, 153, 251, 0.06);
  border: 1px solid rgba(38, 153, 251, 0.18);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
}
.sq-fsec--layout-stack .sq-fsec__points li i {
  color: #2699FB;
}
.sq-fsec--layout-stack .sq-fsec__visual {
  order: 2;
}

/* (2) WIDE — 비주얼이 카피보다 넓음 (Feature 02 매체별 통합) */
.sq-fsec--layout-wide .sq-fsec__grid {
  grid-template-columns: 0.85fr 1.45fr;
  gap: clamp(36px, 4vw, 64px);
  align-items: center;
}

/* (3) SPLIT — 기존 50/50 (Feature 03 심층 분석) */
/* 기존 .sq-fsec__grid 룰이 그대로 적용 — 별도 override 없음 */

/* (4) STACK-REVERSE — 비주얼 위 / 카피 아래 (Feature 04 자사몰 매출) */
.sq-fsec--layout-stack-reverse .sq-fsec__grid {
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1040px;
  margin: 0 auto;
}
.sq-fsec--layout-stack-reverse .sq-fsec__visual { order: 1; }
.sq-fsec--layout-stack-reverse .sq-fsec__copy {
  order: 2;
  text-align: center;
  align-items: center;
  display: flex; flex-direction: column;
}
.sq-fsec--layout-stack-reverse .sq-fsec__copy .sq-fsec__eyebrow {
  justify-content: center;
}
.sq-fsec--layout-stack-reverse .sq-fsec__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  max-width: 720px;
}

/* (5) BANNER ★ — 풀-블리드 ink 섹션 (Feature 05 ★ Flagship — 멀티플랫폼) */
.sq-fsec--banner {
  background:
    radial-gradient(60% 80% at 20% 20%, rgba(38, 153, 251, 0.22) 0%, transparent 60%),
    radial-gradient(50% 70% at 80% 80%, rgba(165, 83, 229, 0.20) 0%, transparent 60%),
    linear-gradient(180deg, #07203B 0%, #0C2A4D 100%);
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
}
.sq-fsec--banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px; height: 1200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165, 83, 229, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.sq-fsec--banner .sq-fsec__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.sq-fsec--banner .sq-fsec__copy {
  order: 1;
  text-align: center;
  align-items: center;
  display: flex; flex-direction: column;
}
.sq-fsec--banner .sq-fsec__visual { order: 2; max-width: 880px; margin: 0 auto; width: 100%; }
.sq-fsec--banner .sq-fsec__eyebrow {
  background: linear-gradient(160deg, #FBBF24 0%, #F59E0B 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 0.14em;
  justify-content: center;
}
.sq-fsec--banner .sq-fsec__title {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
}
.sq-fsec--banner .sq-fsec__tagline {
  color: #FBBF24;
  font-weight: 700;
}
.sq-fsec--banner .sq-fsec__lead { color: rgba(255, 255, 255, 0.78); }
.sq-fsec--banner .sq-fsec__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  max-width: 760px;
  text-align: left;
}
.sq-fsec--banner .sq-fsec__points li { color: rgba(255, 255, 255, 0.82); }
.sq-fsec--banner .sq-fsec__points li i { color: #FBBF24; }
.sq-fsec--banner .sq-fsec__panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

/* 반응형 — 좁은 폭에서는 모두 단일 col 으로 자연스럽게 stacking */
@media (max-width: 900px) {
  .sq-fsec--layout-wide .sq-fsec__grid,
  .sq-fsec--layout-split .sq-fsec__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sq-fsec--layout-stack .sq-fsec__points,
  .sq-fsec--layout-stack-reverse .sq-fsec__points,
  .sq-fsec--banner .sq-fsec__points {
    grid-template-columns: 1fr;
  }
}
} /* end DEAD @media wrap for 구버전 snapads layout variations */


/* ==========================================================================
   통일 하단 도입 문의 폼 — partials/closing-form.php 가 사용하는 클래스
   lp.css 가 로드되는 페이지(snapq/snapads/snappush/snapskin/snapreview)에서는
   lp.css 룰이 우선 적용되고, lp.css 미로드 페이지(snapfit) 에서는 이 폴백이 적용.
   ========================================================================== */
.closing-form {
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px -16px rgba(15, 23, 42, 0.18);
}
/* 도입 문의 폼은 입력 박스 계산을 항상 border-box 로 강제.
   (페이지별 content-box 오버라이드가 있는 LP — 예: page-snapfit — 에서의
   추가 override 는 해당 페이지 CSS 파일에 분리.) */
.closing-form,
.closing-form *,
.closing-form *::before,
.closing-form *::after {
  box-sizing: border-box;
}
.closing-form .field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin: 0;
}
.closing-form .field label {
  font-size: 13px;
  font-weight: 600;
  color: #4B5563;
  letter-spacing: -0.012em;
}
.closing-form .field input,
.closing-form .field textarea,
.closing-form .field select {
  width: 100%;
  padding: 11px 14px;
  background: #F8FAFC;
  border: 1px solid #E5E9EF;
  border-radius: 8px;
  font: inherit;
  font-size: 14.5px;
  color: #0F172A;
  letter-spacing: -0.012em;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.closing-form .field input::placeholder,
.closing-form .field textarea::placeholder {
  color: #94A3B8;
}
.closing-form .field input:focus,
.closing-form .field textarea:focus,
.closing-form .field select:focus {
  border-color: #2699FB;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(38, 153, 251, 0.12);
}
.closing-form .field textarea {
  resize: vertical;
  min-height: 96px;
  font-family: inherit;
}
.closing-form .select-wrap {
  position: relative;
}
.closing-form .select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  cursor: pointer;
}
.closing-form .select-wrap i {
  position: absolute;
  top: 50%; right: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 16px;
  color: #6B7280;
}
.closing-form .form-note {
  margin: 6px 0 0;
  font-size: 11.5px;
  line-height: 1.55;
  color: #94A3B8;
  text-align: center;
  letter-spacing: -0.012em;
}

/* ink/navy 배경 위에서는 카드 그림자 강조 */
.section--ink .closing-form,
.section--navy .closing-form {
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5);
}


.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   솔루션 페이지 closing CTA — 옵션 A · 센터 단일 컬럼
   closing-stack (래퍼) → closing-copy--center (텍스트 영역) → closing-cta (버튼)
   ========================================================================== */
.closing-stack {
  display: flex; flex-direction: column;
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
  text-align: center;
}
.closing-copy--center {
  max-width: 760px;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
}
.closing-copy--center .h-sec,
.closing-copy--center .sub-sec {
  text-align: center;
}
.closing-copy--center .sub-sec {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

/* points — 가로 행으로 배치 (다크 위 칩 스타일) */
.closing-points--row {
  flex-direction: row !important;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px 22px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.closing-points--row li {
  display: inline-flex; align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.closing-points--row li i {
  color: #6FB8FF;
  font-size: 18px;
  flex-shrink: 0;
}

/* CTA 버튼 + 노트 (closing-form.php) */
.closing-cta {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 12px;
}
.closing-cta__btn {
  min-width: 240px;
  padding-inline: 48px;
}
.closing-cta__note {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.012em;
}

@media (max-width: 900px) {
  .closing-points--row {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .closing-points--row li {
    white-space: normal;
    font-size: 13.5px;
  }
}
@media (max-width: 640px) {
  .closing-points--row { gap: 8px 14px; }
  .closing-points--row li { font-size: 13px; }
  .closing-cta__btn { width: 100%; min-width: 0; }
}

/* ==========================================================================
   /contact/ — 도입 문의 별도 페이지
   ========================================================================== */
/* /contact/ 에서는 우하단 floating 문의 UI 가 중복이라 숨김 */
.page-contact .floating-contact,
.page-contact .floating-popup {
  display: none !important;
}

.contact-page {
  padding: clamp(64px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
  background: linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 60%);
}
.contact-page__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.contact-page__head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.contact-page__eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: #EFF6FF;
  color: #1664A9;
  border: 1px solid #BFD9F6;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.contact-page__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.028em;
  line-height: 1.25;
  word-break: keep-all;
}
.contact-page__sub {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: #475569;
  letter-spacing: -0.012em;
  word-break: keep-all;
}
.contact-page__note {
  margin: 24px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: #94A3B8;
  letter-spacing: -0.012em;
}

/* Contact form */
.contact-form {
  background: #fff;
  border-radius: 18px;
  padding: clamp(28px, 3vw, 44px);
  box-shadow: 0 24px 56px -22px rgba(15, 23, 42, 0.18);
  display: flex; flex-direction: column;
  gap: 18px;
}
.contact-form[hidden] { display: none; }
.contact-form__row { display: flex; flex-direction: column; }
.contact-form__row--2col { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) {
  .contact-form__row--2col { grid-template-columns: 1fr 1fr; }
}
.contact-form__field {
  display: flex; flex-direction: column;
  gap: 8px;
}
.contact-form__field label {
  font-size: 13.5px;
  font-weight: 700;
  color: #334155;
  letter-spacing: -0.012em;
}
.contact-form__req { color: #DC2626; font-weight: 800; }
.contact-form__field input,
.contact-form__field textarea,
.contact-form__select select {
  width: 100%;
  padding: 13px 16px;
  background: #F8FAFC;
  border: 1px solid #E5E9EF;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: #0F172A;
  letter-spacing: -0.012em;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  box-sizing: border-box;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: #94A3B8; }
.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__select select:focus {
  border-color: #2699FB;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(38, 153, 251, 0.12);
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}
.contact-form__select { position: relative; }
.contact-form__select select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 44px;
}
.contact-form__select i {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 18px;
  color: #6B7280;
}
.contact-form__row--agree { margin-top: 6px; }

/* 문의 솔루션 — 플로팅 UI 와 동일 멀티 체크박스 그리드 (확대 버전) */
.contact-form__label-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #334155;
  letter-spacing: -0.012em;
}
.contact-form__hint {
  font-size: 11.5px;
  font-weight: 700;
  color: #2699FB;
  padding: 3px 10px;
  background: #EFF6FF;
  border-radius: 999px;
  letter-spacing: -0.01em;
}
.contact-form__checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 2px;
}
@media (min-width: 640px) {
  .contact-form__checks { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 880px) {
  .contact-form__checks { grid-template-columns: repeat(4, 1fr); }
}
.contact-form__check {
  display: flex; align-items: center;
  gap: 9px;
  padding: 12px 14px;
  background: #F8FAFC;
  border: 1px solid #E5E9EF;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1F2937;
  letter-spacing: -0.012em;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.contact-form__check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: #2699FB;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
}
.contact-form__check:hover {
  background: #F1F4F8;
  border-color: #C7CDD7;
}
.contact-form__check:has(input:checked) {
  background: #EFF6FF;
  border-color: #2699FB;
  color: #1664A9;
}
/* 마지막 항목 (etc) 이 홀수 위치일 때 풀폭 — 4-col 기준 */
@media (min-width: 880px) {
  .contact-form__check:last-child:nth-child(4n+1),
  .contact-form__check:last-child:nth-child(4n+2),
  .contact-form__check:last-child:nth-child(4n+3) {
    grid-column: span 1;
  }
}

.contact-form__row--submit { margin-top: 8px; }
.contact-form__row--submit .btn { width: 100%; }

/* 제출 완료 카드 */
.contact-success {
  background: #fff;
  border-radius: 18px;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 3vw, 44px);
  box-shadow: 0 24px 56px -22px rgba(15, 23, 42, 0.18);
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact-success[hidden] { display: none; }
.contact-success__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(160deg, #DCFCE7 0%, #BBF7D0 100%);
  color: #16A34A;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 42px;
  box-shadow: 0 8px 24px -8px rgba(22, 163, 74, 0.45);
}
.contact-success__title {
  margin: 4px 0 0;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.contact-success__desc {
  margin: 0;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.7;
  color: #475569;
  letter-spacing: -0.012em;
}
.contact-success__desc strong { color: #1664A9; font-weight: 800; }
.contact-success__actions {
  display: flex; gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-success__actions .btn {
  min-width: 160px;
}
.btn--ghost {
  background: #fff;
  color: #475569;
  border: 1px solid #E2E8F0;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: #0F172A;
}
@media (max-width: 520px) {
  .contact-success__actions { flex-direction: column; width: 100%; }
  .contact-success__actions .btn { width: 100%; min-width: 0; }
}


/* ==========================================================================
   공용 개인정보 수집·이용 동의 카드 (.consent-card)
   ----------------------------------------------------------------------------
   사용처: 인재풀 안내, 도입 문의 페이지(/contact), 헤더 도입 문의 팝업
   본문 max-height + overflow-y 로 내부 스크롤 처리해 외부 레이아웃 안정.
   ========================================================================== */
.consent-card {
  border: 1px solid #E5E9EF;
  border-radius: 12px;
  background: #FFFFFF;
  overflow: hidden;
  margin-top: 6px;
}
.consent-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #FAFBFD;
  border-bottom: 1px solid #EEF1F6;
}
.consent-card__title {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.014em;
}
.consent-card__badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #1664A9;
  background: #EFF6FF;
  border: 1px solid #BFD9F6;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.consent-card__body {
  padding: 18px 20px 20px;
  font-size: 13px;
  color: #334155;
  line-height: 1.7;
  letter-spacing: -0.012em;
  max-height: 280px;
  overflow-y: auto;
}
.consent-card__intro {
  margin: 0 0 14px;
  color: #1F2937;
}
.consent-card__section {
  margin: 0 0 12px;
}
.consent-card__heading {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
}
.consent-card__list {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}
.consent-card__list li { margin: 2px 0; }
.consent-card__notice {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: #6B7280;
}
.consent-card__hint {
  margin: 0;
  padding: 12px 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1664A9;
  background: #F4F8FF;
  border-top: 1px solid #EEF1F6;
  letter-spacing: -0.012em;
}
.consent-card__agree {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid #EEF1F6;
  background: #FAFBFD;
  font-size: 13.5px;
  font-weight: 600;
  color: #0F172A;
  cursor: pointer;
  letter-spacing: -0.012em;
}
.consent-card__agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2699FB;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
}
/* 팝업 등 좁은 컨테이너 변형 — 폰트·여백·내부 스크롤 높이 축소 */
.consent-card--compact .consent-card__head { padding: 12px 14px; }
.consent-card--compact .consent-card__title { font-size: 13px; }
.consent-card--compact .consent-card__badge { padding: 2px 7px; font-size: 10.5px; }
.consent-card--compact .consent-card__body { padding: 14px 14px 16px; font-size: 12.5px; max-height: 200px; }
.consent-card--compact .consent-card__heading { font-size: 12.5px; }
.consent-card--compact .consent-card__notice { font-size: 12px; }
.consent-card--compact .consent-card__hint { padding: 10px 14px; font-size: 12px; }
@media (max-width: 540px) {
  .consent-card__head { padding: 14px 16px; }
  .consent-card__title { font-size: 13.5px; }
  .consent-card__body { padding: 16px; font-size: 12.5px; max-height: 240px; }
  .consent-card__hint { padding: 12px 16px; font-size: 12px; }
  .consent-card__agree { padding: 12px 16px; font-size: 13px; }
}

