/* ============ 프로모션 바 ============ */
.kh-promo-bar {
	position: relative; z-index: 100;
	padding: 10px 0;
	font-size: 14px; font-weight: 600;
}
.kh-promo-inner {
	display: flex; align-items: center; justify-content: center; gap: 14px;
}
.kh-promo-emoji { font-size: 18px; }
.kh-promo-text b { font-weight: 800; }
.kh-promo-cta {
	display: inline-flex; align-items: center; gap: 4px;
	background: var(--kh-red); color: #fff;
	border: none; padding: 6px 14px; border-radius: var(--r-pill);
	font-family: var(--font-sans); font-weight: 700; font-size: 13px;
	cursor: pointer; transition: all 0.15s;
}
.kh-promo-cta:hover { background: var(--kh-red-deep); transform: translateX(2px); }

/* ============ 헤더 ============ */
.kh-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255, 252, 247, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.kh-header.scrolled {
	border-color: var(--line-2);
	box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.kh-header-inner {
	display: flex; align-items: center; justify-content: space-between;
	height: 80px; gap: 32px;
}
.kh-header-logo { display: flex; align-items: center; text-decoration: none; }
.kh-header-nav {
	display: flex; align-items: center; gap: 36px;
	flex: 1; justify-content: center;
}
.kh-nav-item { position: relative; padding: 28px 0; }
.kh-nav-link {
	display: inline-flex; align-items: center; gap: 4px;
	text-decoration: none; color: var(--kh-ink);
	font-size: 16px; font-weight: 600;
	transition: color 0.15s;
}
.kh-nav-link:hover, .kh-nav-link.active { color: var(--kh-red); }
.kh-nav-caret { font-size: 10px; opacity: 0.6; }
.kh-nav-dropdown {
	position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
	background: #fff;
	border: 1px solid var(--line-2);
	border-radius: var(--r-md);
	box-shadow: var(--shadow-md);
	padding: 10px; min-width: 180px;
	display: flex; flex-direction: column; gap: 2px;
	animation: dropIn 0.18s cubic-bezier(0.2,0.8,0.2,1);
}
@keyframes dropIn {
	from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
	to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.kh-nav-dropdown a {
	display: block; padding: 10px 14px;
	text-decoration: none; color: var(--kh-ink-2);
	font-size: 15px; font-weight: 500;
	border-radius: var(--r-sm);
	transition: all 0.12s;
}
.kh-nav-dropdown a:hover { background: var(--kh-red-wash); color: var(--kh-red); }
.kh-header-actions { display: flex; align-items: center; gap: 12px; }
.kh-header-link {
	text-decoration: none; color: var(--kh-ink-3);
	font-size: 14px; font-weight: 600;
}
.kh-header-link:hover { color: var(--kh-red); }
.kh-header-sep { color: var(--line); }

/* ============ Footer ============ */
.kh-footer { background: var(--kh-ink); color: rgba(255,255,255,0.7); padding: 60px 0 32px; }
.kh-footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.kh-footer-desc { margin-top: 16px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.kh-footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.kh-footer-cols h4 { color: #fff; font-size: 14px; font-weight: 700; margin: 0 0 14px; }
.kh-footer-cols a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; padding: 4px 0; }
.kh-footer-cols a:hover { color: #fff; }
.kh-footer-bot { padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.45); }
.kh-footer-legal { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============ 반응형 ============ */
@media (max-width: 960px) {
	.kh-header-nav { display: none; }
	.kh-hero-inner, .kh-sub-hero-inner, .kh-footer-top, .kh-cta-inner { grid-template-columns: 1fr; }
	.kh-footer-top { gap: 32px; }
	.kh-footer-cols { grid-template-columns: repeat(3, 1fr); }
	.kh-why-grid, .kh-included, .kh-plans, .kh-screen-grid { grid-template-columns: repeat(2, 1fr); }
	.kh-program-grid { grid-template-columns: 1fr; }
	.kh-flow-steps { grid-template-columns: 1fr; }
	.kh-flow-arrow { transform: rotate(90deg); }
	.kh-hero-illust { max-width: 360px; }
	.kh-plan.featured { transform: none; }
	.kh-event-row { grid-template-columns: 1fr; gap: 8px; }
	.kh-cta-right {flex:1 1 100%; width: 100%; }
	.kh-cta-right .kh-btn { width: auto; }
	.kh-footer-bot { flex-direction: column; gap: 8px; }
	.kh-eyebrow{margin-bottom:10px;}
}
@media (max-width: 560px) {
	.kh-container { padding: 0 16px; }
	.kh-promo-text { font-size: 12px; }
	.kh-hero { padding: 40px 0 60px; }
	.kh-hero-stats { flex-wrap: wrap; gap: 12px; }
	.kh-hero-stat-sep { display: none; }
	.kh-why-grid, .kh-included, .kh-plans, .kh-screen-grid, .kh-footer-cols { grid-template-columns: 1fr; }
	.kh-quote-card { padding: 48px 24px; }
	.kh-modal { padding: 32px 20px; }
	.kh-step-row { grid-template-columns: 1fr; text-align: center; }
	.kh-step-kor { margin: 0 auto; }
}
