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

:root {
    --bg: #ffffff;
    --bg2: #f7f7f7;
    --bg3: #efefef;
    --text: #1a1a1a;
    --text-muted: #888;
    --accent: #e040fb;
    --accent2: #f06292;
    --accent-light: rgba(224,64,251,0.08);
    --border: rgba(0,0,0,0.08);
    --radius: 12px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
    min-height: 100vh;
    line-height: 1.6;
}

/* NAV */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    z-index: 100;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: var(--text);
    letter-spacing: -0.3px;
}

.nav-logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--text);
        }

        .nav-links a.active {
            font-weight: 500;
        }

/* MAIN */
main {
    max-width: 960px;
    margin: 0 auto;
    padding: 56px 32px 80px;
}

/* PAGE HEADER */
.page-header {
    margin-bottom: 48px;
    animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header h1 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.8px;
    margin-bottom: 8px;
}

.page-header h2 {
    animation: fadeUp 0.5s 0.2s ease both;
}

.page-header p {
    color: var(--text-muted);
    font-size: 15px;
}


/* aside */
.side-panel {
    position: fixed;
    left: 80px;
    top: 55%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 50px 16px;
    z-index: 99;
    width: 200px;
}

.side-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.side-label {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 4px;
}


.side-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
}

.side-lang {
    display: flex;
    flex-direction: row; /* 가로 배치 */
    gap: 4px;
    width: 100%;
    justify-content: center;
}

    .side-lang .lang-btn {
        flex: 1;
        padding: 8px 0;
        font-size: 13px;
        border-radius: 6px;
    }


.side-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 12px 0;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: border-color 0.2s, color 0.2s;
    text-align: center;
}

    .side-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

/* 사이드패널이 있으므로 main 왼쪽 여백 확보 */
main {
    padding-left: 130px;
}


/* Process */
.process-flow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
    animation: fadeUp 0.5s 0.1s ease both;
}

.process-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--text);
    border-color: rgb(224 64 251);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
}

.process-arrow {
    font-size: 24px;
    color: var(--text);
}

/* STATUS BADGE */
.status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s 0.05s ease both;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 500;
}

    .status-badge.open {
        background: rgba(34,197,94,0.1);
        color: #16a34a;
    }

        .status-badge.open::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #22c55e;
            animation: pulse 2s infinite;
        }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.status-badge.closed {
    background: rgba(239,68,68,0.1);
    color: #dc2626;
}

.status-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* TIERS */
.tier-card-wide {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 16px;
    animation: fadeUp 0.5s 0.05s ease both;
}

.tier-card-info {
    min-width: 160px;
    flex-shrink: 0;
}

.tier-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.tier-price-list p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.tier-price-list strong {
    color: var(--text);
}

.tier-card-images {
    display: flex;
    gap: 12px;
    flex: 1;
}

    .tier-card-images img {
        flex: 1;
        height: 300px;
        width: 210px;
        object-fit: cover;
        border-radius: 10px;
    }

.tier-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 99px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.tier-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.tier-price {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
}

    .tier-price span {
        font-size: 16px;
        font-weight: 400;
        color: var(--text-muted);
        letter-spacing: 0;
    }

.tier-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tier-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

    .tier-features li {
        font-size: 13px;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .tier-features li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 600;
            font-size: 12px;
            flex-shrink: 0;
        }

        .tier-features li.no::before {
            content: '✕';
            color: var(--text-muted);
        }

        .tier-features li.no {
            color: var(--text-muted);
        }

.tier-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.tier-tab {
    padding: 10px 28px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    animation: fadeUp 0.5s 0.1s ease both;
}

    .tier-tab.active {
        background: var(--accent);
        border-color: var(--accent);
        color: #fff;
    }

    .tier-tab:hover:not(.active) {
        border-color: var(--accent);
        color: var(--accent);
    }

.btn-tier {
    width: 100%;
    padding: 11px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

    .btn-tier.outline {
        background: transparent;
        border: 1px solid var(--border);
        color: var(--text);
    }

        .btn-tier.outline:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

    .btn-tier.filled {
        background: var(--accent);
        border: none;
        color: #fff;
    }

        .btn-tier.filled:hover {
            opacity: 0.88;
            transform: translateY(-1px);
        }

/* INFO SECTION */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeUp 0.5s 0.15s ease both;
}

.info-card {
    background: var(--bg2);
    border-radius: var(--radius);
    padding: 24px;
}

    .info-card h3 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .info-card ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .info-card li {
        font-size: 13px;
        color: var(--text-muted);
        padding-left: 14px;
        position: relative;
        line-height: 1.5;
    }

        .info-card li::before {
            content: '·';
            position: absolute;
            left: 0;
            color: var(--accent);
        }

/* FILE BTN */
.file-upload-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg2);
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 10px 14px;
}

.file-btn {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.2s;
}

    .file-btn:hover {
        border-color: var(--accent);
    }

.file-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* LANGUAGE */
.lang-switcher {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    font-family: inherit;
}

    .lang-btn.active {
        border-color: var(--accent);
        color: var(--accent);
    }

/* FORM */
.form-section {
    animation: fadeUp 0.5s 0.2s ease both;
}

    .form-section h2 {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: -0.4px;
        margin-bottom: 24px;
        animation: fadeUp 0.5s 0.2s ease both;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group.full {
        grid-column: 1 / -1;
    }

input[type="file"] {
    background: var(--bg2);
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text-muted);
    width: 100%;
    cursor: pointer;
}

    input[type="file"]:hover {
        border-color: var(--accent);
    }

.file-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

input, select, textarea {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

    input:focus, select:focus, textarea:focus {
        border-color: var(--accent);
    }

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 13px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    font-family: inherit;
}

    .btn-submit:hover {
        opacity: 0.88;
        transform: translateY(-1px);
    }

.form-note {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 32px;
    color: var(--text-muted);
    font-size: 13px;
    border-top: 1px solid var(--border);
}

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

:root {
    --bg: #ffffff;
    --bg2: #f7f7f7;
    --bg3: #efefef;
    --text: #1a1a1a;
    --text-muted: #888;
    --accent: #e040fb;
    --accent2: #f06292;
    --accent-light: rgba(224,64,251,0.08);
    --border: rgba(0,0,0,0.08);
    --radius: 12px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', 'Noto Sans KR', sans-serif;
    min-height: 100vh;
    line-height: 1.6;
}

/* NAV */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgb(255 255 255 / 92%);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.3px;
    font-family: bold;
}

.nav-logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--text);
        }

/* top Button*/
#top-btn {
    position: fixed;
    bottom: 30px;
    justify-self: right;
    right: 30px;
    width: 120px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid #00000080;
    background: rgb(255 255 255 / 30%);
    font-size: 15px;
    color: #000000;
    padding: 0px;
    cursor: pointer;
    display: none; /* 처음엔 숨김 */
    z-index: 9999;
}

    #top-btn:hover {
        background: rgba(0, 0, 0, 0.1);
    }

/* MAIN LAYOUT */
main {
    max-width: 960px;
    margin: 0 auto;
    padding: 56px 32px 80px;
}

/* HERO */
.hero {
    display: block;
    gap: 52px;
    align-items: center;
    margin-bottom: 64px;
    animation: fadeUp 0.6s ease both;
    justify-items: center;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image {
    width: 300px;
    max-height: 300px;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg3);
    position: relative;
    border-radius: 50%;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* placeholder gradient when no image */
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}

.hero-info {
    animation: fadeUp 0.6s 0.1s ease both;
    justify-items: center;
    text-align: center;
}

.hero-name {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.8px;
    margin-bottom: 6px;
    font-family: 'Noto Sans KR', sans-serif;
}

.hero-title {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 14px;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 400px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    font-family: inherit;
}

    .btn-primary:hover {
        opacity: 0.85;
        transform: translateY(-1px);
    }

.btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    font-family: inherit;
}

    .btn-secondary:hover {
        border-color: rgba(255,255,255,0.3);
        color: var(--text);
    }

.hero-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

    .social-icon:hover {
        border-color: var(--accent);
        background: rgba(224,64,251,0.08);
        color: var(--accent);
    }
/* NOTICE */
.notice {
    animation: fadeUp 0.6s 0.2s ease both;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
}

.notice-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .notice-list li {
        font-size: 14px;
        color: #6e6e6e;
        line-height: 1.6;
        padding-left: 16px;
        position: relative;
    }

        .notice-list li::before {
            content: '\00B7';
            position: absolute;
            left: 0;
            color: var(--text-muted);
        }

/* STATUS BADGE (nav용) */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 500;
}

    .status-badge.open {
        background: rgba(34,197,94,0.12);
        color: #16a34a;
        border: 1px solid rgba(34,197,94,0.3);
    }

        .status-badge.open::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #22c55e;
            animation: pulse 2s infinite;
        }

    .status-badge.closed {
        background: rgba(239,68,68,0.12);
        color: #dc2626;
        border: 1px solid rgba(239,68,68,0.3);
    }

/* wait */
.wait-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.wait-icon {
    font-size: 25px;
}

    .wait-icon.active {
        color: #22c55e;
    }

    .wait-icon.inactive {
        opacity: 0.2;
    }

.wait-extra {
    font-size: 13px;
    font-weight: 600;
    color: #22c55e;
    margin-left: 2px;
}

/* radio */
.radio-group {
    display: flex;
    gap: 12px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: border-color 0.2s;
}

    .radio-item:has(input:checked) {
        border-color: var(--accent);
        color: var(--accent);
    }

    .radio-item input[type="radio"] {
        display: none;
    }

.file-upload-area {
    background: var(--bg2);
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    min-height: 60px;
}

.file-add-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px dashed var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

    .file-add-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

.file-preview-item {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

    .file-preview-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.file-preview-remove {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
/* Modal */
/* 모달 배경 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

    /* 모달 열렸을 때 */
    .modal-overlay.active {
        display: flex;
    }

    /* 모달 이미지 */
    .modal-overlay img {
        max-width: 90%;
        max-height: 100vh;
        object-fit: contain;
    }

/* 닫기 버튼 */
.modal-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

/* =====================
   MOBILE (768px 이하)
   ===================== */
@media (max-width: 1024px) {

    /* NAV */
    nav {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nav-logo {
        font-size: 13px;
    }

    .nav-links {
        display: none; /* 모바일에서 nav 링크 숨김 */
    }

    .nav-right {
        display: none; /* 대기 인원 nav에서 숨김 - 사이드패널로 표시 */
    }

    .lang-switcher {
        position: static;
        transform: none;
    }

    /* SIDE PANEL → 하단 고정 바로 변환 */
    .side-panel {
        position: fixed;
        left: 0;
        right: 0;
        top: 90%;
        bottom: 0;
        transform: none;
        width: 100%;
        border-radius: 16px 16px 0 0;
        flex-direction: row;
        justify-content: space-around;
        padding: 12px 16px;
        gap: 8px;
        z-index: 200;
    }

    .side-divider {
        display: none;
    }

    .side-item {
        gap: 4px;
    }

    .side-label {
        font-size: 10px;
    }

    .side-lang {
        flex-direction: row;
        gap: 3px;
    }

        .side-lang .lang-btn {
            padding: 3px 6px;
            font-size: 10px;
        }

    .side-btn {
        padding: 6px 1px;
        font-size: 8px;
    }

    /* MAIN 여백 조정 */
    main {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 100px; /* 하단 사이드패널 공간 확보 */
        max-width: 100%;
    }

    /* HERO */
    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .hero h1 {
        font-size: 25px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .hero a {
        font-size: 14px;
    }

    .hero-image {
        width: 160px;
        height: 160px;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-social {
        justify-content: center;
    }

    /* PROCESS FLOW */
    .process-flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .process-circle {
        width: 72px;
        height: 72px;
        font-size: 11px;
    }

    .process-arrow {
        font-size: 16px;
    }

    /* TIER TABS */
    .tier-tabs {
        justify-content: center;
    }

    /* TIER CARD */
    .tier-card-wide {
        flex-direction: column;
        padding: 20px 16px;
        gap: 20px;
    }

    .tier-card-info {
        width: 100%;
        min-width: unset;
        text-align: center;
    }

    .tier-card-images {
        width: 100%;
        overflow-x: auto;
        gap: 8px;
    }

        .tier-card-images img {
            min-height: 300px;
            height: 150px;
            width: 80px;
            flex-shrink: 0;
        }

    /* INFO GRID */
    .info-grid {
        grid-template-columns: 1fr;
    }

    /* FORM */
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: 1;
    }

    .radio-group {
        flex-wrap: wrap;
    }

    .form-submit {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-submit {
        width: 100%;
        text-align: center;
    }

    /* NOTICE */
    .notice {
        padding: 20px 16px;
    }

    /* FOOTER */
    footer {
        padding-bottom: 100px; /* 하단 사이드패널 공간 확보 */
    }

    #top-btn {
        width: 90px;
        font-size: 12px;
        bottom: 100px;
    }

    .status-badge {
        padding: 3px 8px;
        font-size: 12px;
    }

    .wait-icon {
        font-size: 12px;
    }

    .wait-extra {
        font-size: 8px;
    }

    /* MODAL 이미지 */
    .modal-overlay img {
        max-width: 95vw !important;
        max-height: 85vh !important;
    }
}
