/* ═══════════════════════════════════════
   MPLATS V2 — 공통 Footer (컴팩트)
   적용 페이지: /v2/pricing, /v2/checkout,
              /v2/company, /v2/terms,
              /v2/privacy, /v2/refund 등
   ═══════════════════════════════════════ */

/* Placeholder 페이지 전용 body reset */
body.v2-policy-body {
    margin: 0;
    padding: 0;
}

.v2-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 16px 24px;
    font-family: 'Pretendard', -apple-system, 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    box-sizing: border-box;
}
.v2-footer * { box-sizing: border-box; }

.v2-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
}

.v2-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 4px;
    width: 100%;
}
.v2-footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color .15s;
}
.v2-footer-links a:hover {
    color: #ffffff;
}
.v2-footer-links a.emphasis {
    color: #f8fafc;
    font-weight: 700;
}

.v2-footer-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 12px;
}
.v2-footer-meta a {
    color: #94a3b8;
    text-decoration: none;
}
.v2-footer-meta a:hover { color: #cbd5e1; }
.v2-footer-company {
    color: #f1f5f9;
    font-weight: 600;
}
.v2-footer-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #475569;
    display: inline-block;
}
.v2-footer-addr {
    color: #64748b;
    font-size: 11px;
}

/* Placeholder 페이지 (STEP 2~4 완료 전 임시) */
.policy-placeholder {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    font-family: 'Pretendard', -apple-system, 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    background: #f8fafc;
}
.policy-placeholder h1 {
    font-size: 28px;
    color: #0f172a;
    margin: 0 0 12px;
    font-weight: 800;
}
.policy-placeholder p {
    color: #64748b;
    margin: 0 0 24px;
    font-size: 14px;
}
.policy-placeholder a {
    color: #6d28d9;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border: 1px solid #6d28d9;
    border-radius: 8px;
    transition: background .15s, color .15s;
}
.policy-placeholder a:hover {
    background: #6d28d9;
    color: #ffffff;
}

@media (max-width: 768px) {
    .v2-footer {
        padding: 12px 16px;
        font-size: 11px;
    }
    .v2-footer-links {
        gap: 10px;
    }
    .v2-footer-meta {
        gap: 6px;
        font-size: 11px;
    }
    .policy-placeholder h1 {
        font-size: 22px;
    }
}
