/* PUB:SECTION-WHY Styles - 완전히 새로 작성 */

.pub-section-why {
	position: relative;
	padding: 100px 20px !important;
	background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%) !important;
	overflow: hidden;
}

.pub-section-why::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.pub-why__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	color: #ffffff;
}

/* Title */
.pub-why__title {
	margin: 0 0 40px !important;
	padding: 0 !important;
	font-size: 48px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;
	letter-spacing: -0.02em !important;
	color: #ffffff !important;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
	text-align: center !important;
}

/* Main Text */
.pub-why__main-text {
	margin: 0 0 60px !important;
	padding: 0 !important;
	font-size: 22px !important;
	font-weight: 500 !important;
	line-height: 1.6 !important;
	color: rgba(255, 255, 255, 0.95) !important;
	text-align: center !important;
}

.pub-why__main-text strong {
	color: #ffd700 !important;
	font-weight: 700 !important;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.5) !important;
}

/* Points List */
.pub-why__points {
	list-style: none !important;
	margin: 0 0 60px !important;
	padding: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 20px !important;
	max-width: 900px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.pub-why__point {
	display: flex !important;
	align-items: flex-start !important;
	gap: 15px !important;
	padding: 25px 20px !important;
	background: rgba(255, 255, 255, 0.05) !important;
	backdrop-filter: blur(20px) !important;
	border-radius: 16px !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
				inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
	text-align: left !important;
}

.pub-why__point:hover {
	transform: translateY(-5px) !important;
	background: rgba(255, 255, 255, 0.08) !important;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
				0 0 30px rgba(255, 215, 0, 0.15),
				inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
	border-color: rgba(255, 215, 0, 0.3) !important;
}

/* Check Icon */
.pub-why__check {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 32px !important;
	height: 32px !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	color: #4ecdc4 !important;
	background: rgba(78, 205, 196, 0.15) !important;
	border-radius: 50% !important;
	border: 2px solid rgba(78, 205, 196, 0.3) !important;
	flex-shrink: 0 !important;
	box-shadow: 0 0 15px rgba(78, 205, 196, 0.3) !important;
	transition: all 0.3s ease !important;
}

.pub-why__point--1 .pub-why__check {
	color: #4ecdc4 !important;
	background: rgba(78, 205, 196, 0.15) !important;
	border-color: rgba(78, 205, 196, 0.3) !important;
	box-shadow: 0 0 15px rgba(78, 205, 196, 0.3) !important;
}

.pub-why__point--2 .pub-why__check {
	color: #5b8def !important;
	background: rgba(91, 141, 239, 0.15) !important;
	border-color: rgba(91, 141, 239, 0.3) !important;
	box-shadow: 0 0 15px rgba(91, 141, 239, 0.3) !important;
}

.pub-why__point--3 .pub-why__check {
	color: #ff6b6b !important;
	background: rgba(255, 107, 107, 0.15) !important;
	border-color: rgba(255, 107, 107, 0.3) !important;
	box-shadow: 0 0 15px rgba(255, 107, 107, 0.3) !important;
}

.pub-why__point:hover .pub-why__check {
	transform: scale(1.15) !important;
}

/* Point Text Container */
.pub-why__point-text {
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	flex: 1 !important;
}

/* Point Title */
.pub-why__point-title {
	display: block !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
	color: #ffffff !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Point Description */
.pub-why__point-desc {
	display: block !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.6 !important;
	color: rgba(255, 255, 255, 0.8) !important;
	margin: 0 !important;
	padding: 0 !important;
}

.pub-why__em {
	color: #ff6b3d !important;
	font-weight: 700 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.pub-section-why {
		padding: 60px 16px !important;
	}

	.pub-why__title {
		font-size: 32px !important;
		margin-bottom: 30px !important;
	}

	.pub-why__main-text {
		font-size: 18px !important;
		margin-bottom: 40px !important;
	}

	.pub-why__points {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
		margin-bottom: 40px !important;
	}

	.pub-why__point {
		padding: 20px 18px !important;
		gap: 12px !important;
	}

	.pub-why__check {
		width: 28px !important;
		height: 28px !important;
		font-size: 18px !important;
	}

	.pub-why__point-title {
		font-size: 16px !important;
	}

	.pub-why__point-desc {
		font-size: 13px !important;
	}
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
	.pub-why__title {
		font-size: 42px !important;
	}

	.pub-why__main-text {
		font-size: 20px !important;
	}

	.pub-why__points {
		flex-direction: column !important;
	}
}

/* Desktop */
@media (min-width: 1025px) {
	.pub-why__points {
		flex-direction: column !important;
	}
}

/* Scroll Animation States */
.pub-why__title,
.pub-why__main-text,
.pub-why__point {
	opacity: 0 !important;
	transform: translateY(40px) !important;
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.pub-why__title.pub-why--visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

.pub-why__main-text.pub-why--visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
	transition-delay: 0.2s !important;
}

.pub-why__point--1.pub-why--visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
	transition-delay: 0.1s !important;
}

.pub-why__point--2.pub-why--visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
	transition-delay: 0.2s !important;
}

.pub-why__point--3.pub-why--visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
	transition-delay: 0.3s !important;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.pub-why__title,
	.pub-why__main-text,
	.pub-why__point {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}
