:root {
	--primary: #667EEA;
	--secondary: #764BA2;
	--accent: #FBBF24;
	--success: #10B981;
	--dark: #1A1A1A;
	--gray: #6B7280;
	--light: #F8F9FA;
	--white: #FFFFFF;
}

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

/* ==================== 애니메이션 ==================== */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
	from { opacity: 0; transform: translateY(40px); }
	to { opacity: 1; transform: translateY(0); }
}

.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==================== 헤더 ==================== */
.header_div {
	background: var(--white);
	border-bottom: 1px solid #E5E7EB;
	padding: 36px 0;
}

.header-content {
	text-align: center;
}

.header_div h1 {
	font-size: clamp(28px, 4vw, 42px);
	line-height: 160%;
	font-weight: 900;
	color: var(--dark);
	margin-bottom: 10px;
}

.header_div p {
	font-size: 16px;
	color: var(--gray);
}

/* ==================== 프로세스 섹션 ==================== */
.process-section {
	background: var(--light);
	padding: 45px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 30px;
}

.section-title_div {
	font-size: clamp(24px, 3.5vw, 32px);
	line-height: 160%;
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 10px;
}

.section-subtitle {
	font-size: 16px;
	color: var(--gray);
}

/* 프로세스 타임라인 */
.process-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.process-line {
	position: absolute;
	top: 50px;
	left: 5%;
	right: 5%;
	height: 2px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
	z-index: 1;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	position: relative;
	z-index: 2;
}

.process-step {
	text-align: center;
	animation: slideInUp 0.6s ease-out forwards;
	opacity: 0;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

.step-circle {
	width: 80px;
	height: 80px;
	margin: 0 auto 16px;
	background: var(--white);
	border: 3px solid var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.process-step:hover .step-circle {
	transform: scale(1.1);
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.25);
}

.step-number {
	font-size: 28px;
	line-height: 160%;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.process-step:hover .step-number {
	-webkit-text-fill-color: var(--white);
}

.step-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 6px;
}

.step-description {
	font-size: 14px;
	color: var(--gray);
	line-height: 1.4;
}

/* ==================== 메인 콘텐츠 ==================== */
.main-section {
	padding: 50px 0;
}

.main-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

/* 입학고사 카드 */
.exam-card {
	background: var(--white);
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
	border: 1px solid #E5E7EB;
}

.exam-card h3 {
	font-size: 20px;
	line-height: 160%;
	font-weight: 800;
	color: var(--dark);
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.test-btn {
	display: inline-block;
	padding: 8px 16px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: var(--white);
	text-decoration: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	transition: transform 0.2s ease;
}

.test-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.exam-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.exam-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	background: var(--light);
	border-radius: 10px;
	transition: all 0.2s ease;
}

.exam-item:hover {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
	transform: translateX(2px);
}

.exam-icon {
	font-size: 18px;
	width: 24px;
	flex-shrink: 0;
}

.exam-content {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.exam-label {
	font-size: 15px;
	color: var(--gray);
	white-space: nowrap;
}

.exam-value {
	font-size: 17px;
	font-weight: 700;
	color: var(--primary);
	white-space: nowrap;
}

/* 할인 혜택 카드 */
.discount-card {
	background: var(--white);
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
	border: 1px solid #E5E7EB;
}

.discount-card h3 {
	font-size: 20px;
	line-height: 160%;
	font-weight: 800;
	color: var(--dark);
	margin-bottom: 20px;
}

.discount-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.discount-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 12px;
	background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(245, 158, 11, 0.05));
	border-radius: 10px;
	border: 1px solid transparent;
	transition: all 0.2s ease;
}

.discount-item:hover {
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(251, 191, 36, 0.12);
}

.discount-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--dark);
	white-space: nowrap;
}

.discount-rate {
	font-size: 21px;
	line-height: 160%;
	font-weight: 900;
	background: linear-gradient(135deg, var(--accent), #F59E0B);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ==================== 반응형 ==================== */
@media (max-width: 1024px) {
	.process-steps {
		grid-template-columns: repeat(3, 1fr);
	}

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

@media (max-width: 768px) {
	.header_div {
		padding: 30px 0;
	}

	.process-section {
		padding: 40px 0;
	}

	.process-steps {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.process-line {
		display: none;
	}

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

	.main-section {
		padding: 40px 0;
	}

	.exam-card, .discount-card {
		padding: 20px;
	}

	.exam-card h3 {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.test-btn {
		width: 100%;
		text-align: center;
	}
}