/* =========================================================================
   [swiper_carousel] — Flagship product hero
   ========================================================================= */
.swiper-carousel {
	--sc-navy: #0c0f2e;
	--sc-navy-2: #141a44;
	--sc-purple: #7c3aed;
	--sc-purple-2: #a855f7;
	--sc-title: #1e2352;
	--sc-text: #c7cbe6;

	position: relative;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 40px 40px 48px;
	border-radius: 22px;
	background: linear-gradient(135deg, #eceafb 0%, #f4f2fb 45%, #ffffff 100%);
	overflow: hidden;
}

/* --- Navigation arrows (top-right) --- */
.swiper-carousel__nav {
	position: absolute;
	top: 28px;
	right: 32px;
	z-index: 5;
	display: flex;
	gap: 10px;
}

.swiper-carousel .swiper-button-prev,
.swiper-carousel .swiper-button-next {
	position: static;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(124, 58, 237, 0.25);
	border-radius: 50%;
	background: #ffffff;
	color: var(--sc-title);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.swiper-carousel .swiper-button-prev::after,
.swiper-carousel .swiper-button-next::after {
	font-size: 15px;
	font-weight: 700;
}

.swiper-carousel .swiper-button-prev:hover,
.swiper-carousel .swiper-button-next:hover {
	background: var(--sc-purple);
	color: #fff;
	box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
}

.swiper-carousel .swiper-button-disabled {
	opacity: 0.4;
	pointer-events: none;
}

/* --- Slide card --- */
.hero-slide {
	display: flex;
	flex-direction: column;
	gap: 22px;
	height: 100%;
}

.hero-slide__header {
	max-width: 920px;
}

.hero-slide__badge {
	display: inline-block;
	padding: 0 14px;
	margin-bottom: 14px;
	border-radius: 12px;
	background: #688EC9;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.hero-slide__title {
	margin: 0;
	color: var(--sc-title);
	font-size: clamp(1.6rem, 3.2vw, 2.4rem);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

/* --- Dark body: media + content --- */
.hero-slide__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 34px;
	align-items: center;
	padding: 26px;
	border-radius: 18px;
	background: radial-gradient(120% 140% at 0% 0%, var(--sc-navy-2) 0%, var(--sc-navy) 60%);
	box-shadow: 0 24px 60px rgba(12, 15, 46, 0.28);
}

.hero-slide__media {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	line-height: 0;
}

.hero-slide__media img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
}

/* --- Content column --- */
.hero-slide__content {
	color: var(--sc-text);
}

.hero-slide__status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 5px 13px 5px 11px;
	margin-bottom: 18px;
	border: 1px solid rgba(168, 85, 247, 0.55);
	border-radius: 999px;
	color: #d6bcfa;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hero-slide__status::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--sc-purple-2);
	box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.25);
}

.hero-slide__desc {
	margin-bottom: 20px;
	font-size: 0.98rem;
	line-height: 1.6;
	color: var(--sc-text);
}

.hero-slide__desc p {
	margin: 0 0 0.6em;
}

.hero-slide__desc p:last-child {
	margin-bottom: 0;
}

.hero-slide__features {
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
}

.hero-slide__features li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	color: #eceafb;
	font-size: 0.96rem;
	line-height: 1.4;
}

.hero-slide__features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(124, 58, 237, 0.18);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23a855f7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}

/* --- CTA button --- */
.hero-slide__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 24px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--sc-purple), var(--sc-purple-2));
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(124, 58, 237, 0.4);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-slide__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(124, 58, 237, 0.5);
	color: #fff;
}

.hero-slide__btn-arrow {
	transition: transform 0.2s ease;
}

.hero-slide__btn:hover .hero-slide__btn-arrow {
	transform: translateX(3px);
}
.hero-slide__btn span{
	text-decoration:none
}
/* --- Responsive --- */
@media (max-width: 782px) {
	.swiper-carousel {
		padding: 28px 20px 36px;
	}

	.swiper-carousel__nav {
		top: 20px;
		right: 20px;
	}

	.hero-slide__body {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 20px;
	}

	.hero-slide__header {
		padding-right: 96px; /* keep clear of arrows */
	}
}
