/* =========================================================================
   비닐 메이드(VinylMade) B2B 홈페이지 — 공개 페이지 전용 스타일 (순수 CSS, 빌드 없음)
   브랜드 컬러: Vinyl Blue #1E5EFF (포인트) / Deep Ink #12233B / 본문 #16181D
   배경 #fff, 보조 Mist #F7F9FC
   ========================================================================= */

/* ---------- Reset / Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --point: #1E5EFF;        /* Vinyl Blue — 로고·버튼·링크 */
    --point-dark: #194FD6;   /* 버튼 hover (Vinyl Blue 음영) */
    --ink: #12233B;          /* Deep Ink — 헤더·푸터·강조 */
    --accent: #3D7BFF;       /* Sky Tint — 다크 배경 위 하이라이트 */
    --text: #16181D;         /* Charcoal — 본문 텍스트 */
    --muted: #5B616E;        /* Slate — 보조 텍스트 */
    --line: #e3e7ee;
    --bg: #fff;
    --bg-soft: #F7F9FC;      /* Mist — 배경·섹션 */
    --gray-btn: #aaa;
    --th-bg: #eef1f7;
    --radius: 6px;
    --max: 1160px;
}

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

body {
    font-family: 'Pretendard', 'Malgun Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    word-break: keep-all;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 26px;
    border: 0;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color .15s ease;
    line-height: 1.2;
}
.btn-point { background: var(--point); color: #fff; }
.btn-point:hover { background: var(--point-dark); }
.btn-gray { background: var(--gray-btn); color: #fff; }
.btn-gray:hover { background: #949494; }
.btn-outline {
    background: #fff; color: var(--point);
    border: 1px solid var(--point);
}
.btn-outline:hover { background: var(--point); color: #fff; }
.btn-lg { padding: 15px 40px; font-size: 18px; }
.btn-block { display: block; width: 100%; }

/* ---------- Header / GNB ---------- */
.site-header {
    border-bottom: 1px solid var(--line);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}
.logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.logo img { height: 82px; width: auto; }
.gnb { display: flex; align-items: center; gap: 34px; }
.gnb .nav { display: flex; gap: 30px; }
.gnb .nav a {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}
.gnb .nav a:hover,
.gnb .nav a.active { color: var(--point); border-bottom-color: var(--point); }

/* mobile nav toggle */
.nav-toggle {
    display: none;
    background: none; border: 0;
    font-size: 26px; line-height: 1; cursor: pointer; color: #333;
}

/* ---------- Footer ---------- */
.site-footer {
    margin-top: 60px;
    background: var(--ink);
    color: #b9c2d0;
    font-size: 14px;
    padding: 34px 0;
}
.site-footer .foot-logo { width: 44px; height: 44px; margin-bottom: 14px; }
.site-footer .foot-name { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.site-footer p { margin: 3px 0; }
.site-footer .copyright { margin-top: 16px; color: #7d8798; font-size: 13px; }

/* ---------- Section title (좌측 주황 세로바) ---------- */
.sec-title {
    position: relative;
    padding-left: 14px;
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 22px;
}
.sec-title::before {
    content: '';
    position: absolute;
    left: 0; top: 4px; bottom: 4px;
    width: 5px;
    background: var(--point);
    border-radius: 2px;
}
.sec-title .sub { display: block; font-size: 14px; font-weight: 400; color: var(--muted); margin-top: 4px; }

.section { padding: 54px 0; }
.section.soft { background: var(--bg-soft); }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(135deg, var(--ink) 0%, var(--point) 160%);
    color: #fff;
    padding: 84px 0;
    text-align: center;
}
.hero .badge {
    display: inline-block;
    background: var(--point);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 18px;
}
.hero h1 .pt { color: var(--accent); }
.hero .spec {
    font-size: 20px;
    color: #e6e6e6;
    margin-bottom: 32px;
}
.hero .spec strong { color: #fff; }
.hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Category cards ---------- */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cat-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 26px;
    text-align: center;
    transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.cat-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    border-color: var(--point);
    transform: translateY(-3px);
}
.cat-card .ic {
    width: 56px; height: 56px; margin: 0 auto 16px;
    background: #E8EFFF; color: var(--point);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; font-weight: 800;
}
.cat-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.cat-card p { color: var(--muted); font-size: 14px; }
.cat-card .more { display: inline-block; margin-top: 14px; color: var(--point); font-weight: 600; font-size: 14px; }

/* ---------- Product grid (목록) ---------- */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.prod-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .15s ease, transform .15s ease;
}
.prod-card:hover { box-shadow: 0 8px 22px rgba(0,0,0,.08); transform: translateY(-2px); }
.prod-thumb {
    aspect-ratio: 4 / 3;
    background: var(--bg-soft);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    color: #bbb; font-size: 14px;
}
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-body { padding: 16px; }
.prod-body .cat { font-size: 12px; color: var(--point); font-weight: 600; }
.prod-body h3 { font-size: 16px; font-weight: 700; margin: 6px 0; line-height: 1.35; }
.prod-body p { font-size: 13px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- Category tabs ---------- */
.cat-tabs {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 26px;
}
.cat-tabs a {
    padding: 9px 18px;
    border: 1px solid var(--line);
    border-radius: 40px;
    font-size: 14px; font-weight: 600; color: #555;
    background: #fff;
}
.cat-tabs a:hover { border-color: var(--point); color: var(--point); }
.cat-tabs a.active { background: var(--point); border-color: var(--point); color: #fff; }

/* ---------- Product detail ---------- */
.prod-detail .head { border-bottom: 2px solid #eee; padding-bottom: 18px; margin-bottom: 24px; }
.prod-detail .head .cat { color: var(--point); font-weight: 600; font-size: 14px; }
.prod-detail .head h1 { font-size: 28px; font-weight: 800; margin-top: 6px; }
.prod-content { font-size: 16px; line-height: 1.8; }
.prod-content img { margin: 14px 0; border-radius: var(--radius); }
.prod-content p { margin: 10px 0; }
.prod-detail .foot-cta { margin-top: 40px; text-align: center; padding-top: 30px; border-top: 1px solid var(--line); }

/* ---------- CTA banner ---------- */
.cta-banner {
    background: var(--point);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    border-radius: var(--radius);
}
.cta-banner h2 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.cta-banner p { font-size: 16px; margin-bottom: 24px; opacity: .95; }
.cta-banner .btn { background: #fff; color: var(--point); }
.cta-banner .btn:hover { background: #f1f1f1; }

/* ---------- Table-form (견적문의 / 한국식 폼) ---------- */
.form-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid var(--ink);
    margin-bottom: 24px;
}
.form-table th, .form-table td {
    border-bottom: 1px solid var(--line);
    padding: 14px 16px;
    text-align: left;
    vertical-align: middle;
}
.form-table th {
    width: 180px;
    background: var(--th-bg);
    font-weight: 600;
    color: #333;
}
.form-table th .req { color: var(--point); margin-left: 3px; }
.form-control {
    width: 100%;
    max-width: 420px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
}
.form-control:focus { outline: none; border-color: var(--point); box-shadow: 0 0 0 2px rgba(30,94,255,.15); }
textarea.form-control { max-width: 100%; min-height: 160px; resize: vertical; }

/* phone 3-split */
.phone-row { display: flex; align-items: center; gap: 8px; }
.phone-row input { width: 90px; text-align: center; }
.phone-row span { color: #999; }

/* radio group */
.radio-group { display: flex; flex-wrap: wrap; gap: 20px; }
.radio-group label { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; font-size: 15px; }
.radio-group input { width: 16px; height: 16px; accent-color: var(--point); }

.form-actions { text-align: center; margin-top: 6px; }
.form-actions .btn { min-width: 120px; margin: 0 5px; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- 개인정보 동의 ---------- */
.consent-row {
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
    justify-content: center;
    margin: 18px 0 14px;
    padding: 14px 16px;
    background: var(--th-bg, #f7f8fa);
    border: 1px solid var(--line, #e3e5e8);
    border-radius: 4px;
}
.consent-check { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 15px; font-weight: 600; }
.consent-check input { width: 17px; height: 17px; accent-color: var(--point); }
.consent-check .req { color: var(--point); }
.consent-view {
    background: none; border: 1px solid #bbb; border-radius: 4px;
    padding: 4px 12px; font-size: 13px; color: #555; cursor: pointer; font-family: inherit;
}
.consent-view:hover { border-color: var(--point); color: var(--point); }
.consent-row .field-error { width: 100%; text-align: center; margin-top: 0; }

/* ---------- Modal ---------- */
body.modal-open { overflow: hidden; }
.modal-backdrop {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0, 0, 0, .5);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal-box {
    background: #fff; border-radius: 8px;
    width: 100%; max-width: 560px; max-height: calc(100vh - 40px);
    display: flex; flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
}
.modal-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-bottom: 1px solid var(--line, #e3e5e8);
}
.modal-head h3 { font-size: 18px; font-weight: 700; }
.modal-close {
    background: none; border: 0; font-size: 26px; line-height: 1;
    color: #999; cursor: pointer; padding: 0 2px;
}
.modal-close:hover { color: #333; }
.modal-body { padding: 20px; overflow-y: auto; font-size: 14px; color: #444; }
.modal-body > p { margin-bottom: 14px; }
.consent-table { width: 100%; border-collapse: collapse; border-top: 2px solid var(--ink, #222); }
.consent-table th, .consent-table td {
    border-bottom: 1px solid var(--line, #e3e5e8);
    padding: 10px 12px; font-size: 14px; text-align: left; vertical-align: top;
}
.consent-table th { width: 120px; background: var(--th-bg, #f7f8fa); font-weight: 600; color: #333; }
.consent-note { margin-top: 14px; font-size: 13px; color: #777; }
.modal-foot {
    display: flex; justify-content: center; gap: 8px;
    padding: 14px 20px; border-top: 1px solid var(--line, #e3e5e8);
}

/* ---------- Alerts / validation ---------- */
.flash {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    font-size: 15px;
}
.flash-success { background: #eaf7ec; border: 1px solid #b7e0bd; color: #1e7d32; }
.flash-error   { background: #fdecea; border: 1px solid #f5c2bd; color: #c0392b; }
.field-error { color: #c0392b; font-size: 13px; margin-top: 5px; }
.form-control.is-error { border-color: #c0392b; }

/* ---------- About page ---------- */
.about-lead { font-size: 18px; color: #555; margin-bottom: 30px; }
.info-list { border-top: 2px solid var(--ink); margin-bottom: 30px; }
.info-list dl { display: flex; border-bottom: 1px solid var(--line); }
.info-list dt { width: 200px; background: var(--th-bg); padding: 14px 16px; font-weight: 600; }
.info-list dd { flex: 1; padding: 14px 16px; }
.map-placeholder {
    height: 340px;
    background: var(--bg-soft) repeating-linear-gradient(45deg, #f0f0f0 0 12px, #f7f7f7 12px 24px);
    border: 1px dashed #ccc;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: #999; font-size: 15px;
}

/* ---------- Facility gallery (회사소개) ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}
.gallery-item .ph {
    aspect-ratio: 4 / 3;
    background: var(--bg-soft);
    overflow: hidden;
}
.gallery-item .ph img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.gallery-item:hover .ph img { transform: scale(1.05); }
.gallery-item figcaption {
    padding: 10px 12px;
    font-size: 14px;
    color: #444;
    text-align: center;
}

/* ---------- Pagination ---------- */
.pagination-wrap { margin-top: 34px; display: flex; justify-content: center; }
.pagination-wrap nav { display: flex; }
.pagination-wrap a, .pagination-wrap span {
    display: inline-block; min-width: 38px; text-align: center;
    padding: 8px 10px; margin: 0 3px;
    border: 1px solid var(--line); border-radius: 4px;
    font-size: 14px; color: #555; background: #fff;
}
.pagination-wrap a:hover { border-color: var(--point); color: var(--point); }
.pagination-wrap .active span, .pagination-wrap [aria-current] span {
    background: var(--point); border-color: var(--point); color: #fff;
}

/* ---------- Empty state ---------- */
.empty {
    text-align: center; padding: 60px 20px; color: var(--muted);
    border: 1px dashed var(--line); border-radius: var(--radius); background: var(--bg-soft);
}

/* ---------- Page head (sub pages) ---------- */
.page-head { background: var(--bg-soft); padding: 40px 0; border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: 30px; font-weight: 800; }
.page-head .breadcrumb { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* =========================================================================
   반응형 — 데스크톱 우선, 모바일 375px 대응
   ========================================================================= */
@media (max-width: 960px) {
    .prod-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .gnb .nav {
        display: none;
        position: absolute; left: 0; right: 0; top: 100px;
        flex-direction: column; gap: 0;
        background: #fff; border-bottom: 1px solid var(--line);
        padding: 8px 0;
    }
    .gnb .nav.open { display: flex; }
    .gnb .nav a { padding: 12px 20px; border-bottom: 1px solid #f0f0f0; }
    .cat-grid { grid-template-columns: 1fr; }
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 28px; }
    .hero .spec { font-size: 16px; }
    .section { padding: 40px 0; }

    /* 테이블형 폼 → 세로 스택 전환 */
    .form-table, .form-table tbody, .form-table tr, .form-table th, .form-table td {
        display: block; width: 100%;
    }
    .form-table { border-top: 2px solid var(--ink); }
    .form-table th { width: 100%; border-bottom: 0; padding-bottom: 6px; }
    .form-table td { padding-top: 6px; }
    .form-control { max-width: 100%; }
    .info-list dl { flex-direction: column; }
    .info-list dt { width: 100%; }
}

@media (max-width: 420px) {
    .prod-grid { grid-template-columns: 1fr; }
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 24px; }
    .phone-row input { flex: 1; width: auto; min-width: 0; }
}

/* =========================================================================
   메인 히어로 (카드형) — Claude 디자인 반영 + 생산현장 슬라이드
   ========================================================================= */
.vm-hero-section {
    /* 디자인 전용 팔레트 (전역 오염 없이 이 블록에만 적용) */
    --vm-blue: #1E5EFF; --vm-ink: #12233B; --vm-mist: #F4F6FA;
    --vm-line: #E4E8EF; --vm-muted: #8A909B; --vm-slate: #5B616E;
    padding: 44px 20px;
}
.vm-hero {
    display: flex; min-height: 520px; max-width: 1180px; margin: 0 auto;
    background: var(--vm-mist); border: 1px solid var(--vm-line);
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 30px 60px -24px rgba(18,35,59,.25);
}

/* 좌측 텍스트 */
.vm-hero__text {
    flex: 1; padding: 66px 60px; display: flex;
    flex-direction: column; justify-content: center;
}
.vm-hero__badge {
    align-self: flex-start; display: inline-block;
    background: #fff; border: 1px solid #DCE3EC; color: var(--vm-blue);
    font-size: 13px; font-weight: 700; padding: 8px 15px;
    border-radius: 100px; margin-bottom: 26px;
    box-shadow: 0 2px 8px rgba(18,35,59,.05);
}
.vm-hero__title {
    margin: 0; font-size: 50px; line-height: 1.15; font-weight: 700;
    letter-spacing: -1.6px; color: var(--vm-ink);
}
.vm-hero__title em { color: var(--vm-blue); font-style: normal; }
.vm-hero__desc { margin: 22px 0 0; font-size: 18px; line-height: 1.55; color: var(--vm-slate); }
.vm-hero__desc b { color: var(--vm-ink); }
.vm-hero__desc span { font-size: 15px; color: var(--vm-muted); }

/* 스펙 */
.vm-hero__stats { display: flex; gap: 36px; margin-top: 34px; }
.vm-stat strong {
    display: block; font-size: 30px; font-weight: 700; letter-spacing: -1px;
    color: var(--vm-ink); font-family: 'Space Grotesk', 'Pretendard', sans-serif;
}
.vm-stat span { font-size: 13px; color: var(--vm-muted); }
.vm-stat__div { width: 1px; background: var(--vm-line); }

/* 버튼 */
.vm-hero__cta { display: flex; gap: 14px; margin-top: 38px; }
.vm-btn {
    font-size: 16px; font-weight: 600; padding: 16px 30px;
    border-radius: 12px; text-decoration: none; display: inline-block;
    transition: transform .15s ease, box-shadow .15s ease;
}
.vm-btn--primary {
    background: var(--vm-blue); color: #fff; font-weight: 700;
    box-shadow: 0 12px 24px -10px rgba(30,94,255,.5);
}
.vm-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(30,94,255,.6); }
.vm-btn--ghost { background: #fff; border: 1px solid #D3DAE4; color: var(--vm-ink); }
.vm-btn--ghost:hover { border-color: var(--vm-blue); color: var(--vm-blue); }

/* 우측 미디어 (슬라이드) */
.vm-hero__media { flex: 0 0 46%; padding: 30px 30px 30px 0; display: flex; }
.vm-slider {
    position: relative; flex: 1; width: 100%;
    border-radius: 18px; overflow: hidden; background: var(--vm-ink);
    box-shadow: 0 20px 40px -16px rgba(18,35,59,.3);
}
.vm-slide { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.vm-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 활성 슬라이드: 포커스-풀 와이프(clip-path) + 블러→선명 + 켄번즈 줌 */
.vm-slide.is-active { z-index: 3; }
.vm-slide.is-active img {
    animation:
        vmWipe 1s cubic-bezier(.76,0,.24,1) both,
        vmFocus 1s ease both,
        vmKen 5.2s ease-out both;
}
/* 와이프 진행선을 따라 지나가는 스캔 라이트 바 */
.vm-slide.is-active::after {
    content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 16%;
    background: linear-gradient(90deg, transparent, rgba(150,185,255,.5), rgba(255,255,255,.85), rgba(150,185,255,.5), transparent);
    filter: blur(3px); mix-blend-mode: screen; pointer-events: none; z-index: 4;
    animation: vmScan 1s cubic-bezier(.76,0,.24,1) both;
}
@keyframes vmWipe  { 0% { clip-path: inset(0 100% 0 0); } 100% { clip-path: inset(0 0 0 0); } }
@keyframes vmFocus { 0% { filter: blur(16px) saturate(1.25); } 100% { filter: blur(0) saturate(1); } }
@keyframes vmKen   { 0% { transform: scale(1.12); } 100% { transform: scale(1); } }
@keyframes vmScan  { 0% { left: -16%; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: 100%; opacity: 0; } }

/* 현재 시설명 캡션 칩 */
.vm-slider__caption {
    position: absolute; left: 16px; bottom: 16px; z-index: 5;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(18,35,59,.62); backdrop-filter: blur(6px);
    color: #fff; font-size: 13px; font-weight: 600;
    padding: 8px 14px; border-radius: 100px;
}
.vm-slider__pulse {
    width: 7px; height: 7px; border-radius: 50%; background: #3D7BFF;
    box-shadow: 0 0 0 0 rgba(61,123,255,.7); animation: vmPulse 1.8s infinite;
}
@keyframes vmPulse {
    0%   { box-shadow: 0 0 0 0 rgba(61,123,255,.6); }
    70%  { box-shadow: 0 0 0 7px rgba(61,123,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(61,123,255,0); }
}

/* 진행 인디케이터 바 */
.vm-slider__bars {
    position: absolute; right: 16px; bottom: 16px; z-index: 5;
    display: flex; gap: 6px;
}
.vm-bar {
    width: 18px; height: 4px; border: 0; padding: 0; cursor: pointer;
    border-radius: 4px; background: rgba(255,255,255,.4);
    transition: width .3s ease, background .3s ease;
}
.vm-bar.is-active { width: 30px; background: #fff; }

/* 모션 최소화 선호 시: 화려한 전환 제거(즉시 전환) */
@media (prefers-reduced-motion: reduce) {
    .vm-slide.is-active img { animation: none; }
    .vm-slide.is-active::after { display: none; }
    .vm-slider__pulse { animation: none; }
}

/* 반응형 */
@media (max-width: 820px) {
    .vm-hero { flex-direction: column; }
    .vm-hero__text { padding: 44px 32px; }
    .vm-hero__title { font-size: 38px; }
    .vm-hero__media { flex: none; height: 320px; padding: 0 24px 24px; }
}
@media (max-width: 480px) {
    .vm-hero-section { padding: 24px 14px; }
    .vm-hero__text { padding: 34px 24px; }
    .vm-hero__title { font-size: 31px; letter-spacing: -1px; }
    .vm-hero__stats { gap: 24px; }
    .vm-stat strong { font-size: 25px; }
    .vm-hero__cta { flex-direction: column; }
    .vm-btn { text-align: center; }
    .vm-hero__media { height: 240px; padding: 0 20px 20px; }
}
