/* ============================================
   머스트논문 — Premium Dark Red v3
   With animations, images, tight spacing, 320px
   ============================================ */
:root {
    --wine: #6b1527;
    --wine-deep: #4a0e1b;
    --wine-light: #8c2038;
    --wine-pale: #f8eef0;
    --gold: #c5a55a;
    --gold-light: #ddc88a;
    --ink: #181820;
    --charcoal: #2a2a35;
    --slate: #4a4a58;
    --stone: #6e6e7a;
    --silver: #9e9eaa;
    --cloud: #eaeaef;
    --snow: #f6f6f9;
    --white: #ffffff;
    --serif: 'Noto Serif KR', Georgia, serif;
    --sans: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
    font-family: var(--sans); font-size: 15px; line-height: 1.7;
    color: var(--charcoal); background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--wine); text-decoration: none; transition: all 0.2s; }
a:hover { color: var(--wine-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--sans); font-size: inherit; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
    transition-delay: var(--delay, 0s);
}
.anim[data-anim="fade-left"] { transform: translateX(-30px); }
.anim.visible {
    opacity: 1;
    transform: translate(0,0);
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 10001;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    transition: box-shadow 0.3s, background 0.3s;
}
.site-header.menu-open {
    background: transparent;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    box-shadow: none;
}
.site-header.scrolled { box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.03); }
.header-inner {
    max-width: 1040px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.logo {
    font-family: var(--serif); font-size: 20px; font-weight: 700;
    color: var(--wine); letter-spacing: -0.03em;
    display: flex; align-items: center; gap: 8px;
}
.logo:hover { color: var(--wine-deep); }
.logo::before {
    content: ''; width: 24px; height: 3px;
    background: var(--gold); border-radius: 2px;
}
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-menu a {
    padding: 8px 14px; font-size: 13px; font-weight: 500;
    color: var(--slate); position: relative;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: 2px;
    left: 14px; right: 14px; height: 1.5px;
    background: var(--wine); transform: scaleX(0);
    transform-origin: right; transition: transform 0.3s;
}
.nav-menu a:hover { color: var(--wine); }
.nav-menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
    margin-left: 12px !important; padding: 8px 20px !important;
    background: var(--wine) !important; color: #fff !important;
    border-radius: 5px !important; font-weight: 600 !important;
    font-size: 13px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--wine-deep) !important; box-shadow: 0 4px 12px rgba(107,21,39,0.2) !important; }
.mobile-toggle {
    display: none; width: 40px; height: 40px;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    position: relative; z-index: 10000;
}
.mobile-toggle span {
    width: 20px; height: 1.5px; background: var(--ink);
    transition: all 0.3s ease; transform-origin: center;
}
.mobile-toggle.active span { background: #fff; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.6px, 4.6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.6px, -4.6px); }
/* 메뉴 열렸을 때 로고 숨기기 */
.site-header.menu-open .logo { opacity: 0; pointer-events: none; }

/* ================================================================
   HERO - Pure CSS premium dark
   ================================================================ */
.hero {
    position: relative; padding: 130px 0 72px;
    min-height: 540px; display: flex; align-items: center;
    overflow: hidden;
}
/* 배경 이미지 */
.hero-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
/* 다크 오버레이 */
.hero::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(24,24,32,0.92) 0%, rgba(74,14,27,0.82) 100%);
}
/* 우측 글로우 */
.hero::after {
    content: ''; position: absolute; z-index: 2;
    top: -100px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(197,165,90,0.08) 0%, transparent 60%);
    animation: heroGlow 6s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.12); }
}
.hero-deco {
    position: absolute; left: 0; top: 50%; z-index: 3;
    transform: translateY(-50%);
    width: 3px; height: 120px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}
.hero-inner {
    position: relative; z-index: 4;
    max-width: 640px; margin: 0 auto;
    text-align: center;
}
.hero-label {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; margin-bottom: 24px;
    border: 1px solid rgba(197,165,90,0.3); border-radius: 4px;
    font-size: 11px; color: var(--gold); font-weight: 600;
    letter-spacing: 0.06em;
    animation: fadeInDown 0.8s 0.2s both;
}
.hero-label i { font-size: 10px; }
.hero h1 {
    font-family: var(--serif);
    font-size: 40px; font-weight: 700; line-height: 1.35;
    color: #fff; margin-bottom: 18px; letter-spacing: -0.02em;
    animation: fadeInUp 0.8s 0.3s both;
}
.hero h1 em {
    font-style: normal;
    color: var(--gold);
    position: relative;
}
.hero h1 em::after {
    content: ''; position: absolute;
    left: 0; right: 0; bottom: 2px;
    height: 8px; background: rgba(197,165,90,0.15);
    z-index: -1;
}
.hero-sub {
    font-size: 15px; color: rgba(255,255,255,0.5);
    line-height: 1.8; margin-bottom: 32px;
    animation: fadeInUp 0.8s 0.5s both;
}
.btn-hero {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 36px; font-size: 14px; font-weight: 600;
    background: var(--wine); color: #fff; border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 20px rgba(107,21,39,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: all 0.3s; letter-spacing: 0.02em;
    animation: fadeInUp 0.8s 0.7s both;
}
.btn-hero:hover {
    background: var(--wine-light); color: #fff;
    box-shadow: 0 8px 32px rgba(107,21,39,0.4);
    transform: translateY(-2px);
}
.btn-hero i { font-size: 12px; transition: transform 0.25s; }
.btn-hero:hover i { transform: translateX(4px); }
.hero-line {
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--ink) 0%, var(--wine) 30%, var(--gold) 50%, var(--wine) 70%, var(--ink) 100%);
}

/* Hero entrance animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   TRUST BAR - Counter animation
   ================================================================ */
.trust-bar { padding: 36px 0; background: var(--white); border-bottom: 1px solid var(--cloud); }
.trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; text-align: center;
}
.trust-item { padding: 8px 12px; border-right: 1px solid var(--cloud); }
.trust-item:last-child { border-right: none; }
.trust-num {
    font-family: var(--serif); font-size: 32px; font-weight: 700;
    color: var(--wine); line-height: 1.1; display: inline;
}
.trust-unit { display: inline; font-family: var(--serif); font-size: 16px; color: var(--gold); font-weight: 600; }
.trust-label { font-size: 12px; color: var(--silver); font-weight: 500; margin-top: 2px; }

/* ================================================================
   SECTIONS
   ================================================================ */
.sec { padding: 72px 0; }
.sec-gray { background: var(--snow); }
.sec-dark { position: relative; background: var(--ink); overflow: hidden; }
.about-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.12;
}
.sec-header { text-align: center; margin-bottom: 40px; }
.sec-header::after {
    content: ''; display: block;
    width: 32px; height: 2px;
    background: var(--gold); margin: 16px auto 0;
}
.sec-header h2 {
    font-family: var(--serif);
    font-size: 26px; font-weight: 700;
    color: var(--ink); line-height: 1.45;
    letter-spacing: -0.02em;
}
.sec-header p { font-size: 14px; color: var(--stone); margin-top: 8px; }
.sec-header-light h2 { color: #fff; }
.sec-header-light p { color: rgba(255,255,255,0.45); }
.sec-header-light::after { background: var(--gold); }

/* ================================================================
   PAIN - 2x2 Card Grid
   ================================================================ */
.pain-cards {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 16px; max-width: 720px; margin: 0 auto;
}
.pn-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--cloud);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    position: relative; overflow: hidden;
}
.pn-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--wine); opacity: 0;
    transition: opacity 0.3s;
}
.pn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    border-color: transparent;
}
.pn-card:hover::before { opacity: 1; }
.pn-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--wine-pale);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 18px; color: var(--wine);
    transition: all 0.3s;
}
.pn-card:hover .pn-icon {
    background: var(--wine); color: #fff;
    box-shadow: 0 4px 12px rgba(107,21,39,0.2);
}
.pn-card h3 {
    font-size: 15px; font-weight: 700;
    color: var(--ink); margin-bottom: 6px;
}
.pn-card p {
    font-size: 13px; color: var(--stone);
    line-height: 1.6;
}

/* ================================================================
   FEATURES - Image cards
   ================================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
    background: var(--white); border-radius: 10px;
    overflow: hidden; transition: all 0.35s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.feat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.feat-img {
    height: 160px; overflow: hidden;
}
.feat-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
}
.feat-card:hover .feat-img img { transform: scale(1.08); }
.feat-body { padding: 24px 20px; }
.feat-body h3 {
    font-size: 16px; font-weight: 700;
    color: var(--ink); margin-bottom: 8px;
}
.feat-body p { font-size: 13px; color: var(--stone); line-height: 1.65; }

/* ================================================================
   PROCESS
   ================================================================ */
.proc-timeline {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; position: relative;
}
.proc-timeline::before {
    content: ''; position: absolute;
    top: 24px; left: 12.5%; right: 12.5%;
    height: 1px; background: var(--cloud);
}
.proc-step { text-align: center; position: relative; }
.proc-dot {
    width: 48px; height: 48px; border-radius: 50%;
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 16px; font-weight: 700;
    background: var(--white); color: var(--wine);
    border: 2px solid var(--wine);
    position: relative; z-index: 1;
    transition: all 0.3s;
}
.proc-step:hover .proc-dot {
    background: var(--wine); color: #fff;
    box-shadow: 0 4px 16px rgba(107,21,39,0.25);
    transform: scale(1.12);
}
.proc-step h3 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.proc-step p { font-size: 12px; color: var(--stone); line-height: 1.55; padding: 0 4px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-wrap { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cloud); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 0; cursor: pointer;
    font-size: 15px; font-weight: 600; color: var(--ink);
    list-style: none; transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: ''; width: 8px; height: 8px;
    border-right: 1.5px solid var(--silver);
    border-bottom: 1.5px solid var(--silver);
    transform: rotate(45deg); flex-shrink: 0; margin-left: 12px;
    transition: transform 0.3s, border-color 0.2s;
}
.faq-item[open] summary { color: var(--wine); }
.faq-item[open] summary::after { transform: rotate(-135deg); border-color: var(--wine); }
.faq-item summary:hover { color: var(--wine); }
.faq-answer {
    padding: 0 0 18px; font-size: 14px;
    color: var(--stone); line-height: 1.75; padding-right: 32px;
}

/* ================================================================
   RECRUIT
   ================================================================ */
.recruit-sec {
    background: var(--ink); padding: 60px 0; text-align: center;
    position: relative; overflow: hidden;
}
.recruit-sec::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 100px);
}
.recruit-sec h2 {
    font-family: var(--serif); font-size: 24px; font-weight: 700;
    color: #fff; margin-bottom: 10px; position: relative;
}
.recruit-sec p {
    font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 24px;
    line-height: 1.7; position: relative;
}
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; font-size: 14px; font-weight: 600;
    color: #fff; border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 5px; transition: all 0.25s; position: relative;
}
.btn-ghost i { font-size: 11px; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(197,165,90,0.06); }
.recruit-note { font-size: 11px; color: rgba(255,255,255,0.2); margin-top: 10px; position: relative; }

/* ================================================================
   CTA - Image background
   ================================================================ */
.cta-sec {
    padding: 80px 0; text-align: center;
    position: relative; overflow: hidden;
}
.cta-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.cta-sec::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(107,21,39,0.92) 0%, rgba(74,14,27,0.95) 100%);
}
.cta-sec h2 {
    font-family: var(--serif); font-size: 28px; font-weight: 700;
    color: #fff; margin-bottom: 8px;
}
.cta-sec p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.btn-kakao {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 36px; font-size: 15px; font-weight: 700;
    background: #fee500; color: #3c1e1e;
    border-radius: 8px; border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.25s;
}
.btn-kakao svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-kakao:hover { transform: translateY(-2px); color: #3c1e1e; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

/* ================================================================
   FLOATING
   ================================================================ */
.floating-btns {
    position: fixed; right: 20px; bottom: 20px;
    z-index: 900; display: flex; flex-direction: column;
    gap: 8px; align-items: center;
}
.float-btn {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12); transition: all 0.25s;
    cursor: pointer; position: relative; border: none;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.float-btn-inquiry { background: var(--wine); color: #fff; font-size: 18px; }
.float-btn-kakao { background: #fee500; }
.float-btn-kakao svg { width: 24px; height: 24px; }
.float-tooltip {
    position: absolute; right: calc(100% + 10px); top: 50%;
    transform: translateY(-50%);
    background: var(--ink); color: #fff;
    padding: 5px 12px; border-radius: 5px;
    font-size: 11px; font-weight: 600; white-space: nowrap;
    opacity: 0; visibility: hidden; transition: all 0.2s; pointer-events: none;
}
.float-tooltip::after {
    content: ''; position: absolute; left: 100%; top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent; border-left-color: var(--ink);
}
.float-btn:hover .float-tooltip { opacity: 1; visibility: visible; }
.scroll-top {
    width: 40px; height: 40px; border-radius: 50%;
    background: #fff; border: 1px solid var(--cloud);
    display: flex; align-items: center; justify-content: center;
    color: var(--silver); font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    opacity: 0; visibility: hidden; transition: all 0.3s; cursor: pointer;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { color: var(--wine); border-color: var(--wine); }

/* ================================================================
   CONSULT PANEL
   ================================================================ */
.consult-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 20000; opacity: 0; visibility: hidden;
    transition: all 0.35s; backdrop-filter: blur(3px);
}
.consult-overlay.active { opacity: 1; visibility: visible; }
.consult-panel {
    position: fixed; right: -420px; top: 0; bottom: 0;
    width: 400px; max-width: 100vw;
    background: #fff; z-index: 20001;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex; flex-direction: column;
}
.consult-panel.active { right: 0; }
.consult-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--cloud);
    flex-shrink: 0;
}
.consult-header h3 { font-family: var(--serif); font-size: 17px; font-weight: 700; }
.consult-close {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--silver); transition: 0.2s;
    flex-shrink: 0;
}
.consult-close:hover { background: var(--snow); color: var(--ink); }
.consult-body { flex: 1; padding: 24px; overflow-y: auto; }
.consult-body .form-group { margin-bottom: 18px; }
.consult-body label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--ink); margin-bottom: 5px;
}
.consult-body label .req { color: var(--wine); }
.consult-body input, .consult-body textarea {
    display: block; width: 100%; padding: 11px 14px;
    border: 1px solid var(--cloud); border-radius: 6px;
    font-size: 14px; transition: border-color 0.2s, box-shadow 0.2s;
}
.consult-body input:focus, .consult-body textarea:focus {
    outline: none; border-color: var(--wine);
    box-shadow: 0 0 0 3px rgba(107,21,39,0.06);
}
.consult-body textarea { resize: vertical; min-height: 110px; }
.consult-submit {
    width: 100%; padding: 13px;
    background: var(--wine); color: #fff;
    border: none; border-radius: 6px;
    font-size: 15px; font-weight: 700; transition: background 0.2s;
}
.consult-submit:hover { background: var(--wine-deep); }
.consult-note {
    display: flex; align-items: center; gap: 5px;
    margin-top: 14px; font-size: 11px; color: var(--silver);
}
.consult-success { display: none; text-align: center; padding: 60px 16px; }
.consult-success.show { display: block; }
.consult-success i { font-size: 44px; color: var(--wine); margin-bottom: 14px; display: block; }
.consult-success h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.consult-success p { font-size: 13px; color: var(--stone); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: var(--ink); padding: 44px 0 28px; }
.footer-inner { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.footer-brand {
    font-family: var(--serif); font-size: 16px; font-weight: 700;
    color: rgba(255,255,255,0.35); margin-bottom: 14px;
}
.footer-info { font-size: 12px; line-height: 2; color: rgba(255,255,255,0.18); }
.footer-info span { margin-right: 14px; }
.footer-links {
    display: flex; gap: 18px; margin-top: 14px; padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-links a { color: rgba(255,255,255,0.25); font-size: 12px; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { margin-top: 12px; font-size: 10px; color: rgba(255,255,255,0.1); }

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.legal-hero {
    padding: 120px 0 40px;
    background: var(--ink);
    text-align: center;
    position: relative;
}
.legal-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ink), var(--wine), var(--gold), var(--wine), var(--ink));
}
.legal-hero h1 {
    font-family: var(--serif); font-size: 28px; font-weight: 700;
    color: #fff; margin-bottom: 8px;
}
.legal-hero p { font-size: 13px; color: var(--silver); }

.legal-body {
    padding: 48px 0 60px;
    max-width: 720px; margin: 0 auto;
}
.legal-body h2 {
    font-size: 16px; font-weight: 700; margin: 32px 0 10px;
    color: var(--ink); padding-left: 14px;
    border-left: 3px solid var(--wine);
}
.legal-body p, .legal-body li {
    font-size: 14px; line-height: 1.85; color: var(--slate); margin-bottom: 6px;
}
.legal-body ol { list-style: decimal; padding-left: 20px; }
.legal-body ul { list-style: disc; padding-left: 20px; }
.legal-body strong { color: var(--ink); }
.legal-bottom {
    margin-top: 48px; padding: 20px 24px;
    background: var(--snow); border-radius: 8px;
    font-size: 12px; color: var(--silver);
    border: 1px solid var(--cloud);
}

@media (max-width: 768px) {
    .legal-hero { padding: 90px 0 32px; }
    .legal-hero h1 { font-size: 22px; }
    .legal-body { padding: 32px 0 40px; }
}
@media (max-width: 360px) {
    .legal-hero { padding: 72px 0 24px; }
    .legal-hero h1 { font-size: 19px; }
    .legal-body h2 { font-size: 14px; }
    .legal-body p, .legal-body li { font-size: 13px; }
}

/* ================================================================
   RESPONSIVE - Tablet
   ================================================================ */
@media (max-width: 960px) {
    .feat-grid { grid-template-columns: 1fr; gap: 16px; }
    .feat-card { display: flex; flex-direction: row; }
    .feat-img { width: 180px; height: auto; min-height: 140px; flex-shrink: 0; }
    .proc-timeline { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
    .proc-timeline::before { display: none; }
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
    .hero h1 { font-size: 32px; }
    .sec { padding: 56px 0; }
}

/* ================================================================
   RESPONSIVE - Mobile 768
   ================================================================ */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: flex; }
    .nav-menu.open {
        display: flex; flex-direction: column;
        justify-content: center; align-items: center;
        position: fixed; inset: 0; z-index: 9999;
        background: rgba(24,24,32,0.97);
        backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        gap: 0; animation: menuFadeIn 0.3s ease;
    }
    @keyframes menuFadeIn { from { opacity: 0; } to { opacity: 1; } }
    .nav-menu.open a {
        padding: 18px 0; border-radius: 0; border-bottom: none;
        font-size: 20px; font-weight: 600; color: #fff;
        text-align: center; width: 100%;
        opacity: 0; animation: menuItemIn 0.4s ease forwards;
    }
    .nav-menu.open a:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu.open a:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.open a:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu.open a:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu.open a:nth-child(5) { animation-delay: 0.25s; }
    @keyframes menuItemIn {
        from { opacity: 0; transform: translateY(12px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .nav-menu.open a:hover { color: var(--gold); }
    .nav-menu.open a::after { display: none; }
    .nav-menu.open .nav-cta {
        margin: 20px 40px 0 !important; text-align: center;
        border-radius: 5px !important; font-size: 16px !important;
        padding: 14px 32px !important;
    }
    .hero { padding: 100px 0 56px; min-height: auto; }
    .hero h1 { font-size: 26px; }
    .hero-sub { font-size: 14px; }
    .hero-deco { display: none; }
    .btn-hero { padding: 12px 24px; font-size: 13px; }
    .sec-header h2 { font-size: 22px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { padding: 10px 8px; }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--cloud); }
    .trust-num { font-size: 26px; }
    .feat-card { flex-direction: column; }
    .feat-img { width: 100%; height: 160px; }
    .proc-timeline { grid-template-columns: 1fr 1fr; }
    .consult-panel {
        width: 100vw; top: 0; bottom: 0;
        border-radius: 0;
    }
    .consult-header { padding: 16px 20px; }
    .consult-body { padding: 20px; }
    .floating-btns { right: 14px; bottom: 14px; }
    .wrap { padding: 0 16px; }
    .header-inner { padding: 0 16px; }
    .footer-inner { padding: 0 16px; }
    .sec { padding: 48px 0; }
    .cta-sec { padding: 56px 0; }
    .recruit-sec { padding: 48px 0; }
}

/* ================================================================
   RESPONSIVE - Mobile 480
   ================================================================ */
@media (max-width: 480px) {
    .hero { padding: 90px 0 48px; min-height: auto; }
    .hero h1 { font-size: 22px; }
    .hero-label { font-size: 10px; padding: 4px 10px; }
    .hero-sub { font-size: 13px; margin-bottom: 20px; }
    .btn-hero { padding: 11px 20px; font-size: 13px; width: 100%; justify-content: center; }
    .pain-cards { grid-template-columns: 1fr; gap: 12px; }
    .pn-card { padding: 20px 16px; }
    .sec-header h2 { font-size: 20px; }
    .sec-header { margin-bottom: 28px; }
    .proc-timeline { grid-template-columns: 1fr; gap: 20px; }
    .trust-num { font-size: 22px; }
    .trust-label { font-size: 11px; }
    .pain-card { padding: 14px 16px; font-size: 13px; }
    .feat-body { padding: 18px 16px; }
    .feat-body h3 { font-size: 15px; }
    .feat-body p { font-size: 12px; }
    .faq-item summary { font-size: 14px; padding: 16px 0; }
    .faq-answer { font-size: 13px; }
    .cta-sec h2 { font-size: 22px; }
    .btn-kakao { padding: 12px 24px; font-size: 14px; width: 100%; justify-content: center; }
    .recruit-sec h2 { font-size: 20px; }
    .btn-ghost { padding: 11px 24px; font-size: 13px; }
}

/* ================================================================
   RESPONSIVE - Ultra small 320px
   ================================================================ */
@media (max-width: 360px) {
    .wrap { padding: 0 12px; }
    .header-inner { padding: 0 12px; height: 56px; }
    .logo { font-size: 17px; }
    .logo::before { width: 18px; }
    .hero { padding: 72px 0 36px; }
    .hero h1 { font-size: 19px; margin-bottom: 12px; }
    .hero-label { font-size: 9px; padding: 3px 8px; margin-bottom: 14px; }
    .hero-sub { font-size: 12px; line-height: 1.6; margin-bottom: 18px; }
    .btn-hero { padding: 10px 16px; font-size: 12px; }
    .sec { padding: 36px 0; }
    .sec-header h2 { font-size: 18px; }
    .sec-header p { font-size: 12px; }
    .sec-header { margin-bottom: 24px; }
    .trust-bar { padding: 20px 0; }
    .trust-num { font-size: 20px; }
    .trust-unit { font-size: 12px; }
    .trust-label { font-size: 10px; }
    .trust-item { padding: 8px 4px; }
    .pain-card { padding: 12px; font-size: 12px; gap: 10px; }
    .pain-card i { font-size: 13px; }
    .feat-img { height: 120px; }
    .feat-body { padding: 14px 12px; }
    .feat-body h3 { font-size: 14px; }
    .feat-body p { font-size: 11px; }
    .proc-dot { width: 40px; height: 40px; font-size: 14px; }
    .proc-step h3 { font-size: 13px; }
    .proc-step p { font-size: 11px; }
    .faq-item summary { font-size: 13px; padding: 14px 0; }
    .faq-answer { font-size: 12px; }
    .recruit-sec { padding: 36px 0; }
    .recruit-sec h2 { font-size: 18px; }
    .recruit-sec p { font-size: 12px; }
    .btn-ghost { padding: 10px 18px; font-size: 12px; }
    .cta-sec { padding: 44px 0; }
    .cta-sec h2 { font-size: 19px; }
    .cta-sec p { font-size: 12px; }
    .btn-kakao { padding: 11px 18px; font-size: 13px; }
    .floating-btns { right: 10px; bottom: 10px; gap: 6px; }
    .float-btn { width: 42px; height: 42px; }
    .scroll-top { width: 36px; height: 36px; font-size: 12px; }
    .footer-inner { padding: 0 12px; }
    .footer-brand { font-size: 14px; }
    .footer-info { font-size: 11px; }
    .footer-info span { margin-right: 8px; }
    .footer-links a { font-size: 11px; }
    .nav-menu.open a { padding: 16px 0; font-size: 18px; }
    .consult-header { padding: 14px 14px; }
    .consult-body { padding: 14px; }
    .consult-body input, .consult-body textarea { padding: 10px 12px; font-size: 13px; }
    .consult-submit { padding: 12px; font-size: 14px; }
    .consult-body .form-group { margin-bottom: 14px; }
}
