.inner-section { padding: 70px 0; }
.section-title { font-size: 1.6rem; font-weight: 700; color: var(--title); margin-bottom: 32px; text-align: center; }
.section-title::after { content: ''; display: block; width: 50px; height: 3px; background: var(--pink); margin: 12px auto 0; }

/* 탭 */
.pn-tabs { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; background: #f9f5f7; border-radius: 50px; padding: 6px; }
.pn-tab { padding: 11px 22px; border: none; background: none; cursor: pointer; font-size: .92rem; font-weight: 600; color: var(--gray); border-radius: 50px; transition: all .2s; white-space: nowrap; }
.pn-tab:hover { color: var(--pink); }
.pn-tab.active { color: #fff; background: var(--pink); box-shadow: 0 4px 12px rgba(176,53,121,.3); }
.pn-panel { display: none; margin-bottom: 70px; }
.pn-panel.active { display: block; }

.service-intro { text-align: center; margin-bottom: 40px; }
.service-intro p { font-size: 1.05rem; color: var(--gray); line-height: 1.9; }
.scope-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.scope-card { background: #fff; border: 1px solid var(--border-pink); border-radius: 14px; padding: 28px 20px; box-shadow: 0 2px 10px rgba(176,53,121,.06); transition: box-shadow .2s, transform .2s; }
.scope-card:hover { box-shadow: 0 8px 22px rgba(176,53,121,.12); transform: translateY(-3px); }
.scope-icon { width: 52px; height: 52px; background: var(--pink-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--pink); margin-bottom: 14px; }
.scope-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.scope-card ul { padding-left: 0; margin: 0; }
.scope-card li { font-size: .87rem; color: var(--gray); line-height: 1.7; padding-left: 14px; position: relative; margin-bottom: 6px; }
.scope-card li::before { content: ''; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.scope-card li:last-child { margin-bottom: 0; }

/* 업무시간표 */
.table-wrap { overflow-x: auto; border: 1px solid var(--border-pink); border-radius: 14px; box-shadow: 0 2px 10px rgba(176,53,121,.06); }
.pn-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.pn-table th, .pn-table td { padding: 14px 16px; border: none; border-bottom: 1px solid var(--border-pink); font-size: .9rem; text-align: left; vertical-align: top; }
.pn-table thead th { background: var(--pink-pale); color: var(--pink-dark); font-weight: 700; font-size: .87rem; letter-spacing: .02em; vertical-align: middle; border-bottom: 1px solid var(--border-pink); }
.pn-table tbody tr:last-child td { border-bottom: none; }
.pn-table tbody tr:nth-child(even) { background: var(--wash); }
.pn-table tbody tr:hover { background: var(--pink-pale); }
.pn-table td:first-child { font-weight: 700; color: var(--pink); white-space: nowrap; }
.pn-note { font-size: .85rem; color: var(--ink-3); margin-top: 12px; }

@media(max-width:560px) {
  .pn-table { min-width: 0; }
  .pn-table thead { display: none; }
  .pn-table, .pn-table tbody, .pn-table tr, .pn-table td { display: block; width: 100%; }
  .pn-table tr { padding: 14px 16px; border-bottom: 1px solid var(--border-pink); }
  .pn-table tr:last-child { border-bottom: none; }
  .pn-table td { padding: 0; border: none; }
  .pn-table td:first-child { margin-bottom: 6px; font-size: .95rem; }
}
.sched-list { padding-left: 0; margin: 0; }
.sched-list li { padding-left: 14px; position: relative; margin-bottom: 4px; }
.sched-list li:last-child { margin-bottom: 0; }
.sched-list li::before { content: ''; position: absolute; left: 0; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }

/* 관리사 주요업무 */
.duty-block { margin-bottom: 32px; }
.duty-block h3 { font-size: 1.1rem; font-weight: 700; color: var(--pink); margin-bottom: 14px; }
.duty-list { padding-left: 0; margin: 0; }
.duty-list > li { font-size: .95rem; color: var(--dark); line-height: 1.9; margin-bottom: 14px; padding-left: 18px; position: relative; }
.duty-list > li::before { content: ''; position: absolute; left: 0; top: .75em; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.duty-list > li:last-child { margin-bottom: 0; }
.duty-list ul { padding-left: 18px; margin: 6px 0 0; }
.duty-list ul li { font-size: .9rem; color: var(--gray); line-height: 1.8; margin-bottom: 3px; padding-left: 14px; position: relative; }
.duty-list ul li::before { content: ''; position: absolute; left: 0; top: .68em; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }

/* 자격요건 / 유의사항 */
.pn-list { padding-left: 0; margin: 0; }
.pn-list li { font-size: .95rem; color: var(--gray); line-height: 1.9; margin-bottom: 10px; padding-left: 18px; position: relative; }
.pn-list li::before { content: ''; position: absolute; left: 0; top: .75em; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.pn-list li:last-child { margin-bottom: 0; }

@media(max-width:1024px){ .scope-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:760px){
  /* 탭은 한 줄로 두고 넘치면 옆으로 스와이프 */
  .pn-tabs { flex-wrap: nowrap; overflow-x: auto; gap: 6px; border-radius: 14px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .pn-tabs::-webkit-scrollbar { display: none; }
  .pn-tabs.more-r { -webkit-mask-image: linear-gradient(90deg, #000 82%, transparent); mask-image: linear-gradient(90deg, #000 82%, transparent); }
  .pn-tabs.more-l { -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%); mask-image: linear-gradient(90deg, transparent, #000 18%); }
  .pn-tabs.more-l.more-r { -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); }
  .pn-tab { padding: 10px 14px; font-size: .85rem; border-radius: 10px; white-space: nowrap; flex-shrink: 0; }
  .pn-tab:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media(max-width:580px){
  .scope-grid { grid-template-columns: 1fr; gap: 12px; }
  .scope-card { display: grid; grid-template-columns: 42px 1fr; gap: 2px 14px; padding: 16px 18px; }
  .scope-icon { grid-row: 1 / span 2; width: 42px; height: 42px; font-size: 1.05rem; margin: 2px 0 0; }
  .scope-card h3 { grid-column: 2; font-size: .95rem; margin-bottom: 6px; }
  .scope-card ul { grid-column: 2; }
  .scope-card li { font-size: .84rem; line-height: 1.6; margin-bottom: 3px; padding-left: 11px; }
  .scope-card li::before { top: .65em; width: 4px; height: 4px; }
}
