@charset 'utf-8';


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	word-break: normal;
}

body {
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
	line-height: 1.7;
	color: #2d3748;
	overflow-x: hidden;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(30, 41, 59, 0.95);
	backdrop-filter: blur(10px);
	padding: 1rem 2rem;
	z-index: 1000;
	width: 100vw;
}

.header h1 {
	font-weight: 600;
}

.hero {
	/* background: linear-gradient(135deg, #1e293b 0%, #0891b2 100%); */
	background-image: url('../../img/custom_img/ai_hero_img.jpg');

	background-position: left center;
	background-size: cover;
	background-repeat: no-repeat;
	color: white;
	min-height: 55vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3rem 2rem;
	position: relative;
}

/* 부모 요소에 hover했을 때 ::before 요소 변경 */
.hero:hover::before {
	background: rgba(0, 0, 0, 0.4);
	/* 호버 시 더 밝게 */
}

/* 어두운 오버레이를 의사 요소로 생성 */
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	/* 검은색 50% 투명도 */
	z-index: 1;
	transition: all .3s ease-out;
}

.hero h2 {
	font-weight: 700;
	margin-bottom: 0;
	line-height: 1.3;
	color: #fff;
	text-shadow: 0 0 1rem #000;
	position: relative;
	z-index: 2;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section {
	padding: 4rem 0;
}

.section:nth-child(odd) {
	background-color: #f8fafc;
}

.section h3 {
	font-weight: 700;
	margin-bottom: 2rem;
	color: #1e293b;
	text-align: center;
}

.section p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #4a5568;
}

.highlight {
	color: #0891b2;
	font-weight: 600;
}

.bold {
	font-weight: 700;
	color: #2d3748;
}


.before-begin,
.why-ai {
	display: flex;
	gap: 2rem
}

.why-ai .img-wrap,
.before-begin .img-wrap {
	width: 50%;
	flex: 1 0 50%;
}

.before-begin .img-wrap img,
.why-ai .img-wrap img {
	width: 100%;
}

@media (max-width:768px) {

	.before-begin,
	.why-ai {
		flex-wrap: wrap;
		justify-content: center;
	}

}

.pain-points {
	display: grid;
	gap: 2rem;
	margin: 2rem 0;
	grid-template-columns: 1fr 1fr;
	max-width: 100%;
}

.pain-header {
	height: 200px;
	width: 100%;
	overflow: hidden;
	padding-bottom: 1rem;
	display: flex;
	justify-content: center;
}

.pain-header img {
	height: 100%;
	object-fit: contain;
	vertical-align: center;
}

.pain-point h4 {
	text-align: center;
}

.pain-point {
	background: white;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	border: 4px solid #0891b2;
	max-width: 100%;
	min-width: 0;
	/* grid child can shrink within column */
	overflow-wrap: anywhere;
	/* break long tokens to avoid horizontal overflow */
}

.pain-point h4 {
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 1rem;
}

@media(max-width: 768px) {
	.pain-points {
		grid-template-columns: 1fr;
		width: 100%;
		gap: 1.5rem;
	}

	.pain-point {
		width: 100%;
		box-sizing: border-box;
		margin: 0;
	}
}

.benefits {
	display: grid;
	gap: 2rem;
	margin: 3rem 0;
	grid-template-columns: 1fr 1fr 1fr;
}

.benefit {
	/* background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
	color: #0b2239;
	/* 텍스트 밝은 회색 */
	border-radius: 16px;
	padding: 24px;
	position: relative;
	overflow: hidden;

	/* 그라데이션 보더 */
	border: 2px solid transparent;
	background-image:
		/* linear-gradient(#0b2239, #0b2239) */
		linear-gradient(45deg, #f6e27a, #d4af37, #f6e27a);
	/* 골드 그라데이션 */

	/* 그림자 */
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease;
}

.benefit * {

	transition: all 0.3s ease;
}

.benefit:hover * {
	color: #fff !important;
}

.benefit h4 {
	font-weight: 700;
	/* color: #0891b2; */
	color: #0b2239;
	margin-bottom: 1rem;
	min-height: 80px;
	display: flex;
	border-bottom: 1px solid #0b2239;
	align-items: center;
	line-height: 1.5;
}

.benefit p {
	color: #0b2239;
}

.benefit svg {
	margin-right: 1rem;
}

@media (max-width: 1200px) {
	.benefits {
		grid-template-columns: 1fr;
	}
}

#section-sincerely {
	position: relative;
	color: #fff;
}

#section-sincerely * {
	color: #fff;
	text-shadow: 0 0 1rem #000;
}

#sincerely-bg {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	background: url(../../img/custom_img/sincerely_bg.jpg) center/cover no-repeat;
	filter: brightness(.5);
}

#section-instructors {
	background: url(../../img/custom_img/instroctor_bg.png) center/cover no-repeat;
}

.instructors {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.instructor {
	background: rgba(255, 255, 255, 0.5);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.instructor-photo {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	margin: 0 auto 1rem;
	border: 3px solid #bfc8ea;
	overflow: hidden;
	position: relative;
}

.instructor-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 최재윤 변호사 - 다른 강사들과 동일한 수직 위치로 조정하되 머리 윗부분 보존 */
.instructor:nth-child(1) .instructor-photo img {
	object-position: center 25%;
}

/* 윤세환 변호사 */
.instructor:nth-child(2) .instructor-photo img {
	object-position: center 20%;
}

/* 박광훈 변호사 */
.instructor:nth-child(3) .instructor-photo img {
	object-position: center 20%;
}

/* 박성훈 개발자 */
.instructor:nth-child(4) .instructor-photo img {
	object-position: center 20%;
}

.instructor h4 {
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.5rem;
}

.instructor .role {
	color: #5066b8;
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 1rem;
}

.instructor .bio {
	font-size: 0.9rem;
	color: #6b7280;
	line-height: 1.6;
}

@media (max-width: 1200px) {
	.instructors {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

.curriculum {
	display: grid;
	gap: 1.5rem;
	margin: 2rem 0;
}

.week {
	padding: 2rem 50% 2rem 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	/* border: 4px solid #0300a5; */
	position: relative;
	overflow: hidden;
}

.week:nth-child(1) {
	background: url(../../img/custom_img/week_1.jpg) right center/50% no-repeat;
}

.week:nth-child(2) {
	background: url(../../img/custom_img/week_2.jpg) right center/50% no-repeat;
}

.week:nth-child(3) {
	background: url(../../img/custom_img/week_34.jpg) right center/50% no-repeat;
}

.week:nth-child(4) {
	background: url(../../img/custom_img/week_5.jpg) right center/50% no-repeat;
}

.week:nth-child(5) {
	background: url(../../img/custom_img/week_6.jpg) right center/50% no-repeat;
}

.week::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right,
			rgb(166, 230, 230, 0.7) 0%,
			rgba(166, 230, 230, 1) 50%,
			rgba(166, 230, 230, 0) 60%,
			rgba(166, 230, 230, 0) 100%);
	z-index: 1;
	pointer-events: none;
}

@media (max-width: 1200px) {

	.week {
		padding: 2rem 20% 2rem 2rem;
	}

	.week:nth-child(1) {
		background: url(../../img/custom_img/week_1.jpg) right center/cover no-repeat;
	}

	.week:nth-child(2) {
		background: url(../../img/custom_img/week_2.jpg) right center/cover no-repeat;
	}

	.week:nth-child(3) {
		background: url(../../img/custom_img/week_34.jpg) right center/cover no-repeat;
	}

	.week:nth-child(4) {
		background: url(../../img/custom_img/week_5.jpg) right center/cover no-repeat;
	}

	.week:nth-child(5) {
		background: url(../../img/custom_img/week_6.jpg) right center/cover no-repeat;
	}

	.week::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(to right,
				rgb(166, 230, 230, 0.7) 0%,
				rgba(166, 230, 230, 1) 50%,
				rgba(166, 230, 230, 0) 90%,
				rgba(166, 230, 230, 0) 100%);
		z-index: 1;
		pointer-events: none;
	}

}

.week>* {
	position: relative;
	z-index: 2;
}

.week h4 {
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 1rem;
}

#faq-section {
	background-color: #c5c5c5;
}

.faq {
	margin: 2rem 0;

}

.faq-item {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	flex: 1 1 400px;
}

.faq .avatar {
	width: 200px;
	height: auto;
	aspect-ratio: 1 / 1;
}

.faq .avatar img {
	width: 100%;

	border: 3px solid #1e293b;
	border-radius: 500px;
}

.faq-block {
	display: flex;
	gap: 3rem;
	margin-bottom: 3rem;
}

.faq-item .question {
	font-size: 1.2rem;
	font-weight: 700;
	background-color: #1e293b;
	margin-bottom: 1rem;
	color: #fff;
	min-height: 3rem;
	display: flex;
	align-items: center;
	padding: 1rem 2rem;
}

.faq-item .answer {
	padding: 0 2rem;
}

@media (max-width:768px) {
	.faq-block {
		flex-direction: column;
		align-items: center;
	}

	.faq-item {
		flex: 1 1 max-content;
	}
}

#price-section {
	background:
		radial-gradient(1200px 600px at 50% 140px, rgba(0, 0, 0, .06), transparent 60%) #fff;
	/* padding: 120px 0 80px; */
	padding: 0 !important;
}

#price-section::before {

	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

#price-section p {
	color: #2c2c2c;
	/* text-shadow: 0 0 1rem #000; */
}

#price-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	/* filter: brightness(.5) contrast(.5); */
	/* background: url(../../img/custom_img/price_bg.jpeg) right top/cover no-repeat; */
}

.price-text {
	/* background: linear-gradient(90deg,rgba(253, 29, 29, 1) 0%, rgba(252, 176, 69, 1) 100%);
	  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  background-clip: text;
  color: transparent; */
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.2rem;
	text-align: center;
}

.pricing {
	background: #FD1D1D;
	background: linear-gradient(90deg, rgba(253, 29, 29, 1) 0%, rgba(252, 176, 69, 1) 100%);
	padding: 3rem;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	text-align: center;
	margin: 2rem 0 5rem;
	box-shadow:
		0 18px 40px rgba(0, 0, 0, .18),
		0 2px 0 rgba(255, 255, 255, .6) inset;
}

.pricing .label {
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 0.5rem;
}

.pricing .price {
	font-size: 3rem;
	font-weight: 900;
	color: #fff;
	margin-bottom: 2rem;
}

.pricing .vat {
	font-size: 1rem !important;
	color: #ecbfbf;
}

.cta-section {
	background: linear-gradient(135deg, #0891b2 0%, #042832 100%);
	color: white;
	padding: 4rem 2rem;
	text-align: center;
}
@media (max-width:768px ) {
	.cta-section {
		padding: 2rem 1rem;
	}
}
.cta-section h3 {
	font-weight: 700;
	margin-bottom: 2rem;
	color: white;
}

.cta-section p {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
}

.highlight-date {
	color: #f59e0b;
	font-weight: 700;
	font-size: 1.3rem;
}

.cta-button {
	background: #f59e0b;
	color: white;
	padding: 1rem 3rem;
	border: none;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 2rem;
	display: inline-block;
	text-decoration: none;
}

.cta-button:hover {
	background: #d97706;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
	.header {
		padding: 1rem;
	}

	.hero {
		padding: 2rem 1rem;
	}

	.container {
		padding: 0 1rem;
	}

	.section {
		padding: 3rem 0;
	}

	.instructors {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.instructor {
		padding: 1.5rem;
	}

	.instructor-photo {
		width: 150px;
		height: 150px;
	}
	.cta-button {
	padding: 1rem 1.5rem;}
}

@media (max-width: 480px) {
	.instructors {
		grid-template-columns: 1fr;
	}
}


/* 가격 비교 섹션 스타일 - 첨부 이미지와 동일하게 */
.price-section-head {
	background-color: #092540;
	padding: 3rem 1rem;
}

.price-section-head * {
	color: #fff !important;
}

.price-row {
	margin-top: 2rem;
	margin-bottom: 2rem;
	display: flex;
	/* flex-wrap:wrap; */
	gap: 2rem;
}

.price-row .card {
	overflow: hidden;
	border-radius: 24px !important;
	width: calc((100% - 2rem) / 2);
}

.price-row .card .card-header {
	background-color: #092540;
}

.price-row .card .card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.desc {
	font-size: 1.2rem;
	color: #333;
	margin-bottom: 1.2rem;
	text-align: center;
}

.price-highlight {
	background: #b8860b;
	color: #fff;
	font-weight: 700;
	padding: 0 4px;
	border-radius: 4px;
}


/* ===== New Price Section (#section-newPrice) ===== */
#section-newPrice {
	padding: 0;
}

.newPrice-head {
	background-color: #0b2a45;
	/* 헤더 남색 배경 */
	padding: 3rem 0 2.4rem;
	text-align: center;
}

.newPrice-head h3 {
	color: #fff;
	font-weight: 800;
	margin: 0 0 0.6rem;
}

.newPrice-head .np-subtitle {
	color: #d7e4ef;
	margin: 0;
	line-height: 1.7;
}

.newPrice-head .np-highlight {
	background: #ffeb75;
	/* 형광펜 효과 */
	color: #0b2a45;
	font-weight: 800;
	padding: 0 .2rem;
}

/* ===== Curriculum Overview Section ===== */
.curr-sec .sec-title-wrap {
	display: flex;
	align-items: start;
	margin-bottom: 1rem;
}

@media (max-width:768px) {
	.curr-sec .sess-number {
		margin-bottom: 1rem;
	}

	.curr-sec .sec-title-wrap {
		flex-direction: column;
	}

	.desc {
	font-size: 1rem;}
}
#section_curriculum {
	/* background-color: #eaf2fb; */
	background: linear-gradient(180deg, #bddaff 0%, #ffffff 100%);



}
#section_curriculum .curriculum-wrap {
	padding: 2rem 0;
}
#section_curriculum .curr-title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	color: #004f9e;
	margin-bottom: .5rem;
}

#section_curriculum .curr-sub {
	color: #64748b;
	line-height:1.5;
}
#section_curriculum .curr-sub .badge {
	background-color: #0056d2 ;
	color:#fff;
	font-weight:bold;
	font-size:1.3rem;
}
#section_curriculum .curr-row {
	display: grid;
	gap: 1.5rem;
	margin-top: 2rem;
	grid-template-columns: repeat(4, 1fr);
}

#section_curriculum .curr-card {
	background: #f3f6fb;
	border-radius: 18px;
	padding: 2rem;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
	position: relative;
	overflow: hidden; /* 삼각형 코너 잘림 방지 및 카드 경계 유지 */
}

/* 회차 배지: 좌상단 삼각형 코너 */
#section_curriculum .curr-badge {
	--corner-size: 68px;
	position: absolute;
	top: 0; left: 0;
	width: var(--corner-size);
	height: var(--corner-size);
	background: #1947a3;
	clip-path: polygon(0 0, 0 100%, 100% 0);
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	font-weight: 700;
	color: #fff;
	font-size: 0.95rem;
	padding: 8px 4px 0 8px; /* 좌상단 여백 */
	line-height: 1.1;
	letter-spacing: .5px;
	text-shadow: 0 1px 2px rgba(0,0,0,.25);
	user-select: none;
	pointer-events: none; /* 클릭 방해 방지 */
}

/* clip-path 미지원 브라우저(IE 등) 대비 폴백 */
@supports not (clip-path: polygon(0 0, 0 100%, 100% 0)) {
	#section_curriculum .curr-badge {
		width: 0;
		height: 0;
		padding: 0;
		border-top: var(--corner-size) solid #0056d2;
		border-right: var(--corner-size) solid transparent;
		clip-path: none;
		position: absolute;
	}
	#section_curriculum .curr-badge::after {
		content: attr(data-label);
		position: absolute;
		top: 12px; left: 10px;
		color: #fff;
		font-weight:700;
		font-size:0.9rem;
	}
}

@media (max-width: 900px) {
	#section_curriculum .curr-badge { --corner-size: 60px; font-size:0.85rem; }
}
@media (max-width: 600px) {
	#section_curriculum .curr-badge { --corner-size: 52px; font-size:0.75rem; padding:6px 4px 0 6px; }
}

#section_curriculum .curr-card h3 {
	font-weight: 800;
	color: #0f172a;
	margin: 1rem 0 .5rem;
}

#section_curriculum .curr-card p {
	color: #64748b;
	margin: 0;
}

#section_curriculum .icon-circle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2c6ddf, #1947a3);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	font-size: 28px;
}

@media (max-width: 1200px) {
	#section_curriculum .curr-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	#section_curriculum .curr-row {
		grid-template-columns: 1fr;
	}

	#section_curriculum .curr-card {
		display: flex;
		flex-direction: row;
		gap: 0.5rem;
		flex-wrap: wrap;
		padding:1rem;
	}

	.curr-card>.icon-circle,
	.curr-card>h3 {
		display: inline-block;
		vertical-align: middle;
		width: fit-content;
	}

	.curr-card>.icon-circle {
		margin: 0 0 0 auto !important;
	}

	.curr-card>.icon-circle+h3 {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		margin: 0 auto 0 0 !important;
	}

	.curr-card>p {
		width: 100%;
		text-align: center;
	}

	#section_curriculum .icon-circle {
		font-size: 1rem;
		width: 32px;
		height: 32px;
	}
}

/* ===== Curriculum Modal ===== */
/* 모달 본문 iOS 스크롤 부드럽게 */
.modal-body.curr-detail {
	-webkit-overflow-scrolling: touch;
}

/* 모달 네비(이전/다음/인디케이터/닫기) 모바일 레이아웃 */
	.curr-nav {
		flex: 0 1 auto;
		align-items: center;
		display: flex;
		flex-wrap: nowrap;
		gap:1rem;
		margin-right:auto;
	}
		#currPageIndicator {
		text-align: center;
		white-space: normal;
		word-break: keep-all;
	}
@media (max-width: 576px) {
	.modal-footer {
		display: flex;
		width: 100%;
	}

	.curr-nav {
		flex: 1 1 auto;
		align-items: center;
		display: flex;
		flex-wrap: nowrap;
	}

	#currPrevBtn {}

	/* #currNextBtn {}  (불필요한 빈 룰 제거) */



	.curr-nav [data-bs-dismiss="modal"] {
		grid-area: close;
		width: 100%;
	}
}

/* 작은 화면에서 카드/문단 여백 살짝 축소 */
@media (max-width: 576px) {
	.curr-detail .sess-card {
		padding: 1rem;
		height: auto !important;
		padding: 0.5rem;
	}

	.curr-detail .sess-lead {
		font-size: .95rem;
	}
}


.curr-detail .fas {
	color: #2c6ddf;
}

.curr-detail-btn {
	padding: .8rem 1.6rem !important;
	font-weight: 700 !important;
	background-color: #0056d2 !important;
	color: white !important;
}

.curr-detail .sess-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #2c6ddf;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
}

.curr-detail .sess-lead {
	color: #64748b;
}

.curr-detail .sess-card {
	background: #fff;
	border-radius: 14px;
	padding: 1.25rem;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .07);
	height: 100%;
}

.curr-detail .bg-soft {
	background: #f5f8ff;
	height: 100%;
}

.curr-detail .step-circle {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: transparent;
	color: #2c6ddf;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 3rem;
}

.curr-detail .sess-highlight {
	background: linear-gradient(90deg, #ffe08a, #ffc24d);
	border-radius: 12px;
	padding: 1rem 1.25rem;
}

.curr-detail .bonus-sec {
	background: #eef4ff;
}

.curr-detail .bonus-wrap {
	background: #fff;
}

.curr-detail .sess-pill {
	border-radius: 12px;
	padding: 1rem 1.25rem;
}

.curr-detail .sess-pill-blue {
	background: linear-gradient(90deg, #eaf2ff, #d8e7ff);
}

.curr-detail .sess-pill-green {
	background: linear-gradient(90deg, #e7faef, #c9f2dc);
}

.np-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	padding: 2rem 0 2.8rem;
}

.np-card {
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
	overflow: hidden;
}

.np-card-header {
	color: #2d455b;
	font-weight: 800;
	padding: 1.2rem 1.6rem 0;
	font-size: 2rem;
	text-align: center;
}

.np-card-body {
	padding: 0 1.8rem 2rem;
}

/* 가격 라인 */
.np-price {
	text-align: center;
}

.np-price-line {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: .6rem;
	margin: .4rem 0 0.2rem;
}

.np-old {
	color: #d32f2f;
	font-weight: 800;
	text-decoration: line-through;
	font-size: 1.1rem;
}

.np-x {
	color: #d32f2f;
	font-weight: 900;
	font-size: 2rem;
	line-height: 1;
}

.np-arrow {
	color: #475569;
	font-weight: 900;
	font-size: 2rem;
}

.np-current {
	color: #0b2239;
	font-weight: 900;
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.np-vat {
	display: block;
	color: #6b7280;
	font-size: .95rem;
}

.np-note {
	margin-top: 1.1rem;
	color: #6b7280;
	font-size: .98rem;
}

@media (max-width: 1024px) {
	.np-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.newPrice-head {
		padding: 2.4rem 0 2rem;
	}

	.np-card-header {
		font-size: 1.5rem;
	}

	.np-current {
		font-size: 1.8rem;
	}
	.np-price-line {
		flex-direction: column;
		align-items:center;
	}
}

.price-box {
	background: #f8fafc;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
	padding: 2.5rem 2rem 2rem 2rem;
	flex: 1 1 350px;
	min-width: 280px;
	max-width: 500px;
	margin-bottom: 1rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border: 1.5px solid #e0e7ef;
}

.price-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #fff;
}

.price-sub {
	font-size: 1rem;
	color: #cfcfcf;
	margin-bottom: 1rem;
}

.price-old {

	font-weight: 700;
	font-size: 1.5rem;
	color: #d32f2f;
	margin-bottom: 0.5rem;
	text-align: center;
}

.strike {
	text-decoration: line-through;
}

.price-new {
	font-size: 2rem;
	font-weight: 900;
	color: #1e293b;
	margin-bottom: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center !important;
	align-items: center;
	background-color: #feffcf;
}

.price-new span {
	font-size: 1.8rem;
	font-weight: 900;
}

.vat {
	font-size: 1rem !important;
	color: #6b7280;
	margin-left: 0.5rem;
}

.price-benefit-box {
	background: #eaf2ff;
	border-radius: 10px;
	padding: 1rem 1.2rem;
	margin-top: 1rem;
	width: 100%;
}

.price-benefit-box * {
	font-size: 1.2rem;
}

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

.price-benefits .price-hightlight {
	color: #fff;
}

.price-benefits li {
	color: #333;
	margin-bottom: 0.7rem;
	padding-left: 1.5em;
	position: relative;
	line-height: 1.7;
}

.price-box .highlight {
	color: #f59e0b;
	font-weight: 700;
}

.price-video .price-desc {
	font-size: 1.05rem;
	color: #0a4d8c;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.price-footer {
	font-weight: 600;
	color: #333;
	background: #f8fafc;
	padding: 1rem;
	border-radius: 8px;
	margin-top: 2rem;
}

.footer-strong {
	color: #0a4d8c;
	font-weight: 700;
}

.mobile-benefit {
	font-size: 1.2rem;
	font-weight: bold;
	margin-top: 2rem;
	text-align: center;
	border-radius: 10px;
	background-color: #feffcf;
	padding: 1rem 1.2rem;
}

.fa-check-circle:before {
	color: blue !important;
}

@media (max-width: 1200px) {
	.price-row {
		flex-direction: column;
		gap: 1.5rem;
		align-items: center;
	}

	.price-row .card {
		width: 100%;
	}

	.price-box {
		max-width: 100%;
		width: 100%;
	}
}

@media (max-width: 600px) {
	.price-text {
		font-size: 1.1rem;
	}

	.price-title {
		font-size: 1rem;
	}

	.price-new span {
		font-size: 1.3rem;
	}
	.price-benefit-box  {
		padding: 0 ;
		background-color: transparent;
	}
}
