.hero-stage-new,
.hero-3cx {
	position: relative;
	min-height: 40vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 2rem;
	overflow: hidden;
	color: #fff;
	background: linear-gradient(135deg, rgba(165, 0, 101, 0.92), rgba(255, 148, 3, 0.75));
}

.hero-stage-new__inner,
.hero-3cx__inner {
	position: relative;
	max-width: 1300px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
}

.hero-stage-new__content,
.hero-3cx__content {
	flex: 1 1 55%;
	max-width: 58%;
}

.hero-stage-new__title,
.hero-3cx__title {
	font-family: 'RidleyGrotesk-Bold', sans-serif;
	font-size: clamp(2.2rem, 4.5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 1rem;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
	text-transform: uppercase;
}

.hero-stage-new__desc,
.hero-3cx__desc {
	font-size: clamp(0.95rem, 1.6vw, 1.1rem);
	line-height: 1.6;
	opacity: 0.92;
	margin: 0 0 1.5rem;
}

.hero-stage-new__features,
.hero-3cx__features {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 0.4rem 1.5rem;
	margin-bottom: 1.8rem;
	font-size: 0.9rem;
	font-weight: 500;
	justify-content: start;
}

.hero-stage-new__features span,
.hero-3cx__features span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hero-stage-new__features span::before,
.hero-3cx__features span::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #00cd40;
	flex-shrink: 0;
}

.hero-stage-new__actions,
.hero-3cx__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-bottom: 1.5rem;
}

.hero-stage-new__btn,
.hero-3cx__btn {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1.8rem;
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-radius: 2rem;
	transition: all 0.25s ease;
	cursor: pointer;
}

.hero-stage-new__btn--primary,
.hero-3cx__btn--primary {
	background: linear-gradient(135deg, #7b1fa2, #a50065);
	color: #fff;
	box-shadow: 0 4px 15px rgba(165, 0, 101, 0.3);
}

.hero-stage-new__btn--primary:hover,
.hero-3cx__btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(165, 0, 101, 0.45);
}

.hero-stage-new__btn--secondary,
.hero-3cx__btn--secondary {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(4px);
}

.hero-stage-new__btn--secondary:hover,
.hero-3cx__btn--secondary:hover {
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-2px);
}

.hero-stage-new__badges,
.hero-3cx__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.hero-stage-new__badges span,
.hero-3cx__badges span {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.hero-stage-new__badges span::before,
.hero-3cx__badges span::before {
	content: '\2714';
	color: #00cd40;
	font-weight: 800;
	font-size: 1rem;
}

.hero-stage-new__visual,
.hero-3cx__visual {
	flex: 0 1 40%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	width: min(100%, 38rem);
}

.hero-stage-new__logo,
.hero-3cx__logo {
	width: clamp(16rem, 34vw, 38rem);
	height: 18rem;
	object-fit: contain;
	filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.15));
}

@media (max-width: 900px) {
	.hero-stage-new,
	.hero-3cx {
		padding: 2.5rem 1.5rem;
	}

	.hero-stage-new__inner,
	.hero-3cx__inner {
		flex-direction: column;
		text-align: center;
	}

	.hero-stage-new__content,
	.hero-3cx__content {
		max-width: 100%;
	}

	.hero-stage-new__features,
	.hero-3cx__features {
		grid-template-columns: repeat(2, auto);
		justify-content: center;
	}

	.hero-stage-new__actions,
	.hero-3cx__actions {
		justify-content: center;
	}

	.hero-stage-new__badges,
	.hero-3cx__badges {
		justify-content: center;
	}

	.hero-stage-new__visual,
	.hero-3cx__visual {
		max-width: 60%;
	}
}

@media (max-width: 500px) {
	.hero-stage-new__features,
	.hero-3cx__features {
		grid-template-columns: 1fr;
	}
}
