*{
    box-sizing:border-box;
    margin:0;
    padding:0;
    font-family:"Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", Roboto, "Segoe UI", sans-serif;
}

:root{
    color-scheme:light;
    --brand:#059669;
    --brand-dark:#047857;
    --brand-soft:#ECFDF5;
    --page:#F3F4F6;
    --card:#FFFFFF;
    --text:#111827;
    --muted:#64748B;
    --line:#E5E7EB;
    --soft:#F8FAFC;
}

body{
    min-height:100vh;
    background:var(--page);
    color:var(--text);
    line-height:1.75;
    word-break:keep-all;
}

a{color:inherit;}

.public-header{
    position:sticky;
    top:0;
    z-index:10;
    border-bottom:1px solid rgba(226,232,240,.9);
    background:rgba(243,244,246,.88);
    -webkit-backdrop-filter:blur(16px);
    backdrop-filter:blur(16px);
}

.public-header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    width:min(920px, calc(100% - 36px));
    min-height:72px;
    margin:0 auto;
}

.public-brand{
    display:flex;
    align-items:center;
    gap:11px;
    color:var(--text);
    font-size:18px;
    font-weight:900;
    letter-spacing:-.4px;
    text-decoration:none;
}

.public-brand img{
    width:38px;
    height:38px;
    border-radius:11px;
}

.back-home{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 15px;
    border:1px solid var(--line);
    border-radius:14px;
    background:var(--card);
    color:#334155;
    font-size:13px;
    font-weight:800;
    text-decoration:none;
}

.back-home:hover{
    border-color:#A7F3D0;
    color:var(--brand-dark);
}

.public-main{
    width:min(920px, calc(100% - 36px));
    margin:34px auto 60px;
}

.hero-panel{
    margin-bottom:18px;
    padding:34px;
    border:1px solid rgba(5,150,105,.12);
    border-radius:28px;
    background:linear-gradient(135deg,#FFFFFF 0%,#F0FDF4 100%);
    box-shadow:0 18px 50px rgba(15,23,42,.07);
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 12px;
    margin-bottom:15px;
    border-radius:999px;
    background:var(--brand-soft);
    color:var(--brand-dark);
    font-size:12px;
    font-weight:900;
}

.hero-panel h1{
    font-size:clamp(30px, 5vw, 45px);
    line-height:1.2;
    letter-spacing:-1.3px;
}

.hero-panel > p{
    max-width:680px;
    margin-top:14px;
    color:var(--muted);
    font-size:16px;
    font-weight:700;
}

.updated-at{
    display:block;
    margin-top:15px;
    color:#94A3B8;
    font-size:12px;
    font-weight:700;
}

.content-card{
    margin-top:16px;
    padding:30px 34px;
    border:1px solid rgba(15,23,42,.06);
    border-radius:24px;
    background:var(--card);
    box-shadow:0 12px 34px rgba(15,23,42,.05);
}

.content-card h2{
    margin:4px 0 12px;
    font-size:22px;
    line-height:1.35;
    letter-spacing:-.5px;
}

.content-card h3{
    margin:25px 0 8px;
    font-size:17px;
    line-height:1.45;
}

.content-card p + p{
    margin-top:10px;
}

.content-card p,
.content-card li{
    color:#475569;
    font-size:15px;
}

.content-card ul,
.content-card ol{
    display:grid;
    gap:8px;
    margin:12px 0 0 21px;
}

.content-card strong{
    color:#1E293B;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:13px;
    margin-top:18px;
}

.feature-item{
    padding:18px;
    border:1px solid var(--line);
    border-radius:18px;
    background:var(--soft);
}

.feature-item b{
    display:block;
    margin-bottom:5px;
    color:var(--text);
    font-size:15px;
}

.feature-item p{
    font-size:13px;
}

.notice-box{
    margin-top:18px;
    padding:17px 18px;
    border-left:4px solid var(--brand);
    border-radius:0 16px 16px 0;
    background:var(--brand-soft);
    color:#065F46;
    font-size:14px;
    font-weight:700;
}

.policy-table{
    width:100%;
    margin-top:15px;
    border-collapse:collapse;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:16px;
}

.policy-table th,
.policy-table td{
    padding:13px 14px;
    border-bottom:1px solid var(--line);
    text-align:left;
    vertical-align:top;
    font-size:14px;
}

.policy-table th{
    width:29%;
    background:var(--soft);
    color:#334155;
}

.policy-table td{
    color:#475569;
}

.policy-table tr:last-child th,
.policy-table tr:last-child td{
    border-bottom:0;
}

.contact-address{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-top:15px;
    padding:18px;
    border:1px solid #A7F3D0;
    border-radius:18px;
    background:#F0FDF4;
}

.contact-address a{
    color:#047857;
    font-weight:900;
    text-decoration:none;
}

.contact-address a:hover{text-decoration:underline;}

.contact-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    margin-top:17px;
    padding:0 20px;
    border:0;
    border-radius:16px;
    background:var(--brand);
    color:#FFFFFF;
    font-size:14px;
    font-weight:900;
    text-decoration:none;
    cursor:pointer;
}

.contact-button:hover{background:var(--brand-dark);}

.public-footer{
    width:min(920px, calc(100% - 36px));
    margin:0 auto;
    padding:0 0 45px;
    color:#94A3B8;
    font-size:12px;
    font-weight:700;
    text-align:center;
}

.public-footer nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px 14px;
    margin-bottom:10px;
}

.public-footer a{
    color:#64748B;
    text-decoration:none;
}

.public-footer a:hover{
    color:var(--brand-dark);
    text-decoration:underline;
    text-underline-offset:3px;
}

@media(max-width:640px){
    .public-header-inner,
    .public-main,
    .public-footer{
        width:min(100% - 24px, 920px);
    }

    .public-header-inner{min-height:64px;}
    .public-brand span{display:none;}
    .public-main{margin-top:18px;}
    .hero-panel{padding:27px 22px;border-radius:24px;}
    .hero-panel > p{font-size:14px;}
    .content-card{padding:24px 21px;border-radius:22px;}
    .feature-grid{grid-template-columns:1fr;}
    .policy-table,.policy-table tbody,.policy-table tr,.policy-table th,.policy-table td{display:block;width:100%;}
    .policy-table tr{border-bottom:1px solid var(--line);}
    .policy-table tr:last-child{border-bottom:0;}
    .policy-table th,.policy-table td{border-bottom:0;}
    .policy-table th{padding-bottom:5px;}
    .policy-table td{padding-top:4px;}
    .contact-address{align-items:flex-start;flex-direction:column;}
}

/* ===== 통일 푸터 (공개 페이지) ===== */
.site-footer.public{
    width:min(920px, calc(100% - 36px));
    margin:0 auto;
    padding:24px 0 45px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px 16px;
    color:#94A3B8;
    font-size:12px;
    font-weight:700;
}
.site-footer.public .site-footer-copy{margin:0;color:inherit;}
.site-footer .site-footer-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:8px 14px;
}
.site-footer .site-footer-links a{color:#64748B;text-decoration:none;}
.site-footer .site-footer-links a:hover{color:var(--brand-dark);text-decoration:underline;text-underline-offset:3px;}
@media(max-width:640px){
    .site-footer.public{width:min(100% - 24px, 920px);justify-content:center;text-align:center;}
    .site-footer.public .site-footer-links{justify-content:center;}
}

.feat-icon{width:18px;height:18px;display:inline-block;vertical-align:-3px;margin-right:6px;color:#059669;}
