    /* ---- MAIN ---- */
    .faq-main {
      font-family: var(--font-sans);
      background: var(--bg-page);
      color: var(--text-primary);
      font-size: 16px;
      line-height: 1.65;
      padding-bottom: 120px;
      word-break: keep-all;
    }
    .faq-main * { box-sizing: border-box; }

    /* ---- HERO ---- */
    .faq-hero {
      background: var(--navy);
      color: #fff;
      padding: 80px 0 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .faq-hero .inner { position: relative; z-index: 1; }
    .faq-hero-kicker {
      font-size: 12px; font-weight: 600;
      color: var(--gold-light); letter-spacing: 0.15em;
      text-transform: uppercase; margin-bottom: 20px; display: block;
    }
    .faq-hero-title {
      font-family: var(--font-serif);
      font-size: 36px; font-weight: 700;
      margin: 0 0 16px; line-height: 1.3; letter-spacing: -0.01em;
    }
    .pasan-hero-line { width: 40px; height: 2px; background: var(--gold); margin: 0 auto 24px; }
    .faq-hero-desc {
      font-size: 16px; color: rgba(255,255,255,0.72);
      max-width: 640px; margin: 0 auto; font-weight: 400; line-height: 1.8;
    }

    /* ---- IN-PAGE NAV ---- */
    .pasan-nav-wrapper {
      position: sticky; top: var(--header-h); z-index: 100;
      background: #fff; border-bottom: 1px solid var(--border-subtle);
    }
    .pasan-nav {
      max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
      display: flex; align-items: stretch;
      overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
    }
    .pasan-nav::-webkit-scrollbar { display: none; }
    .pasan-nav-link {
      flex-shrink: 0; padding: 16px 20px;
      font-size: 14px; font-weight: 600; color: var(--text-muted);
      white-space: nowrap; border-bottom: 2px solid transparent;
      transition: var(--transition);
    }
    .pasan-nav-link:hover { color: var(--navy); }
    .pasan-nav-link.active { color: var(--navy); font-weight: 700; border-bottom-color: var(--gold); }

    /* ---- FAQ SECTIONS ---- */
    .faq-section {
      border-top: 1px solid var(--border-subtle);
      padding: 56px 0;
      scroll-margin-top: calc(var(--header-h) + 52px);
    }
    .faq-section:first-child { border-top: none; padding-top: 48px; }

    .faq-group-head { margin-bottom: 28px; }
    .faq-group-kicker {
      font-size: 11px; font-weight: 700; color: var(--gold);
      letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; display: block;
    }
    .faq-group-title {
      font-family: var(--font-serif);
      font-size: 22px; font-weight: 700; color: var(--navy); margin: 0 0 6px;
    }
    .faq-group-desc { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.7; }

    /* ---- FAQ ACCORDION ---- */
    .faq-list { display: flex; flex-direction: column; }
    .faq-item {
      border-bottom: 1px solid var(--border-subtle);
      transition: var(--transition);
    }
    .faq-item:last-child { border-bottom: none; }

    .faq-question {
      width: 100%; border: none; background: transparent;
      padding: 20px 0; display: flex; align-items: flex-start;
      gap: 14px; cursor: pointer; text-align: left; transition: background 0.2s;
    }
    .faq-q-label { font-size: 13px; font-weight: 700; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
    .faq-q-text {
      font-family: var(--font-serif);
      font-size: 16px; font-weight: 600; color: var(--navy); flex: 1; line-height: 1.5;
    }
    .faq-icon {
      width: 22px; height: 22px; border: 1px solid var(--border-light);
      color: var(--text-muted); display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 400; flex-shrink: 0; transition: all var(--transition);
    }
    .faq-icon::before { content: "+"; }
    .faq-item.active .faq-icon { background: var(--navy); border-color: var(--navy); color: #fff; }
    .faq-item.active .faq-icon::before { content: "−"; }

    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1); background: var(--bg-warm); border-top: 1px solid transparent; }
    .faq-item.active .faq-answer { border-top-color: var(--border-subtle); }
    .faq-answer-inner {
      padding: 20px 24px 28px 40px;
      font-size: 15px; color: var(--text-secondary); line-height: 1.75;
    }
    .faq-answer-inner p { margin-bottom: 12px; }
    .faq-answer-inner p:last-child { margin-bottom: 0; }
    .faq-highlight { color: var(--navy); font-weight: 700; background: var(--gold-muted); padding: 0 3px; }
    .faq-note {
      font-size: 13px; color: var(--text-muted);
      background: var(--bg-card); border: 1px solid var(--border-light);
      border-left: 3px solid var(--gold);
      padding: 14px 16px; margin-top: 14px;
      list-style: none;
    }
    .faq-note li { margin-bottom: 6px; }
    .faq-note li:last-child { margin-bottom: 0; }

    .faq-detail-link-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .faq-detail-link-list a { min-height: 72px; display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 16px 18px; border: 1px solid var(--border-light); background: var(--bg-card); color: var(--navy); text-decoration: none; }
    .faq-detail-link-list a:hover { border-color: var(--gold); transform: translateY(-1px); }
    .faq-detail-link-list span { color: var(--gold-text, #806731); font-size: 12px; font-weight: 800; }
    .faq-detail-link-list strong { font-size: 15px; line-height: 1.5; }
    .faq-detail-link-list i { color: var(--text-muted); font-size: 12px; }

    /* ---- FAQ TABLE ---- */
    .faq-table-wrap { width: 100%; overflow-x: auto; margin: 16px 0; border: 1px solid var(--border-light); background: var(--bg-card); }
    .faq-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
    .faq-table th, .faq-table td { padding: 11px 14px; border-bottom: 1px solid var(--border-subtle); text-align: left; vertical-align: middle; }
    .faq-table thead th { background: var(--navy); color: #fff; font-weight: 600; border-bottom: none; }
    .faq-table tbody th { background: var(--bg-warm); color: var(--navy); font-weight: 700; width: 18%; text-align: center; }
    .faq-table td { color: var(--text-secondary); border-left: 1px solid var(--border-subtle); }
    .faq-table tr:last-child th, .faq-table tr:last-child td { border-bottom: none; }

    /* ---- CONSULT SECTION ---- */
    .consult-card {
      background: var(--navy); padding: 64px 40px; text-align: center; margin-top: 0;
    }
    .consult-kicker { font-size: 11px; font-weight: 700; color: var(--gold-light); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; display: block; }
    .consult-title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: #fff; margin: 0 0 14px; line-height: 1.4; }
    .consult-desc { font-size: 15px; color: rgba(255,255,255,0.65); margin: 0 auto 32px; max-width: 520px; line-height: 1.8; }
    .consult-btn { display: inline-flex; align-items: center; justify-content: center; padding: 15px 36px; background: var(--gold); color: #fff; font-size: 15px; font-weight: 700; text-decoration: none; transition: var(--transition); border-radius: 2px; }
    .consult-btn:hover { background: var(--gold-light); }

    @media (max-width: 768px) {
      .faq-hero { padding: 60px 20px 80px; }
      .faq-hero-title { font-size: 26px; }
      .faq-section { padding: 40px 0; }
      .faq-question { padding: 18px 0; gap: 12px; }
      .faq-q-text { font-size: 15px; }
      .faq-answer-inner { padding: 16px 16px 24px; }
      .faq-detail-link-list { grid-template-columns: 1fr; }
      .consult-card { padding: 48px 24px; }
      .consult-title { font-size: 22px; }
    }

    /* ---- FADE-IN ---- */
    .fade-section { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-section.visible { opacity: 1; transform: translateY(0); }

    /* =========================================================================
       MOTION (ksl-motion 훅 보조 스타일 — 이 페이지 전용)
       법률 정보 페이지라 '절제' 기조: 아코디언 hover 강조 + 제목 골드 스윕 정도만.
       .faq-item / .fade-section 은 analytics.js 관측 대상이라 reveal 을 얹지 않습니다.
       ========================================================================= */

    /* 골드 스윕 — 엔진이 .ksl-m-shine 을 붙이면 글자 칠을 비워 그라디언트가 보이게 합니다.
       그라디언트 기본색은 currentColor(=제목 본래 색)라 스윕 전후에도 글자색은 그대로입니다.
       · JS 가 안 붙으면 규칙 자체가 적용되지 않고(=평소 제목),
       · reduce-motion 이면 엔진이 background-image:none 으로 만들므로 이 규칙을 적용하면 안 됩니다.
       두 조건 모두 아래 가드로 차단합니다. */
    @media (prefers-reduced-motion: no-preference) {
      @supports ((-webkit-background-clip: text) or (background-clip: text)) {
        .faq-group-title.ksl-m-shine,
        .faq-hero-shine.ksl-m-shine {
          -webkit-text-fill-color: transparent;
        }
      }
    }
    .faq-hero-shine { display: inline; }

    /* 아코디언 헤더 hover — 배경 밴드를 box-shadow 로 좌우로 흘려 리플로우 없이 넓힙니다 */
    .faq-question { position: relative; transition: background 0.22s ease, box-shadow 0.22s ease; }
    .faq-q-label { display: inline-block; transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), color 0.22s ease; }
    .faq-q-text { transition: color 0.22s ease; }
    .faq-icon { transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background 0.22s ease, border-color 0.22s ease, color 0.22s ease; }

    @media (hover: hover) and (pointer: fine) {
      .faq-question:hover {
        background: var(--bg-warm);
        box-shadow: -14px 0 0 var(--bg-warm), 14px 0 0 var(--bg-warm);
      }
      .faq-question:hover .faq-q-label { transform: translateX(3px); }
      .faq-question:hover .faq-icon {
        border-color: var(--gold);
        color: var(--gold);
        transform: scale(1.08);
      }
      /* 열린 항목의 아이콘은 원래의 네이비 채움을 유지합니다 */
      .faq-item.active .faq-question:hover .faq-icon {
        background: var(--navy);
        border-color: var(--navy);
        color: #fff;
      }
    }

    /* 키보드 포커스 — 마우스 hover 와 같은 수준의 단서를 줍니다 */
    .faq-question:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: -2px;
      background: var(--bg-warm);
    }

    /* 상세 질문 링크 카드 — 틸트가 붙는 데스크톱에서는 기존 translateY hover 와 겹치지 않게 */
    .faq-detail-link-list a.ksl-m-tilt:hover { transform: none; }
    .faq-detail-link-list a.ksl-m-tilt { transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.22s ease, box-shadow 0.28s ease; }

    @media (prefers-reduced-motion: reduce) {
      .faq-question,
      .faq-q-label,
      .faq-q-text,
      .faq-icon { transition: none; }
    }
