/* ── 폰트 통일: 영문·숫자 모두 Pretendard 사용 ── */
  :root {
    --font-sans:    'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-display: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-mono:    'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  }
  * { font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important; }
  .proc-hero { text-align: center; padding: 48px 0 64px; position: relative; overflow: hidden; }

  .proc-hero h1 { max-width: 18ch; margin: 12px auto 0; font-size: clamp(30px, 4vw, 54px); }
  .proc-hero p.lead { max-width: 56ch; margin: 20px auto 0; color: var(--ink-500); font-size: 14px; }

  /* 히어로 하단 여백과 통일감 있도록 요금제 섹션 상하 여백 조정 */
  .pricing-section { padding: 64px 0; }

  /* 제공 사항(Deliverables) 섹션 상하 여백 축소 */
  .deliverables-section { padding: 80px 0; }

  /* ==========================================================================
     시작 전 준비사항 (Prep) 레이아웃
     ========================================================================== */
  .prep {
    background: var(--accent-soft-2);
    border-radius: var(--radius-xl);
    padding: 60px;
    margin: 80px 24px 0;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: center;
  }
  .prep-header { 
    max-width: 290px;
    margin-left: 60px;
  }
  .prep-header h2 {
    font-size: 34px;
    line-height: 1.35;
    letter-spacing: -0.03em;
  }
  .prep-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
    text-wrap: pretty;
  }
  .prep-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
  }
  .prep-list li {
    background: white;
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: var(--shadow-sm);
  }
  .prep-list li .badge {
    flex: none;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
    min-width: 42px;
    text-align: center;
  }
  .prep-list li strong { font-size: 14px; color: var(--ink-900); }
  .prep-list li small { display:block; font-size: 12px; color: var(--ink-500); margin-top: 2px; }

  /* ==========================================================================
     요금 안내 카드 — Refined Design
     ========================================================================== */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    align-items: stretch;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(13,13,18,.06), 0 24px 64px rgba(13,13,18,.08);
  }

  .price-card {
    background: white;
    border-right: 1px solid var(--ink-100);
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: background .2s ease;
  }
  .price-card:last-child { border-right: none; }
  .price-card:hover { background: var(--ink-50); }

  /* Featured — dark card */
  .price-card.featured {
    background: #0d0d12;
    border-right: none;
    padding: 36px 28px 40px;
    position: relative;
    z-index: 2;
    box-shadow: inset 1px 0 0 rgba(124,92,255,.3), inset -1px 0 0 rgba(124,92,255,.3);
  }
  .price-card.featured:hover { background: #17171f; }

  /* 추천 badge — 카드 우측 상단 코너에 배치 */
  .price-card.featured .tier::after {
    content: '추천';
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .08em;
    color: white;
    background: var(--accent);
    border: none;
    padding: 5px 12px;
    border-radius: 999px;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    animation: badge-pulse 2.2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(124,92,255,.5);
  }
  @keyframes badge-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(124,92,255,.55); }
    60%  { box-shadow: 0 0 0 7px rgba(124,92,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(124,92,255,0); }
  }

  /* 섹션 진입 시 테두리 활성화 */
  .section-border-active {
    outline: 1.5px solid rgba(124,92,255,.25);
    outline-offset: -2px;
    border-radius: var(--radius-lg);
  }

  /* Subtle top accent line on featured */
  .price-card.featured::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
  }

  /* Tier label */
  .price-card .tier {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
  }
  .price-card.featured .tier {
    color: #b5a1ff;
  }

  /* Price area */
  .price-area {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
  }
  .main-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .main-price .p-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-400);
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .main-price strong {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .sub-price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-400);
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--ink-100);
  }
  .sub-price .p-label { color: var(--ink-300); }

  /* Featured price colors */
  .price-card.featured .main-price .p-label { color: rgba(255,255,255,.35); }
  .price-card.featured .main-price strong { color: #ffffff; }
  .price-card.featured .sub-price {
    color: rgba(255,255,255,.45);
    border-top-color: rgba(255,255,255,.08);
  }
  .price-card.featured .sub-price .p-label { color: rgba(255,255,255,.25); }

  /* Description */
  .price-card p {
    font-size: 12.5px;
    color: var(--ink-500);
    line-height: 1.6;
    min-height: 40px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ink-100);
  }
  .price-card.featured p {
    color: rgba(255,255,255,.85);
    border-bottom-color: rgba(255,255,255,.08);
  }

  /* Feature list */
  .price-card ul {
    list-style: none; padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 9px; flex: 1;
  }
  .price-card ul li {
    font-size: 12.5px;
    color: var(--ink-700);
    display: flex;
    gap: 9px;
    align-items: flex-start;
    line-height: 1.5;
  }
  .price-card.featured ul li { color: rgba(255,255,255,.75); }
  .price-card ul li::before {
    content: '';
    flex: none;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 7px;
    opacity: .6;
  }
  .price-card.featured ul li::before {
    background: #b5a1ff;
    opacity: .7;
  }

  /* CTA button */
  .price-card .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    letter-spacing: .01em;
  }

  /* 문의하기 버튼 위에 세로로 쌓이는 '견적 미리보기' 미니 버튼 (견적 미리보기가 위, 문의하기가 아래) */
  .price-card-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .price-card-actions .btn {
    margin-top: 0;
    width: 100%;
    padding: 13px 14px;
  }
  .btn-quote-mini {
    background: var(--accent-soft);
    color: var(--accent-ink);
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
  }
  .btn-quote-mini:hover { background: #ded4ff; }
  .btn-quote-mini-dark {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.24);
  }
  .btn-quote-mini-dark:hover { background: rgba(255,255,255,.2); }

  /* ==========================================================================
     플랜 상세 비교 테이블 카테고리 탭 (새로 추가됨)
     ========================================================================== */
  .compare-cat-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .cc-tab {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid var(--ink-200);
    background: white;
    color: var(--ink-500);
    cursor: pointer;
    transition: all .2s ease;
  }
  .cc-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
  .cc-tab.active {
    background: var(--ink-900);
    color: white;
    border-color: var(--ink-900);
  }

  .cc-row {
    display: none;
  }
  .cc-row.active {
    display: table-row;
  }

  /* ==========================================================================
     플랜 상세 비교 테이블
     ========================================================================== */
  .compare-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--ink-200);
    box-shadow: var(--shadow-sm);
    scrollbar-width: thin;
    scrollbar-color: var(--ink-300) transparent;
  }
  .compare-wrap::-webkit-scrollbar { height: 8px; }
  /* border-radius(24px)보다 큰 여백을 좌우로 둬야 끝까지 스크롤해도 막대가 둥근 모서리 밖으로 삐져나오지 않는다. */
  .compare-wrap::-webkit-scrollbar-track { background: transparent; margin: 0 28px; }
  .compare-wrap::-webkit-scrollbar-thumb {
    background-color: var(--ink-300);
    border-radius: 999px;
    border: 2px solid white;
    background-clip: padding-box;
  }
  .compare-wrap::-webkit-scrollbar-thumb:hover { background-color: var(--ink-400); }
  .compare-table {
    width: 100%; border-collapse: collapse;
    font-size: 13px; min-width: 740px; background: white;
  }
  .compare-table thead th {
    padding: 20px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    background: var(--ink-900);
    color: white;
    border-right: 1px solid rgba(255,255,255,.08);
  }
  .compare-table thead th:first-child {
    text-align: left; background: var(--ink-800); padding-left: 24px;
  }
  .compare-table thead th.featured-col { background: var(--accent); }
  
  .compare-table tbody tr:not(.group-label) {
    transition: background-color 0.15s ease;
  }
  .compare-table tbody tr:not(.group-label):hover {
    background-color: var(--ink-50);
  }
  .compare-table tbody tr:not(.group-label) td {
    padding: 14px 16px;
    border-top: 1px solid var(--ink-100);
    border-right: 1px solid var(--ink-100);
    text-align: center;
    color: var(--ink-600);
    vertical-align: middle;
  }
  .compare-table tbody tr:not(.group-label) td:first-child {
    text-align: left; color: var(--ink-900); font-weight: 600; padding-left: 24px;
    white-space: nowrap;
  }
  .compare-table tbody tr:not(.group-label) td.featured-col {
    background: rgba(124,92,255,.03);
    font-weight: 600; color: var(--accent-ink);
  }
  .compare-table .o { color: var(--accent); font-weight: 700; font-size: 16px; }
  .compare-table .x { color: var(--ink-300); font-size: 15px; }
  .compare-table .opt { color: var(--ink-500); font-size: 12px; line-height: 1.4; }
  .compare-table .opt-price {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-400);
  }
  .compare-table .opt-soon {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 600;
    font-style: italic;
    color: var(--ink-400);
    background: var(--ink-50);
    border-radius: 999px;
    padding: 3px 10px;
  }

  /* 비교 테이블 모바일 */
  @media (max-width: 900px) {
    .compare-wrap { margin-top: 40px; }
    .compare-table { min-width: 560px; font-size: 12px; }
    .compare-table thead th { padding: 14px 10px; font-size: 13px; }
    .compare-table thead th:first-child { padding-left: 16px; min-width: 110px; }
    .compare-table tbody tr:not(.group-label) td { padding: 12px 10px; font-size: 12px; }
    .compare-table tbody tr:not(.group-label) td:first-child { padding-left: 16px; font-size: 12px; }
    .compare-table .group-label td { padding: 10px 16px; }
  }

  /* ── 모바일 탭 비교 UI (600px 이하) ── */
  .compare-mobile { display: none; }
  @media (max-width: 600px) {
    /* 기존 테이블 숨기기 & 새로운 PC 카테고리 탭 숨기기 */
    .compare-wrap { display: none; }
    .compare-cat-tabs { display: none; }
    .compare-scroll-hint { display: none; }
    
    /* 모바일 탭 UI 표시 */
    .compare-mobile { display: block; margin-top: 20px; }

    /* 탭 버튼 */
    .cm-tabs {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 6px;
      margin-bottom: 16px;
    }
    .cm-tab {
      padding: 8px 4px;
      border-radius: var(--radius-sm);
      border: 1.5px solid var(--ink-200);
      background: white;
      font-size: 12px;
      font-weight: 600;
      color: var(--ink-500);
      cursor: pointer;
      text-align: center;
      transition: all .15s ease;
      font-family: var(--font-sans);
    }
    .cm-tab.active {
      border-color: var(--accent);
      background: var(--accent);
      color: white;
    }
    .cm-tab.featured { border-color: var(--accent); color: var(--accent); }
    .cm-tab.featured.active { background: var(--accent); color: white; }

    /* 플랜 패널 */
    .cm-panel { display: none; }
    .cm-panel.active { display: block; }

    /* 각 항목 행 */
    .cm-group {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      color: white;
      text-transform: uppercase;
      background: var(--ink-800);
      padding: 9px 14px;
      border-radius: var(--radius-sm);
      margin: 22px 0 6px;
    }
    .cm-group:first-child { margin-top: 0; }
    .cm-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 14px;
      border-bottom: 1px solid var(--ink-100);
      gap: 12px;
    }
    .cm-row:last-child { border-bottom: none; }
    .cm-row-label {
      font-size: 13px;
      color: var(--ink-700);
      font-weight: 500;
      flex: 1;
      word-break: keep-all;
    }
    .cm-row-val {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink-900);
      text-align: right;
      flex-shrink: 0;
      max-width: 48%;
    }
    .cm-row-val .o { color: var(--accent); font-size: 15px; }
    .cm-row-val .x { color: var(--ink-300); font-size: 14px; }
    .cm-row-val .opt { color: var(--ink-500); font-size: 12px; }
    .cm-row-val .opt-price { display: block; margin-top: 2px; font-size: 10px; font-weight: 600; color: var(--ink-400); }
    .cm-row-val .featured-badge {
      display: inline-block;
      background: var(--accent);
      color: white;
      font-size: 10px;
      padding: 2px 6px;
      border-radius: 999px;
      margin-left: 4px;
    }
  }

  /* Deliverables Grid */
  .deliverables-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
  .deliverable { background: var(--ink-50); border-radius: var(--radius); padding: 24px; }
  .deliverable .icon-box {
    width: 36px; height: 36px; border-radius: 10px; background: white; color: var(--accent);
    display:flex; align-items:center; justify-content:center; font-family: var(--font-mono); 
    font-weight: 600; font-size: 13px; margin-bottom: 16px; box-shadow: var(--shadow-sm);
  }
  .deliverable h4 { font-size: 15px; margin-bottom: 6px; }
  .deliverable p { font-size: 13px; color: var(--ink-500); }

  /* Deliverables New — photo/video handoff */
  .deliverables-new { background: var(--ink-50); border-radius: var(--radius-lg); padding: 56px 64px; margin-top: 0; }
  .deliverables-new-inner { display: flex; align-items: center; gap: 56px; }
  .deliverables-new-icon { font-size: 80px; line-height: 1; flex-shrink: 0; }
  .deliverables-new-text .eyebrow { display: block; margin-bottom: 12px; }
  .deliverables-new-text h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; line-height: 1.25; margin-bottom: 20px; }
  .deliverables-new-lead { font-size: 16px; color: var(--ink-600); line-height: 1.75; margin-bottom: 28px; }
  .deliverables-new-tags { display: flex; flex-wrap: wrap; gap: 10px; }
  .d-tag { background: white; border: 1px solid var(--ink-100); border-radius: 999px; padding: 6px 16px; font-size: 13px; font-weight: 500; color: var(--ink-700); box-shadow: var(--shadow-sm); }
/* Deliverables B-type (디테일 렌더링 및 중앙 정렬 최적화) */
  .dlv-b { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
  
  /* 상단 텍스트 영역 */
  .dlv-b-top { padding: 80px 40px 32px; text-align: center; } 
  .dlv-b-top h2 { font-size: clamp(32px, 4vw, 46px); font-weight: 800; margin: 12px 0 8px; line-height: 1.3; }
  .dlv-b-top p { font-size: 17px; color: var(--ink-500); line-height: 1.6; margin: 0 0 16px; }
  
  /* 안내 캡슐 테두리를 하단 구분선과 동일하게 변경 */
  .dlv-notice-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--ink-500);
    background: white;
    border: 1.5px solid var(--ink-100); 
    border-radius: 999px;
    padding: 8px 18px;
    margin-top: 8px;
  }
  
  /* 하단 카드 영역 */
  .dlv-b-bottom { display: grid; grid-template-columns: repeat(3, 1fr); }
  .dlv-b-item { padding: 40px 32px 80px; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .dlv-b-item:last-child { border-right: none; }
  
  .dlv-b-icon {
    width: 160px; height: 160px;
    margin-bottom: 28px;
    background: transparent;
    border-radius: 35px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 30px rgba(124, 92, 255, 0.2);
    animation: dlv-float 4s ease-in-out infinite;
  }
  
  .dlv-b-icon svg { width: 100%; height: 100%; }
  .dlv-b-icon svg rect { filter: none !important; }
  
  .dlv-b-item:nth-child(2) .dlv-b-icon { animation-delay: -1.3s; }
  .dlv-b-item:nth-child(3) .dlv-b-icon { animation-delay: -2.6s; }
  @keyframes dlv-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); } 
  }
  
  .dlv-b-item h4 { font-size: 20px; font-weight: 700; color: var(--ink-900); margin: 0 0 10px; }
  .dlv-b-item p { font-size: 14px; color: var(--ink-500); line-height: 1.6; margin: 0; }
  @media (max-width: 900px) {
    .dlv-b-top { padding: 32px 28px 24px; }
    .dlv-b-bottom { grid-template-columns: 1fr; }
    .dlv-b-item { border-right: none; border-bottom: 1px solid var(--ink-100); }
    .dlv-b-item:last-child { border-bottom: none; }
  }
  @media (max-width: 600px) {
    .dlv-b-top { padding: 24px 20px 18px; }
    .dlv-b-bottom { grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink-100); gap: 0; }
    .dlv-b-item {
      padding: 20px 12px;
      border-right: 1px solid var(--ink-100);
      border-bottom: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .dlv-b-item:last-child { border-right: none; }
    .dlv-b-icon { margin: 0 auto 10px; width: 36px; height: 36px; }
    .dlv-b-item h4 { font-size: 12px; word-break: keep-all; margin-bottom: 4px; }
    .dlv-b-item p { font-size: 11px; }
  }

  @media (max-width: 900px) {
    .prep { grid-template-columns: 1fr; padding: 40px 24px; margin: 48px 16px 0; gap: 32px; }
    .prep-header { max-width: 100%; }
    .pricing-grid { grid-template-columns: 1fr; border-radius: var(--radius-lg); gap: 0; }
    .price-card { border-right: none; border-bottom: 1px solid var(--ink-100); }
    .price-card:last-child { border-bottom: none; }
    .price-card.featured { padding-top: 36px; }
  }
  @media (min-width: 901px) and (max-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); border-radius: var(--radius-lg); }
    .price-card { border-bottom: 1px solid var(--ink-100); }
    .price-card:nth-child(odd) { border-right: 1px solid var(--ink-100); }
    .price-card:nth-child(even) { border-right: none; }
    .price-card.featured { box-shadow: none; }
  }
  /* Zigzag Steps */
  .zz-section { padding: 80px 0; }
  .zz-wrap { display: flex; flex-direction: column; gap: 32px; position: relative; }

  .zz-row { display: flex; align-items: stretch; }
  .zz-left { justify-content: flex-start; }
  .zz-right { justify-content: flex-end; }

  .zz-card {
    width: 56%;
    background: white;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    position: relative;
    z-index: 1;
    transition: border-color .2s, transform .2s;
  }
  .zz-card:hover { border-color: var(--accent); transform: translateY(-2px); }

  .zz-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    opacity: .18;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
  }
  .zz-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 10px; color: var(--ink-900); }
  .zz-desc { font-size: 14px; color: var(--ink-500); line-height: 1.7; margin: 0 0 16px; }
  .zz-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .zz-tags span {
    font-size: 12px; font-weight: 500;
    color: var(--accent); background: var(--accent-soft);
    border-radius: 999px; padding: 4px 14px;
  }

  @media (max-width: 900px) {
    .zz-row { flex-direction: column !important; }
    .zz-card { width: 100%; }
    /* .container에 이미 좌우 padding이 있어 여기서 또 더하면 여백이 이중으로 커짐 */
    .zz-wrap { gap: 16px; }
  }
  @media (max-width: 600px) {
    /* 01~06 단계 박스(.zz-card) 좌우 여백을 기본(20px)보다 살짝 넓게(30px) */
    .zz-section { padding-left: 30px; padding-right: 30px; }
  }

  /* Prep — split layout & 탭 방식 변경 */
  .section[data-screen-label="04 Deliverables"] {
    background: var(--accent-soft-2, #f4f3ff);
  }
  .prep-section { background: #e8e5ff !important; }
  
  .prep-split {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
    padding: 80px 0;
  }
  .prep-split-left { position: sticky; top: 100px; }
  .prep-split-left h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin: 12px 0 16px;
  }
  .prep-split-sub {
    font-size: 14px;
    color: var(--ink-500);
    line-height: 1.7;
    margin: 0 0 24px;
  }
  
  /* 새로 추가된 Prep 탭 스타일 */
  .prep-tabs {
    display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px;
  }
  .prep-tab {
    font-size: 13px; font-weight: 600; padding: 6px 16px;
    border-radius: 999px; border: 1px solid transparent;
    cursor: pointer; transition: all .2s ease;
  }
  .prep-tab[data-filter="all"] { background: white; color: var(--ink-700); border-color: var(--ink-200); }
  .prep-tab[data-filter="all"].active { background: var(--ink-900); color: white; border-color: var(--ink-900); }
  
  .prep-tab[data-filter="req"] { background: var(--accent-soft); color: var(--accent); }
  .prep-tab[data-filter="req"].active { background: var(--accent); color: white; }
  
  .prep-tab[data-filter="rec"] { background: #e1f5ee; color: #085041; }
  .prep-tab[data-filter="rec"].active { background: #085041; color: white; }
  
  .prep-tab[data-filter="opt"] { background: #e6e6ec; color: var(--ink-600); }
  .prep-tab[data-filter="opt"].active { background: var(--ink-600); color: white; }

  /* 우측 카드 영역 (Sticky & Stacking 제거됨) */
  .prep-split-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .prep-item {
    display: flex;
    flex-direction: row;
    gap: 0;
    padding: 36px 40px; 
    margin-bottom: 0;
    background: #ffffff;
    border: 1px solid var(--ink-150, #e2e2e9);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(13, 13, 18, 0.04);
    animation: fadeIn 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .prep-item:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 20px 40px rgba(124, 92, 255, 0.1); 
    border-color: rgba(124, 92, 255, 0.3);
  }

  .prep-item-vline { display: none; }

  .prep-item-body {
    flex: 1;
    padding: 0; 
  }

  .prep-item-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-top: 0;
  }
  .prep-item-head strong {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink-900);
  }
  .prep-item-body > p {
    font-size: 14px;
    color: var(--ink-500);
    line-height: 1.85;
    margin: 0;
  }

  /* 뱃지 */
  .prep-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    flex-shrink: 0;
    letter-spacing: .02em;
  }
  .prep-badge.req { background: var(--accent-soft); color: var(--accent); }
  .prep-badge.rec { background: #e1f5ee; color: #085041; }
  .prep-badge.opt { background: #e6e6ec; color: var(--ink-600); }

  @media (max-width: 900px) {
    .prep-split { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
    .prep-split-left { position: static; }
    
    .prep-split-right { padding-bottom: 0; gap: 16px; }
    .prep-item { position: relative; top: auto !important; padding: 24px 20px; border-radius: 16px; }
    .prep-item { border-color: var(--ink-150, #e2e2e9) !important; }
    .prep-item:hover { transform: none; box-shadow: 0 10px 30px rgba(13, 13, 18, 0.04); border-color: rgba(124,92,255,.3) !important; }
  }
  @media (max-width: 600px) {
    .prep-split { padding: 40px 0; gap: 28px; }
    .prep-split-left h2 { font-size: clamp(24px, 7vw, 32px); }
    .prep-item { padding: 16px 18px; }
    .prep-item-head strong { font-size: 14px; }
    .prep-item-body > p { font-size: 13px; }
    .prep-item-body > p br { display: none; }
    .zz-card { padding: 20px 20px; }
    .zz-num { font-size: 32px; }
    .zz-card h3 { font-size: 17px; }
    .zz-desc { font-size: 13px; }
    .zz-tags span { font-size: 11px; padding: 3px 10px; }
    .dlv-b-top { padding: 24px 20px 18px; }
    .dlv-b-top h2 { font-size: clamp(20px, 6vw, 28px); }
    .dlv-b-top p { font-size: 14px; }
    .dlv-b-bottom {
      grid-template-columns: 1fr !important;
      border-top: 1px solid var(--ink-100);
    }
    .dlv-b-item {
      padding: 18px 20px;
      border-right: none !important;
      border-bottom: 1px solid var(--ink-100);
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 14px;
      text-align: left;
    }
    .dlv-b-item:last-child { border-bottom: none; }
    .dlv-b-icon {
      width: 40px;
      height: 40px;
      margin: 0;
      flex-shrink: 0;
    }
    .dlv-b-item-text { flex: 1; }
    .dlv-b-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; text-align: left; }
    .dlv-b-item p { font-size: 13px; text-align: left; }
    .pricing-grid { grid-template-columns: 1fr; gap: 0; }
    .cta-sub { display: none; }
  }
  
  /* ── Pill 헤더 (유리 질감) ── */
  .site-header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 12px 16px;
    overflow: visible;
  }
  .site-header::before { display: none !important; }
  .site-header .container {
    all: unset !important;
    display: none !important;
  }
  .site-header-pill {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: saturate(200%) blur(20px);
    -webkit-backdrop-filter: saturate(200%) blur(20px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow:
      0 1px 0 0 rgba(255,255,255,0.9) inset,
      0 8px 32px rgba(124, 92, 255, 0.08),
      0 2px 8px rgba(13, 13, 18, 0.06);
  }
  @media (max-width: 768px) {
    .site-header { padding: 10px 16px; }
    .site-header-pill { padding: 0 16px; height: 48px; }
  }


  /* ── 모바일 드로어 & 햄버거 ── */

  .nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    border: none !important;
    background: transparent !important;
    cursor: pointer;
    gap: 0 !important;
    flex-direction: column;
  }
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink-700);
    border-radius: 2px;
    margin: 2.5px 0;
    transition: transform .25s, opacity .25s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mobile-nav { background: #ffffff !important; }
  .mobile-nav-header { height: 64px !important; padding: 0 20px !important; border-bottom: 1px solid var(--ink-100) !important; }
  .mobile-nav-close {
    width: 36px !important; height: 36px !important; border-radius: 50% !important; background: transparent !important;
    border: none !important; display: flex !important; align-items: center !important; justify-content: center !important;
    color: var(--ink-700) !important; font-size: 0 !important; padding: 0 !important; cursor: pointer; transition: background .2s;
  }
  .mobile-nav-close:hover { background: var(--ink-100) !important; }
  .mobile-nav-links { padding: 8px 0 !important; }
  .mobile-nav-links a {
    font-size: 17px !important; font-weight: 500 !important; color: var(--ink-800) !important;
    padding: 16px 24px !important; border-bottom: 1px solid var(--ink-100) !important;
    display: flex !important; align-items: center !important; justify-content: space-between !important; letter-spacing: -0.01em !important;
  }
  .mobile-nav-links a:last-child { border-bottom: none !important; }
  .mobile-nav-links a::after { display: none !important; }
  .mnl-arrow { font-size: 20px; color: var(--ink-300); font-weight: 400; line-height: 1; }
  .mobile-nav-links a.active { color: var(--accent) !important; }
  .mobile-nav-links a.active .mnl-arrow { color: var(--accent) !important; }
  .mobile-nav-links a:hover { background: var(--ink-50) !important; color: var(--ink-900) !important; }
  .mobile-nav-cta { display: none !important; }

  .site-header-pill .header-right { display: flex !important; align-items: center !important; visibility: visible !important; opacity: 1 !important; }
  .site-header-pill .nav-toggle { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; visibility: visible !important; opacity: 1 !important; }
  @media (min-width: 901px) {
    .site-header-pill .header-right { display: none !important; }
    .site-header-pill .nav { display: flex !important; }
  }

  .consult-overlay { padding-top: 100px !important; align-items: flex-start !important; }
  @media (max-width: 768px) {
    .consult-overlay { padding-top: 80px !important; padding-left: 12px !important; padding-right: 12px !important; }
  }

  .floating-cta {
    width: 72px !important; height: 72px !important; border-radius: 50% !important; padding: 0 !important;
    display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important;
    gap: 4px !important; font-size: 11px !important; font-weight: 600 !important; line-height: 1.2 !important; letter-spacing: -0.01em !important;
  }
  /* ── 템플릿 버튼 ── */
  .tpl-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 6px;
    justify-content: center;
  }
  .tpl-btn {
    display: inline-flex;
    align-items: center;
    padding: 4px 11px;
    border-radius: 999px;
    border: 1.5px solid var(--ink-200);
    background: white;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-600);
    cursor: pointer;
    transition: all .15s ease;
    white-space: nowrap;
    line-height: 1.4;
  }
  .tpl-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: #f5f2ff;
  }

  /* ── 템플릿 모달 ── */
  .tpl-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,13,18,.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .tpl-modal-overlay.open { opacity: 1; pointer-events: all; }
  .tpl-modal-box {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 680px;
    max-height: 94vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(.97);
    transition: transform .28s cubic-bezier(.2,.7,.2,1);
    box-shadow: 0 40px 100px rgba(13,13,18,.18);
    scrollbar-width: thin;
    scrollbar-color: var(--ink-300) transparent;
  }
  .tpl-modal-box::-webkit-scrollbar { width: 8px; }
  /* border-radius(24px)보다 큰 여백을 둬야 끝까지 스크롤해도 막대가 둥근 모서리 밖으로 삐져나오지 않는다. */
  .tpl-modal-box::-webkit-scrollbar-track { background: transparent; margin: 28px 0; }
  .tpl-modal-box::-webkit-scrollbar-thumb {
    background-color: var(--ink-300);
    border-radius: 999px;
    border: 2px solid white;
    background-clip: padding-box;
  }
  .tpl-modal-box::-webkit-scrollbar-thumb:hover { background-color: var(--ink-400); }
  .tpl-modal-overlay.open .tpl-modal-box { transform: translateY(0) scale(1); }
  .tpl-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--ink-100);
    color: var(--ink-600);
    font-size: 14px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
    z-index: 10;
  }
  .tpl-modal-close:hover { background: var(--ink-200); }
  .tpl-modal-inner { padding: 26px 28px 28px; }
  .tpl-modal-plan-name { color: var(--accent); }
  .tpl-modal-plan-sep { color: var(--ink-300); font-weight: 500; margin: 0 8px; }
  .tpl-modal-plan-type { color: var(--ink-900); }
  .tpl-modal-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink-900);
    text-align: center;
    margin: 0 0 6px;
  }
  .tpl-modal-sub {
    font-size: 13px;
    color: var(--ink-500);
    margin: 0 0 20px;
    line-height: 1.6;
  }
  /* 썸네일 플레이스홀더 */
  .tpl-modal-thumb {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 16px;
    background: var(--ink-50);
    border: 1px solid var(--ink-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ink-400);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .tpl-modal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
  }
  .tpl-modal-feat {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 13px;
    color: var(--ink-700);
    line-height: 1.5;
  }
  .tpl-modal-feat::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .tpl-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--accent);
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 20px rgba(124,92,255,.30);
    transition: transform .2s, background .2s;
  }
  .tpl-modal-cta:hover { background: #6a4afc; transform: translateY(-1px); }
  .tpl-modal-cta-soon {
    background: var(--ink-200);
    color: var(--ink-500);
    box-shadow: none;
    cursor: default;
  }
  .tpl-modal-cta-soon:hover { background: var(--ink-200); transform: none; }
  /* 메인 캡쳐 이미지 — 고정 프레임(overflow:hidden) 안에서 이미지가 자동으로 위→아래로 스크롤(반복)됨.
     호버 불필요, 모달이 열려있는 동안 계속 반복 재생 */
  .tpl-main-preview {
    /* PC/모바일 프레임을 같은 높이로 맞추면서(위 .tpl-pc-frame 참고) 모달 폭(680px) 안에서
       가로폭이 넘치지 않는 한도 내에서 최대한 키운 값 */
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
  }
  .tpl-main-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    animation: tplAutoScroll 9s ease-in-out infinite alternate;
  }
  @keyframes tplAutoScroll {
    0%   { object-position: top center; }
    100% { object-position: bottom center; }
  }
  /* 이미지 없을 때 플레이스홀더 */
  .tpl-screen-ph {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--ink-300);
    gap: 6px;
    background: var(--ink-50);
  }
  .tpl-main-preview.no-img img { display: none; }
  .tpl-main-preview.no-img .tpl-screen-ph { display: flex; }
  .tpl-main-preview:not(.no-img) .tpl-screen-ph { display: none; }

  /* 원페이지형 전용 — 스크린샷이 세로로 매우 길어서 넓은 사각 프레임보다
     실제 폰 화면 안에서 스크롤되는 모습을 보여주는 게 더 자연스럽다.
     phone-frame-cutout.png: 화면 영역이 투명(alpha 0)한 폰 프레임 이미지.
     화면 영역 비율(이미지 276x544 기준 left 6.522% top 2.574% width 87.681% height 94.853%)에
     스크린샷을 배치하고, 그 위에 프레임 이미지를 겹쳐서 베젤처럼 보이게 한다. */
  .tpl-main-preview.tpl-frame-phone {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tpl-phone-frame {
    position: relative;
    height: 94%;
    aspect-ratio: 276 / 544;
  }
  .tpl-phone-frame-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    user-select: none;
  }
  .tpl-phone-screen {
    position: absolute;
    left: 6.522%;
    top: 2.574%;
    width: 87.681%;
    height: 94.853%;
    border-radius: 14px;
    overflow: hidden;
    background: var(--ink-50);
    z-index: 1;
  }
  .tpl-phone-screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    animation: tplAutoScroll 9s ease-in-out infinite alternate;
  }
  .tpl-phone-frame.no-img .tpl-phone-screen img { display: none; }
  .tpl-phone-frame.no-img .tpl-screen-ph { display: flex; }
  .tpl-phone-frame:not(.no-img) .tpl-screen-ph { display: none; }

  /* 원페이지형은 모바일 최적화 템플릿임을 보여주기 위해 태블릿·모바일 프레임을 나란히 노출.
     태블릿 전용 캡처가 없어 모바일과 동일한 캡처 이미지를 태블릿 프레임에도 그대로 재사용한다.
     tablet-frame-cutout.svg: 화면 영역이 투명한 태블릿 프레임(400x520 기준 left 4.5% top 3.46%
     width 91% height 93.08%)에 스크린샷을 배치하고, 그 위에 프레임을 겹쳐서 베젤처럼 보이게 한다. */
  .tpl-frame-dual { gap: 20px; }
  .tpl-tablet-frame {
    position: relative;
    height: 94%;
    aspect-ratio: 400 / 520;
  }
  .tpl-tablet-frame-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    user-select: none;
  }
  .tpl-tablet-screen {
    position: absolute;
    left: 4.5%;
    top: 3.46%;
    width: 91%;
    height: 93.08%;
    border-radius: 10px;
    overflow: hidden;
    background: var(--ink-50);
    z-index: 1;
  }
  .tpl-tablet-screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    animation: tplAutoScroll 9s ease-in-out infinite alternate;
  }
  .tpl-tablet-frame.no-img .tpl-tablet-screen img { display: none; }
  .tpl-tablet-frame.no-img .tpl-screen-ph { display: flex; }
  .tpl-tablet-frame:not(.no-img) .tpl-screen-ph { display: none; }

  /* A~E형(클래식/퓨어/어반/모던/럭셔리) 지원 템플릿 팝업 — PC(메인 페이지) + 모바일(객실 페이지) 2단 목업.
     PC 쪽도 위 phone/tablet-frame과 동일한 방식: pc-frame-cutout.svg(화면 영역이 투명한 모니터+스탠드
     프레임)를 스크린샷 위에 겹쳐서 베젤처럼 보이게 한다(히어로 목업과 같은 톤의 미니멀한 프레임). */
  .tpl-main-preview.tpl-frame-pcmobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tpl-pc-frame {
    /* .tpl-phone-frame과 동일하게 "높이 94% + aspect-ratio"로 크기를 정해서, 두 프레임의
       전체 높이(위/아래 끝)가 서로 정확히 맞도록 한다(가로폭이 아니라 세로 기준으로 통일). */
    position: relative;
    height: 94%;
    aspect-ratio: 640 / 460;
  }
  .tpl-pc-frame-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    user-select: none;
  }
  .tpl-pc-screen {
    position: absolute;
    left: 1.25%;
    top: 1.739%;
    width: 97.5%;
    height: 83.478%;
    border-radius: 10px;
    overflow: hidden;
    background: var(--ink-50);
    z-index: 1;
  }
  .tpl-pc-screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    animation: tplAutoScroll 9s ease-in-out infinite alternate;
  }
  .tpl-pc-frame.no-img .tpl-pc-screen img { display: none; }
  .tpl-pc-frame.no-img .tpl-screen-ph { display: flex; }
  .tpl-pc-frame:not(.no-img) .tpl-screen-ph { display: none; }

  @media (max-width: 480px) {
    .tpl-main-preview { height: 160px; }
    .tpl-phone-frame { height: 92%; }
    .tpl-tablet-frame { height: 92%; }
    .tpl-pc-frame { height: 92%; }
    .tpl-frame-dual { gap: 12px; }
    /* 좁은 화면에서 모달 안쪽 여백/2열 그리드가 빡빡해지지 않도록 완화 */
    .tpl-modal-inner { padding: 20px 20px 24px; }
    .tpl-modal-features { grid-template-columns: 1fr; }
  }

  .tpl-modal-concept {
    font-size: 14px;
    color: var(--ink-600);
    margin: 4px 0 14px;
    line-height: 1.6;
    word-break: keep-all;
    text-align: center;
  }
  .tpl-modal-section { margin-bottom: 14px; margin-top: 18px; }
  .tpl-modal-section-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
  .tpl-modal-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
  .tpl-modal-section-head .tpl-modal-section-title { margin-bottom: 0; }
  .tpl-plan-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
  }
  /* 기본값 = "지원되지만 선택되지 않은" 플랜. 흰 배경 + 뚜렷한 테두리로, 클릭 가능한 상태임을
     .disabled(회색, 테두리 없음)와 뚜렷하게 구분한다. */
  .tpl-plan-tab {
    appearance: none;
    border: 1.5px solid var(--ink-300);
    background: white;
    color: var(--ink-800);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: all .15s ease;
  }
  .tpl-plan-tab:not(.active):not(.disabled):hover { background: var(--ink-50); border-color: var(--ink-500); }
  .tpl-plan-tab.active { background: var(--ink-900); border-color: var(--ink-900); color: white; }
  /* 이 템플릿을 지원하지 않는 플랜 — 항상 4개 플랜을 다 보여주되, 지원 안 되는 쪽은 테두리 없이
     플랫한 회색으로 눌러서 "지원됨(테두리 있음)"과 명확히 구분되게 한다 */
  .tpl-plan-tab.disabled {
    border-color: transparent;
    background: var(--ink-50);
    color: var(--ink-300);
    font-weight: 500;
    cursor: not-allowed;
    pointer-events: none;
  }
  /* 페이지 구성 태그 */
  .tpl-page-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .tpl-page-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--ink-50);
    border: 1px solid var(--ink-200);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-700);
    white-space: nowrap;
  }
  /* 모달 하단 버튼 영역 */
  .tpl-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--ink-100);
    margin-top: 2px;
  }
  .tpl-modal-site-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--ink-200);
    background: white;
    color: var(--ink-700);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s ease;
    cursor: pointer;
  }
  .tpl-modal-site-btn:hover { border-color: var(--ink-400); background: var(--ink-50); }
  .tpl-modal-site-soon { opacity: .5; cursor: default; }
  .tpl-modal-site-soon:hover { border-color: var(--ink-200); background: white; }

  /* 선택한 플랜 기준 기능 제공 O/X 그리드 */
  .tpl-modal-oxgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 14px;
    background: var(--ink-50);
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    padding: 10px 14px;
  }
  .tpl-modal-ox-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-700);
    padding: 3px 0;
  }
  .tpl-ox.o { color: var(--accent); font-weight: 700; font-size: 15px; }
  .tpl-ox.x { color: var(--ink-300); font-size: 14px; }
  .tpl-ox.opt { color: var(--ink-500); font-size: 11px; font-weight: 600; }
  .tpl-ox.soon { color: var(--ink-400); font-size: 11px; font-weight: 600; font-style: italic; }
  @media (max-width: 600px) {
    .tpl-modal-oxgrid { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    .tpl-modal-footer { flex-direction: column; align-items: stretch; }
    .tpl-modal-site-btn, .tpl-modal-cta { text-align: center; justify-content: center; }
  }
