/* Smart Contact Kit — public showroom demo card (visitor view) */
.mms-sck-showroom-page {
    --bg: #f4f1ec;
    --ink: #1a1f2b;
    --muted: #5c6478;
    --accent: #1e4a6f;
    --accent-soft: #e8f0f6;
    --line: #e3ddd4;
    --radius: 14px;
    margin: 0;
    font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}
.mms-sck-showroom-page * { box-sizing: border-box; }
.mms-sck-showroom-banner {
    background: linear-gradient(135deg, #1a1f2b 0%, #1e4a6f 100%);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    letter-spacing: 0.02em;
}
.mms-sck-showroom-banner strong { font-weight: 650; }
.mms-sck-showroom-wrap { max-width: 520px; margin: 0 auto; padding: 20px 18px 32px; }
.mms-sck-showroom-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 14px 36px rgba(26, 31, 43, 0.08);
}
.mms-sck-showroom-card h1 { margin: 0 0 6px; font-size: 26px; font-weight: 650; }
.mms-sck-showroom-meta { color: var(--muted); margin: 0 0 14px; font-size: 15px; }
.mms-sck-showroom-pitch {
    margin: 0 0 16px;
    padding: 12px 14px;
    background: var(--accent-soft);
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: #2c3e50;
}
.mms-sck-showroom-steps {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}
.mms-sck-showroom-steps li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.mms-sck-showroom-steps span.num {
    flex: 0 0 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mms-sck-showroom-actions { display: grid; gap: 10px; margin-top: 8px; }
.mms-sck-showroom-desktop-hint {
    display: none;
    margin: 0;
    padding: 10px 12px;
    background: #f6f7f7;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
    font-weight: 400;
}
@media (min-width: 769px) {
    .mms-sck-showroom-desktop-hint {
        display: block;
    }
}
.mms-sck-showroom-btn {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.mms-sck-showroom-btn-primary { background: var(--accent); color: #fff; }
.mms-sck-showroom-btn-secondary {
    background: #f6f7f7;
    color: var(--ink);
    border: 1px solid var(--line);
}
.mms-sck-showroom-footer {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
}
.mms-sck-showroom-footer a { color: var(--accent); font-weight: 600; text-decoration: none; }
.mms-sck-showroom-logo-mark {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 16px;
    background: linear-gradient(145deg, #1e4a6f, #2d6a9f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
}
.mms-sck-showroom-logo-img {
    display: block;
    max-width: min(220px, 78vw);
    height: auto;
    margin: 0 auto 14px;
    object-fit: contain;
}
