@charset "utf-8";

.fw100{font-weight:100;}
.fw200{font-weight:200;}
.fw300{font-weight:300;}
.fw400{font-weight:400;}
.fw500{font-weight:500;}
.fw600{font-weight:600;}
.fw700{font-weight:700;}
.fw800{font-weight:800;}
.fw900{font-weight:900;}

html, body{
    margin:0;
    padding:0;
    font-family:'Pretendard','Noto Sans KR','Malgun Gothic','Apple SD Gothic Neo',sans-serif;
    font-weight:400;
    font-size:16px;
    line-height:1.7;
    letter-spacing:-0.02em;
    word-break:keep-all;
    color:#222;
    overflow-x:hidden;
}

a{
    color:inherit;
}

img{
    max-width:100%;
    height:auto;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Noto Serif KR',serif;
    font-weight:700;
    letter-spacing:-0.03em;
    margin-top:0;
}

:root {
    --kh-navy: #1E2A38;
    --kh-navy-dark: #121B26;
    --kh-gold: #C8A96A;
    --kh-gold-dark: #B89652;
    --kh-bg: #F6F7F9;
    --kh-text: #2B2F33;
    --kh-muted: #6B7280;
    --kh-border: #E5E7EB;
}

/* 공통 */
.kh-site,
.kh-wrap {
    font-family: 'Noto Sans KR', 'Pretendard', Arial, sans-serif;
    color: var(--kh-text);
    line-height: 1.7;
    word-break: keep-all;
}

.kh-site a,
.kh-wrap a {
    text-decoration: none;
}

.kh-main {
    min-height: 600px;
}

.kh-section {
    padding: 90px 20px;
}

.kh-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.kh-title-small {
    color: var(--kh-gold);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.kh-title {
    font-size: 38px;
    line-height: 1.35;
    letter-spacing: -0.05em;
    color: var(--kh-navy);
    margin-bottom: 22px;
    font-weight: 800;
}

.kh-desc {
    font-size: 18px;
    color: var(--kh-muted);
    letter-spacing: -0.03em;
}

.kh-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.kh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 52px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    transition: all .25s ease;
}

.kh-btn-primary {
    background: var(--kh-gold);
    color: #fff;
}

.kh-btn-primary:hover {
    background: var(--kh-gold-dark);
    color: #fff;
}

.kh-btn-outline {
    border: 1px solid rgba(255,255,255,.65);
    color: #fff;
}

.kh-btn-outline:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
}

/* Header */
.kh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--kh-border);
    backdrop-filter: blur(10px);
}

.kh-header-inner {
    max-width: 1200px;
    height: 82px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kh-logo {
    margin: 0;
    line-height: 1.2;
}

.kh-logo a {
    display: block;
    color: var(--kh-navy);
}

.kh-logo-main {
    display: block;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.kh-logo-sub {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: var(--kh-gold);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.kh-gnb ul {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.kh-gnb a {
    display: block;
    color: #243041;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.04em;
    transition: color .2s ease;
}

.kh-gnb a:hover {
    color: var(--kh-gold);
}

.kh-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 116px;
    height: 42px;
    border-radius: 4px;
    background: var(--kh-navy);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.kh-header-btn:hover {
    background: var(--kh-gold);
    color: #fff;
}

.kh-mobile-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 0;
}

.kh-mobile-btn span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 6px auto;
    background: var(--kh-navy);
    transition: all .25s ease;
}

.kh-mobile-menu {
    display: none;
    border-top: 1px solid var(--kh-border);
    background: #fff;
}

.kh-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 10px 20px;
}

.kh-mobile-menu a {
    display: block;
    padding: 14px 0;
    color: var(--kh-navy);
    font-weight: 700;
    border-bottom: 1px solid #F1F2F4;
}

/* Hero */
.kh-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--kh-navy-dark);
}

.kh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18,27,38,.92) 0%, rgba(18,27,38,.78) 45%, rgba(18,27,38,.35) 100%),
        url('/images/main_visual.jpg') center/cover no-repeat;
    z-index: 1;
}

.kh-hero .kh-inner {
    position: relative;
    z-index: 2;
}

.kh-hero-label {
    color: var(--kh-gold);
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 18px;
}

.kh-hero-title {
    color: #fff;
    font-size: 54px;
    line-height: 1.25;
    letter-spacing: -0.06em;
    font-weight: 800;
    max-width: 780px;
    margin-bottom: 24px;
}

.kh-hero-desc {
    color: rgba(255,255,255,.82);
    font-size: 20px;
    letter-spacing: -0.03em;
    max-width: 680px;
}

/* Cards */
.kh-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.kh-card {
    background: #fff;
    border: 1px solid var(--kh-border);
    padding: 36px 32px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.kh-card-num {
    color: var(--kh-gold);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 14px;
}

.kh-card h3 {
    font-size: 23px;
    color: var(--kh-navy);
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.kh-card p {
    color: var(--kh-muted);
    font-size: 16px;
    letter-spacing: -0.03em;
}

/* Split */
.kh-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.kh-image-box {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.kh-image-01 {
    background-image: url('/images/compensation_target.jpg');
}

.kh-list {
    margin-top: 28px;
    padding: 0;
    list-style: none;
}

.kh-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #3F4650;
    font-size: 17px;
}

.kh-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--kh-gold);
}

/* Process */
.kh-process {
    background: var(--kh-bg);
}

.kh-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 46px;
}

.kh-process-item {
    background: #fff;
    border-radius: 10px;
    padding: 30px 24px;
    border: 1px solid var(--kh-border);
}

.kh-process-step {
    color: var(--kh-gold);
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 12px;
}

.kh-process-item h3 {
    font-size: 21px;
    color: var(--kh-navy);
    margin-bottom: 12px;
}

.kh-process-item p {
    color: var(--kh-muted);
    font-size: 15px;
}

/* Board */
.kh-board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 42px;
}

.kh-board-box {
    background: #fff;
    border: 1px solid var(--kh-border);
    border-radius: 10px;
    padding: 32px;
}

.kh-board-box h3 {
    font-size: 24px;
    color: var(--kh-navy);
    margin-bottom: 18px;
}

.kh-board-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kh-board-box li {
    border-bottom: 1px solid var(--kh-border);
}

.kh-board-box li:last-child {
    border-bottom: none;
}

.kh-board-box a {
    display: block;
    padding: 14px 0;
    color: #374151;
    font-size: 16px;
}

.kh-board-box a:hover {
    color: var(--kh-gold);
}

/* CTA */
.kh-cta {
    position: relative;
    background: var(--kh-navy);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.kh-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(30,42,56,.88), rgba(30,42,56,.88)),
        url('/images/consult_bg.jpg') center/cover no-repeat;
}

.kh-cta .kh-inner {
    position: relative;
    z-index: 2;
}

.kh-cta h2 {
    font-size: 40px;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.kh-cta p {
    color: rgba(255,255,255,.78);
    font-size: 18px;
}

/* Footer */
.kh-footer {
    background: #111827;
    color: rgba(255,255,255,.78);
}

.kh-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 54px 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.kh-footer-info h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 14px;
    letter-spacing: -0.04em;
}

.kh-footer-info p {
    margin: 6px 0;
    font-size: 15px;
}

.kh-footer-info a {
    color: #fff;
}

.kh-footer-sep {
    margin: 0 10px;
    color: rgba(255,255,255,.3);
}

.kh-footer-menu {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-end;
}

.kh-footer-menu a {
    color: rgba(255,255,255,.8);
    font-size: 15px;
}

.kh-footer-menu a:hover {
    color: var(--kh-gold);
}

.kh-footer-copy {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 22px 20px;
    font-size: 13px;
    color: rgba(255,255,255,.52);
}

.kh-footer-copy p {
    margin: 4px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .kh-gnb {
        display: none;
    }

    .kh-header-btn {
        display: none;
    }

    .kh-mobile-btn {
        display: block;
    }

    .kh-mobile-menu.is-open {
        display: block;
    }
}

@media (max-width: 900px) {
    .kh-section {
        padding: 64px 18px;
    }

    .kh-hero {
        min-height: 560px;
    }

    .kh-hero-title {
        font-size: 38px;
    }

    .kh-hero-desc,
    .kh-desc {
        font-size: 16px;
    }

    .kh-title {
        font-size: 30px;
    }

    .kh-card-grid,
    .kh-process-grid,
    .kh-board-grid,
    .kh-split {
        grid-template-columns: 1fr;
    }

    .kh-image-box {
        min-height: 300px;
    }

    .kh-btn {
        width: 100%;
    }

    .kh-footer-inner {
        display: block;
    }

    .kh-footer-menu {
        justify-content: flex-start;
        margin-top: 28px;
    }
}

@media (max-width: 480px) {
    .kh-header-inner {
        height: 72px;
    }

    .kh-logo-main {
        font-size: 20px;
    }

    .kh-logo-sub {
        font-size: 12px;
    }

    .kh-hero-title {
        font-size: 32px;
    }

    .kh-cta h2 {
        font-size: 30px;
    }
}
