/* 비용 걱정 NO! 부담 ZERO! 섹션 - 완전히 새로운 디자인 */
.cost-worry-section {
	position: relative;
	padding: 8em 2em;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
	background: transparent;
	margin: 0;
}

.cost-worry-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('./img/0-4.jpg') center/cover;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	filter: blur(4px);
	opacity: 0.95;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.cost-worry-container {
	position: relative;
	z-index: 10;
	max-width: 1400px;
	width: 100%;
	text-align: center;
}

.cost-worry-header {
	margin-bottom: 6em;
	animation: headerFloat 4s ease-in-out infinite;
}

.cost-worry-title {
	font-size: 5.5em;
	font-weight: 900;
	color: #ff6b35;
	margin: 0 0 1em 0;
	text-shadow: 4px 4px 12px rgba(255, 107, 53, 0.8);
	line-height: 1.1;
	letter-spacing: -3px;
	background: linear-gradient(135deg, #ff6b35, #ff8c42, #ffa726);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: titleGlow 3s ease-in-out infinite, titleBounce 2s ease-in-out infinite;
	position: relative;
}

.cost-worry-title .no-text,
.cost-worry-title .zero-text {
	color: #00ff88;
	-webkit-text-fill-color: #00ff88;
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	text-shadow: 4px 4px 12px rgba(0, 255, 136, 0.8);
	font-weight: 1000;
}

.cost-worry-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #ff6b35, #ff8c42, #ffa726);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: titleShine 4s linear infinite;
	opacity: 0;
}

.cost-worry-subtitle {
	font-size: 2.2em;
	color: #f0f0f0;
	margin: 0;
	text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
	font-weight: 500;
	opacity: 0.95;
	animation: subtitlePulse 3s ease-in-out infinite;
}

.cost-worry-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4em;
	max-width: 1300px;
	margin: 0 auto;
}

.cost-worry-item {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(25px);
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-radius: 30px;
	padding: 5em 3em;
	text-align: center;
	transition: all 0.8s ease-out;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	animation: cardFloat 5s ease-in-out infinite;
}

.cost-worry-item:nth-child(1) {
	animation-delay: 0s;
}

.cost-worry-item:nth-child(2) {
	animation-delay: 1.5s;
}

.cost-worry-item:nth-child(3) {
	animation-delay: 3s;
}

.cost-worry-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 1s ease;
}

.cost-worry-item:hover::before {
	left: 100%;
}

.cost-worry-item:hover {
	transform: translateY(-20px) scale(1.05);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.4);
}

.item-icon {
	font-size: 4.5em;
	font-weight: 900;
	margin-bottom: 1.5em;
	display: block;
	color: #00ff88;
	text-shadow: 0 0 25px rgba(0, 255, 136, 0.8);
	animation: iconFloat 3s ease-in-out infinite;
}

.item-title {
	font-size: 1.8em;
	color: #ffffff;
	margin: 0 0 1.5em 0;
	font-weight: 600;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.item-value {
	font-size: 3.5em;
	font-weight: 900;
	color: #ff6b6b;
	margin: 0 0 2em 0;
	text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
	animation: valuePulse 2s ease-in-out infinite;
}

.item-tag {
	background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ff4757);
	color: #ffffff;
	padding: 1.2em 2.5em;
	border-radius: 35px;
	font-size: 1.1em;
	font-weight: 700;
	display: inline-block;
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
	transition: all 0.4s ease;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.item-tag:hover {
	transform: translateY(-5px) scale(1.08);
	box-shadow: 0 15px 40px rgba(255, 107, 107, 0.8);
	background: linear-gradient(135deg, #ff4757, #ff6b6b, #ee5a24);
}



/* 애니메이션 키프레임 */
@keyframes titleGlow {
	0%, 100% {
		filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
	}
	50% {
		filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.9));
	}
}

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

@keyframes titleShine {
	0% {
		opacity: 0;
		transform: translateX(-100%);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateX(100%);
	}
}

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

@keyframes subtitlePulse {
	0%, 100% {
		opacity: 0.95;
	}
	50% {
		opacity: 1;
	}
}

@keyframes cardFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}

@keyframes iconFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}

@keyframes valuePulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

/* 모바일 반응형 */
@media screen and (max-width: 1024px) {
	.cost-worry-section {
		padding: 6em 1.5em;
	}
	
	.cost-worry-title {
		font-size: 4.5em;
	}
	
	.cost-worry-subtitle {
		font-size: 2em;
	}
	
	.cost-worry-grid {
		gap: 3em;
	}
	
	.cost-worry-item {
		padding: 4em 2.5em;
	}
}

@media screen and (max-width: 768px) {
	.cost-worry-section {
		padding: 4em 1em;
		min-height: auto;
	}
	
	.cost-worry-title {
		font-size: 3.5em;
	}
	
	.cost-worry-subtitle {
		font-size: 1.7em;
	}
	
	.cost-worry-grid {
		grid-template-columns: 1fr;
		gap: 3em;
		padding: 0 1em;
	}
	
	.cost-worry-item {
		padding: 3.5em 2em;
	}
	
	.item-icon {
		font-size: 4em;
	}
	
	.item-title {
		font-size: 1.6em;
	}
	
	.item-value {
		font-size: 3em;
	}
}

@media screen and (max-width: 480px) {
	.cost-worry-section {
		padding: 3em 0.8em;
	}
	
	.cost-worry-title {
		font-size: 3em;
	}
	
	.cost-worry-subtitle {
		font-size: 1.5em;
	}
	
	.cost-worry-grid {
		gap: 2.5em;
		padding: 0 0.8em;
	}
	
	.cost-worry-item {
		padding: 3em 1.5em;
	}
	
	.item-icon {
		font-size: 3.5em;
	}
	
	.item-title {
		font-size: 1.4em;
	}
	
	.item-value {
		font-size: 2.5em;
	}
	
	.item-tag {
		padding: 1em 2em;
		font-size: 1em;
	}
}
