:root {
    --bg: #faf6f0;
    --surface: #ffffff;
    --surface-warm: #f3ebe0;
    --brown: #3d2b1f;
    --brown-mid: #5c4033;
    --orange: #e87722;
    --green: #2e7d4f;
    --green-soft: #e8f5ec;
    --text: #1f1a17;
    --muted: #6b6560;
    --border: #e8e0d5;
    --shadow: 0 8px 32px rgba(61, 43, 31, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --error: #c0392b;
    --primary: var(--brown);
    --primary-hover: #2a1e15;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Noto Sans KR", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}

a { color: var(--brown-mid); text-decoration: none; }
a:hover { color: var(--orange); }

.container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

/* ── Header ── */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text);
    text-decoration: none;
}

.brand:hover { color: var(--text); }

.brand-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    gap: 0.05rem;
}

.brand-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.brand-text .brand-en {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
}

.brand-text small {
    font-size: 0.68rem;
    color: #9a928a;
    font-weight: 400;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem 1rem;
    flex-wrap: wrap;
}

.site-nav a {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
}

.site-nav a:hover { color: var(--brown); }

.site-nav a.nav-admin {
    color: var(--brown);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.4rem 0.65rem;
    font-size: 1.2rem;
    cursor: pointer;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 0.75rem 1.35rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    transition: transform 0.15s, background 0.15s;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
    background: var(--brown);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff;
}

.btn-secondary, .btn-outline {
    background: var(--surface);
    border-color: var(--border);
    color: var(--brown);
}

.btn-secondary:hover, .btn-outline:hover {
    border-color: var(--brown);
    color: var(--brown);
}

.btn-green {
    background: var(--green);
    color: #fff;
}

.btn-green:hover { background: #256b3f; color: #fff; }

.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.85rem; }

.btn-block { display: block; width: 100%; text-align: center; }

/* ── Hero ── */
.hero {
    padding: 3rem 0 2.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.25;
    margin: 0.5rem 0 1rem;
    color: var(--brown);
}

.eyebrow {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

.lead { color: var(--muted); font-size: 1.05rem; max-width: 540px; }

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-visual {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.hero-card-dark {
    background: var(--brown);
    color: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.hero-card-dark h3 { margin: 0 0 0.5rem; font-size: 0.95rem; opacity: 0.85; }

.hero-stat {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.hero-stat small { font-size: 0.9rem; font-weight: 500; opacity: 0.8; }

.hero-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.mini-card {
    background: var(--surface-warm);
    border-radius: var(--radius-sm);
    padding: 0.85rem;
    font-size: 0.85rem;
}

.mini-card strong { display: block; color: var(--green); font-size: 1.1rem; }

/* ── Tabs (랜딩) ── */
.tab-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0 1rem;
}

.tab-pill {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    cursor: default;
}

.tab-pill.active {
    background: var(--brown);
    color: #fff;
    border-color: var(--brown);
}

/* ── Sections ── */
.section {
    padding: 3.5rem 0;
}

.section-alt { background: var(--surface-warm); }

.section h2 {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    color: var(--brown);
}

.section-desc {
    color: var(--muted);
    margin-bottom: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem;
    box-shadow: var(--shadow);
}

.card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--brown);
}

.card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--green-soft);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-dark {
    background: var(--brown);
    color: #fff;
    border: none;
}

.card-dark h3, .card-dark p { color: #fff; }
.card-dark p { opacity: 0.85; }

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.compare-table th,
.compare-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 0.92rem;
}

.compare-table th {
    background: var(--surface-warm);
    color: var(--brown);
    font-weight: 600;
}

.compare-table tr:last-child td { border-bottom: none; }

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    counter-reset: step;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    position: relative;
}

.step-card::before {
    counter-increment: step;
    content: counter(step);
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
}

.cta-band {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    margin: 2rem 0;
}

.cta-band h2 { color: #fff; margin-top: 0; }
.cta-band p { opacity: 0.9; }

/* ── FAQ accordion ── */
.faq-list { display: grid; gap: 0.75rem; }

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
}

.faq-item h3 {
    margin: 0 0 0.35rem;
    font-size: 0.98rem;
    color: var(--brown);
}

.faq-item p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.faq-answer {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.faq-answer p { margin: 0 0 0.5rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ── Auth pages ── */
.auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card {
    width: min(520px, 100%);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.auth-card--wide {
    width: min(720px, 100%);
}

.auth-page--container {
    display: block;
    padding: 2rem 0 3rem;
}

.auth-page--container .auth-card {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.auth-card h1 {
    margin: 0 0 0.5rem;
    color: var(--brown);
    font-size: 1.5rem;
}

.auth-desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.25rem; }

.auth-card label {
    display: block;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
}

.auth-card input,
.auth-card select,
.auth-card textarea {
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font-family: inherit;
}

.mypage-form label { display: block; margin-bottom: 0.85rem; font-size: 0.9rem; }
.mypage-form input { width: 100%; margin-top: 0.35rem; padding: 0.65rem 0.75rem; border-radius: var(--radius-sm); border: 1px solid var(--border); background: #fff; color: var(--text); }
.mypage-form .btn { margin-top: 0.25rem; }

.errors {
    background: #fdecea;
    border: 1px solid #f5c6cb;
    color: var(--error);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    list-style: none;
}

.flash.ok {
    background: var(--green-soft);
    border: 1px solid #b8dfc8;
    color: var(--green);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.info-list {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 0.5rem 1rem;
    font-size: 0.92rem;
}

.info-list dt { color: var(--muted); }
.auth-foot { margin-top: 1rem; font-size: 0.9rem; }

.hint {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0.5rem 0 1rem;
}

/* ── Page layout ── */
.page-head {
    padding: 2.5rem 0 1.5rem;
}

.page-head-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-head-inner .icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
}

.page-head-text h1 {
    margin: 0;
    color: var(--brown);
    font-size: 1.85rem;
}

.page-head h1 {
    margin: 0;
    color: var(--brown);
    font-size: 1.85rem;
}

.page-head p,
.page-head-text p { color: var(--muted); margin: 0.35rem 0 0; }

.auth-head {
    text-align: center;
    margin-bottom: 1.25rem;
}

.auth-head .icon-box {
    margin: 0 auto 0.75rem;
    display: inline-flex;
}

.auth-head h1 {
    margin: 0 0 0.35rem;
}

.content-panel-icon-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.content-panel-icon-head h2 {
    margin: 0;
}

.community-block-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.community-block-head h3 {
    margin: 0;
}

.community-block-head .icon-box {
    margin-bottom: 0;
}

.bbs-side-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
}

.bbs-side-ico {
    flex-shrink: 0;
}

.faq-item-head {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.35rem;
}

.faq-cat-ico {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.img-ph-title {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.img-ph-ico {
    flex-shrink: 0;
}

.panel-subhead {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    color: var(--brown);
}

.panel-sub-ico {
    flex-shrink: 0;
}

.page-body { padding-bottom: 3rem; }

.content-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.content-panel h2 {
    margin-top: 0;
    color: var(--brown);
    font-size: 1.15rem;
}

.content-panel ul, .content-panel ol { padding-left: 1.25rem; color: var(--muted); }

/* ── BBS ── */
.bbs-layout { display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem; align-items: start; }

.bbs-side {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}

.bbs-side a {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.bbs-side a.active,
.bbs-side a:hover {
    background: var(--surface-warm);
    color: var(--brown);
    font-weight: 600;
}

.bbs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.bbs-table th,
.bbs-table td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.bbs-table th { color: var(--muted); font-weight: 600; background: var(--surface-warm); }

.bbs-table .notice-row { font-weight: 600; color: var(--brown); }

.bbs-view-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    color: var(--brown);
}

.bbs-notice-ico {
    flex-shrink: 0;
}

.community-block-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.community-block-top .community-block-head {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
}

.bbs-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bbs-view-meta {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.bbs-view-body {
    min-height: 200px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.bbs-view-body img {
    max-width: 100%;
    height: auto;
}

.bbs-view-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.bbs-view-body th,
.bbs-view-body td {
    border: 1px solid var(--border);
    padding: 0.5rem 0.65rem;
}

.bbs-write-card {
    width: min(920px, 100%);
}

.form-stack label {
    display: block;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
}

.form-stack input[type="text"],
.form-stack input[type="email"],
.form-stack input[type="password"],
.form-stack input[type="url"],
.form-stack select,
.form-stack textarea {
    display: block;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font-family: inherit;
    box-sizing: border-box;
}

.form-stack .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-stack .form-check input {
    width: auto;
    margin: 0;
}

.bbs-write-panel .hero-actions {
    margin-top: 1rem;
}

.message-layout {
    grid-template-columns: 1fr min(360px, 100%);
}

.message-aside h3 {
    margin-top: 0;
    font-size: 1.05rem;
    color: var(--brown);
}

.message-view-body {
    margin: 1rem 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.message-compose textarea {
    min-height: 10rem;
    resize: vertical;
}

.nav-switch-back {
    color: #b45309 !important;
    font-weight: 600;
    border: 1px solid #f59e0b;
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-sm);
}

.editor-responsive-wrap {
    margin-top: 0.35rem;
    overflow-x: auto;
}

.bbs-comments h3 { font-size: 1rem; color: var(--brown); }

.bbs-comment {
    border-top: 1px solid var(--border);
    padding: 0.85rem 0;
    font-size: 0.92rem;
}

.bbs-comment-meta { color: var(--muted); font-size: 0.82rem; margin-bottom: 0.25rem; }

.bbs-pager { display: flex; gap: 0.35rem; margin-top: 1rem; flex-wrap: wrap; }

.bbs-pager a {
    padding: 0.35rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.85rem;
}

.bbs-pager a.active {
    background: var(--brown);
    color: #fff;
    border-color: var(--brown);
}

.community-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.community-block h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--brown);
}

.community-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.community-block li {
    padding: 0.45rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.88rem;
}

.community-block li a { color: var(--text); }
.community-block .meta { color: var(--muted); font-size: 0.78rem; }

.badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 0.72rem;
    padding: 0.1rem 0.45rem;
    border-radius: 4px;
    margin-right: 0.35rem;
}

/* ── Footer ── */
.site-footer {
    background: var(--brown);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}

.site-footer a { color: rgba(255, 255, 255, 0.85); }
.site-footer a:hover { color: #fff; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2rem;
}

.footer-logo-long {
    max-width: 240px;
    height: auto;
    display: block;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
}

.footer-brand-link:hover { color: #fff; opacity: 0.95; }

.footer-logo-icon {
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.footer-brand-text strong {
    font-size: 1rem;
    color: #fff;
}

.footer-brand-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-brand-text small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-bottom .disclaimer {
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 52rem;
    margin: 0 auto 1rem;
}

.cms-content h2 {
    margin-top: 1.5rem;
    color: var(--brown);
}

.cms-content h2:first-child { margin-top: 0; }

.cms-content .legal-emphasis {
    background: var(--surface-warm);
    border-left: 4px solid var(--orange);
    padding: 1rem 1.1rem;
    border-radius: 0 8px 8px 0;
}

.legal-band-inner {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.legal-band-inner h2 { color: var(--brown); }

.pricing-table .small { font-size: 0.82rem; }

.row-current { background: rgba(232, 120, 48, 0.08); }

.upgrade-form label,
.upgrade-form-panel label {
    display: block;
    margin-bottom: 0.75rem;
}

.upgrade-form select,
.upgrade-form input[type="text"] {
    width: 100%;
    max-width: 360px;
    margin-top: 0.25rem;
}

.preview-box {
    background: var(--surface-warm);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
}

/* ── Upgrade / Checkout ── */
.upgrade-current h2 { margin-top: 0; }

.upgrade-info-grid { max-width: 36rem; }

.text-ok { color: var(--green); font-weight: 600; }
.text-warn { color: var(--orange); font-weight: 600; }

.checkout-grid {
    display: grid;
    gap: 1rem;
    max-width: 32rem;
}

.checkout-grid .label-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--brown);
}

.checkout-grid select,
.checkout-grid input[type="text"] {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
}

.pay-method-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.pay-method-option {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    cursor: pointer;
}

.pay-method-card {
    flex: 1;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    transition: border-color 0.2s, background 0.2s;
}

.pay-method-option input:checked + .pay-method-card {
    border-color: var(--orange);
    background: #fff8f3;
}

.pay-method-card strong { display: block; color: var(--brown); }
.pay-method-card small { color: var(--muted); font-size: 0.82rem; }

.price-summary {
    background: var(--surface-warm);
    border-radius: var(--radius-sm);
    padding: 1rem 1.15rem;
}

.price-lines { list-style: none; padding: 0; margin: 0; }
.price-lines li { padding: 0.25rem 0; }
.price-lines .price-total {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border);
    font-size: 1.1rem;
    color: var(--brown);
}

.bank-box {
    background: #fff8f3;
    border: 2px solid var(--orange);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
}

.bank-box dl {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 0.5rem 1rem;
    margin: 0;
}

.bank-box dt { color: var(--muted); font-weight: 600; }
.bank-box .pay-amount { font-size: 1.35rem; color: var(--orange); font-weight: 800; }
.order-no { font-size: 1.05rem; letter-spacing: 0.02em; }

.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }

.card-pg-box {
    background: var(--surface-warm);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-top: 1rem;
}

.card-muted { opacity: 0.92; }
.badge-soon {
    display: inline-block;
    background: var(--muted);
    color: #fff;
    font-size: 0.72rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

/* ── Manual ── */
.manual-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding: 0 0 1.25rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.5rem;
}

.manual-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
}

.manual-nav a:hover { color: var(--orange); }

.manual-body .manual-section { margin-bottom: 1.5rem; }
.manual-section h2 { margin-top: 0; color: var(--brown); }
.manual-section h3 { font-size: 1rem; color: var(--brown-mid); margin: 1.25rem 0 0.5rem; }

.manual-figure {
    margin: 1.25rem 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.manual-figure img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.manual-figure figcaption {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.4rem;
    text-align: center;
}

.img-placeholder {
    background: repeating-linear-gradient(
        -45deg,
        var(--surface-warm),
        var(--surface-warm) 10px,
        #ebe3d8 10px,
        #ebe3d8 20px
    );
    border: 2px dashed var(--orange);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: center;
}

.img-ph-title { font-weight: 700; color: var(--brown); margin: 0 0 0.5rem; }
.img-ph-guide { color: var(--muted); font-size: 0.88rem; margin: 0.5rem 0 0; max-width: 28rem; margin-inline: auto; }

.manual-image-list code { font-size: 0.8rem; word-break: break-all; }

.manual-callout {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
    font-size: 0.92rem;
    line-height: 1.65;
}

.manual-callout--warn {
    background: #fff8f0;
    border: 1px solid rgba(232, 119, 34, 0.35);
    color: var(--brown);
}

.manual-callout--info {
    background: #f3faf5;
    border: 1px solid rgba(46, 125, 79, 0.25);
    color: var(--brown);
}

.manual-callout strong { color: var(--brown); }

.manual-steps {
    counter-reset: manual-step;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.manual-steps > li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2.5rem;
    border-bottom: 1px dashed var(--border);
}

.manual-steps > li:last-child { border-bottom: none; }

.manual-steps > li::before {
    counter-increment: manual-step;
    content: counter(manual-step);
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manual-option-list {
    margin: 0.75rem 0;
    padding-left: 1.1rem;
}

.manual-option-list li {
    margin: 0.35rem 0;
    color: var(--muted);
    line-height: 1.6;
}

.manual-option-list li strong { color: var(--brown); }

.manual-preset-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.manual-preset-tag {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--surface-warm);
    color: var(--orange);
    border: 1px solid rgba(232, 119, 34, 0.25);
}

.manual-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.75rem 0 1rem;
}

.manual-subnav a {
    font-size: 0.82rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: var(--surface-warm);
    color: var(--brown-mid);
    font-weight: 600;
}

.dev-type-fieldset {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem 1rem;
    margin: 0 0 1rem;
}

.dev-type-fieldset legend {
    font-weight: 600;
    color: var(--brown);
    padding: 0 0.35rem;
}

.dev-type-fieldset .checkbox-inline {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0.35rem 0;
    font-size: 0.92rem;
}

.dev-inquiry-form textarea {
    width: 100%;
    padding: 0.65rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    resize: vertical;
}

.dev-inquiry-form label {
    display: block;
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brown-mid);
}

.dev-inquiry-form input[type="text"] {
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.manual-subnav a:hover {
    background: rgba(232, 119, 34, 0.12);
    color: var(--orange);
}

.condition-card .condition-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.condition-card .condition-head h3 { margin: 0; }

.badge-paid {
    background: var(--orange);
    white-space: nowrap;
}

.condition-tags {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.condition-tags li {
    font-size: 0.78rem;
    background: var(--surface-warm);
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    color: var(--brown-mid);
}

.condition-hook {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--green);
}

.footer-grid h4 {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: #fff;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid li { margin-bottom: 0.4rem; font-size: 0.88rem; }

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.82rem;
    text-align: center;
}

.disclaimer {
    max-width: 720px;
    margin: 0 auto 0.75rem;
    opacity: 0.75;
    line-height: 1.5;
}

.muted { color: var(--muted); }

/* ══════════════════════════════════════════
   Landing — 아이콘 · 모션 · 역동적 UI
   ══════════════════════════════════════════ */

.page-landing .site-header {
    transition: box-shadow 0.3s, background 0.3s;
}

.page-landing.landing-ready .site-header {
    box-shadow: 0 4px 24px rgba(61, 43, 31, 0.06);
}

/* ── Flaticon PNG 아이콘 ── */
.ui-icon {
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

img.ui-icon {
    max-width: 100%;
    height: auto;
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0.45rem;
    border-radius: 16px;
    margin-bottom: 0.85rem;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 14px rgba(61, 43, 31, 0.06);
}

.icon-box .ui-icon {
    width: 100%;
    height: 100%;
}

.icon-box--green  { background: #f3faf5; border: 1px solid rgba(46, 125, 79, 0.12); }
.icon-box--orange { background: #fff7f0; border: 1px solid rgba(232, 119, 34, 0.14); }
.icon-box--brown  { background: #faf6f1; border: 1px solid rgba(92, 64, 51, 0.12); }

.card-interactive:hover .icon-box,
.type-card:hover .ui-icon,
.step-card:hover .icon-box {
    transform: scale(1.06) rotate(-2deg);
}

.btn-ico, .ticker-ico, .eyebrow-ico {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.35rem;
}

.mini-card .ui-icon {
    margin-bottom: 0.15rem;
}

.type-card .ui-icon {
    margin: 0 auto 0.35rem;
}

.btn .btn-ico { margin-right: 0.4rem; }

.btn-primary, .btn-green, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(61, 43, 31, 0.25);
    animation: btn-pulse 2.5s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(61, 43, 31, 0.2); }
    50% { box-shadow: 0 6px 28px rgba(232, 119, 34, 0.35); }
}

.btn-on-dark {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.btn-on-dark:hover {
    background: #fff;
    color: var(--brown);
}

/* ── 티커 ── */
.ticker-bar {
    background: var(--brown);
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    padding: 0.55rem 0;
    font-size: 0.82rem;
    font-weight: 600;
}

.ticker-inner {
    display: flex;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
}

.ticker-track {
    display: flex;
    gap: 2.5rem;
    padding: 0 1.25rem;
    white-space: nowrap;
}

.ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ticker-ico {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Hero dynamic ── */
.hero-dynamic {
    position: relative;
    padding: 2.5rem 0 3.5rem;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: shape-float 12s ease-in-out infinite;
}

.shape-1 {
    width: 320px; height: 320px;
    background: rgba(232, 119, 34, 0.2);
    top: -80px; right: 10%;
}

.shape-2 {
    width: 240px; height: 240px;
    background: rgba(46, 125, 79, 0.15);
    bottom: 10%; left: -5%;
    animation-delay: -4s;
}

.shape-3 {
    width: 180px; height: 180px;
    background: rgba(61, 43, 31, 0.08);
    top: 40%; right: 30%;
    animation-delay: -8s;
}

@keyframes shape-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.05); }
    66% { transform: translate(-15px, 10px) scale(0.95); }
}

.hero-dynamic .container { position: relative; z-index: 1; }

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin: 0.5rem 0 1rem;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(24px);
    animation: hero-line-in 0.7s ease forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.1s; }
.hero-line:nth-child(2) { animation-delay: 0.25s; }
.hero-line:nth-child(3) { animation-delay: 0.4s; }

.hero-accent {
    color: var(--orange);
    font-weight: 800;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--green), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes hero-line-in {
    to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.25rem 0;
}

.hero-stat-pill {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.55rem 1rem;
    text-align: center;
    min-width: 5.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s, border-color 0.25s;
}

.hero-stat-pill:hover { transform: translateY(-3px); border-color: var(--orange); }

.hero-stat-pill.accent {
    background: linear-gradient(135deg, var(--green-soft), #fff);
    border-color: var(--green);
}

.hero-stat-num {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brown);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
}

.hero-visual-parallax {
    transition: transform 0.15s ease-out;
    will-change: transform;
}

.float-card {
    animation: float-y 5s ease-in-out infinite;
}

.float-delay-1 { animation-delay: 0s; }
.float-delay-2 { animation-delay: 0.6s; }
.float-delay-3 { animation-delay: 1.2s; }
.float-delay-4 { animation-delay: 1.8s; }

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-card-dark .hero-card-ico {
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-card-dark p {
    margin: 0.75rem 0 0;
    opacity: 0.85;
    font-size: 0.88rem;
}

.hero-progress {
    margin-top: 1rem;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    overflow: hidden;
}

.hero-progress-bar {
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, var(--orange), #ffc107);
    border-radius: 999px;
    animation: progress-slide 3s ease-in-out infinite;
}

@keyframes progress-slide {
    0%, 100% { width: 25%; margin-left: 0; }
    50% { width: 70%; margin-left: 15%; }
}

.mini-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 43, 31, 0.1);
}

.mini-card strong { color: var(--green); }

/* ── Scroll reveal ── */
.reveal,
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible,
.reveal-stagger > *.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.3s; }

.section-head {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-head .icon-box { margin-bottom: 0.65rem; }

.section-head h2 { margin-bottom: 0.35rem; }

.section-head .section-desc { margin-bottom: 1.5rem; }

/* ── Interactive cards ── */
.card-interactive {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.card-interactive::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card-interactive:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(61, 43, 31, 0.12);
    border-color: rgba(232, 119, 34, 0.35);
}

.card-interactive:hover::before { transform: scaleX(1); }

.card-link-arrow {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--orange);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
}

.card-interactive:hover .card-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ── 거래 성향 카드 ── */
.type-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.type-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.35s, box-shadow 0.35s;
}

.type-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(61, 43, 31, 0.12);
}

.type-card h3 { margin: 0.5rem 0; color: var(--brown); }

.type-card p { font-size: 0.9rem; color: var(--muted); margin: 0 0 0.75rem; }

.type-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

.type-card li { padding: 0.25rem 0; color: var(--muted); }

.type-card li.highlight { color: var(--green); font-weight: 700; }

.type-card--profit { border-top: 4px solid var(--orange); }
.type-card--breakeven { border-top: 4px solid var(--green); }
.type-card--safe { border-top: 4px solid var(--brown-mid); }

.condition-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.condition-title-wrap .icon-box {
    margin-bottom: 0;
    width: 44px;
    height: 44px;
}

.condition-title-wrap h3 { margin: 0; }

/* ── Steps with icons ── */
.steps-icons .step-card {
    text-align: center;
    transition: transform 0.3s;
}

.steps-icons .step-card:hover { transform: translateY(-5px); }

.step-card--icon .step-num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
}

.step-card--icon::before { display: none; }

.step-card--icon .icon-box { margin: 0 auto 0.75rem; }

/* ── FAQ interactive ── */
.faq-item-interactive {
    padding: 0;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item-interactive.is-open {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(61, 43, 31, 0.08);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--brown);
    text-align: left;
    cursor: pointer;
}

.faq-q::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--orange);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item-interactive.is-open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item-interactive.is-open .faq-a { max-height: 200px; }

.faq-a p {
    margin: 0;
    padding: 0 1.25rem 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

/* ── CTA animated ── */
.cta-band--animated {
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(232, 119, 34, 0.15) 0%, transparent 50%);
    animation: cta-rotate 8s linear infinite;
    pointer-events: none;
}

@keyframes cta-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-band .cta-ico {
    margin: 0 auto 0.75rem;
    display: block;
    animation: float-y 4s ease-in-out infinite;
}

.legal-band-inner .ui-icon { margin: 0 auto 0.75rem; display: block; }

/* ── Main page notices ── */
.section-notice {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.notice-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    box-shadow: 0 8px 32px rgba(61, 43, 31, 0.06);
}

.notice-panel-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.notice-panel-head h2 {
    margin: 0;
    font-size: 1.35rem;
}

.notice-more {
    margin-left: auto;
}

.notice-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border);
}

.notice-list li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
}

.notice-list li:last-child {
    border-bottom: none;
}

.notice-list .badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    border-radius: 999px;
    white-space: nowrap;
}

.notice-list a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-list a:hover {
    color: var(--accent);
}

.notice-list time {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ── Banner popup (main) ── */
body.banner-popup-open {
    overflow: hidden;
}

.banner-popup-root {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.banner-popup-root[hidden] {
    display: none !important;
}

.banner-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 14, 10, 0.55);
    backdrop-filter: blur(2px);
}

.banner-popup-dialog {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: min(90vh, 720px);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: banner-popup-in 0.35s ease;
}

@keyframes banner-popup-in {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

.banner-popup-close {
    position: absolute;
    top: 0.5rem;
    right: 0.65rem;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
}

.banner-popup-body {
    padding: 1.5rem 1.25rem 1rem;
    overflow-y: auto;
}

.banner-popup-title {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    padding-right: 1.5rem;
}

.banner-popup-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
}

.banner-popup-html {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
}

.banner-popup-link {
    margin: 0.75rem 0 0;
}

.banner-popup-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.25rem 1rem;
    border-top: 1px solid var(--border);
    background: var(--surface-warm);
}

.banner-hide-today {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

.pricing-table tbody tr {
    transition: background 0.2s, transform 0.2s;
}

.pricing-table tbody tr:hover {
    background: rgba(232, 119, 34, 0.06);
}

@media (prefers-reduced-motion: reduce) {
    .ticker-inner,
    .float-card,
    .hero-line,
    .hero-progress-bar,
    .btn-glow,
    .cta-glow,
    .shape,
    .cta-band .cta-ico {
        animation: none !important;
    }

    .reveal, .reveal-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-line { opacity: 1; transform: none; }

    .banner-popup-dialog {
        animation: none;
    }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .bbs-layout { grid-template-columns: 1fr; }
    .hero-visual-parallax { transform: none !important; }
    .ticker-inner { animation-duration: 40s; }
}

@media (max-width: 640px) {
    .nav-toggle { display: block; }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    body.nav-open .site-nav { display: flex; }

    .notice-list li {
        grid-template-columns: 1fr auto;
    }

    .notice-list .badge {
        grid-column: 1;
    }

    .notice-list a {
        grid-column: 1 / -1;
        white-space: normal;
    }

    .footer-grid { grid-template-columns: 1fr; }
}

/* ── 비즈니스 페이지 ── */
.business-page { padding-bottom: 3rem; }

.business-subnav { margin-bottom: 1.25rem; }

.business-hero {
    background: linear-gradient(135deg, #fffaf5 0%, #fff 55%, #f3faf5 100%);
    border: 1px solid rgba(232, 119, 34, 0.2);
}

.business-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: start;
}

.business-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 0.5rem;
}

.business-hero h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    line-height: 1.35;
    color: var(--brown);
}

.business-lead {
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 1.25rem;
}

.business-highlight-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.business-highlight-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brown-mid);
}

.business-section { margin-top: 1.25rem; }

.business-service-grid { margin-top: 1rem; }

.business-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--brown);
}

.business-compare {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.business-compare th,
.business-compare td {
    border: 1px solid var(--border);
    padding: 0.65rem 0.85rem;
    text-align: left;
}

.business-compare thead th {
    background: var(--surface-warm);
    color: var(--brown);
}

.business-process {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.business-process li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface-warm);
}

.business-process li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.business-process li strong {
    display: block;
    color: var(--brown);
    margin-bottom: 0.25rem;
}

.business-process li p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.business-inquiry { scroll-margin-top: 5rem; }

.business-inquiry-head { margin-bottom: 1rem; }

.business-inquiry-desc { margin: 0.35rem 0 0; }

.badge-private {
    background: #5c4a3a;
    font-size: 0.68rem;
    margin-right: 0.35rem;
}

.business-private-hint {
    color: var(--brown-mid);
    background: #fff8f0;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(232, 119, 34, 0.35);
}

@media (max-width: 768px) {
    .business-hero-grid { grid-template-columns: 1fr; }
}

/* ── 프로그램 허브 (다운로드·소개·사용방법 탭) ── */
.page-program .program-hub-head {
    background: linear-gradient(180deg, #fffaf5 0%, #fff 100%);
    border-bottom: 1px solid var(--border);
    padding: 0.35rem 0 0.5rem;
}

.page-program .program-hub-head > .container {
    padding-top: 0;
}

.page-program .program-hub-head .page-head,
.page-program .program-hub-head .page-head--embed {
    padding: 0.35rem 0 0.45rem;
    margin-bottom: 0.35rem;
}

.page-program .program-hub-head .page-head-inner {
    gap: 0.65rem;
    align-items: center;
}

.page-program .program-hub-head .page-head-inner .icon-box {
    transform: scale(0.88);
    transform-origin: left center;
}

.page-program .program-hub-head .page-head-text h1,
.page-program .program-hub-head .page-head h1 {
    font-size: 1.45rem;
}

.page-program .program-hub-head .page-head-text p,
.page-program .program-hub-head .page-head p {
    font-size: 0.88rem;
    margin-top: 0.15rem;
}

.program-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
}

.program-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--brown-mid);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.program-tab:hover {
    border-color: rgba(232, 119, 34, 0.45);
    color: var(--orange);
}

.program-tab.is-active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.program-tab-ico { filter: none; }
.program-tab.is-active .program-tab-ico { opacity: 0.95; }

.program-download-hero {
    background: linear-gradient(135deg, #f3faf5 0%, #fffaf5 50%, #fff 100%);
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 0;
}

.program-download-hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.program-download-hero h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    color: var(--brown);
}

.program-download-lead {
    margin: 0 0 1rem;
    color: var(--muted);
    line-height: 1.7;
}

.page-program .manual-nav {
    padding-top: 0.65rem;
    padding-bottom: 0.85rem;
    margin-bottom: 0.35rem;
}

.page-program .program-tab-body {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
}

.program-intro-section { margin-bottom: 1.25rem; }

.program-intro-cta {
    text-align: center;
    margin-top: 0.5rem;
}

@media (max-width: 640px) {
    .program-tabs { gap: 0.35rem; }
    .program-tab { font-size: 0.82rem; padding: 0.45rem 0.75rem; }
    .program-download-hero-inner { flex-direction: column; }
}
