.why-next-level-section {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
}

.why-next-level-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, rgba(188, 0, 0, 0.05) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.why-next-level-section .container {
	position: relative;
	z-index: 1;
}

.why-title {
	opacity: 0;
	transform: translateY(-30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
	font-size: 48px;
	background: linear-gradient(135deg, #bc0000 0%, #d32f2f 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	display: inline-block;
}

.why-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #bc0000, #d32f2f);
	transition: width 0.8s ease 0.5s;
}

.why-title.visible {
	opacity: 1;
	transform: translateY(0);
}

.why-title.visible::after {
	width: 100px;
}

.why-subtitle {
	opacity: 0;
	transform: translateY(-20px);
	transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
	color: #666;
	font-weight: 400;
}

.why-subtitle.visible {
	opacity: 1;
	transform: translateY(0);
}

.why-image-wrapper {
	opacity: 0;
	transform: translateX(50px) scale(0.9);
	transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}

.why-image-wrapper.visible {
	opacity: 1;
	transform: translateX(0) scale(1);
}

.why-image-container {
	position: relative;
	display: inline-block;
	padding: 20px;
}

.why-image {
	position: relative;
	z-index: 2;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.why-image-wrapper.visible .why-image {
	animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-15px) rotate(2deg);
	}
}

.why-image-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120%;
	height: 120%;
	background: radial-gradient(circle, rgba(188, 0, 0, 0.2) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 1s ease 0.6s;
	z-index: 1;
	animation: pulseGlow 2s ease-in-out infinite;
}

.why-image-wrapper.visible .why-image-glow {
	opacity: 1;
}

@keyframes pulseGlow {
	0%, 100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.3;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.1);
		opacity: 0.5;
	}
}

.why-content-wrapper {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}

.why-content-wrapper.visible {
	opacity: 1;
	transform: translateX(0);
}

.why-content-title {
	font-size: 32px;
	font-weight: 700;
	color: #2c3e50;
	position: relative;
	padding-left: 20px;
	opacity: 0;
	transform: translateX(-30px);
	transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}

.why-content-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, #bc0000, #d32f2f);
	transition: height 0.8s ease 1s;
}

.why-content-wrapper.visible .why-content-title {
	opacity: 1;
	transform: translateX(0);
}

.why-content-wrapper.visible .why-content-title::before {
	height: 100%;
}

.why-text-block {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease 1s, transform 0.8s ease 1s;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.why-content-wrapper.visible .why-text-block {
	opacity: 1;
	transform: translateY(0);
}

.why-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background: rgba(255, 255, 255, 0.6);
	border: 2px solid rgba(0, 0, 0, 0.05);
	border-left: 4px solid transparent;
	border-radius: 12px;
	padding: 25px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	opacity: 0;
	transform: translateY(20px);
}

.why-content-wrapper.visible .why-card {
	opacity: 1;
	transform: translateY(0);
}

.why-content-wrapper.visible .why-card:nth-child(1) {
	transition-delay: 1.2s;
}

.why-content-wrapper.visible .why-card:nth-child(2) {
	transition-delay: 1.4s;
}

.why-content-wrapper.visible .why-card:nth-child(3) {
	transition-delay: 1.6s;
}

.why-card:hover {
	background: rgba(255, 255, 255, 0.9);
	border-left-color: #bc0000;
	border-color: rgba(188, 0, 0, 0.2);
	transform: translateX(10px);
	box-shadow: 0 12px 30px rgba(188, 0, 0, 0.15);
}

.why-card-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
	transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
	background: linear-gradient(135deg, #bc0000 0%, #d32f2f 100%);
	transform: rotate(10deg) scale(1.1);
	box-shadow: 0 5px 15px rgba(188, 0, 0, 0.3);
}

.why-card-icon i {
	font-size: 24px;
	color: #bc0000;
	transition: color 0.3s ease;
}

.why-card:hover .why-card-icon i {
	color: #ffffff;
}

.why-card-content {
	flex: 1;
}

.why-card-title {
	font-size: 22px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 12px;
	line-height: 1.3;
}

.why-card-text {
	font-size: 17px;
	line-height: 1.7;
	color: #2c3e50;
	margin: 0;
}

.why-image-container:hover .why-image {
	transform: translateY(-10px) scale(1.05);
	filter: drop-shadow(0 15px 40px rgba(188, 0, 0, 0.3));
}

.why-image-container:hover .why-image-glow {
	opacity: 0.7;
	transform: translate(-50%, -50%) scale(1.15);
}

@media (max-width: 991px) {
	.why-title {
		font-size: 36px;
	}
	
	.why-content-title {
		font-size: 28px;
	}
	
	.why-image-wrapper {
		transform: translateY(30px) scale(0.9);
	}
	
	.why-content-wrapper {
		transform: translateY(30px);
	}
	
	.why-image-wrapper.visible {
		transform: translateY(0) scale(1);
	}
	
	.why-content-wrapper.visible {
		transform: translateY(0);
	}
}

@media (max-width: 767px) {
	.why-title {
		font-size: 28px;
	}
	
	.why-content-title {
		font-size: 24px;
		padding-left: 15px;
	}
	
	.why-card {
		padding: 20px;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.why-card-icon {
		margin-bottom: 15px;
	}
	
	.why-card-title {
		font-size: 20px;
	}
	
	.why-card-text {
		font-size: 16px;
	}
	
	.why-image-container {
		padding: 10px;
	}
}
