/* ── 와요가요 — Public CSS ─────────────────────────────────────────── */
:root {
  --vm-blue:    #2563eb;
  --vm-blue-d:  #1d4ed8;
  --vm-dark:    #0f172a;
  --vm-slate:   #1e293b;
  --vm-muted:   #64748b;
  --vm-border:  #e2e8f0;
  --vm-bg:      #f8fafc;
  --vm-white:   #ffffff;
  --vm-green:   #10b981;
  --vm-red:     #ef4444;
  --vm-amber:   #f59e0b;
  --vm-radius:  8px;
  --vm-shadow:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --vm-shadow-md: 0 4px 16px rgba(0,0,0,.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.vm-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
  font-size: 15px;
  color: var(--vm-slate);
  background: var(--vm-bg);
  line-height: 1.6;
}

/* ── 공통 ─────────────────────────────────────────────────────────────────── */
.vm-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 10px 20px; border-radius: var(--vm-radius);
  font-size: 14px; font-weight: 500; cursor: pointer;
  border: none; transition: all .15s; text-decoration: none;
}
.vm-btn--primary { background: var(--vm-blue); color: #fff; }
.vm-btn--primary:hover { background: var(--vm-blue-d); }
.vm-btn--secondary { background: var(--vm-white); color: var(--vm-slate); border: 1px solid var(--vm-border); }
.vm-btn--secondary:hover { background: var(--vm-bg); }
.vm-btn--danger { background: var(--vm-red); color: #fff; }
.vm-btn--success { background: var(--vm-green); color: #fff; }
.vm-btn--full { width: 100%; }
.vm-btn--lg { padding: 14px 28px; font-size: 16px; }
.vm-btn:disabled { opacity: .5; cursor: not-allowed; }

.vm-badge {
  display: inline-block; padding: 2px 10px; border-radius: 20px;
  font-size: 12px; font-weight: 500;
}
.vm-badge--pending  { background: #fef3c7; color: #92400e; }
.vm-badge--approved { background: #d1fae5; color: #065f46; }
.vm-badge--rejected { background: #fee2e2; color: #991b1b; }
.vm-badge--arrived  { background: #dbeafe; color: #1e40af; }
.vm-badge--entered  { background: #ede9fe; color: #5b21b6; }
.vm-badge--exited   { background: #f1f5f9; color: #475569; }

.vm-notice {
  padding: 12px 16px; border-radius: var(--vm-radius);
  font-size: 14px; margin-bottom: 16px; display: none;
}
.vm-notice--success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.vm-notice--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.vm-notice--info    { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ── SaaS 메인 랜딩 ──────────────────────────────────────────────────────── */
.vm-saas-wrap {
  display: flex; min-height: 100vh;
}
.vm-saas-left {
  flex: 6; background: var(--vm-dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 80px; color: #fff;
}
.vm-saas-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 56px; }
.vm-saas-logo-icon {
  width: 36px; height: 36px; background: var(--vm-blue);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.vm-saas-logo-text { font-size: 18px; font-weight: 700; letter-spacing: -.3px; }
.vm-saas-headline { font-size: 38px; font-weight: 700; line-height: 1.25; letter-spacing: -.5px; margin-bottom: 20px; }
.vm-saas-headline em { color: #60a5fa; font-style: normal; }
.vm-saas-desc { font-size: 16px; color: #94a3b8; line-height: 1.75; margin-bottom: 48px; }
.vm-saas-features { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.vm-saas-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: #cbd5e1;
}
.vm-saas-features li::before {
  content: ''; width: 20px; height: 20px; flex-shrink: 0;
  background: #1d4ed8; border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23fff'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

.vm-saas-right {
  flex: 4;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 64px; background: var(--vm-white);
}
.vm-saas-tab {
  display: flex; border-bottom: 2px solid var(--vm-border);
  margin-bottom: 32px;
}
.vm-saas-tab-btn {
  flex: 1; padding: 12px 0; text-align: center;
  font-size: 15px; font-weight: 500; color: var(--vm-muted);
  background: none; border: none; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all .15s;
}
.vm-saas-tab-btn.active { color: var(--vm-blue); border-bottom-color: var(--vm-blue); }

.vm-auth-form { display: none; }
.vm-auth-form.active { display: block; }
.vm-auth-title { font-size: 22px; font-weight: 700; color: var(--vm-dark); margin-bottom: 6px; }
.vm-auth-subtitle { font-size: 14px; color: var(--vm-muted); margin-bottom: 28px; }

/* ── 폼 공통 ────────────────────────────────────────────────────────────────*/
.vm-field { margin-bottom: 16px; }
.vm-label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--vm-slate); margin-bottom: 6px;
}
.vm-label .req { color: var(--vm-red); }
.vm-input {
  width: 100%; padding: 10px 14px; border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius); font-size: 14px; color: var(--vm-slate);
  background: var(--vm-white); transition: border .15s; outline: none;
}
.vm-input:focus { border-color: var(--vm-blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.vm-input--error { border-color: #ef4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important; }
.vm-autofill-hint { font-size: 14px; }
.vm-input::placeholder { color: #94a3b8; }
.vm-textarea { min-height: 80px; resize: vertical; }
.vm-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2364748b'%3E%3Cpath d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; }
.vm-field-error { font-size: 12px; color: var(--vm-red); margin-top: 4px; display: none; }
.vm-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vm-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.vm-divider { height: 1px; background: var(--vm-border); margin: 24px 0; }

/* ── 기관 랜딩 ───────────────────────────────────────────────────────────── */
.vm-landing-wrap { font-family: var(--vm-font); min-height: 100vh; background: linear-gradient(180deg, #f8fafc 0%, #ffffff 400px); }

/* 네비 */
.vm-landing-nav {
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,.8);
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 48px; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.vm-landing-nav-left { display: flex; align-items: center; gap: 12px; }
.vm-landing-nav-logo { height: 36px; width: auto; max-width: 160px; object-fit: contain; }
.vm-landing-nav-name { font-size: 18px; font-weight: 700; color: var(--vm-dark); }
.vm-landing-nav-right { display: flex; gap: 10px; }

/* 히어로 */
.vm-landing-hero {
  position: relative; overflow: hidden;
  padding: 32px 48px 24px; text-align: center;
  background: linear-gradient(160deg, #e8f4ff 0%, #f0f9ff 50%, #f8fafc 100%);
}
.vm-landing-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.vm-landing-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #c7e0f8;
  border-radius: 999px; padding: 7px 20px;
  font-size: 13px; font-weight: 500; color: #1d4ed8; margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(29,78,216,.1);
}
.vm-landing-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #1d4ed8; flex-shrink: 0;
  animation: vm-pulse 2s infinite;
}
@keyframes vm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.vm-landing-title {
  font-size: 36px; font-weight: 800; color: #0f172a;
  margin: 0 0 10px; line-height: 1.18; letter-spacing: -.02em; white-space: nowrap;
}
.vm-landing-sub {
  font-size: 16px; color: #64748b;
  margin: 0 0 24px; line-height: 1.7;
}
.vm-landing-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.vm-btn--xl { padding: 13px 34px !important; font-size: 15px !important; gap: 9px; border-radius: 12px !important; font-weight: 600 !important; }
.vm-btn--ghost {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 34px; font-size: 15px; font-weight: 600;
  color: #334155; background: #fff; border: 1.5px solid #e2e8f0;
  border-radius: 12px; text-decoration: none; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.vm-btn--ghost:hover { border-color: #94a3b8; background: #f8fafc; color: #0f172a; }

/* 히어로 배경 장식 */
.vm-hero-deco {
  position: absolute; border-radius: 50%; opacity: .35;
  pointer-events: none;
}
.vm-hero-deco--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #bfdbfe, transparent 70%);
  top: -120px; right: -100px;
}
.vm-hero-deco--2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #ddd6fe, transparent 70%);
  bottom: -80px; left: -60px;
}
.vm-hero-deco--3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, #fde68a, transparent 70%);
  top: 40px; left: 10%;
}

/* 본문 */
.vm-landing-body { max-width: 1080px; margin: 0 auto; padding: 12px 48px 24px; }

/* 절차 카드 */
.vm-steps-wrap {
  display: flex; align-items: center; gap: 0;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 20px; padding: 24px 20px;
  margin-bottom: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.vm-step-arrow { flex-shrink: 0; padding: 0 10px; }
.vm-landing-step {
  flex: 1; text-align: center; padding: 0 12px; position: relative;
}
.vm-step-num-badge {
  font-size: 11px; font-weight: 700; color: #94a3b8;
  letter-spacing: .08em; margin-bottom: 8px;
}
.vm-landing-step-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.vm-landing-step-title { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.vm-landing-step-desc  { font-size: 12.5px; color: #64748b; line-height: 1.65; }

/* 하이라이트 배너 */
.vm-highlight-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  border-radius: 20px; padding: 20px 28px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(59,130,246,.1);
}
.vm-highlight-left { display: flex; align-items: center; gap: 20px; flex: 1; min-width: 0; }
.vm-highlight-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: #bfdbfe; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.vm-highlight-icon svg { stroke: #1d4ed8; }
.vm-highlight-title { font-size: 16px; font-weight: 700; color: #1e3a8a; margin-bottom: 6px; }
.vm-highlight-desc  { font-size: 13.5px; color: #3b82f6; line-height: 1.65; }
.vm-highlight-tag {
  flex-shrink: 0;
  background: #2563eb; border: none;
  border-radius: 999px; padding: 6px 18px;
  font-size: 12px; font-weight: 600; color: #fff; white-space: nowrap;
}

/* 기능 그리드 */
.vm-feat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.vm-feat-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 18px; padding: 20px 16px;
  text-align: center; transition: all .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.vm-feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  border-color: #c7e0f8;
}
.vm-feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.vm-feat-title { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.vm-feat-desc  { font-size: 12.5px; color: #64748b; line-height: 1.65; }

/* 모바일 */
@media(max-width:768px){
  .vm-autofill-hint { font-size: 13px; }
  .vm-landing-nav { padding: 12px 18px; }
  .vm-landing-nav-name { font-size: 16px; }
  .vm-landing-hero { padding: 56px 20px 48px; }
  .vm-landing-title { font-size: 34px; }
  .vm-title-br { display: none; }
  .vm-landing-sub { font-size: 15px; }
  .vm-landing-body { padding: 28px 18px 60px; }
  .vm-steps-wrap { flex-wrap: wrap; padding: 28px 20px; gap: 0; }
  .vm-landing-step { width: 50%; padding: 16px 10px; flex: none; }
  .vm-step-arrow { display: none; }
  .vm-highlight-banner { flex-direction: column; align-items: flex-start; padding: 24px; }
  .vm-highlight-left { gap: 14px; }
  .vm-feat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vm-feat-card { padding: 22px 16px; }
  .vm-btn--xl { padding: 14px 26px !important; font-size: 15px !important; }
  .vm-btn--ghost { padding: 14px 26px; font-size: 15px; }
}
@media(max-width:480px){
  .vm-landing-title { font-size: 28px; }
  .vm-feat-grid { grid-template-columns: 1fr 1fr; }
}


/* ── 약관 동의 ───────────────────────────────────────────────────────────── */
.vm-terms-wrap { max-width: 700px; margin: 0 auto; padding: 40px 24px; }
.vm-terms-box {
  background: var(--vm-white); border: 1px solid var(--vm-border);
  border-radius: 12px; padding: 32px;
}
.vm-terms-box h1 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.vm-terms-section { margin-bottom: 24px; }
.vm-terms-section h3 {
  font-size: 15px; font-weight: 600; margin-bottom: 8px;
  display: flex; align-items: center; justify-content: space-between;
}
.vm-terms-content {
  height: 160px; overflow-y: auto; border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius); padding: 16px; font-size: 13px;
  color: var(--vm-muted); line-height: 1.7; background: var(--vm-bg);
  white-space: pre-wrap;
}
.vm-terms-check { display: flex; align-items: center; gap: 10px; margin-top: 12px; cursor: pointer; font-size: 14px; }
.vm-terms-check input { width: 16px; height: 16px; cursor: pointer; accent-color: var(--vm-blue); }
.vm-terms-all { border-top: 1px solid var(--vm-border); padding-top: 20px; margin-top: 20px; }
.vm-terms-actions { display: flex; gap: 12px; margin-top: 28px; }

/* ── 신청폼 ──────────────────────────────────────────────────────────────── */
.vm-form-wrap  { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; }
.vm-form-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.vm-form-logo { width: 56px; height: 56px; object-fit: contain; border-radius: 8px; border: 1px solid var(--vm-border); background: var(--vm-white); padding: 6px; }
.vm-form-company { font-size: 18px; font-weight: 700; }
.vm-form-subtitle { font-size: 13px; color: var(--vm-muted); margin-top: 2px; }

.vm-section-card {
  background: var(--vm-white); border: 1px solid var(--vm-border);
  border-radius: 12px; padding: 28px; margin-bottom: 16px;
}
.vm-section-title {
  font-size: 16px; font-weight: 700; color: var(--vm-dark);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.vm-section-num {
  width: 24px; height: 24px; background: var(--vm-blue); color: #fff;
  border-radius: 50%; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vm-section-badge {
  background: var(--vm-bg); color: var(--vm-muted);
  font-size: 12px; padding: 2px 8px; border-radius: 10px;
  margin-left: auto;
}

/* 직원 검색 */
.vm-employee-search { position: relative; }
.vm-employee-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--vm-white); border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius); box-shadow: var(--vm-shadow-md);
  z-index: 50; max-height: 200px; overflow-y: auto; display: none;
}
.vm-employee-item {
  padding: 10px 14px; cursor: pointer; font-size: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.vm-employee-item:hover { background: var(--vm-bg); }
.vm-employee-item-name { font-weight: 500; }
.vm-employee-item-info { font-size: 12px; color: var(--vm-muted); }

/* 동행/반입 추가 */
.vm-add-row {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: var(--vm-bg); border: 1px dashed var(--vm-border);
  border-radius: var(--vm-radius); cursor: pointer; color: var(--vm-blue);
  font-size: 14px; font-weight: 500; margin-top: 12px;
}
.vm-add-row:hover { background: #eff6ff; border-color: var(--vm-blue); }
.vm-guest-row, .vm-item-row {
  background: var(--vm-bg); border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius); padding: 16px; margin-bottom: 10px;
}
.vm-row-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.vm-row-label { font-size: 13px; font-weight: 600; color: var(--vm-slate); }
.vm-remove-btn {
  width: 24px; height: 24px; border-radius: 50%; background: #fee2e2; color: var(--vm-red);
  border: none; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}

/* 미팅룸 */
.vm-room-slots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.vm-slot-btn {
  padding: 6px 14px; border-radius: 6px; font-size: 13px; cursor: pointer;
  border: 1px solid var(--vm-border); background: var(--vm-white); color: var(--vm-slate);
  transition: all .15s;
}
.vm-slot-btn.available:hover { border-color: var(--vm-blue); color: var(--vm-blue); background: #eff6ff; }
.vm-slot-btn.selected { background: var(--vm-blue); color: #fff; border-color: var(--vm-blue); }
.vm-slot-btn.taken    { background: var(--vm-bg); color: #cbd5e1; cursor: not-allowed; text-decoration: line-through; }
.vm-slot-btn.blocked  { background: #fef9c3; color: #92400e; cursor: not-allowed; border-color: #fcd34d; }

/* 제출 */
.vm-submit-wrap { margin-top: 24px; }
.vm-submit-note { font-size: 12px; color: var(--vm-muted); text-align: center; margin-top: 12px; }

/* 완료 화면 */
.vm-success-card {
  text-align: center; padding: 60px 24px;
  background: var(--vm-white); border: 1px solid var(--vm-border); border-radius: 12px;
}
.vm-success-icon {
  width: 64px; height: 64px; background: #d1fae5; border-radius: 50%;
  margin: 0 auto 20px; display: flex; align-items: center;
  justify-content: center; font-size: 28px; color: var(--vm-green);
}
.vm-success-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.vm-success-num {
  display: inline-block; background: var(--vm-bg); border: 1px solid var(--vm-border);
  padding: 8px 20px; border-radius: 6px; font-size: 18px; font-weight: 700;
  color: var(--vm-blue); margin: 16px 0;
}

/* ── 신청확인 ─────────────────────────────────────────────────────────────── */
.vm-check-wrap { max-width: 560px; margin: 0 auto; padding: 60px 24px; }
.vm-check-box  { background: var(--vm-white); border: 1px solid var(--vm-border); border-radius: 12px; padding: 40px; }
.vm-check-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.vm-check-desc  { font-size: 14px; color: var(--vm-muted); margin-bottom: 28px; }

.vm-request-cards { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.vm-request-card {
  border: 1px solid var(--vm-border); border-radius: 10px;
  padding: 20px; cursor: pointer; transition: border-color .15s;
}
.vm-request-card:hover { border-color: var(--vm-blue); }
.vm-request-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.vm-request-num { font-size: 13px; font-weight: 600; color: var(--vm-blue); }
.vm-request-info { font-size: 13px; color: var(--vm-muted); }
.vm-request-info span + span::before { content: ' · '; }
.vm-request-pass-btn { display: block; margin-top: 12px; }

/* ── 방문증 ──────────────────────────────────────────────────────────────── */
.vm-pass-wrap { max-width: 400px; margin: 0 auto; padding: 0 20px; }
.vm-pass-card {
  background: var(--vm-white); border: 1px solid var(--vm-border);
  border-radius: 16px; overflow: hidden; box-shadow: var(--vm-shadow-md);
}
.vm-pass-header { background: var(--vm-dark); padding: 24px; text-align: center; }
.vm-pass-company { font-size: 14px; color: #94a3b8; margin-bottom: 6px; }
.vm-pass-type    { font-size: 20px; font-weight: 700; color: #fff; }
.vm-pass-body    { padding: 28px; }
.vm-pass-name    { font-size: 28px; font-weight: 700; text-align: center; margin-bottom: 4px; }
.vm-pass-org     { text-align: center; color: var(--vm-muted); font-size: 14px; margin-bottom: 28px; }
.vm-pass-info    { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.vm-pass-row     { display: flex; justify-content: space-between; font-size: 14px; gap: 16px; }
.vm-pass-row dt  { color: var(--vm-muted); flex-shrink: 0; }
.vm-pass-row dd  { font-weight: 500; text-align: right; }
.vm-qr-area      { text-align: center; padding: 20px 0; }
.vm-qr-canvas    { border: 1px solid var(--vm-border); border-radius: 8px; padding: 12px; }
.vm-pass-arrived {
  margin: 0 28px 28px; padding: 14px;
  background: #eff6ff; border: 1px solid #bfdbfe;
  border-radius: 10px; text-align: center;
}
.vm-pass-arrived p   { font-size: 14px; color: var(--vm-blue); margin-bottom: 8px; }
.vm-pass-status-done { padding: 20px; text-align: center; color: var(--vm-muted); font-size: 14px; }

/* ── QR 검증 ─────────────────────────────────────────────────────────────── */
.vm-verify-wrap { max-width: 480px; margin: 0 auto; padding: 40px 24px; }
.vm-verify-card {
  background: var(--vm-white); border: 1px solid var(--vm-border);
  border-radius: 16px; padding: 32px; box-shadow: var(--vm-shadow-md);
}
.vm-verify-header { text-align: center; margin-bottom: 28px; }
.vm-verify-icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.vm-verify-icon--entry { background: #d1fae5; }
.vm-verify-icon--exit  { background: #fef3c7; }
.vm-verify-title { font-size: 20px; font-weight: 700; }
.vm-verify-info  { background: var(--vm-bg); border-radius: 10px; padding: 20px; margin-bottom: 20px; }
.vm-verify-name  { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.vm-verify-meta  { font-size: 13px; color: var(--vm-muted); }

/* ── 반응형 ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .vm-saas-wrap { flex-direction: column; }
  .vm-saas-left { padding: 40px 24px; }
  .vm-saas-headline { font-size: 26px; }
  .vm-saas-right { width: 100%; padding: 40px 24px; }
  .vm-row-2, .vm-row-3 { grid-template-columns: 1fr; }
  .vm-steps { flex-direction: column; }
  .vm-step + .vm-step::before { display: none; }
  .vm-hero { height: 240px; }
  .vm-section-card { padding: 20px; }
  .vm-terms-box  { padding: 20px; }
  .vm-form-wrap  { padding: 24px 16px 60px; }
  .vm-check-box  { padding: 28px 20px; }
}

/* ── 로딩 스피너 ──────────────────────────────────────────────────────────── */
#vm-slot-modal { display: none; }
#vm-slot-modal.open { display: flex; }
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff; border-radius: 50%;
  animation: vm-spin .6s linear infinite; display: inline-block;
}
@keyframes vm-spin { to { transform: rotate(360deg); } }

/* ── 로고 전체 표시 (텍스트 없이 로고만 사용 시) ─────────────────────────── */
.vm-form-logo--only {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  border-radius: 8px;
  border: none;
  background: transparent;
  padding: 0;
}
.vm-landing-nav-logo {
  height: auto;
  max-height: 40px;
  max-width: 140px;
  width: 100%;
  object-fit: contain;
}

/* ── 방문증 하단 정보 ─────────────────────────────────────────────────────── */
.vm-pass-info-bottom {
  border-top: 1px solid var(--vm-border);
  padding: 20px 28px 24px;
  margin-top: 20px;
}
.vm-pass-info-bottom .vm-pass-info {
  margin-bottom: 0;
}
