.container_div {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Section */
.header-section {
	padding: 100px 20px;
	background: #fafbff;
	position: relative;
}

.header-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.badge {
	display: inline-block;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: white;
	padding: 10px 24px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.5px;
	margin-bottom: 30px;
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.main-title {
	font-size: 52px;
	font-weight: 800;
	line-height: 1.2;
	color: #1a1a2e;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.subtitle {
	font-size: 22px;
	color: #4b5563;
	line-height: 1.4;
	font-weight: 400;
	margin-bottom: 60px;
}

.highlight-blue {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 800;
}

/* Why Section */
.why-section {
	margin-bottom: 80px;
}

.section-question {
	text-align: center;
	font-size: 32px;
	line-height: 160%;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 50px;
	position: relative;
}

.section-question::before {
	content: '❓';
	margin-right: 10px;
	font-size: 28px;
	line-height: 160%;
}

.comparison-container {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 40px;
	align-items: stretch;
	margin-bottom: 50px;
}

.comparison-card {
	background: white;
	border-radius: 24px;
	padding: 40px;
	position: relative;
	transition: all 0.4s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-card.general {
	border-top: 4px solid #ef4444;
}

.comparison-card.youngbee {
	border-top: 4px solid #3b82f6;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.comparison-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
}

.comparison-title {
	font-size: 22px;
	line-height: 160%;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 30px;
	text-align: center;
	padding: 15px 20px;
	border-radius: 12px;
	position: relative;
}

.general .comparison-title {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border: 2px solid #e2e8f0;
	color: #475569;
}

.youngbee .comparison-title {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border: 2px solid #93c5fd;
	color: #2563eb;
}

.comparison-list {
	list-style: none;
}

.comparison-list li {
	padding: 15px 0;
	font-size: 17px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-weight: 500;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	line-height: 1.4;
}

.comparison-list li:last-child {
	border-bottom: none;
}

.general .comparison-list li::before {
	content: '❌';
	font-size: 16px;
	margin-top: 2px;
}

.general .comparison-list li {
	color: #6b7280;
}

.youngbee .comparison-list li::before {
	content: '✅';
	font-size: 16px;
	margin-top: 2px;
}

.youngbee .comparison-list li {
	color: #1a1a2e;
	font-weight: 600;
}

.arrow-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
}

.transform-arrow {
	font-size: 42px;
	line-height: 160%;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 900;
	animation: pulse-arrow 2s infinite;
}

@keyframes pulse-arrow {
	0%, 100% { transform: translateX(0) scale(1); }
	50% { transform: translateX(8px) scale(1.1); }
}

/* Stats Section */
.stats-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 80px;
}

.stat-card {
	background: white;
	border-radius: 20px;
	padding: 35px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.stat-card:hover {
	border-color: #3b82f6;
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.stat-number {
	font-size: 48px;
	line-height: 160%;
	font-weight: 900;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 8px;
	letter-spacing: -1px;
}

.stat-label {
	font-size: 18px;
	color: #6b7280;
	font-weight: 600;
	margin-bottom: 5px;
}

.stat-sublabel {
	font-size: 15px;
	color: #9ca3af;
	font-weight: 500;
}

/* Common Section Styles */
.section_div {
	padding: 80px 20px;
}

.section_div.white {
	background: white;
}

.section_div.gray {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section_div.blue {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.section-title_div {
	text-align: center;
	font-size: 42px;
	line-height: 160%;
	margin-bottom: 20px;
	font-weight: 700;
	color: #1a1a2e;
	position: relative;
	letter-spacing: -0.5px;
}

.section-subtitle {
	text-align: center;
	font-size: 19px;
	color: #6b7280;
	margin-bottom: 60px;
	font-weight: 400;
}

.section-title_div::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #1d4ed8);
	border-radius: 2px;
}

/* LMS Grid */
.lms-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
	margin-bottom: 60px;
}

.lms-item {
	background: white;
	border: 2px solid #e5e7eb;
	border-radius: 16px;
	padding: 25px 25px 0px 25px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	overflow: hidden;
}

.lms-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
	border-color: #3b82f6;
}

.lms-content {
	padding-bottom: 25px;
}

.lms-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	line-height: 160%;
	color: white;
	margin: 0 auto 20px;
	box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.lms-title {
	font-size: 20px;
	line-height: 160%;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 8px;
}

.lms-desc {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.4;
	font-weight: 500;
}

.image-placeholder {
	width: calc(100% + 51px);
	margin: 20px -25px 0px -25px;
/*
	height: 200px;
	background: linear-gradient(135deg, #f8f9ff 0%, #f3f4f6 100%);
	border: 2px dashed #d1d5db;
	border-radius: 12px 12px 14px 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	font-size: 14px;
	font-weight: 500;
*/
	transition: all 0.3s ease;
}

.image-placeholder img {
	max-width: 100%;
}

/* Parent Process Grid */
.parent-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 50px;
	margin-bottom: 60px;
}

.parent-item {
	background: white;
	border: 2px solid #e5e7eb;
	border-radius: 16px;
	padding: 25px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
}

.parent-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
	border-color: #3b82f6;
}

.parent-icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 160%;
	color: white;
	margin: 0 auto 20px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.parent-item:nth-child(1) .parent-icon {
	background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.parent-item:nth-child(2) .parent-icon {
	background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.parent-item:nth-child(3) .parent-icon {
	background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.parent-item:nth-child(4) .parent-icon {
	background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.parent-title {
	font-size: 20px;
	line-height: 160%;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 8px;
}

.parent-desc {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.4;
	font-weight: 500;
}

/* CTA Button */
.cta-container {
	text-align: center;
	margin-top: 60px;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: white;
	padding: 18px 40px;
	border-radius: 50px;
	font-size: 20px;
	line-height: 160%;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
	transition: all 0.4s ease;
	letter-spacing: -0.3px;
}

.cta-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.cta-note {
	margin-top: 15px;
	font-size: 15px;
	color: #6b7280;
	font-weight: 500;
}

/* Benefits Grid */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 50px;
}

.benefit-card {
	background: white;
	border-radius: 20px;
	padding: 35px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #1d4ed8);
	border-radius: 20px 20px 0 0;
}

.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.benefit-icon {
	font-size: 48px;
	line-height: 160%;
	margin-bottom: 20px;
}

.benefit-title {
	font-size: 22px;
	line-height: 160%;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 15px;
}

.benefit-desc {
	font-size: 17px;
	color: #6b7280;
	line-height: 1.5;
	font-weight: 500;
}

/* FAQ Section */
.faq-grid {
	display: grid;
	gap: 25px;
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border: 2px solid #e5e7eb;
	border-radius: 20px;
	padding: 35px;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item:hover {
	box-shadow: 0 15px 35px rgba(59, 130, 246, 0.08);
	border-color: #3b82f6;
	transform: translateY(-5px);
}

.faq-question {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
	line-height: 1.4;
}

.faq-question::before {
	content: 'Q';
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: white;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 16px;
	flex-shrink: 0;
	margin-top: 2px;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.faq-answer {
	font-size: 16px;
	line-height: 1.6;
	color: #6b7280;
	padding-left: 47px;
	font-weight: 400;
}

/* 모바일/데스크톱 텍스트 표시 제어 */
.mobile-title {
	display: none;
}

.desktop-title {
	display: inline;
}

/* Responsive */
@media (max-width: 1024px) {
	.comparison-container {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.arrow-container {
		transform: rotate(90deg);
		margin: 15px 0;
	}

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

	.stats-section {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 768px) {
	.mobile-title {
		display: inline;
	}

	.desktop-title {
		display: none;
	}

	.main-title {
		font-size: 36px;
		line-height: 160%;
	}

	.section-title_div {
		font-size: 32px;
		line-height: 160%;
	}

	.comparison-card {
		padding: 30px;
	}

	.lms-grid {
		grid-template-columns: 1fr !important;
	}

	.stats-section {
		grid-template-columns: 1fr;
	}

	.parent-grid {
		grid-template-columns: 1fr;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.cta-button {
		padding: 16px 32px;
		font-size: 18px;
	}
}