@font-face {
	font-family: 'Pretendard Variable';
	font-weight: 45 920;
	font-style: normal;
	font-display: swap;
	src: url('/fonts/Pretendard/PretendardVariable-site.woff2') format('woff2');
}

:root {
	--ink: #191f28;
	--muted: #6b7684;
	--line: #e5e8eb;
	--surface: #f9f9f9;
	--surface-2: #f2f4f6;
	--brand: #191f28;
	--brand-deep: #0a0d12;
	--accent: #0043d5;
	--accent-ink: #ffffff;
	--accent-soft: #e8eefc;
	--white: #ffffff;
	--max: 1280px;
	--radius: 1rem;
	--shadow: 0 8px 24px rgba(25, 31, 40, 0.06);
	--font: 'Pretendard Variable', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background: var(--white);
	line-height: 1.65;
	letter-spacing: -0.01em;
	-webkit-font-smoothing: antialiased;
	min-width: 280px;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

h1,
h2,
h3 {
	line-height: 1.25;
	letter-spacing: -0.03em;
	font-weight: 720;
	margin: 0 0 0.75rem;
}

p {
	margin: 0 0 1rem;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--brand);
	color: var(--white);
	padding: 0.5rem 1rem;
	z-index: 1000;
}

.skip-link:focus {
	left: 0.5rem;
	top: 0.5rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-height: 2.75rem;
	padding: 0.65rem 1.15rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font: inherit;
	font-weight: 650;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
	background: var(--brand);
	color: var(--white);
}

.btn--primary:hover {
	background: var(--brand-deep);
}

.btn--accent {
	background: var(--accent);
	color: var(--accent-ink);
}

.btn--accent:hover {
	filter: brightness(0.97);
}

.btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.45);
	color: var(--white);
}

.btn--phone {
	background: var(--white);
	color: var(--brand);
	border-color: var(--line);
}

.btn--phone:hover {
	background: var(--surface);
}

.btn--kakao {
	background: #fee500;
	color: #3c1e1e;
	border-color: #fee500;
}

.btn--kakao:hover {
	filter: brightness(0.97);
}

.btn--kakao img {
	flex-shrink: 0;
}

.site-header .btn--ghost {
	border-color: var(--line);
	color: var(--brand);
}

.site-header .btn--phone {
	border-color: var(--line);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0.75rem 1.1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.site-header__brand {
	font-weight: 780;
	font-size: 1.05rem;
	color: var(--brand);
	text-decoration: none;
	letter-spacing: -0.04em;
	margin-right: auto;
}

.site-header__menu-btn {
	display: inline-flex;
	border: 1px solid var(--line);
	background: var(--white);
	border-radius: 999px;
	padding: 0.45rem 0.85rem;
	font: inherit;
	font-weight: 600;
	color: var(--brand);
}

.site-nav {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: var(--white);
	border-bottom: 1px solid var(--line);
	padding: 0.75rem 1.1rem 1rem;
}

.site-nav.is-open {
	display: block;
}

.site-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.35rem;
}

.site-nav__list a {
	display: block;
	padding: 0.55rem 0.35rem;
	text-decoration: none;
	font-weight: 600;
	color: var(--ink);
}

.site-header__cta {
	display: none;
	gap: 0.45rem;
}

.hero {
	position: relative;
	overflow: hidden;
	background: #eceff3;
	color: var(--ink);
}

.hero__stage {
	position: relative;
	width: 100%;
	max-width: var(--max);
	margin: 0 auto;
	padding: 88px 1.1rem 2.5rem;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	align-items: stretch;
}

/* 스샷형: 둥근 비주얼 배너 카드 */
.hero__banner {
	position: relative;
	min-height: 18rem;
	border-radius: 1.35rem;
	overflow: hidden;
	isolation: isolate;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.25rem 1.35rem 2.5rem;
	background:
		url('/images/hero-steering.jpg') center / cover no-repeat;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.18);
	color: var(--white);
}

.hero__banner::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(8, 12, 18, 0.55) 0%, rgba(8, 12, 18, 0.28) 42%, rgba(8, 12, 18, 0.62) 100%);
	pointer-events: none;
}

.hero__banner-copy {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 38rem;
	margin: 0 auto;
	text-align: center;
}

.hero h1,
.hero__heading-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.85rem;
	padding: 0;
	font: inherit;
	color: var(--white);
	word-break: keep-all;
	overflow-wrap: break-word;
}

.hero__title {
	display: block;
	font-size: clamp(2.05rem, 4.6vw, 2.85rem);
	font-weight: 820;
	line-height: 1.2;
	letter-spacing: -0.04em;
	color: var(--white);
}

.hero__lead {
	display: block;
	max-width: 22em;
	font-size: clamp(1.12rem, 2.5vw, 1.42rem);
	font-weight: 650;
	line-height: 1.45;
	letter-spacing: -0.025em;
	color: rgba(255, 255, 255, 0.96);
}

.hero__support {
	margin: 0 0 1.5rem;
	max-width: 28rem;
	margin-left: auto;
	margin-right: auto;
	font-size: clamp(0.92rem, 1.7vw, 1.02rem);
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: -0.015em;
	color: rgba(255, 255, 255, 0.78);
	word-break: keep-all;
	white-space: pre-line;
}

.hero__banner-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	width: 100%;
}

.hero__banner-cta .btn-pill {
	flex: 0 1 auto;
	min-width: 0;
	max-width: 16rem;
	justify-content: space-between;
}

.hero__right {
	min-width: 0;
	width: 100%;
	max-width: 22.5rem;
	justify-self: center;
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
	width: 100%;
}

.hero__cta--float {
	display: none;
}

/* Hero lead form card */
.hero-form {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: 1.35rem 1.25rem 1.25rem;
	border-radius: 1.15rem;
	background: var(--white);
	color: var(--ink);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}

.hero-form__title {
	display: none;
}

.hero-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin: 0 0 0.85rem;
	padding: 0;
	border: 0;
	min-width: 0;
}

.hero-form__label {
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--ink);
}

.hero-form__label em {
	color: var(--accent);
	font-style: normal;
	font-weight: 800;
}

.hero-form__input {
	box-sizing: border-box;
	width: 100%;
	height: 2.75rem;
	padding: 0 0.85rem;
	border: 1px solid #d8dee8;
	border-radius: 0.65rem;
	background: #fff;
	font: inherit;
	font-size: 0.95rem;
	color: var(--ink);
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hero-form__input:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(0, 67, 213, 0.18);
}

.hero-form__select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1.2 1.2 6 6l4.8-4.8'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.85rem center;
	padding-right: 2.2rem;
}

.hero-form__methods {
	margin-bottom: 0.95rem;
}

.hero-form__methods .hero-form__label {
	margin-bottom: 0.15rem;
	color: var(--accent);
}

.hero-form__method-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.45rem;
}

.hero-form__method {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 2.55rem;
	padding: 0.4rem 0.35rem;
	border: 1.5px solid #d8dee8;
	border-radius: 0.65rem;
	background: #fff;
	font-size: 0.92rem;
	font-weight: 700;
	color: #6b7280;
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.hero-form__method input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.hero-form__method.is-on,
.hero-form__method:has(input:checked) {
	border-color: var(--accent);
	color: var(--accent);
	background: rgba(0, 67, 213, 0.06);
}

.hero-form__agree-wrap {
	display: block;
	margin: 0 0 0.85rem;
	padding: 0;
}

.hero-form__agree-wrap .chk {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	user-select: none;
	word-break: keep-all;
}

.hero-form__agree-wrap input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.hero-form__agree-wrap .box {
	width: 20px;
	height: 20px;
	border: 1.5px solid #888;
	border-radius: 4px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
	transition: all 0.2s ease;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	opacity: 0.3;
	flex-shrink: 0;
}

.hero-form__agree-wrap .txt {
	font-size: 14px;
	font-weight: 550;
	line-height: 1.4;
	color: #111;
	letter-spacing: normal;
}

.hero-form__agree-wrap .txt .privacy-link {
	display: inline;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	font-weight: 700;
	letter-spacing: inherit;
	line-height: inherit;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
	color: var(--accent);
}

.hero-form__agree-wrap input:checked + .box {
	background-color: var(--accent);
	border-color: var(--accent);
	opacity: 1;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.hero-form__agree-wrap .chk:focus-within .box {
	box-shadow: 0 0 0 3px rgba(0, 67, 213, 0.22);
}

.hero-form__error {
	margin: 0 0 0.75rem;
	padding: 0.55rem 0.7rem;
	border-radius: 0.55rem;
	background: #fef2f2;
	color: #b91c1c;
	font-size: 0.82rem;
	font-weight: 650;
	line-height: 1.4;
}

.hero-form__success {
	margin: 0 0 0.75rem;
	padding: 0.55rem 0.7rem;
	border-radius: 0.55rem;
	background: #ecfdf5;
	color: #047857;
	font-size: 0.82rem;
	font-weight: 650;
	line-height: 1.4;
}

.hero-form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3.05rem;
	padding: 0.75rem 1rem;
	border: 0;
	border-radius: 0.75rem;
	background: var(--accent);
	color: var(--white);
	font: inherit;
	font-size: 1.05rem;
	font-weight: 780;
	letter-spacing: -0.02em;
	cursor: pointer;
	transition: filter 0.15s ease, transform 0.15s ease;
}

.hero-form__submit:hover {
	filter: brightness(1.05);
}

.hero-form__submit:active {
	transform: translateY(1px);
}

@media (max-width: 768px) {
	.btn-pill__tel-num {
		display: none;
	}

	/* 히어로·하단 상담 전화 버튼은 아이콘+번호만 쓰므로 번호는 유지 */
	.hero__banner-cta .btn-pill__tel-num,
	.contact-banner__cta .btn-pill__tel-num {
		display: inline;
	}

	.hero__stage {
		padding: 80px 1rem 2rem;
	}

	.hero__banner {
		min-height: 15.5rem;
		border-radius: 1.1rem;
		padding: 1.85rem 1.1rem 2rem;
	}

	.hero__banner-cta {
		flex-direction: column;
		align-items: center;
		max-width: 20rem;
		margin-left: auto;
		margin-right: auto;
	}

	.hero__banner-cta .btn-pill {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
		min-width: 13.5rem;
		justify-content: space-between;
	}

	.hero__right {
		max-width: 24rem;
	}

	.hero__cta--float {
		display: flex;
		position: fixed;
		right: max(0.75rem, env(safe-area-inset-right));
		bottom: max(0.85rem, env(safe-area-inset-bottom));
		z-index: 80;
		flex-direction: column;
		align-items: flex-end;
		flex-wrap: nowrap;
		width: max-content;
		max-width: calc(100vw - 1.5rem);
		margin: 0;
		gap: 0.45rem;
		pointer-events: none;
	}

	.hero__cta--float .btn-pill {
		pointer-events: auto;
		box-sizing: border-box;
		width: auto;
		min-width: 0;
		height: 2.75rem;
		min-height: 2.75rem;
		padding: 0.25rem 0.28rem 0.25rem 0.85rem;
		gap: 0.45rem;
		justify-content: flex-start;
		font-size: 0.88rem;
		box-shadow: 0 8px 22px rgba(15, 23, 42, 0.28);
	}

	.hero__cta--float .btn-pill__arrow {
		width: 2rem;
		height: 2rem;
		margin-left: 0.15rem;
	}

	body.consult-lock .hero__cta--float {
		visibility: hidden;
		pointer-events: none;
	}
}

@media (min-width: 960px) {
	.hero__stage {
		padding: 3rem 1.1rem 3rem;
	}

	.hero__inner {
		grid-template-columns: minmax(0, 1.55fr) minmax(20rem, 22.5rem);
		gap: 1.35rem;
		align-items: stretch;
	}

	.hero__banner {
		min-height: 26rem;
		border-radius: 1.5rem;
		padding: 2.75rem 2rem 3rem;
	}

	.hero__banner-copy {
		max-width: 40rem;
	}

	.hero__title {
		font-size: clamp(2.35rem, 3vw, 3rem);
	}

	.hero__lead {
		font-size: clamp(1.28rem, 1.8vw, 1.5rem);
		max-width: 24em;
	}

	.hero__support {
		font-size: 1.05rem;
	}

	.hero__right {
		justify-self: stretch;
		max-width: none;
	}
}

.section {
	padding: 100px 0;
	background: var(--white);
}

.section--tint {
	background: #f9f9f9;
}

.section__inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 1.1rem;
}

.section h2,
.section__heading {
	font-size: clamp(1.45rem, 3.4vw, 2rem);
	font-weight: 780;
	letter-spacing: -0.03em;
	color: var(--brand);
	text-align: center;
	margin: 0;
}

.section__lead {
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
	color: var(--muted);
	text-align: center;
	word-break: keep-all;
	overflow-wrap: break-word;
	line-height: 1.7;
	white-space: pre-line;
}

.areas-page {
	padding-top: 7rem;
}

.areas-page h1 {
	margin: 0 0 0.85rem;
	font-size: clamp(1.55rem, 3.4vw, 2.1rem);
	font-weight: 820;
	letter-spacing: -0.03em;
	color: var(--brand);
	text-align: center;
	word-break: keep-all;
}

.apply-page {
	padding-top: 7rem;
	background: #eceff3;
}

.apply-page h1 {
	margin: 0 0 0.85rem;
	font-size: clamp(1.55rem, 3.4vw, 2.1rem);
	font-weight: 820;
	letter-spacing: -0.03em;
	color: var(--brand);
	text-align: center;
	word-break: keep-all;
}

.apply-page__inner {
	max-width: 28rem;
}

.apply-page__form {
	margin-top: 1.75rem;
}

.apply-page .hero-form {
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}

.board-page {
	padding: 100px 0;
	background: var(--white);
}

.board-page__inner {
	max-width: var(--max);
}

.board-page.board-detail .board-page__inner {
	max-width: 620px;
}

.board-head {
	margin-bottom: 1.25rem;
}

.board-head h1 {
	margin: 0;
	font-size: clamp(1.55rem, 3.2vw, 2rem);
	font-weight: 820;
	letter-spacing: -0.03em;
	color: var(--ink);
	text-align: left;
	word-break: keep-all;
}

.board-head__meta {
	margin: 0.45rem 0 0;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--muted);
}

.board-table-wrap {
	width: 100%;
	overflow-x: auto;
}

.board-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.board-table th,
.board-table td {
	padding: 0.95rem 0.65rem;
	border-bottom: 1px solid #e8ecf1;
	font-size: 0.95rem;
	line-height: 1.45;
	vertical-align: middle;
	word-break: keep-all;
}

.board-table thead th {
	background: #f7f8fa;
	font-weight: 700;
	color: #475569;
}

.board-table__no {
	width: 4.5rem;
	color: #64748b;
	text-align: left;
}

.board-table__title {
	width: auto;
	text-align: left;
}

.board-table__title-inner {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem 0.4rem;
	max-width: 100%;
}

.board-table__author {
	width: 7.5rem;
	color: #64748b;
	text-align: center;
}

.board-table__date {
	width: 8.5rem;
	color: #94a3b8;
	text-align: center;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.board-table tbody td.board-table__author,
.board-table thead th.board-table__author,
.board-table tbody td.board-table__date,
.board-table thead th.board-table__date {
	text-align: center;
}

.board-table__link {
	color: var(--ink);
	font-weight: 600;
	text-decoration: none;
}

.board-table__link:hover {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.board-badge-new {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	border-radius: 0.2rem;
	background: #ef4444;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 800;
	line-height: 1;
}

.board-comments {
	display: inline-flex;
	align-items: center;
	gap: 0.15rem;
	flex-shrink: 0;
	color: #94a3b8;
	font-size: 0.8rem;
	font-weight: 650;
	line-height: 1;
}

.board-comments svg {
	display: block;
	flex-shrink: 0;
}

.board-paging {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 1.75rem;
}

.board-paging__btn,
.board-paging__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	min-width: 2.25rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #4e5968;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
}

.board-paging__icon {
	width: 1.25rem;
	height: 1.25rem;
	display: block;
}

.board-paging__btn--prev .board-paging__icon {
	transform: rotate(180deg);
}

.board-paging__num.is-on {
	background: #f2f4f6;
	color: #191f28;
	font-weight: 700;
}

.board-paging__ellipsis {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	color: #8b95a1;
	pointer-events: none;
}

.board-paging__ellipsis-icon {
	width: 1.15rem;
	height: 1.15rem;
	display: block;
}

.board-paging__btn:disabled {
	opacity: 0.28;
	cursor: default;
}

@media (max-width: 720px) {
	.board-table__author,
	.board-table thead .board-table__author {
		display: none;
	}

	.board-table__no {
		width: 3.2rem;
	}

	.board-table__date {
		width: 6.5rem;
		font-size: 0.82rem;
	}

	.board-table th,
	.board-table td {
		padding: 0.85rem 0.4rem;
		font-size: 0.88rem;
	}
}

.board-detail__nav {
	margin-bottom: 1.1rem;
}

.board-detail__back {
	color: var(--muted);
	font-size: 0.92rem;
	font-weight: 600;
	text-decoration: none;
}

.board-detail__back:hover {
	color: var(--accent);
}

.board-detail__card {
	padding: 1.35rem 0 0.25rem;
	border-top: 1px solid var(--line);
}

.board-detail__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0.35rem 0 1.5rem;
}

.board-detail__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 0.85rem;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	background: #f2f4f6;
	color: #191f28;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.board-detail__title {
	margin: 0 0 0.7rem;
	max-width: 100%;
	font-size: clamp(1.875rem, 3.9vw, 2.325rem);
	font-weight: 820;
	letter-spacing: -0.03em;
	line-height: 1.4;
	color: var(--ink);
	text-align: center;
	word-break: keep-all;
}

.board-detail__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	margin: 0;
	color: #8b95a1;
	font-size: 0.88rem;
	font-weight: 500;
}

.board-detail__fields {
	margin: 0;
	padding: 0;
	border-top: 1px solid #eef1f4;
}

.board-detail__row {
	display: grid;
	grid-template-columns: 7.5rem minmax(0, 1fr);
	gap: 0.75rem 1rem;
	margin: 0;
	padding: 0.95rem 0;
	border-bottom: 1px solid #eef1f4;
}

.board-detail__row dt {
	margin: 0;
	color: #64748b;
	font-size: 0.9rem;
	font-weight: 700;
}

.board-detail__row dd {
	margin: 0;
	color: var(--ink);
	font-size: 0.95rem;
	font-weight: 600;
	word-break: keep-all;
}

.board-detail__row--block {
	grid-template-columns: 1fr;
	gap: 0.55rem;
}

.board-detail__content-block {
	margin-top: 0.35rem;
	padding: 1.1rem 0 0.25rem;
}

.section.board-detail h2.board-detail__content-title {
	margin: 0 0 0.65rem;
	font-size: 0.95rem;
	font-weight: 750;
	letter-spacing: -0.02em;
	line-height: 1.4;
	color: #475569;
	text-align: left;
}

.board-detail__content {
	margin: 0;
	white-space: pre-line;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.65;
	color: #334155;
	word-break: keep-all;
}

.board-detail__replies {
	margin-top: 2.25rem;
	padding-top: 0.25rem;
}

.section.board-detail h3.board-detail__replies-title,
.section.board-detail h2.board-detail__replies-title {
	margin: 0 0 0.55rem;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.4;
	color: #6b7684;
	text-align: left;
}

.board-detail__replies-card {
	padding: 1.35rem 1.4rem 1.45rem;
	border-radius: 1rem;
	background: #f2f4f6;
}

.board-detail__empty {
	margin: 0;
	padding: 0.15rem 0;
	color: #6b7684;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.6;
}

.board-detail__reply-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.35rem;
}

.board-detail__reply {
	padding: 0;
	border: 0;
}

.board-detail__reply-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.65rem;
	margin-bottom: 0.55rem;
}

.board-detail__reply-meta strong {
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #191f28;
}

.board-detail__reply-meta span {
	font-size: 0.82rem;
	font-weight: 500;
	color: #8b95a1;
}

.board-detail__reply-body {
	margin: 0;
	color: #4e5968;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.7;
	white-space: pre-line;
	word-break: keep-all;
}

.board-detail__course {
	margin-top: 1.35rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(25, 31, 40, 0.08);
}

.section.board-detail h4.board-detail__course-title {
	margin: 0 0 0.55rem;
	font-size: 1rem;
	font-weight: 780;
	letter-spacing: -0.02em;
	line-height: 1.4;
	color: #191f28;
	text-align: left;
}

.board-detail__course-lead {
	margin: 0 0 1rem;
	color: #4e5968;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.65;
	word-break: keep-all;
}

.board-detail__course-plans.curr-plans {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	margin: 0;
}

.board-detail__course-plans .curr-plan {
	margin: 0;
}

.board-detail__course-plans .curr-plan__title {
	font-size: 1rem;
}

.board-detail__course-plans .curr-plan__value strong {
	font-size: 2.4rem;
}

.board-detail__price-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.board-detail__price-item {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.4rem;
	padding: 1rem 1.1rem;
	border-radius: 0.85rem;
	background: #fff;
	border: 1px solid rgba(25, 31, 40, 0.08);
	box-sizing: border-box;
}

.board-detail__price-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin: 0;
	min-width: 0;
}

.board-detail__price-head strong {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 780;
	line-height: 1.3;
	color: #191f28;
	min-width: 0;
}

.board-detail__price-head span {
	flex-shrink: 0;
	margin: 0;
	font-size: 0.82rem;
	font-weight: 650;
	line-height: 1.3;
	color: var(--accent);
	text-align: right;
	white-space: nowrap;
}

.board-detail__price-amount {
	margin: 0;
	padding: 0;
	font-size: 1.35rem;
	font-weight: 820;
	letter-spacing: -0.03em;
	color: var(--accent);
	line-height: 1.25;
	text-align: left;
}

.board-detail__price-note {
	margin: 0;
	padding: 0;
	font-size: 0.8rem;
	font-weight: 500;
	line-height: 1.5;
	color: #8b95a1;
	text-align: left;
	word-break: keep-all;
}

.board-detail__vehicle-grid.price-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	margin: 0;
}

.board-detail__vehicle-grid .price-card {
	margin: 0;
	text-align: left;
}

.board-detail__vehicle-grid .price-card__body {
	align-items: flex-start;
}

.board-detail__vehicle-grid .price-card h5 {
	margin: 0 0 0.25rem;
	font-size: 1.05rem;
	font-weight: 780;
	color: #191f28;
	text-align: left;
}

.board-detail__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	margin-top: 1.75rem;
}

.board-detail__actions .btn {
	min-width: 7.5rem;
	padding-left: 1.75rem;
	padding-right: 1.75rem;
}

@media (max-width: 720px) {
	.board-detail__row {
		grid-template-columns: 1fr;
		gap: 0.3rem;
	}

	.board-detail__replies-card {
		padding: 1.15rem 1.1rem 1.25rem;
		border-radius: 0.85rem;
	}
}

.area-list {
	list-style: none;
	margin: 1.75rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.area-list__item {
	display: flex;
	align-items: center;
	min-height: 2.75rem;
	padding: 0.65rem 0.9rem;
	border-radius: 0.75rem;
	background: var(--white);
	border: 1px solid var(--line);
	font-size: 0.95rem;
	font-weight: 650;
	letter-spacing: -0.02em;
	color: var(--ink);
	word-break: keep-all;
}

@media (min-width: 720px) {
	.area-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.area-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.price-grid,
.scene-grid,
.feature-grid,
.review-grid,
.process-grid {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

.price-card,
.scene-card,
.process-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.2rem 1.15rem 1.25rem;
	box-shadow: var(--shadow);
}

.price-card {
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.price-card__media {
	height: 7.5rem;
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 0.85rem;
}

.price-card__media img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
}

.price-card__body {
	padding: 1.2rem 1.25rem 1.35rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	background: #f7faff;
}

.price-notice {
	max-width: 52rem;
	margin: 1.75rem auto 0;
	padding: 1.65rem 1.65rem;
	border: 1px solid #bfdbfe;
	border-radius: 0.75rem;
	background: var(--white);
	box-sizing: border-box;
	text-align: left;
}

.price-notice h3 {
	margin: 0 0 0.85rem;
	font-size: 1.1rem;
	font-weight: 720;
	color: var(--accent);
}

.price-notice ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.price-notice li {
	position: relative;
	padding-left: 0.9rem;
	font-size: 0.95rem;
	color: #555;
	line-height: 1.65;
	word-break: keep-all;
}

.price-notice li + li {
	margin-top: 0.65rem;
}

.price-notice li::before {
	content: '';
	position: absolute;
	top: 0.65rem;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--accent);
}

.price-card h3,
.scene-card h3,
.process-card h3,
.process-card__title {
	font-size: 1.12rem;
	font-weight: 750;
	color: var(--brand);
	margin: 0;
}

.price-card h3 {
	margin: 0 0 0.25rem;
	font-size: 1.28rem;
	font-weight: 780;
	color: var(--ink);
}

/* 특징 — 스샷1형 이미지+번호 카드 */
.feat-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
	text-align: center;
}

.feat-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #eee;
}

.feat-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feat-card__badge {
	position: absolute;
	left: 50%;
	bottom: 0.75rem;
	transform: translateX(-50%);
	z-index: 1;
	max-width: calc(100% - 1.5rem);
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	background: var(--accent);
	color: var(--accent-ink);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(0, 67, 213, 0.28);
}

.feat-card__body {
	padding: 1.15rem 1rem 1.35rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}

.feat-card__n {
	margin: 0 0 0.45rem;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--accent);
}

.feat-card__body h3,
.feat-card__title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.02rem, 1.6vw, 1.18rem);
	font-weight: 780;
	line-height: 1.35;
	letter-spacing: -0.02em;
	color: var(--ink);
	word-break: keep-all;
}

.feat-card__sub {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--muted);
	word-break: keep-all;
}

.feat-card__cta {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.15rem;
	padding: 0.65rem 1.15rem;
	border: 0;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}

.feat-card__cta:hover {
	background: #d6e8ff;
}

.feat-card__cta:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

/* 커리큘럼 — SaaS 플랜형 카드 (동일 높이) */
.curr-plans {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin: 2rem auto 0;
	align-items: stretch;
	max-width: 68rem;
}

.curr-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	padding: 1.45rem 1.35rem 1.35rem;
	border-radius: 1.4rem;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, #e2e8f0, #e2e8f0) border-box;
	border: 2px solid transparent;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
	transition: box-shadow 0.2s ease;
}

.curr-plan.is-featured {
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(120deg, #f59e0b 0%, #ec4899 32%, #8b5cf6 58%, #3b82f6 78%, #06b6d4 100%)
			border-box;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
	z-index: 1;
}

.curr-plan__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.65rem;
	margin-bottom: 0.35rem;
}

.curr-plan__pill {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: var(--accent-soft);
	color: #1d4ed8;
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: -0.02em;
	line-height: 1.2;
	white-space: nowrap;
}

.curr-plan__title {
	margin: 0;
	font-size: 1.45rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: var(--ink);
}

.curr-plan__sub {
	margin: 0 0 1.15rem;
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.45;
	color: var(--muted);
	word-break: keep-all;
}

.curr-plan__value {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
	margin: 0 0 1.2rem;
	color: var(--ink);
}

.curr-plan__value strong {
	font-size: clamp(2.35rem, 4.5vw, 2.85rem);
	font-weight: 820;
	line-height: 1;
	letter-spacing: -0.04em;
}

.curr-plan__value span {
	font-size: 0.95rem;
	font-weight: 550;
	color: #94a3b8;
}

.curr-plan__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3.05rem;
	margin: 0 0 1.25rem;
	padding: 0.75rem 1.1rem;
	border: none;
	border-radius: 0.85rem;
	background: var(--accent);
	color: #fff;
	font: inherit;
	font-size: 0.98rem;
	font-weight: 750;
	letter-spacing: -0.02em;
	text-decoration: none;
	box-sizing: border-box;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease, filter 0.15s ease;
}

.curr-plan__cta:hover {
	background: #0036ab;
}

.curr-plan__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.15rem;
	flex: 1;
	align-content: start;
}

.curr-plan__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	padding: 0.55rem 0;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #475569;
	word-break: keep-all;
}

.curr-plan__check {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0.12rem;
	color: #22c55e;
}

.curr-plan__item-text {
	flex: 1;
	min-width: 0;
}

.curr-plan__list em {
	font-style: normal;
	font-weight: 720;
	color: var(--ink);
	margin-right: 0.3rem;
}

.curr-plan__note {
	margin: auto 0 0;
	padding-top: 1rem;
	font-size: 0.78rem;
	font-weight: 550;
	line-height: 1.4;
	color: #94a3b8;
	word-break: keep-all;
}

.process-card p {
	color: var(--muted);
	margin-bottom: 0;
	word-break: keep-all;
}

.process-grid {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	counter-reset: none;
}

.process-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.process-card__head h3 {
	margin: 0;
	flex: 1;
	min-width: 0;
}

.process-card__n {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin: 0;
	font-size: 0.85rem;
	font-weight: 780;
	letter-spacing: 0.06em;
	color: var(--accent);
	background: var(--accent-soft);
	padding: 0.2rem 0.55rem;
	border-radius: 0.35rem;
}

.section-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	margin-top: 1.75rem;
}

.price-card__type {
	margin: 0 0 0.65rem;
	font-size: 0.9rem;
	font-weight: 650;
	color: var(--accent);
}

.price-card__summary {
	margin: 0 0 1rem;
	color: var(--muted);
	font-size: 0.94rem;
	line-height: 1.65;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.price-card__guide {
	margin-top: auto;
}

.price-card__guide-label {
	margin: 0 0 0.35rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--accent);
}

.price-card__amount {
	margin: 0 0 0.4rem;
	font-size: 1.25rem;
	font-weight: 780;
	color: var(--accent);
	letter-spacing: -0.02em;
	background: none;
	display: block;
	padding: 0;
	border-radius: 0;
}

.price-card__note,
.scene-card p {
	color: var(--muted);
	margin-bottom: 0;
}

.price-card__note {
	font-size: 0.78rem;
	color: var(--muted);
	line-height: 1.45;
}

.badge {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.2rem 0.5rem;
	border-radius: 999px;
	background: var(--surface-2);
	color: var(--brand);
}

.review-grid {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
	list-style: none;
	padding: 0;
}

.review-grid > li {
	min-width: 0;
	height: 100%;
}

.review-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 0.875rem;
	box-shadow: var(--shadow);
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-card--clickable {
	cursor: pointer;
}

.review-card--clickable:hover,
.review-card--clickable:focus-visible {
	border-color: #c7d7f5;
	box-shadow: 0 12px 28px rgba(0, 67, 213, 0.12);
	outline: none;
}

.review-card--clickable:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

.review-card__body-inner {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	flex: 1 1 auto;
	padding: 1.1rem 1.2rem 1.25rem;
	box-sizing: border-box;
}

.review-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0;
}

.review-card__profile {
	flex: 1 1 auto;
	min-width: 0;
}

.review-card__thumb {
	flex: 0 0 50px;
	width: 50px;
	height: 50px;
	border-radius: 8px;
	background: #f1f5f9;
	overflow: hidden;
}

.review-card__thumb-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-card__name {
	margin: 0;
	font-size: 1rem;
	font-weight: 720;
	line-height: 1.4;
	color: var(--ink);
	letter-spacing: -0.02em;
	word-break: keep-all;
}

.review-card__meta {
	margin: 0.25rem 0 0;
	font-size: 0.82rem;
	font-weight: 500;
	line-height: 1.4;
	color: var(--muted);
	word-break: keep-all;
}

.review-card__rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
}

.review-card__stars {
	display: inline-flex;
	gap: 1px;
	color: #f5b301;
	font-size: 0.95rem;
	line-height: 1;
	letter-spacing: 0;
}

.review-card__score {
	font-size: 0.82rem;
	font-weight: 650;
	color: var(--muted);
	line-height: 1;
}

.review-card__text {
	margin: 0;
	flex: 1;
	font-size: 0.95rem;
	line-height: 1.7;
	color: #334155;
	word-break: keep-all;
	overflow-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.review-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: auto;
}

.review-card__badge {
	display: inline-flex;
	align-items: center;
	min-height: 1.6rem;
	padding: 0.15rem 0.65rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 650;
	line-height: 1.3;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.review-card__badge--course {
	background: var(--accent-soft);
	color: #1d4ed8;
}

.review-card__badge--vehicle {
	background: #eef2f6;
	color: #475569;
}

html.review-modal-lock,
body.review-modal-lock {
	overflow: hidden;
}

.review-modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem 1rem;
	background: rgba(15, 23, 42, 0.62);
	box-sizing: border-box;
}

.review-modal[hidden] {
	display: none !important;
}

.review-modal__panel {
	position: relative;
	width: min(100%, 420px);
	max-height: min(92vh, 760px);
}

.review-modal__dialog {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-height: min(92vh, 760px);
	border-radius: 1.5rem;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}

.review-modal__close {
	position: absolute;
	top: -14px;
	right: -14px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: #111827;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.review-modal__close span {
	display: block;
	margin-top: -2px;
}

.review-modal__image-wrap {
	flex: 0 0 auto;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: #f1f5f9;
}

.review-modal__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-modal__scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.review-modal__content {
	padding: 1.25rem 1.35rem 1.5rem;
}

.review-modal__stars {
	color: #ef4444;
	font-size: 1.1rem;
	letter-spacing: 1px;
	line-height: 1;
}

.review-modal__heading {
	margin-top: 0.75rem;
}

.review-modal__badge {
	display: inline-flex;
	align-items: center;
	min-height: 1.6rem;
	padding: 0.15rem 0.65rem;
	border-radius: 999px;
	background: var(--accent-soft);
	color: #1d4ed8;
	font-size: 0.75rem;
	font-weight: 650;
	line-height: 1.3;
}

.review-modal__title {
	margin: 0.65rem 0 0;
	font-size: 1.2rem;
	font-weight: 720;
	line-height: 1.35;
	color: var(--ink);
	letter-spacing: -0.02em;
	word-break: keep-all;
}

.review-modal__author {
	margin-top: 1.1rem;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid #eee;
}

.review-modal__name {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ink);
}

.review-modal__meta {
	margin: 0.25rem 0 0;
	font-size: 0.85rem;
	color: var(--muted);
}

.review-modal__body {
	margin-top: 1rem;
	font-size: 0.95rem;
	line-height: 1.75;
	color: #334155;
	word-break: keep-all;
	white-space: pre-line;
}

.review-modal__footer {
	flex: 0 0 auto;
	padding: 0.85rem 1.1rem 1.1rem;
	border-top: 1px solid #f1f5f9;
}

.review-modal__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3rem;
	border: 0;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font: inherit;
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	cursor: pointer;
}

.review-modal__cta:hover,
.review-modal__cta:focus-visible {
	filter: brightness(0.96);
	outline: none;
}

.faq-list {
	margin-top: 1.25rem;
	display: grid;
	gap: 0.75rem;
}

.faq-item {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 0.75rem;
	padding: 0;
	box-shadow: none;
	overflow: hidden;
}

.faq-item summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--ink);
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-height: 1.5rem;
	padding: 1.15rem 1.2rem;
	background: var(--white);
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item__badge {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 50%;
	background: #2b2f36;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.faq-item__q {
	flex: 1;
	min-width: 0;
	text-align: left;
	word-break: keep-all;
	line-height: 1.45;
	font-size: 1rem;
}

.faq-item__arrow {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	color: #8b95a1;
	transition: transform 0.2s ease, color 0.2s ease;
	margin-left: auto;
}

.faq-item[open] .faq-item__arrow {
	transform: rotate(180deg);
	color: var(--ink);
}

.faq-item[open] summary {
	border-bottom: 1px solid var(--line);
}

.faq-item__answer {
	background: #f7f7f7;
	padding: 1.1rem 1.2rem 1.2rem;
}

.faq-item__answer p {
	margin: 0;
	padding: 0;
	color: #4e5968;
	font-size: 0.95rem;
	line-height: 1.7;
	font-weight: 500;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.contact-banner {
	position: relative;
	isolation: isolate;
	padding: 5.5rem 1.25rem;
	text-align: center;
	color: #fff;
	background:
		radial-gradient(circle at 20% 25%, rgba(0, 67, 213, 0.28), transparent 32%),
		radial-gradient(circle at 80% 70%, rgba(0, 67, 213, 0.16), transparent 28%),
		linear-gradient(160deg, #1b2330 0%, #121820 48%, #0a0d12 100%);
	overflow: hidden;
}

.contact-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(circle at 12% 80%, rgba(255, 255, 255, 0.06) 0 2px, transparent 3px),
		radial-gradient(circle at 88% 35%, rgba(255, 255, 255, 0.07) 0 3px, transparent 4px),
		radial-gradient(circle at 45% 18%, rgba(0, 67, 213, 0.12) 0 4px, transparent 6px);
	pointer-events: none;
}

.contact-banner__inner {
	position: relative;
	z-index: 1;
	max-width: 42rem;
	margin: 0 auto;
}

.contact-banner h2 {
	margin: 0 0 1rem;
	font-size: clamp(1.65rem, 4vw, 2.35rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.25;
	color: #fff;
	text-align: center;
}

.contact-banner__lead {
	margin: 0 0 1.85rem;
	font-size: clamp(0.95rem, 2vw, 1.05rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	white-space: pre-line;
	word-break: keep-all;
}

.contact-banner__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

@media (max-width: 768px) {
	.contact-banner__cta {
		flex-direction: column;
		align-items: stretch;
		flex-wrap: nowrap;
		max-width: 22rem;
		margin-left: auto;
		margin-right: auto;
	}

	.contact-banner__cta .btn-pill {
		width: 100%;
		justify-content: space-between;
	}
}

.contact-banner__phone.btn-pill--phone {
	--pill-bg: #ffffff;
	--pill-text: #191f28;
	--pill-arrow-bg: #0043d5;
	--pill-arrow-fg: #ffffff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
	font-size: 1.08rem;
}

.site-footer {
	position: relative;
	padding: 2.25rem 0 1.75rem;
	background: #f7f8fa;
	border-top: 1px solid #e8ebef;
	color: #666;
	text-align: center;
}

.site-footer__inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 1.1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.site-footer__brand-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 28rem;
}

.site-footer__brand {
	display: inline-block;
	margin: 0 0 0.5rem;
	font-size: 1.35rem;
	font-weight: 780;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--accent);
	text-decoration: none;
	word-break: keep-all;
}

.site-footer__desc {
	margin: 0 0 0.85rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #555;
	word-break: keep-all;
}

.site-footer__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.1rem;
	margin-bottom: 0;
}

.site-footer__contact {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: #374151;
}

.site-footer__contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.site-footer__contact-icon--phone {
	background: var(--accent);
	color: #fff;
}

.site-footer__contact-icon--kakao {
	background: #fae100;
	color: #3c1e1e;
}

.site-footer__contact-icon--kakao img {
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	object-fit: contain;
}

.site-footer__contact-label {
	font-size: 0.85rem;
	font-weight: 650;
	line-height: 1.3;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.site-footer__contact:hover .site-footer__contact-label,
.site-footer__contact:focus .site-footer__contact-label {
	color: var(--accent);
}

.site-footer__bottom {
	width: 100%;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #e4e8ee;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.65rem;
	font-size: 0.85rem;
	line-height: 1.5;
	color: #6b7280;
}

.site-footer__links a,
.site-footer__links button {
	color: inherit;
	text-decoration: none;
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	cursor: pointer;
}

.site-footer__links a:hover,
.site-footer__links button:hover {
	color: var(--accent);
}

.site-footer__sep {
	color: #c5cad3;
}

.site-footer__copy {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.5;
	color: #9ca3af;
}

.site-footer__note {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.45;
	color: #b0b8c1;
}

/* 개인정보처리방침 모달 (coursedrive 신청 팝업 연동) */
.ft-policy-dim {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 998;
}

.ft-policy-modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 600px;
	max-height: min(80vh, 36rem);
	overflow: auto;
	background: #fff;
	border-radius: 8px;
	z-index: 999;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.ft-policy-inner {
	padding: 2rem;
	position: relative;
}

.ft-policy-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	cursor: pointer;
}

.ft-policy-title {
	font-size: 19px;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 1.2rem;
}

.ft-policy-content {
	font-size: 15px;
	line-height: 1.6;
	color: #333;
}

.ft-policy-content .ft-policy-item:not(:last-child) {
	margin-bottom: 24px;
}

.ft-policy-content .ft-policy-item h4 {
	margin: 0;
	font-size: 15px;
}

.ft-policy-content .ft-policy-item ul {
	margin: 8px 0 0;
	padding: 0;
	list-style: none;
}

.ft-policy-content .ft-policy-item ul li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: #555;
	line-height: 1.7;
}

.ft-policy-item ul li::before {
	content: '•';
	flex-shrink: 0;
	color: #333;
}

.ft-policy-content p {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
	margin-top: 8px;
}

.consult-complete__note {
	margin: 0.85rem 0 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #6b7684;
	word-break: keep-all;
	text-align: center;
}

.error-page {
	max-width: 36rem;
	margin: 0 auto;
	padding: 4rem 1.1rem 5rem;
}

@media (min-width: 720px) {
	.site-header__inner {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		gap: 0.75rem;
	}

	.site-header__menu-btn {
		display: none;
	}

	.site-nav {
		display: block;
		position: static;
		border: 0;
		background: transparent;
		padding: 0;
		margin: 0;
		justify-self: center;
		grid-column: 2;
	}

	.site-nav__list {
		display: flex;
		justify-content: center;
		gap: 0.5rem 2rem;
	}

	.site-nav__list a {
		padding: 0.35rem 0;
		font-size: 18px;
	}

	.site-header__brand {
		margin-right: 0;
		justify-self: start;
		grid-column: 1;
	}

	.site-header__cta {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		justify-self: end;
		grid-column: 3;
		max-width: none;
	}

	.site-header__cta .btn {
		min-height: 2.5rem;
		padding: 0.5rem 0.9rem;
		font-size: 0.9rem;
	}

	.price-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.curr-plans {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.1rem;
		align-items: stretch;
	}

	.feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.scene-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.review-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.review-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.feature-grid,
	.process-grid,
	.scene-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
