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

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

.section_div {
	padding: 100px 0;
}

.mobile-br {
	display: none;
}

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

@keyframes float {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-20px, -20px); }
}

@keyframes pulse {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(10px); }
}

@keyframes glow {
	0%, 100% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
	50% { box-shadow: 0 0 30px rgba(245, 158, 11, 0.6); }
}

@keyframes float-icon {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

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

@keyframes slideInLeft {
	from { opacity: 0; transform: translateX(-30px); }
	to { opacity: 1; transform: translateX(0); }
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	95% { transform: translateX(-2px); }
	97% { transform: translateX(2px); }
}

@keyframes glow-green {
	0%, 100% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.2); }
	50% { box-shadow: 0 0 50px rgba(16, 185, 129, 0.4); }
}

@keyframes pulse-text {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

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

@keyframes rotate-x {
	from { transform: rotate(-180deg) scale(0); }
	to { transform: rotate(0) scale(1); }
}

@keyframes check-mark {
	from { transform: scale(0) rotate(-180deg); opacity: 0; }
	50% { transform: scale(1.2) rotate(10deg); }
	to { transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes wave {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes pulse-gold {
	0%, 100% { box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5); }
	50% { box-shadow: 0 15px 50px rgba(251, 191, 36, 0.7); }
}

/* ==================== 스크롤 애니메이션 ==================== */
.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);
}

.scale-in {
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
	opacity: 1;
	transform: scale(1);
}

/* ==================== 섹션 공통 헤더 ==================== */
.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.badge {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

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

.section-title_div {
	font-size: clamp(32px, 5vw, 48px);
	line-height: 160%;
	font-weight: 900;
	color: var(--dark);
	margin-bottom: 16px;
	line-height: 1.2;
}

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

/* ==================== 히어로 섹션 ==================== */
.hero {
	min-height: 100vh;
	background: linear-gradient(135deg, #3B2667 0%, #5B3F8D 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	animation: float 20s ease infinite;
}

.hero::after {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	transition: all 0.3s ease;
	opacity: 0;
}

.hero:hover::after {
	opacity: 1;
}

.hero-content {
	text-align: center;
	position: relative;
	z-index: 2;
	animation: fadeUp 1s ease-out;
}

.hero-badge {
	display: inline-block;
	background: transparent;
	border: 2px solid #F59E0B;
	color: #F59E0B;
	padding: 12px 32px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 40px;
	position: relative;
	overflow: hidden;
	animation: glow 2s ease-in-out infinite;
}

.hero-title {
	color: var(--white);
	margin-bottom: 32px;
}

.hero-title-top {
	display: block;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 160%;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.hero-title-main {
	display: block;
	font-size: clamp(36px, 5.5vw, 64px);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: -2px;
}

.highlight {
	color: var(--accent);
	text-shadow: 0 0 40px rgba(251, 191, 36, 0.6);
}

.hero-subtitle {
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(18px, 2.5vw, 22px);
	margin-bottom: 24px;
	font-weight: 500;
}

/* CTA 버튼 */
.hero-cta {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin: 40px 0;
}

.cta-btn {
	padding: 16px 36px;
	border-radius: 100px;
	font-size: 17px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	cursor: pointer;
}

.cta-btn.primary {
	background: linear-gradient(135deg, var(--accent), #F59E0B);
	color: var(--dark);
	box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3);
	position: relative;
	overflow: hidden;
}

.cta-btn.primary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 100px;
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.5s ease;
}

.cta-btn.primary:hover::before {
	transform: translate(-50%, -50%) scale(2);
	opacity: 0;
}

.cta-btn.primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
	animation: pulse-gold 1s ease infinite;
}

.cta-btn.secondary {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px);
}

/* 실적 표시 */
.hero-achievements {
	display: flex;
	gap: 40px;
	justify-content: center;
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.9);
}

.achievement-icon {
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: float-icon 3s ease-in-out infinite;
}

.achievement-icon:nth-child(odd) {
	animation-delay: 0.5s;
}

.achievement-text {
	font-size: 16px;
	font-weight: 500;
}

/* ==================== 신뢰 섹션 ==================== */
.trust {
	background: var(--white);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.trust-card {
	text-align: center;
	padding: 32px 20px;
	background: var(--white);
	border: 2px solid var(--primary);
	border-radius: 20px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.trust-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.trust-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(102, 126, 234, 0.1);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.trust-card:hover::after {
	width: 300px;
	height: 300px;
}

.trust-card:first-child {
	border-color: var(--accent);
}

.trust-card:first-child::before {
	background: linear-gradient(135deg, var(--accent), #F59E0B);
}

.trust-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 50px rgba(102, 126, 234, 0.25);
}

.trust-number {
	font-size: 48px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 8px;
}

.trust-card:first-child .trust-number {
	background: linear-gradient(135deg, var(--accent), #F59E0B);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.trust-label {
	font-size: 16px;
	color: var(--dark);
	font-weight: 600;
}

/* ==================== 성적향상 섹션 ==================== */
.result {
	background: var(--light);
}

.result-main {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
	align-items: center;
	margin-bottom: 60px;
}

.result-content h3 {
	font-size: 36px;
	font-weight: 800;
	color: var(--dark);
	margin-bottom: 24px;
	line-height: 1.3;
}

.result-content p {
	font-size: 18px;
	color: var(--gray);
	margin-bottom: 32px;
}

.before-after {
	background: var(--white);
	border-radius: 24px;
	padding: 28px 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 32px;
	align-items: center;
	margin-bottom: 48px;
}

.ba-card {
	text-align: center;
}

.ba-label {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.ba-before .ba-label { color: var(--danger); }
.ba-after .ba-label { color: var(--success); }

.ba-grade {
	font-size: 38px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 12px;
}

.ba-before .ba-grade { color: var(--danger); }
.ba-after .ba-grade { color: var(--success); }

.ba-desc {
	font-size: 20px;
	color: var(--gray);
}

.ba-arrow {
	font-size: 48px;
	color: var(--primary);
	animation: pulse 1.5s ease infinite;
}

.result-cards {
	max-width: 100%;
	margin: 0 auto;
	display: grid;
	gap: 24px;
}

.result-card {
	background: var(--white);
	border-radius: 20px;
	padding: 28px 32px;
	border: 2px solid var(--primary);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 24px;
	justify-content: space-between;
	min-height: 80px;
	width: 100%;
	box-sizing: border-box;
	animation: slideInLeft 0.8s ease-out forwards;
	opacity: 0;
}

.result-card:nth-child(1) { animation-delay: 0.1s; }
.result-card:nth-child(2) { animation-delay: 0.2s; }
.result-card:nth-child(3) { animation-delay: 0.3s; }

.result-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.result-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.result-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.result-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	flex-shrink: 0;
}

.result-value {
	font-size: 36px;
	font-weight: 900;
	color: var(--primary);
}

.result-text {
	font-size: 18px;
	color: var(--dark);
	font-weight: 600;
	flex-shrink: 0;
}

/* ==================== 관리 섹션 ==================== */
.management {
	background: var(--white);
}

.management-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	max-width: 1000px;
	margin: 0 auto;
}

.management-card {
	background: var(--white);
	border: 2px solid #0EA5E9;
	border-radius: 20px;
	padding: 32px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transform-origin: center;
}

.management-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
	transition: height 0.4s ease;
}

.management-card:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 30px 60px rgba(14, 165, 233, 0.25);
	z-index: 10;
}

.management-card:hover::before {
	height: 6px;
}

.management-title {
	font-size: 26px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease;
}

.management-card:hover .management-title {
	color: #0EA5E9;
}

.management-desc {
	color: var(--gray);
	margin-bottom: 16px;
	line-height: 1.4;
	font-size: 17px;
}

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

.management-list li {
	padding: 6px 0;
	color: var(--dark);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
	line-height: 1.3;
	font-size: 17px;
	transition: transform 0.3s ease, color 0.3s ease;
}

.management-card:hover .management-list li {
	transform: translateX(5px);
}

.management-card:hover .management-list li:nth-child(1) { transition-delay: 0.05s; }
.management-card:hover .management-list li:nth-child(2) { transition-delay: 0.1s; }
.management-card:hover .management-list li:nth-child(3) { transition-delay: 0.15s; }

.management-list li::before {
	content: '✓';
	color: var(--success);
	font-weight: 700;
	transition: transform 0.3s ease;
}

.management-card:hover .management-list li::before {
	transform: scale(1.2);
}

/* ==================== 차별점 섹션 ==================== */
.difference {
	background: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);
	color: var(--white);
	padding: 50px 0;
}

.difference-intro {
	text-align: center;
	margin-bottom: 50px;
}

.difference-intro h2 {
	font-size: clamp(32px, 5vw, 48px);
	line-height: 160%;
	font-weight: 900;
	margin-bottom: 16px;
}

.comparison {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin: 0 auto;
	perspective: 1000px;
}

.comparison-column {
	padding: 32px;
	border-radius: 24px;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.other-schools {
	background: rgba(239, 68, 68, 0.1);
	border: 2px solid rgba(239, 68, 68, 0.3);
	animation: shake 4s ease-in-out infinite;
}

.our-school {
	background: rgba(16, 185, 129, 0.1);
	border: 2px solid rgba(16, 185, 129, 0.3);
	transform: scale(1.02);
	animation: glow-green 3s ease-in-out infinite;
}

.comparison-column:hover {
	transform: translateY(-10px) scale(1.03);
}

.other-schools:hover {
	background: rgba(239, 68, 68, 0.15);
	animation: none;
	transform: translateY(-10px) scale(0.98);
}

.our-school:hover {
	background: rgba(16, 185, 129, 0.15);
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 0 60px rgba(16, 185, 129, 0.5);
}

.column-header {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 24px;
	text-align: center;
	transition: all 0.3s ease;
}

.other-schools .column-header { 
	color: var(--danger);
}

.our-school .column-header { 
	color: var(--success);
	animation: pulse-text 2s ease-in-out infinite;
}

.comparison-item {
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	transition: all 0.3s ease;
	position: relative;
	opacity: 0;
	animation: fadeInItem 0.5s ease-out forwards;
}

.other-schools .comparison-item {
	color: rgba(255, 255, 255, 0.7);
}

.other-schools .comparison-item:hover {
	color: rgba(255, 255, 255, 0.5);
	transform: translateX(-5px);
}

.our-school .comparison-item {
	color: rgba(255, 255, 255, 0.95);
}

.our-school .comparison-item:hover {
	color: #10B981;
	transform: translateX(10px);
	background: rgba(16, 185, 129, 0.1);
	padding-left: 15px;
	margin-left: -15px;
	border-radius: 8px;
}

.comparison-item:nth-child(2) { animation-delay: 0.1s; }
.comparison-item:nth-child(3) { animation-delay: 0.2s; }
.comparison-item:nth-child(4) { animation-delay: 0.3s; }
.comparison-item:nth-child(5) { animation-delay: 0.4s; }
.comparison-item:nth-child(6) { animation-delay: 0.5s; }

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

.other-schools .comparison-item::before {
	content: '✕';
	color: var(--danger);
	font-weight: bold;
	margin-right: 8px;
	display: inline-block;
	animation: rotate-x 0.5s ease-out;
}

.our-school .comparison-item::before {
	content: '✓';
	color: var(--success);
	font-weight: bold;
	margin-right: 8px;
	display: inline-block;
	animation: check-mark 0.5s ease-out;
}

.comparison-column::after {
	content: '';
	position: absolute;
	bottom: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	animation: wave 4s linear infinite;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.comparison-column:hover::after {
	opacity: 1;
}

/* ==================== 만족도 섹션 ==================== */
.satisfaction {
	background: var(--white);
}

.learning-programs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin: 60px auto;
	max-width: 1000px;
}

.program-card {
	background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
	border: 2px solid #E5E7EB;
	border-radius: 24px;
	padding: 40px 32px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	animation: slideInUp 0.6s ease-out forwards;
	opacity: 0;
}

.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }

.program-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.program-card:hover::before {
	opacity: 1;
}

.program-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
	border-color: var(--primary);
}

.program-icon-wrapper {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
}

.program-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25);
}

.program-number {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 32px;
	height: 32px;
	background: var(--dark);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
}

.program-title {
	font-size: 25px;
	font-weight: 800;
	color: var(--dark);
	margin-bottom: 16px;
}

.program-desc {
	font-size: 18px;
	color: var(--gray);
	line-height: 1.6;
	margin-bottom: 24px;
}

.program-features {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.program-feature {
	font-size: 16px;
	color: var(--primary);
	font-weight: 600;
	padding: 8px 14px;
	background: rgba(102, 126, 234, 0.08);
	border-radius: 100px;
	display: inline-block;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 60px;
}

.testimonial-card {
	background: var(--light);
	padding: 32px;
	border-radius: 20px;
	position: relative;
}

.testimonial-quote {
	font-size: 60px;
	color: var(--primary);
	opacity: 0.2;
	position: absolute;
	top: 20px;
	left: 20px;
	line-height: 1;
}

.testimonial-content {
	position: relative;
	z-index: 2;
	margin-bottom: 24px;
	line-height: 1.8;
	color: var(--dark);
	font-size: 15px;
}

.testimonial-author {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.author-info {
	font-weight: 600;
	color: var(--dark);
}

.author-school {
	font-size: 13px;
	color: var(--gray);
	font-weight: 400;
}

.grade-badge {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: var(--white);
	padding: 4px 12px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 700;
}

.testimonials-more-btn {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 32px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: var(--white);
	border-radius: 100px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 16px;
	margin: 16px auto;
	max-width: 250px;
}

.testimonials-more-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.more-arrow {
	transition: transform 0.3s ease;
}

.testimonials-more-btn.expanded .more-arrow {
	transform: rotate(180deg);
}

.testimonials-hidden {
	display: none;
	grid-column: 1 / -1;
}

.testimonials-hidden.show {
	display: contents;
}

/* ==================== CTA 섹션 ==================== */
.cta {
	background: linear-gradient(135deg, var(--accent), #FFA500);
	text-align: center;
}

.cta-title {
	font-size: clamp(36px, 5vw, 52px);
	font-weight: 900;
	color: var(--dark);
	margin-bottom: 24px;
	line-height: 1.2;
}

.cta-subtitle {
	font-size: 20px;
	color: rgba(0, 0, 0, 0.8);
	margin-bottom: 48px;
}

.strengths-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.strength-card {
	background: var(--white);
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	padding: 40px 24px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transform-style: preserve-3d;
	perspective: 1000px;
}

.strength-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
}

.strength-card:nth-child(1)::before {
	background: linear-gradient(135deg, var(--accent), #F59E0B);
}

.strength-card:nth-child(2)::before {
	background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.strength-card:nth-child(3)::before {
	background: linear-gradient(135deg, var(--success), #047857);
}

.strength-card:nth-child(4)::before {
	background: linear-gradient(135deg, #F59E0B, #D97706);
}

.strength-card:nth-child(5)::before {
	background: linear-gradient(135deg, #C084FC, #9333EA);
}

.strength-card:hover {
	transform: translateY(-10px) rotateX(-5deg) scale(1.02);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	border-color: rgba(0, 0, 0, 0.2);
}

.strength-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
}

.strength-card:nth-child(1) .strength-icon {
	background: linear-gradient(135deg, #8B6C2E, #654E21);
	color: var(--accent);
}

.strength-card:nth-child(2) .strength-icon {
	background: linear-gradient(135deg, #1E3A8A, #1E40AF);
	color: #3B82F6;
}

.strength-card:nth-child(3) .strength-icon {
	background: linear-gradient(135deg, #065F46, #047857);
	color: var(--success);
}

.strength-card:nth-child(4) .strength-icon {
	background: linear-gradient(135deg, #7C2D12, #92400E);
	color: #F59E0B;
}

.strength-card:nth-child(5) .strength-icon {
	background: linear-gradient(135deg, #7E22CE, #8B5CF6);
	color: #C084FC;
}

.strength-card h4 {
	font-size: 25px;
	font-weight: 900;
	margin-bottom: 8px;
	color: var(--dark);
	line-height: 1.2;
}

.strength-card h5 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
	color: var(--gray);
	line-height: 1.2;
}

.strength-percentage {
	font-size: 48px;
	font-weight: 900;
	color: var(--dark);
	margin-bottom: 1px;
}

.strength-metric {
	font-size: 14px;
	color: var(--gray);
	font-weight: 600;
	margin-bottom: 12px;
}

.strength-detail-btn {
	display: inline-block;
	background: #F5F5F5;
	color: var(--dark);
	padding: 8px 20px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	margin-top: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid #E0E0E0;
}

.strength-detail-btn:hover {
	background: #E8E8E8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==================== 실적 증명 섹션 ==================== */
.proof {
	background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
	padding: 120px 0;
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.proof-card {
	background: var(--white);
	border-radius: 24px;
	padding: 48px 32px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.proof-card::before {
	content: '';
	position: absolute;
	top: -100%;
	left: -100%;
	width: 300%;
	height: 300%;
	background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.05), transparent);
	transform: rotate(45deg);
	transition: all 0.6s ease;
}

.proof-card:hover::before {
	top: -150%;
	left: -150%;
}

.proof-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.proof-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
	animation: float-icon 3s ease-in-out infinite;
}

.proof-card:nth-child(even) .proof-icon {
	animation-delay: 1.5s;
}

.proof-number {
	font-size: 56px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	margin-bottom: 0;
	line-height: 1;
}

.proof-label {
	font-size: 32px;
	font-weight: 700;
	color: var(--gray);
	margin-bottom: 16px;
	display: inline-block;
	margin-left: -5px;
}

.proof-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 12px;
}

.proof-desc {
	font-size: 16px;
	color: var(--gray);
	line-height: 1.5;
}

.proof-card.visible .proof-number {
	animation: countUp 0.8s ease-out;
}

/* ==================== 태블릿 반응형 ==================== */
@media (max-width: 1024px) {
	.hero-stats { gap: 40px; }
	.trust-grid { grid-template-columns: repeat(2, 1fr); }
	.result-main { grid-template-columns: 1fr; }
	.management-grid { grid-template-columns: 1fr; }
	.comparison { grid-template-columns: 1fr; }
	.our-school { transform: scale(1); }
	.strengths-grid { grid-template-columns: repeat(2, 1fr); }
	.learning-programs { grid-template-columns: 1fr; }
	.testimonials-grid { grid-template-columns: 1fr; }
	.proof-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== 모바일 반응형 ==================== */
@media (max-width: 768px) {
	.mobile-br { display: inline; }

	/* 히어로 */
	.hero {
		min-height: 100vh;
		padding: 0 0 30px;
	}

	.hero-badge {
		padding: 10px 28px;
		font-size: 13px;
		margin-bottom: 30px;
	}

	.hero-title {
		margin-bottom: 24px;
	}

	.hero-title-top {
		font-size: 26px;
		margin-bottom: 12px;
	}

	.hero-title-main {
		font-size: 32px;
		line-height: 1.2;
	}

	.hero-subtitle {
		margin-bottom: 24px;
	}

	.hero-subtitle strong {
		font-size: 17px !important;
		line-height: 1.4;
	}

	.hero-cta {
		flex-direction: row;
		gap: 10px;
		margin: 28px 0;
	}

	.cta-btn {
		flex: 1;
		text-align: center;
		padding: 14px 12px;
		font-size: 14px;
		white-space: nowrap;
	}

	.hero-achievements {
		flex-direction: row;
		gap: 0;
		margin-top: 36px;
		padding-top: 28px;
		justify-content: space-between;
	}

	.achievement-item {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		flex: 1;
		gap: 10px;
	}

	.achievement-icon {
		width: 36px;
		height: 36px;
		font-size: 20px;
		margin: 0 auto;
	}

	.achievement-text {
		font-size: 13px;
		line-height: 1.3;
		font-weight: 500;
	}

	/* 신뢰 */
	.trust-grid { grid-template-columns: 1fr; }
	.trust-card { padding: 16px 12px; }
	.trust-number { font-size: 40px; margin-bottom: 4px; }
	.trust-label { font-size: 14px; }

	/* 성적향상 */
	.section.result {
		padding-left: 0;
		padding-right: 0;
	}

	.result .container {
		padding: 0 12px;
	}

	.result-main { 
		grid-template-columns: 1fr; 
		gap: 20px;
		padding: 0;
		margin: 0;
	}

	.result-content { 
		order: 1; 
		margin-bottom: 0; 
		padding: 0;
	}

	.result-content p { 
		margin-bottom: 16px;
		padding: 0 4px;
	}

	.result-content h3 { 
		font-size: 28px;
		padding: 0 4px;
	}

	.before-after { 
		padding: 20px 16px;
		gap: 16px;
		margin-bottom: 32px;
		margin-left: 0;
		margin-right: 0;
	}

	.ba-arrow { font-size: 24px; }
	.ba-label { font-size: 16px; margin-bottom: 8px; }
	.ba-grade { font-size: 32px; margin-bottom: 6px; }
	.ba-desc { font-size: 16px; }

	.result-cards { 
		order: 2; 
		padding: 0;
		margin: 0;
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.result-card { 
		margin: 0;
		width: 100%;
		padding: 20px 16px;
		box-sizing: border-box;
	}

	.result-left {
		gap: 12px;
	}

	.result-icon {
		width: 44px;
		height: 44px;
		font-size: 22px;
	}

	.result-value {
		font-size: 28px;
	}

	.result-text {
		font-size: 15px;
	}

	/* 관리 */
	.management-grid { grid-template-columns: 1fr; }
	.management-card { padding: 24px; }
	.management-title { font-size: 22px; margin-bottom: 8px; }
	.management-desc { font-size: 16px; margin-bottom: 12px; line-height: 1.3; }
	.management-list li { font-size: 16px; padding: 4px 0; line-height: 1.2; }

	/* 차별점 */
	.comparison { grid-template-columns: 1fr; }
	.comparison-column { padding: 24px; }
	.column-header { margin-bottom: 16px; }
	.comparison-item { padding: 8px 0; font-size: 16px; }
	.our-school { transform: scale(1); }

	/* 프로그램 */
	.learning-programs { grid-template-columns: 1fr; gap: 20px; }
	.program-card { padding: 24px 20px; }
	.program-icon-wrapper { 
		width: 50px; height: 50px; 
		margin: 0 auto 16px auto; 
	}
	.program-icon { width: 50px; height: 50px; font-size: 24px; }
	.program-number { width: 20px; height: 20px; font-size: 10px; top: -4px; right: -4px; }
	.program-title { font-size: 21px; margin-bottom: 8px; }
	.program-desc { font-size: 17px; line-height: 1.4; margin-bottom: 16px; }
	.program-features { gap: 6px; }
	.program-feature { font-size: 15px; padding: 6px 12px; }

	/* 후기 */
	.testimonials-grid { grid-template-columns: 1fr; }
	.testimonial-card { padding: 20px; }
	.testimonial-content { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

	/* 강점 */
	.strengths-grid { grid-template-columns: 1fr; }
	.strength-card { padding: 24px 16px; }
	.strength-icon { width: 50px; height: 50px; font-size: 24px; margin-bottom: 12px; }
	.strength-card h4 { font-size: 24px !important; margin-bottom: 4px !important; }
	.strength-card h5 { font-size: 18px !important; margin-bottom: 12px !important; white-space: nowrap !important; }
	.strength-percentage { font-size: 40px !important; margin-bottom: 4px !important; }
	.strength-metric { font-size: 16px !important; margin-bottom: 8px !important; }
	.strength-detail-btn { font-size: 16px; padding: 6px 16px; margin-top: 8px; }
}

/* ==================== 모바일 추가 스타일 ==================== */
@media screen and (max-width: 768px) {
	.proof {
		padding: 60px 0;
	}

	.proof .container {
		padding: 0 12px !important;
	}

	.proof-grid {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 12px !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	.proof-card {
		padding: 24px 20px !important;
	}

	.proof-icon {
		width: 50px !important;
		height: 50px !important;
		font-size: 26px !important;
		margin-bottom: 16px !important;
	}

	.proof-number {
		font-size: 32px !important;
	}

	.proof-label {
		font-size: 18px !important;
		margin-left: -3px !important;
	}

	.proof-title {
		font-size: 16px !important;
		margin-bottom: 8px !important;
	}

	.proof-desc {
		font-size: 13px !important;
		line-height: 1.3 !important;
	}
}

/* ==================== 더보기 버튼 데스크톱 숨김 ==================== */
@media (min-width: 769px) {
	.testimonials-more-btn { display: none; }
	.testimonials-hidden { display: contents; }
}




.con.main_j.swiper-container {
	width: 100%;
	/*height: 400px;*/
	position: relative;
}

.swiper-wrapper {
	display: flex;
}

.swiper-slide {
	width: auto;
	min-width: 300px;
	padding: 20px;
	background: #fff;
	margin-right: 10px;
}

.swiper-slide .title {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
}

.swiper-slide .title img {
	vertical-align: middle;
	margin-right: 8px;
	width: 24px;
	height: 24px;
}

.swiper-slide .list {
	display: flex;
	gap: 20px;
	/*height: 320px;*/
	overflow: hidden;
}

.swiper-slide .list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
	min-width: 120px;
}

.swiper-slide .list li {
	font-size: 11px;
	line-height: 1.5;
	margin-bottom: 2px;
	color: #666;
	white-space: nowrap;
	display: flex;
	justify-content: space-between;
}

.student-info {
	flex: 1;
}

.student-school {
	color: #999;
	font-size: 10px;
	margin-left: 8px;
	min-width: 60px;
	text-align: right;
}

/* Swiper 버튼 */
.swiper-button-next,
.swiper-button-prev {
	color: #666 !important;
	width: 30px;
	height: 30px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 14px;
}

@media (max-width: 768px) {
	.swiper-slide {
		min-width: 170px;
		padding: 15px;
	}
	
	.swiper-slide .list {
		flex-direction: column;
		gap: 10px;
	}
}