/* ── 리셋 & CSS 변수 ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary:       #2563EB;
    --primary-dark:  #1D4ED8;
    --primary-light: #EFF6FF;
    --text-main:     #111827;
    --text-sub:      #6B7280;
    --border:        #E5E7EB;
    --bg:            #F9FAFB;
    --white:         #FFFFFF;
    --radius:        12px;
    --radius-lg:     20px;
    --shadow:        0 4px 24px rgba(0,0,0,.08);
    --shadow-lg:     0 8px 40px rgba(0,0,0,.12);
    --section-v:     100px;  /* 섹션 상하 기본 padding */
}

/* ════════════════════════════════════════════════════════
   섹션 슬라이드 인디케이터 (우측 고정)
════════════════════════════════════════════════════════ */
.sv2-slide-ctrl {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.sv2-slide-nav {
    display: flex; flex-direction: column; gap: 7px;
    align-items: center;
}
.sv2-slide-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(37,99,235,.22);
    border: 1.5px solid rgba(37,99,235,.35);
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.sv2-slide-dot-active {
    background: var(--primary);
    transform: scale(1.35);
    border-color: var(--primary);
}
.sv2-slide-dot:hover { background: var(--primary); }
.sv2-slide-arrow {
    background: none; border: none;
    font-size: 22px; color: var(--primary);
    cursor: pointer; padding: 2px 6px;
    line-height: 1; border-radius: 50%;
    transition: background .15s, color .15s;
    opacity: .55;
}
.sv2-slide-arrow:hover { background: var(--primary-light); opacity: 1; }

/* 재생/정지 버튼 */
.sv2-slide-play-btn {
    margin-top: 4px;
    background: var(--primary); color: var(--white);
    border: none; border-radius: 50%;
    width: 28px; height: 28px;
    font-size: 11px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, transform .15s;
    box-shadow: 0 2px 8px rgba(37,99,235,.35);
}
.sv2-slide-play-btn:hover { background: var(--primary-dark); transform: scale(1.1); }

/* 활성 도트 진행 링 (오토플레이 중) */
.sv2-slide-dot-playing {
    position: relative;
}
.sv2-slide-dot-playing::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    border-top-color: transparent;
    animation: sv2-dot-spin calc(1000ms) linear infinite;
}
@keyframes sv2-dot-spin {
    to { transform: rotate(360deg); }
}

/* ── 전체 래퍼 ───────────────────────────────────────── */
.sv2-wrap {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    color: var(--text-main);
    word-break: keep-all;
}

/* ════════════════════════════════════════════════════════
   히어로
════════════════════════════════════════════════════════ */
.sv2-hero {
    background: linear-gradient(140deg, #1E3A8A 0%, #2563EB 52%, #0EA5E9 100%);
    color: var(--white);
    padding: 96px 5% 104px;
    text-align: center;
}
.sv2-hero-inner { max-width: 820px; margin: 0 auto; }

.sv2-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 999px;
    padding: 6px 20px;
    font-size: 14px; font-weight: 600; letter-spacing: .5px;
    margin-bottom: 24px;
}
/* ▼ 히어로 태그 안 em이 부모 font-size를 상속받도록 */
.sv2-hero-tag em { font-style: normal; font-size: inherit; color: #FDE68A; }

.sv2-hero h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800; line-height: 1.22;
    margin-bottom: 18px;
}
.sv2-hero h1 em { font-style: normal; color: #FDE68A; font-size: inherit; }

.sv2-hero p {
    font-size: clamp(15px, 1.8vw, 18px);
    opacity: .88; line-height: 1.75;
    margin-bottom: 36px;
}

/* 히어로 통계 배지 */
.sv2-hero-stats {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: var(--radius);
    padding: 18px 32px;
    margin-bottom: 36px;
    flex-wrap: wrap; justify-content: center; gap: 8px;
}
.sv2-hero-stat { text-align: center; padding: 0 22px; }
.sv2-hero-stat-num {
    display: block;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800; letter-spacing: -.5px;
    color: #FDE68A; margin-bottom: 4px;
}
.sv2-hero-stat-label { font-size: 12px; opacity: .75; }
.sv2-hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.25); }
.sv2-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════
   버튼
════════════════════════════════════════════════════════ */
.sv2-btn-white {
    display: inline-block;
    background: var(--white); color: var(--primary);
    border: 2px solid var(--white); border-radius: 8px;
    padding: 12px 28px; font-size: 15px; font-weight: 700;
    cursor: pointer; text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}
.sv2-btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }

.sv2-btn-primary {
    display: inline-block;
    background: var(--primary); color: var(--white);
    border: 2px solid var(--primary); border-radius: 8px;
    padding: 12px 28px; font-size: 15px; font-weight: 700;
    cursor: pointer; text-decoration: none;
    transition: background .15s, transform .15s, box-shadow .15s;
}
.sv2-btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,.3); }

.sv2-btn-outline {
    display: inline-block;
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,.55); border-radius: 8px;
    padding: 12px 28px; font-size: 15px; font-weight: 600;
    cursor: pointer; text-decoration: none;
    transition: background .2s, border-color .2s;
}
.sv2-btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }

.sv2-btn-outline-dark {
    display: inline-block;
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,.5); border-radius: 8px;
    padding: 12px 28px; font-size: 15px; font-weight: 600;
    cursor: pointer; text-decoration: none;
    transition: background .2s;
}
.sv2-btn-outline-dark:hover { background: rgba(255,255,255,.12); }

.sv2-btn-secondary {
    display: inline-block;
    background: var(--primary-light); color: var(--primary);
    border: 2px solid transparent; border-radius: 8px;
    padding: 11px 24px; font-size: 14px; font-weight: 700;
    cursor: pointer; text-decoration: none;
    transition: background .15s;
}
.sv2-btn-secondary:hover { background: #DBEAFE; }

.sv2-btn-lg { padding: 15px 38px; font-size: 16px; }

/* ════════════════════════════════════════════════════════
   섹션 공통
════════════════════════════════════════════════════════ */
.sv2-section { padding: var(--section-v) 5%; }
.sv2-section-inner { max-width: 1100px; margin: 0 auto; }
.sv2-bg-light { background: var(--bg); }

.sv2-section-label {
    font-size: 11px; font-weight: 700; color: var(--primary);
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 10px; display: block;
}
.sv2-section-title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800; line-height: 1.28;
    margin-bottom: 14px;
}
/* ▼ .sv2-point이 부모 font-size를 그대로 상속 */
.sv2-section-title .sv2-point { font-size: inherit; color: var(--primary); }

.sv2-section-title small {
    display: block;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 600; color: var(--text-sub);
    margin-bottom: 4px;
}
.sv2-section-sub {
    font-size: 15px; color: var(--text-sub);
    line-height: 1.75;
}
.sv2-point { color: var(--primary); }

.sv2-cta-wrap {
    display: flex; gap: 12px; flex-wrap: wrap;
    justify-content: center; margin-top: 44px;
}

/* ════════════════════════════════════════════════════════
   SaaS 탭 섹션  (padding 독립 지정)
════════════════════════════════════════════════════════ */
.sv2-saas {
    background: var(--white);
    padding: 120px 5%;
}

/* 좌우 분할: 탭 목록 | 미리보기 */
.sv2-saas-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    margin-top: 48px;
    /* 양쪽이 같은 높이로 늘어나도록 */
    align-items: stretch;
}

/* ── 좌: 탭 버튼 목록 ──────────────────────────────── */
.sv2-tab-list {
    display: flex; flex-direction: column; gap: 4px;
}
.sv2-tab {
    display: block;           /* svg 제거 → block으로 단순화 */
    width: 100%;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px; font-weight: 600; color: var(--text-sub);
    text-align: center;
    cursor: pointer;
    transition: border-color .15s, color .15s, background .15s;
}
.sv2-tab:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.sv2-tab-active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.sv2-tab-active:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }

/* ── 우: 미리보기 컨테이너 ─────────────────────────── */
.sv2-tab-content {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    /* tab-list와 높이 자동 맞춤: stretch + flex */
    display: flex; align-items: center; justify-content: center;
}
.sv2-tab-panel {
    display: flex; flex-direction: column; align-items: center;
    gap: 20px; width: 100%;
    animation: sv2-fade .22s ease;
}
.sv2-tab-panel-hidden { display: none; }

@keyframes sv2-fade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
}

/* 미리보기 이미지: 너비 기준, 최대 높이 제한 */
.sv2-preview-gif {
    display: block;
    width: 100%;
    max-width: 500px;
    max-height: 300px;
    object-fit: contain;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.sv2-tab-desc {
    max-width: 500px; text-align: center;
    font-size: 14px; color: var(--text-sub); line-height: 1.8;
}

/* ════════════════════════════════════════════════════════
   카드 그리드
════════════════════════════════════════════════════════ */
.sv2-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px; margin-top: 40px;
}
.sv2-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1.5px solid var(--border);
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.sv2-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: #BFDBFE; }
.sv2-card:hover .sv2-card-icon { background: var(--primary); }
.sv2-card:hover .sv2-card-icon svg { fill: var(--white); }

.sv2-card-icon {
    width: 50px; height: 50px;
    background: var(--primary-light); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; transition: background .2s;
}
.sv2-card-icon svg { fill: var(--primary); transition: fill .2s; }
.sv2-card-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.sv2-card-desc { font-size: 14px; color: var(--text-sub); line-height: 1.75; }

.sv2-card-list {
    list-style: none; margin-top: 16px; padding: 0;
    display: flex; flex-direction: column; gap: 7px;
    border-top: 1px solid var(--border); padding-top: 14px;
}
.sv2-card-list li {
    font-size: 13px; color: var(--text-sub);
    padding-left: 16px; position: relative; line-height: 1.5;
}
.sv2-card-list li::before {
    content: '·'; position: absolute; left: 4px;
    color: var(--primary); font-size: 16px; line-height: 1.2;
}

/* ════════════════════════════════════════════════════════
   노무법인 블록 - 실시간 배지
════════════════════════════════════════════════════════ */
.sv2-nomusa-block { background: var(--bg); }
.sv2-live-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white); border: 1.5px solid #BFDBFE;
    border-radius: var(--radius);
    padding: 12px 20px;
    font-size: 14px; color: var(--text-sub);
    margin-top: 20px;
}
.sv2-live-badge strong { color: var(--primary); font-size: 16px; }
.sv2-live-dot {
    width: 8px; height: 8px; background: #22C55E;
    border-radius: 50%; flex-shrink: 0;
    animation: sv2-pulse 1.6s infinite;
}
@keyframes sv2-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(1.4); }
}

/* ════════════════════════════════════════════════════════
   전자계약 - 좌(스텝 버튼) / 우(이미지+설명) 레이아웃
════════════════════════════════════════════════════════ */
.sv2-edoc-block { background: var(--white); }

/* 좌/우 분할 */
.sv2-edoc-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    margin-top: 44px;
    align-items: start;
}

/* 좌: 스텝 버튼 목록 */
.sv2-edoc-list {
    list-style: none; padding: 0;
    display: flex; flex-direction: column; gap: 0;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.sv2-edoc-list-item {
    display: flex; flex-direction: column;
    border-bottom: 1px solid var(--border);
}
.sv2-edoc-list-item:last-child { border-bottom: none; }

/* 버튼에만 hover/active 스타일 적용 (휴가관리와 동일한 구조) */
.sv2-edoc-btn {
    width: 100%; display: flex; align-items: center; gap: 10px;
    background: var(--bg); border: none;
    padding: 14px 18px; cursor: pointer; text-align: left;
    font-size: 14px; font-weight: 600; color: var(--text-sub);
    transition: background .15s, color .15s;
    user-select: none;
}
.sv2-edoc-btn:hover { background: var(--primary-light); color: var(--primary); }
.sv2-edoc-list-item-open .sv2-edoc-btn {
    background: var(--primary); color: var(--white);
}
.sv2-edoc-list-item-open .sv2-edoc-btn:hover { background: var(--primary-dark); color: var(--white); }

.sv2-edoc-list-num {
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    color: var(--primary); flex-shrink: 0; min-width: 52px;
}
.sv2-edoc-list-item-open .sv2-edoc-list-num { color: rgba(255,255,255,.75); }
.sv2-edoc-list-title { flex: 1; }
.sv2-edoc-list-arrow { font-size: 12px; flex-shrink: 0; margin-left: 4px; }

/* 펼쳐지는 패널 */
.sv2-edoc-panel {
    padding: 10px 18px 14px;
    background: var(--white);
    animation: sv2-fade .2s ease;
}
.sv2-edoc-panel-hidden { display: none; }
.sv2-edoc-panel-desc {
    font-size: 13px; color: var(--text-sub); line-height: 1.7;
}

/* 우: 상세 영역 */
.sv2-edoc-detail {
    display: flex; flex-direction: column; gap: 20px;
    position: sticky; top: 80px;
}
.sv2-edoc-detail-img {
    display: block; width: 100%;
    max-height: 340px; object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background: var(--white);
    animation: sv2-fade .25s ease;
}
/* .sv2-edoc-detail-desc 는 우측에서 제거됨 — 좌측 패널 내 .sv2-edoc-list-desc로 이동 */

/* ════════════════════════════════════════════════════════
   2열 분할 레이아웃 (임금명세서·취업규칙)
════════════════════════════════════════════════════════ */
.sv2-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.sv2-split-img img {
    width: 100%; max-height: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: block;
    object-fit: cover; object-position: center top;
}
/* 임금명세서: height 기준(세로 맞춤) */
.sv2-split-img-h img {
    width: auto; height: 380px; max-height: 380px;
    max-width: 100%;
    object-fit: contain; object-position: center;
    margin: 0 auto;
}
/* 취업규칙: 이미지에 여백(패딩), height 기준 표시 */
.sv2-split-img-pad {
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    padding: 32px;
    display: flex; align-items: center; justify-content: center;
}
.sv2-split-img-pad img {
    height: 360px; width: auto; max-width: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.sv2-split-text .sv2-section-title { margin-top: 8px; }

.sv2-feature-list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.sv2-feature-item { display: flex; gap: 14px; align-items: flex-start; }
.sv2-feature-icon { font-size: 22px; min-width: 30px; padding-top: 2px; }
.sv2-feature-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.sv2-feature-item p { font-size: 13px; color: var(--text-sub); line-height: 1.65; }

/* ════════════════════════════════════════════════════════
   CTA 밴드
════════════════════════════════════════════════════════ */
.sv2-cta-band {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    padding: 84px 5%;  /* 기존 64px → 30% 증가 */
}
.sv2-cta-band-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 28px;
}
.sv2-cta-band-text { color: var(--white); }
.sv2-cta-band-text h2 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800; margin-bottom: 10px; line-height: 1.25;
}
.sv2-cta-band-text p { font-size: 16px; opacity: .85; }
.sv2-cta-point { color: #FDE68A; font-size: inherit; }
.sv2-cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; align-self: flex-end; }

/* ════════════════════════════════════════════════════════
   휴가관리 - 아코디언 좌/우 레이아웃
════════════════════════════════════════════════════════ */
.sv2-vacation-block { background: var(--white); }

/* 좌우 분할 */
.sv2-vac-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    margin-top: 44px;
    align-items: start;
}

/* 좌: 아코디언 목록 */
.sv2-vac-accordion {
    display: flex; flex-direction: column; gap: 0;
    list-style: none; padding: 0;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.sv2-vac-item { border-bottom: 1px solid var(--border); }
.sv2-vac-item:last-child { border-bottom: none; }

.sv2-vac-btn {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    background: var(--bg);
    border: none; padding: 14px 16px;
    font-size: 14px; font-weight: 600; color: var(--text-sub);
    cursor: pointer; text-align: left;
    transition: background .15s, color .15s;
}
.sv2-vac-item-open .sv2-vac-btn {
    background: var(--primary); color: var(--white);
}
.sv2-vac-btn:hover { background: var(--primary-light); color: var(--primary); }
.sv2-vac-item-open .sv2-vac-btn:hover { background: var(--primary-dark); color: var(--white); }
.sv2-vac-arrow { font-size: 12px; flex-shrink: 0; margin-left: 8px; }

/* 아코디언 패널 */
.sv2-vac-panel {
    padding: 14px 16px 16px;
    background: var(--white);
    animation: sv2-fade .2s ease;
}
.sv2-vac-panel-hidden { display: none; }
.sv2-vac-panel-desc {
    font-size: 13px; color: var(--text-sub);
    line-height: 1.65; margin-bottom: 10px;
}
.sv2-vac-panel ol { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.sv2-vac-panel ol li {
    font-size: 13px; color: var(--text-main);
    padding-left: 16px; position: relative; line-height: 1.5;
}
.sv2-vac-panel ol li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--primary); font-size: 11px; top: 1px; font-weight: 700;
}

/* 우: 이미지 */
.sv2-vac-preview {
    position: sticky; top: 80px;
}
.sv2-vac-preview img {
    display: block; width: 100%;
    max-height: 420px; object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background: var(--white);
}

/* ════════════════════════════════════════════════════════
   상세 그리드 (휴가·교육) - ol > li 구조
════════════════════════════════════════════════════════ */
.sv2-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px; margin-top: 40px;
    list-style: none; padding: 0;
}
.sv2-detail-grid-4 { grid-template-columns: repeat(4, 1fr); }

.sv2-detail-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1.5px solid var(--border);
    border-top: 3px solid var(--primary);
    transition: box-shadow .2s, transform .2s;
}
.sv2-detail-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.sv2-detail-card h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.sv2-detail-card p { font-size: 13px; color: var(--text-sub); line-height: 1.65; margin-bottom: 14px; }
.sv2-detail-card ol { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.sv2-detail-card ol li {
    font-size: 13px; color: var(--text-main);
    padding-left: 16px; position: relative; line-height: 1.5;
}
.sv2-detail-card ol li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--primary); font-size: 11px; top: 1px; font-weight: 700;
}

/* ════════════════════════════════════════════════════════
   앱 섹션 (독립 article)
════════════════════════════════════════════════════════ */
.sv2-app-section { background: var(--bg); }

/* 앱 2분할 카드 */
.sv2-app-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px; margin-top: 44px;
}
.sv2-app-cards-wide { max-width: 860px; margin-left: auto; margin-right: auto; }

.sv2-app-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid #BFDBFE;
    padding: 32px;
    display: flex; flex-direction: column; gap: 16px;
    box-shadow: var(--shadow);
}
.sv2-app-card-ai {
    border-color: #A855F7;
    background: #FAF5FF;
}
.sv2-app-card-header { display: flex; align-items: center; gap: 10px; }
.sv2-app-card-badge {
    font-size: 11px; font-weight: 700; color: var(--primary);
    background: var(--primary-light); border-radius: 999px;
    padding: 3px 10px; letter-spacing: .3px; flex-shrink: 0;
}
.sv2-app-card-badge-ai { color: #7C3AED; background: #EDE9FE; }
.sv2-app-card-name {
    font-size: 18px; font-weight: 800; color: var(--text-main);
    display: flex; align-items: center; gap: 8px;
}
.sv2-ai-chip {
    font-size: 11px; font-weight: 700; color: var(--white);
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    border-radius: 6px; padding: 3px 8px; letter-spacing: .5px;
    animation: sv2-pulse 2s infinite;
}
.sv2-app-card-desc { font-size: 14px; color: var(--text-sub); line-height: 1.75; flex: 1; }
.sv2-app-card-features {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
    border-top: 1px solid #EDE9FE; padding-top: 14px;
}
.sv2-app-card-features li {
    font-size: 13px; color: #7C3AED;
    padding-left: 18px; position: relative; line-height: 1.5;
}
.sv2-app-card-features li::before {
    content: '✦'; position: absolute; left: 0;
    font-size: 9px; top: 3px;
}

/* 앱스토어 버튼 행 */
.sv2-app-store-row {
    display: flex; gap: 10px;
    justify-content: center;
    margin-top: 8px;
}
/* 정사각형 고정, 크기 통일 */
.sv2-app-store-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    width: 80px; height: 80px;          /* 정사각형 고정 */
    background: var(--primary-light);
    border: 1.5px solid #BFDBFE;
    border-radius: 16px;
    cursor: pointer;
    transition: background .15s, transform .15s;
    padding: 0;
}
.sv2-app-store-btn:hover { background: #DBEAFE; transform: translateY(-2px); }
.sv2-app-card-ai .sv2-app-store-btn {
    background: #EDE9FE; border-color: #C4B5FD;
}
.sv2-app-card-ai .sv2-app-store-btn:hover { background: #DDD6FE; }

.sv2-store-icon { width: 28px; height: 28px; display: block; flex-shrink: 0; }
.sv2-store-label {
    font-size: 10px; font-weight: 700;
    color: var(--primary); letter-spacing: .3px;
}
.sv2-app-card-ai .sv2-store-label { color: #7C3AED; }

/* ════════════════════════════════════════════════════════
   취업규칙 - 공공규정 select 조회
════════════════════════════════════════════════════════ */
.sv2-bylaw-search {
    margin-top: 28px;
    padding: 16px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
}
.sv2-bylaw-search-label {
    font-size: 12px; font-weight: 700; color: var(--primary);
    letter-spacing: .5px; margin-bottom: 8px; display: block;
}
.sv2-bylaw-select {
    width: 100%;
    border: 1.5px solid var(--border); border-radius: 8px;
    padding: 9px 12px; font-size: 14px; color: var(--text-main);
    background: var(--white); font-family: inherit;
    cursor: pointer; outline: none;
    transition: border-color .15s;
}
.sv2-bylaw-select:focus { border-color: var(--primary); }
.sv2-bylaw-select:hover { border-color: var(--primary); }

/* ════════════════════════════════════════════════════════
   교육관리 블록
════════════════════════════════════════════════════════ */
.sv2-edu-note {
    font-size: 13px; color: var(--text-sub);
    margin-top: 12px; line-height: 1.7;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 8px;
    border-left: 3px solid var(--border);
}

/* ════════════════════════════════════════════════════════
   마무리 CTA
════════════════════════════════════════════════════════ */
.sv2-final-cta { background: var(--text-main); padding: 110px 5%; text-align: center; }
.sv2-final-cta-inner { max-width: 700px; margin: 0 auto; }
.sv2-final-title {
    font-size: clamp(28px, 5vw, 54px);
    font-weight: 800; line-height: 1.2;
    color: var(--white); margin-bottom: 16px;
}
.sv2-final-sub { font-size: 15px; color: #9CA3AF; margin-bottom: 36px; letter-spacing: .3px; }
.sv2-final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sv2-final-cta .sv2-btn-white { background: var(--primary); color: var(--white); border-color: var(--primary); }
.sv2-final-cta .sv2-btn-white:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

/* ════════════════════════════════════════════════════════
   사업자 정보 푸터
════════════════════════════════════════════════════════ */
.sv2-footer-info {
    background: #0F172A; color: #64748B;
    padding: 32px 5%; text-align: center;
    font-size: 13px; line-height: 2;
}
.sv2-footer-info a { color: #64748B; text-decoration: underline; }
.sv2-footer-info a:hover { color: #9CA3AF; }

/* ════════════════════════════════════════════════════════
   반응형
════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .sv2-saas-body { grid-template-columns: 160px 1fr; gap: 20px; }
    .sv2-detail-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .sv2-cta-band-btns { align-self: auto; }
    .sv2-vac-body { grid-template-columns: 240px 1fr; gap: 24px; }
    .sv2-edoc-body { grid-template-columns: 200px 1fr; gap: 24px; }
    .sv2-app-cards { grid-template-columns: 1fr; }
    /* 슬라이드 컨트롤: 태블릿에서 작게 */
    .sv2-slide-ctrl { right: 10px; }
}

@media (max-width: 768px) {
    :root { --section-v: 72px; }
    .sv2-hero { padding: 64px 5% 72px; }
    .sv2-hero-stat { padding: 0 12px; }
    .sv2-hero-stat-divider { display: none; }
    .sv2-saas { padding: 72px 5%; }
    /* SaaS: 모바일에서 탭 가로 wrap */
    .sv2-saas-body { grid-template-columns: 1fr; }
    .sv2-tab-list { flex-direction: row; flex-wrap: wrap; gap: 8px; }
    .sv2-tab { width: auto; }
    .sv2-tab-content { padding: 20px; }
    .sv2-preview-gif { max-height: 220px; }
    /* 전자계약: 세로 스택 */
    .sv2-edoc-body { grid-template-columns: 1fr; gap: 20px; }
    .sv2-edoc-detail { position: static; }
    .sv2-edoc-detail-img { max-height: 240px; }
    /* 분할 레이아웃 */
    .sv2-split { grid-template-columns: 1fr; gap: 32px; }
    .sv2-split-img img { max-height: 260px; height: auto; }
    .sv2-split-img-h img { height: auto; max-height: 260px; width: 100%; }
    .sv2-split-img-pad { padding: 16px; }
    .sv2-split-img-pad img { height: 220px; }
    .sv2-split .sv2-split-img[style*="order:2"] { order: 1 !important; }
    .sv2-split .sv2-split-text[style*="order:1"] { order: 2 !important; }
    .sv2-card-grid { grid-template-columns: 1fr; }
    .sv2-detail-grid-4 { grid-template-columns: 1fr; }
    /* 휴가관리 아코디언: 세로 스택 */
    .sv2-vac-body { grid-template-columns: 1fr; gap: 24px; }
    .sv2-vac-preview { position: static; }
    /* CTA 밴드: 가운데 정렬 */
    .sv2-cta-band-inner { align-items: center; text-align: center; }
    .sv2-cta-band-btns { align-self: auto; justify-content: center; }
    /* 슬라이드 컨트롤: 모바일에서 숨김 */
    .sv2-slide-ctrl { display: none; }
}

@media (max-width: 600px) {
    .sv2-app-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .sv2-detail-grid { grid-template-columns: 1fr; }
    .sv2-hero-stats { flex-direction: column; gap: 12px; }
}
