.carousel-super-container {
	width: 100%;
	position: relative;
	padding: 0 60px
}

.carousel-custom-enhanced {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	gap: 32px;
	padding: 30px 40px 50px 40px;
	margin: 0;
	border-radius: 15px;
	scrollbar-width: none
}

.carousel-custom-enhanced::-webkit-scrollbar {
	height: 0
}

.bento-card-enhanced {
	flex: 0 0 auto;
	width: 910px;
	max-width: 910px;
	height: 350px;
	min-height: 100px;
	border-radius: 15px;
	background-size: cover;
	background-position: center;
	position: relative;
	scroll-snap-align: center;
	transition: all .4s cubic-bezier(.2, .9, .4, 1.1);
	box-shadow: 0 25px 45px -12px rgba(0, 0, 0, .3);
	overflow: hidden;
	cursor: pointer
}

.bento-card-enhanced:hover {
	transform: translateY(-12px) scale(1.02)
}

.card-overlay-enhanced {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .4) 60%, transparent 100%);
	padding: 2rem
}

.card-overlay-enhanced h2 {
	font-family: 'Syne', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: .5rem
}

.card-overlay-enhanced p {
	font-size: 1.1rem
}

.bento-dark-enhanced {
	background: #f0f2f5
}

.floating-invoice-enhanced {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, .98);
	backdrop-filter: blur(8px);
	width: 85%;
	max-width: 380px;
	border-radius: 28px;
	padding: 2rem 1.8rem;
	text-align: center
}

.floating-invoice-enhanced h5 {
	font-family: 'Syne', sans-serif;
	font-size: 1.6rem;
	font-weight: 700
}

.btn-dark-premium {
	background: linear-gradient(95deg, #0d1b3e, #162d6e);
	color: #fff;
	border: none;
	padding: 12px 20px;
	font-weight: 700;
	border-radius: 60px
}

.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 15px;
	background: rgba(1, 194, 72, 0.2);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, .15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	cursor: pointer;
	z-index: 20;
	color: #fff
}

.nav-left {
	left: 12px
}

.nav-right {
	right: 12px
}

.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 20px
}

.dot {
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, .2);
	border-radius: 30px;
	cursor: pointer;
	transition: all .3s
}

.dot.active {
	width: 32px;
	background: #0279207c
}

@media(max-width:992px) {
	.bento-card-enhanced {
		height: 540px;
		max-width: 460px
	}

	.card-overlay-enhanced h2 {
		font-size: 2rem
	}
}

@media(max-width:768px) {
	.carousel-super-container {
		padding: 0 15px
	}

	.carousel-custom-enhanced {
		gap: 20px;
		padding: 20px
	}

	.bento-card-enhanced {
		height: 500px;
		max-width: 380px
	}
}

@media(max-width:576px) {
	.bento-card-enhanced {
		height: 460px;
		max-width: 320px
	}

	.card-overlay-enhanced h2 {
		font-size: 1.5rem
	}
}