:root {
	--hero-sidebar-width: 280px;
	--hero-border-radius: 1.5rem;
	--hero-sidebar-bg: #ffffff;
	--hero-section-height: 412px;
	--hero-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--hero-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hero-text-area h1 {
	font-size: clamp(28px, 4vw, 42px);
}

.hero-text-area p {
	font-size: clamp(14px, 1.5vw, 18px) !important;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.fade-in-left {
	animation: slideInLeft 0.8s ease-out forwards;
}

.fade-in-right {
	animation: slideInRight 0.8s ease-out forwards;
}

.default_padding_20 {
	padding: 60px 0px !important;
}

section.hero-section {
	background-color: #ffffff !important;
}

.hero-section.premium-layout {
	display: grid;
	max-width: 100%;
	margin: 0;
	grid-template-columns: minmax(var(--hero-sidebar-width), var(--hero-sidebar-width)) minmax(0, 1fr);
	gap: 24px;
	padding: 0;
	min-height: var(--hero-section-height);
	height: var(--hero-section-height);
	background: transparent;
	overflow: visible !important;
	align-items: stretch;
	position: relative;
	z-index: 1;
}

.hero-section.premium-layout:hover,
.hero-section.premium-layout:has(.hero-sidebar:hover),
.hero-section.premium-layout:has(.hero-sidebar-item:hover),
.hero-section.premium-layout:has(.hero-megamenu:hover) {
	z-index: 100 !important;
}

.hero-sidebar {
	grid-column: span 1;
	background: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(10px);
	border-radius: var(--hero-border-radius);
	box-shadow: var(--hero-shadow) !important;
	border: 1px solid #edf2f7;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	z-index: 20;
	transition: var(--hero-transition);
}

.hero-sidebar-header {
	background: #DB4E39;
	/* Brand primary color */
	color: white;
	padding: 15px 20px;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: calc(var(--hero-border-radius) - 1.5px) calc(var(--hero-border-radius) - 1.5px) 0 0;
}

.hero-sidebar-list {
	list-style: none;
	padding: 10px 0;
	margin: 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	overflow-y: auto;
}

.hero-sidebar-list::-webkit-scrollbar {
	width: 4px;
}

.hero-sidebar-list::-webkit-scrollbar-track {
	background: transparent;
}

.hero-sidebar-list::-webkit-scrollbar-thumb {
	background: #e2e8f0;
	border-radius: 10px;
}

.hero-sidebar-list::-webkit-scrollbar-thumb:hover {
	background: #cbd5e1;
}

.hero-sidebar-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: static;
}

.hero-sidebar-item:last-child {
	border-bottom: none;
}

.hero-sidebar-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	color: #333;
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 600;
	transition: var(--hero-transition);
}

.hero-sidebar-link:hover {
	background-color: #fff8f8;
	color: #DB4E39 !important;
	padding-left: 28px;
}

.category-name {
	flex-grow: 1;
}

.category-icon-end {
	font-size: 16px;
	color: #888;
	transition: var(--hero-transition);
}

.hero-sidebar-link:hover .category-icon-end {
	color: #DB4E39;
	transform: translateX(3px);
}

.sidebar-all-categories {
	border-top: 1px solid #f8fafc;
	margin-top: auto;
	background: #ffffff;
	border-radius: 0 0 var(--hero-border-radius) var(--hero-border-radius);
	overflow: hidden;
}

.all-categories-link {
	font-weight: 600 !important;
	color: #64748b !important;
	padding: 12px 20px !important;
	border: none !important;
	background: transparent !important;
}

.all-categories-link .category-name {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.all-categories-link .category-icon-end {
	font-size: 14px;
	opacity: 0.7;
}

.all-categories-link:hover {
	color: #DB4E39 !important;
	background: #f8fafc !important;
}

.all-categories-link:hover .category-icon-end {
	color: #DB4E39 !important;
	opacity: 1;
	transform: translateX(4px);
}

.hero-megamenu {
	position: absolute;
	top: 0;
	left: calc(100% + 4px);
	height: calc(100vh - 280px);
	width: 0;
	max-width: min(1400px, calc(100vw - var(--hero-sidebar-width) - 60px));
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-left: 8px solid #DB4E39;
	border-radius: var(--hero-border-radius);
	box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateX(5px);
	transition:
		width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		opacity 0.3s ease,
		visibility 0.3s ease,
		transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 100;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.megamenu-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 20px 0 10px 20px;
	min-width: min(850px, calc(100vw - var(--hero-sidebar-width) - 80px));
	opacity: 0;
	transition: opacity 0.3s ease 0.1s;
	height: 100%;
}

.hero-sidebar-item:hover .megamenu-content {
	opacity: 1;
}

.megamenu-columns {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 12px;
}

.megamenu-columns::-webkit-scrollbar {
	width: 6px;
}

.megamenu-columns::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 10px;
}

.megamenu-columns::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 10px;
}

.megamenu-columns::-webkit-scrollbar-thumb:hover {
	background: #DB4E39;
}

.hero-sidebar-item:hover .hero-megamenu,
.hero-megamenu:hover {
	opacity: 1;
	visibility: visible;
	width: min(1312px, calc(100vw - var(--hero-sidebar-width) - 40px));
	transform: translateX(0);
}

.megamenu-masonry {
	column-count: 3;
	column-gap: 40px;
	height: max-content;
}

.megamenu-column {
	display: inline-block;
	break-inside: avoid;
	page-break-inside: avoid;
	width: 100%;
	margin-bottom: 20px;
	vertical-align: top;
}

.megamenu-title {
	font-size: 15px;
	font-weight: 700;
	color: #111;
	margin-bottom: 15px;
	text-decoration: none;
	text-transform: uppercase;
	border-bottom: 2px solid var(--primary-color, #DB4E39);
	padding-bottom: 5px;
	display: table;
	transition: color 0.2s ease;
}

.megamenu-title:hover {
	color: var(--primary-color, #DB4E39);
}

.megamenu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.megamenu-list li {
	margin-bottom: 8px;
}

.megamenu-list a {
	color: #4a5568;
	text-decoration: none;
	font-size: 13.5px;
	transition: color 0.2s ease, transform 0.2s ease;
	display: flex;
	align-items: flex-start;
	line-height: 1.4;
}

.megamenu-list a::before {
	content: "›";
	margin-right: 7px;
	font-size: 18px;
	line-height: 1;
	font-weight: bold;
	color: #a0aec0;
	transition: color 0.2s ease;
}

.megamenu-list a:hover {
	color: #DB4E39;
	transform: translateX(4px);
}

.megamenu-list a:hover::before {
	color: #DB4E39;
}

.megamenu-footer {
	flex: 0 0 auto;
	margin-top: auto;
	padding-top: 12px;
	padding-bottom: 5px;
	border-top: 1px solid #f1f5f9;
	background: #ffffff;
	border-radius: 0 0 var(--hero-border-radius) 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
}

.megamenu-image {
	flex: 0 0 auto;
	max-width: 250px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.megamenu-image img {
	height: 100%;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	object-position: left center;
}

.megamenu-suppliers {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	flex-grow: 1;
	justify-content: flex-end;
	overflow: visible;
}

.megamenu-suppliers span {
	font-size: 11px;
	font-weight: 800;
	color: #a0aec0;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	white-space: nowrap;
}

.hero-supplier-logos {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: nowrap;
	overflow-x: auto;
	justify-content: flex-end;
	scrollbar-width: none;
	padding-right: 15px;
}

.hero-supplier-logos::-webkit-scrollbar {
	display: none;
}

.supplier-logo-link {
	display: block;
}

.hero-supplier-logos img {
	height: 38px;
	max-width: 100px;
	flex-shrink: 0;
	object-fit: contain;
	background-color: #ffffff;
	border-radius: 10px;
	padding: 6px 10px;
	border: none !important;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
	transition: border-color 0.3s ease;
}

.supplier-logo-link:hover img {
	border-color: #DB4E39;
}

.hero-main-area {
	grid-column: span 1;
	overflow: visible;
	border-radius: var(--hero-border-radius);
	position: relative;
	box-shadow: var(--hero-shadow) !important;
	height: 100%;
	min-height: var(--hero-section-height);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: stretch;
	overflow: hidden;
	min-width: 0;
}

.hero-main-area .hero-slider-wrapper {
	width: 100%;
	height: 100%;
}

.premium-hero-banner {
	width: 100%;
	height: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	color: white;
}

.hero-text-content {
	padding: 40px;
	z-index: 2;
	max-width: 600px;
}

.hero-text-content h1 {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text-content p {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.evobrain-bg {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 60%, #e2e8f0 100%);
	position: relative;
	overflow: hidden;
}

.hero-nav-dots {
	left: 0 !important;
	right: 0 !important;
	margin: 0 auto !important;
	width: max-content;
	bottom: 25px !important;
	transform: none !important;
	--dot-bg: rgba(4, 40, 83, 0.15);
	--dot-hover-bg: rgba(4, 40, 83, 0.3);
	--dot-active-bg: #DB4E39;
	white-space: nowrap !important;
	z-index: 50 !important;
}

.hero-nav-dots.dark-dots {
	--dot-bg: rgba(0, 0, 0, 0.2);
	--dot-hover-bg: rgba(0, 0, 0, 0.4);
	--dot-active-bg: #DB4E39;
}

.nav-dot {
	background: var(--dot-bg) !important;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	cursor: pointer;
	transition: width 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.3s, transform 0.3s;
	position: relative;
	display: inline-block;
}

.nav-dot::after {
	content: '';
	position: absolute;
	top: -10px;
	bottom: -10px;
	left: -10px;
	right: -10px;
}

.nav-dot:hover {
	background: var(--dot-hover-bg) !important;
	transform: scale(1.2);
}

.hero-nav-dots .nav-dot.active {
	background: var(--dot-active-bg) !important;
	width: 32px !important;
	border-radius: 6px !important;
	transform: none !important;
	box-shadow: 0 4px 12px rgba(219, 78, 57, 0.3) !important;
}

.hero-media-row {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: flex-end;
	flex: 1.2;
}

.media-row-item {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.media-row-item:hover {
	transform: translateY(-8px);
}

.video-thumb-mini .premium-video-thumb {
	border-radius: 18px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-mini-dock {
	background: rgba(255, 255, 255, 0.5) !important;
	backdrop-filter: blur(12px) saturate(180%);
	border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
	border-radius: 20px;
	padding: 15px !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.premium-mini-dock:hover {
	background: rgba(255, 255, 255, 0.7) !important;
	border-color: #DB4E39 !important;
}

.play-btn-mini {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background: rgba(219, 78, 57, 0.9);
	color: white;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	box-shadow: 0 0 20px rgba(219, 78, 57, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
}

.video-thumb-mini:hover .play-btn-mini {
	transform: translate(-50%, -50%) scale(1.1);
	background: #DB4E39;
}

.mini-label {
	display: block;
	text-align: center;
	margin-top: 8px;
	font-size: 10px;
	font-weight: 800;
	color: #666;
	letter-spacing: 1px;
}

.evobrain-showcase .hero-text-area h1 {
	font-size: clamp(28px, 4vw, 42px);
	letter-spacing: -1.5px;
	line-height: 1.1;
	margin-bottom: 20px;
}

.evobrain-showcase .hero-text-area p {
	font-size: 17px !important;
	line-height: 1.5;
	color: #444;
	flex-direction: column;
	text-align: center;
	width: 100%;
	max-width: 380px !important;
	margin-left: auto;
}

.xls-feature {
	width: 100% !important;
	max-width: 520px !important;
	margin: 0 !important;
}

.hero-slider-wrapper {
	height: 100% !important;
	border-radius: var(--hero-border-radius) !important;
	position: relative;
	border: none !important;
	box-shadow: none !important;
	box-sizing: border-box;
	overflow: hidden !important;
}

.hero-slider-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	height: 100%;
	background: #DB4E39;
	z-index: 15;
}

.hero-flex-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	width: 100%;
	padding: 0 30px;
	gap: clamp(20px, 4vw, 50px);
}

.hero-flex-container.image-left {
	flex-direction: row-reverse;
	justify-content: flex-start !important;
}

.hero-slider-wrapper .slider-img-2.image-left img {
	left: 0 !important;
	right: auto !important;
	float: left !important;
	width: 45% !important;
}

.hero-text-area {
	flex: 1;
	max-width: 500px;
	min-width: 0;
	color: white;
}

.product-showcase .hero-text-area {
	color: #111111;
	flex: 0 1 calc(50% - 28px) !important;
	max-width: calc(50% - 28px) !important;
}

.hero-video-area {
	flex: 0 0 320px;
}

.hero-video-area .video-container {
	width: 100%;
	margin-bottom: 8px;
}

.hero-text-area h1 {
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 800;
	margin-bottom: 8px;
	line-height: 1.25;
	color: #0f172a !important;
	text-shadow: none !important;
	padding-bottom: 6px;
	display: block;
	overflow-wrap: anywhere;
}

.hero-text-area h1.font-size-medium {
	font-size: clamp(24px, 2.8vw, 34px) !important;
}

.hero-text-area h1.font-size-small {
	font-size: clamp(20px, 2.2vw, 28px) !important;
}

.hero-text-area p {
	font-size: clamp(13px, 1.2vw, 16px);
	line-height: 1.5;
	margin-bottom: 20px !important;
	color: #444;
	opacity: 0.9;
	display: block;
	overflow: visible;
}

.xls-content p {
	font-size: 12px !important;
	margin-bottom: 0px !important;
}

.xls-feature {
	width: 100% !important;
	max-width: 520px !important;
	margin: 0 !important;
}

.hero-slider-wrapper .hero-background img {
	object-fit: cover !important;
	width: 100% !important;
	height: 100% !important;
}

.hero-slider-wrapper .slider-img-2 img {
	width: 50% !important;
	object-fit: contain !important;
	right: 0 !important;
}

.hero-slide.product-showcase {
	background: radial-gradient(circle at 30% 50%, #ffffff 0%, #f7f9fc 100%) !important;
	box-shadow: none !important;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.hero-slide.evobrain-showcase {
	background: radial-gradient(circle at 70% 50%, #ffffff 0%, #f0f4f8 100%) !important;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.evobrain-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-slide.evobrain-showcase .hero-overlay {
	background: transparent !important;
}

.hero-slide.evobrain-showcase .hero-text-area {
	padding-left: 20px;
}

.hero-slide.evobrain-showcase .hero-video-area {
	flex: 0 0 420px;
}

.hero-nav-dots.dark-dots .nav-dot {
	background: rgba(0, 0, 0, 0.2);
}

.hero-nav-dots.dark-dots .nav-dot.active {
	background: #db4e39;
	width: 25px !important;
	transform: scale(1.2);
	border-radius: 10px !important;
}

@media (max-width: 1200px) {
	.hero-section.premium-layout {
		grid-template-columns: 260px minmax(0, 1fr);
		gap: 15px;
	}

	:root {
		--hero-sidebar-width: 260px;
	}
}

@media (max-width: 1024px) {
	.premium-layout.hero-section {
		grid-template-columns: 1fr;
		height: auto;
		min-height: auto;
	}

	.hero-sidebar {
		display: none;
	}

	.hero-main-area {
		height: auto;
		min-height: 450px;
	}
}

@media (max-width: 768px) {
	.hero-section.premium-layout {
		padding: 0 10px;
	}

	.hero-main-area {
		height: auto;
		min-height: 670px;
	}

	.hero-flex-container {
		flex-direction: column;
		padding: 20px 15px 30px;
		text-align: center;
		justify-content: flex-start;
		align-items: stretch;
		gap: 15px;
		overflow: hidden;
	}

	.hero-text-area {
		max-width: 100% !important;
		min-width: 0 !important;
		box-sizing: border-box !important;
	}

	.hero-text-area h1 {
		-webkit-line-clamp: unset !important;
		line-clamp: unset !important;
		display: block !important;
		overflow: visible !important;
		font-size: 26px !important;
	}

	.hero-text-area p {
		-webkit-line-clamp: unset !important;
		line-clamp: unset !important;
		display: block !important;
		overflow: visible !important;
	}

	.hero-video-area {
		display: none;
	}

	.evobrain-showcase-v2 .hero-flex-container {
		flex-direction: column !important;
		align-items: stretch !important;
	}

	.evobrain-showcase-v2 .hero-text-area.v2-hero-copy {
		max-width: 100% !important;
		width: 100% !important;
		flex: none !important;
	}

	.evobrain-showcase-v2 .v2-app-visual-container,
	.evobrain-showcase-v2 .v2-hero-visual {
		max-width: 100% !important;
		width: 100% !important;
		flex: none !important;
	}

	.evobrain-showcase-v2 .v2-upload-band {
		max-width: 100% !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}

	.evobrain-showcase-v2 .v2-upload-text strong {
		white-space: normal !important;
		word-break: break-word !important;
		font-size: 9px !important;
		letter-spacing: 0 !important;
		line-height: 1.4 !important;
	}

	.evobrain-showcase-v2 .v2-media-card-premium,
	.v2-media-card-premium {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		transform: none !important;
	}

	.hero-slider-wrapper .slider-img-2 img {
		width: 100% !important;
		height: auto !important;
		max-height: 50% !important;
		object-fit: contain !important;
		position: absolute !important;
		top: auto !important;
		bottom: 45px !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		margin: 0 !important;
		opacity: 0.25 !important;
		pointer-events: none;
		z-index: 1;
	}
}

@media (min-width: 2560px) {

	.container,
	.premium-hero-container {
		max-width: 2400px !important;
	}

	.hero-text-area h1 {
		font-size: 64px !important;
	}

	.hero-text-area p {
		font-size: 24px !important;
	}

	:root {
		--hero-section-height: 550px;
	}
}

@media (min-width: 3840px) {

	.container,
	.premium-hero-container {
		max-width: 3600px !important;
	}

	.hero-text-area h1 {
		font-size: 82px !important;
	}

	.hero-text-area p {
		font-size: 32px !important;
	}

	:root {
		--hero-section-height: 700px;
	}
}

.evobrain-standalone-section {
	background-color: #ffffff;
	padding: 60px 0;
}

.evobrain-standalone-section .hero-flex-container {
	padding: 0 !important;
	gap: 60px;
}

.evobrain-standalone-section .hero-video-area {
	flex: 0 0 540px;
	margin-right: 0;
}

.evobrain-standalone-section .hero-text-area {
	flex: 1;
	max-width: 620px;
	text-align: left;
}

.dark-text h1 {
	color: #1E1F22 !important;
	text-shadow: none !important;
}

.dark-text p {
	color: #4b5563 !important;
	opacity: 1 !important;
}

.dark-feature-box {
	border: 2px dashed rgba(219, 78, 57, 0.5) !important;
	background: #fffaef !important;
	box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.01) !important;
	color: #333 !important;
	transition: all 0.3s ease;
}

.dark-feature-box:hover {
	background: #fff5f5 !important;
	border-color: #DB4E39 !important;
}

.dark-feature-box .xls-icon-box i,
.dark-feature-box .xls-feature-right i {
	color: #DB4E39 !important;
}

.dark-feature-box .xls-content p {
	color: #111 !important;
	font-weight: 700;
}

.video-label-top,
.video-label-bottom {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #DB4E39;
	padding-left: 5px;
}

.video-label-top {
	margin-bottom: 20px;
}

.video-label-bottom {
	margin-top: 20px;
}

.video-label-top i {
	font-size: 14px;
}

.premium-video-thumb {
	width: 100%;
	max-width: 540px;
	aspect-ratio: 16 / 9;
	border-radius: 1.5rem !important;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	background: #000;
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
	overflow: hidden;
}

.premium-video-thumb:hover {
	transform: scale(1.03) translateY(-5px);
	box-shadow: 0 30px 60px rgba(219, 78, 57, 0.15);
}

.premium-video-thumb .video-thumb {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.6s ease;
}

.premium-video-thumb:hover .video-thumb {
	transform: scale(1.1);
}

@media (max-width: 991px) {
	.default_padding_20 {
		padding: 40px 0px !important;
	}

	.evobrain-standalone-section {
		padding: 40px 20px;
	}

	.evobrain-standalone-section .hero-video-area {
		display: block !important;
		flex: 0 0 100%;
		margin-right: 0;
		margin-bottom: 30px;
		text-align: center;
	}

	.video-label-top {
		justify-content: center;
		padding-left: 0;
	}

	.premium-video-thumb {
		margin: 0 auto;
	}

	.evobrain-standalone-section .hero-text-area {
		text-align: center;
	}
}

.hero-section.default_padding_20 {
	/* background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f8fafc 100%) !important; */
	position: relative;
	background-color: #ffffff !important;
	z-index: 100;
	overflow: visible;
}

.featured-products-section {
	background-color: #ffffff !important;
	padding: 60px 0 !important;
}

.evo_material-main {
	background-color: #f7f8fa !important;
	padding: 60px 0 !important;
	margin-bottom: 30px;
	text-align: center;
}

.video-label-top {
	justify-content: center;
	padding-left: 0;
}

.premium-video-thumb {
	margin: 0 auto;
}

/* .hero-section.default_padding_20 {
	background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f8fafc 100%) !important;
	position: relative;
	z-index: 100;
} */

.hero-slide.evobrain-showcase {
	background:
		radial-gradient(circle at 16% 18%, rgba(219, 78, 57, 0.12) 0%, rgba(219, 78, 57, 0) 34%),
		radial-gradient(circle at 82% 84%, rgba(57, 168, 255, 0.12) 0%, rgba(57, 168, 255, 0) 28%),
		linear-gradient(112deg, #fff8f5 0%, #fffdfb 46%, #f4fbff 100%) !important;
}

.evobrain-bg {
	background:
		radial-gradient(circle at 22% 44%, rgba(255, 122, 69, 0.08), transparent 28%),
		radial-gradient(circle at 84% 88%, rgba(67, 217, 255, 0.12), transparent 24%);
}

.hero-slide.evobrain-showcase .hero-overlay {
	background:
		linear-gradient(90deg, rgba(255, 250, 247, 0.84) 0%, rgba(255, 253, 251, 0.58) 38%, rgba(244, 251, 255, 0.2) 100%) !important;
}

.hero-slide.evobrain-showcase .hero-content {
	align-items: stretch;
}

.evobrain-hero-layout {
	position: relative;
	min-height: 100%;
	padding: 26px 30px 28px 36px;
	gap: 30px;
	align-items: stretch;
}

.evobrain-hero-layout::before,
.evobrain-hero-layout::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.evobrain-hero-layout::before {
	background-image:
		radial-gradient(circle, rgba(74, 196, 255, 0.45) 0 1px, transparent 1.6px),
		linear-gradient(115deg, transparent calc(50% - 0.5px), rgba(74, 196, 255, 0.08) 50%, transparent calc(50% + 0.5px));
	background-size: 170px 170px, 170px 170px;
	background-position: 0 0, 0 0;
	opacity: 0.28;
}

.evobrain-hero-layout::after {
	background:
		linear-gradient(118deg, transparent 20%, rgba(219, 78, 57, 0.09) 49.5%, transparent 50.2%),
		linear-gradient(72deg, transparent 66%, rgba(74, 196, 255, 0.06) 66.3%, transparent 67%);
	opacity: 0.5;
}

.evobrain-hero-copy,
.evobrain-hero-visual {
	position: relative;
	z-index: 1;
}

.evobrain-hero-copy {
	flex: 0 1 45%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 6px;
}

.hero-slide.evobrain-showcase .hero-text-area.evobrain-hero-copy {
	max-width: 440px;
	padding-left: 0;
	color: #1f2937;
}

.evobrain-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 16px;
	border-radius: 999px;
	background: rgba(255, 122, 69, 0.08);
	border: 1px solid rgba(255, 122, 69, 0.2);
	color: #d65a2c;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: none;
	margin-bottom: 14px;
}

.evobrain-hero-eyebrow-dot {
	font-size: 13px;
	line-height: 1;
}

.evobrain-hero-title {
	font-size: clamp(34px, 4vw, 50px);
	line-height: 0.96 !important;
	letter-spacing: -1.8px !important;
	color: #18212f !important;
	margin-bottom: 14px !important;
	text-shadow: none !important;
}

.evobrain-hero-title span {
	color: #ff7a45;
}

.evobrain-hero-description {
	max-width: 420px;
	font-size: 13px;
	line-height: 1.55 !important;
	color: #5b6472 !important;
	margin-bottom: 18px !important;
}

.evobrain-upload-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px;
	border-radius: 18px;
	border: 1px dashed rgba(74, 196, 255, 0.22);
	background: rgba(255, 255, 255, 0.86) !important;
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
	margin-bottom: 18px;
	cursor: pointer;
}

.evobrain-upload-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.evobrain-upload-icon {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 107, 255, 0.08);
	border: 1px solid rgba(74, 196, 255, 0.14);
	color: #2b7fff;
	font-size: 21px;
	flex-shrink: 0;
}

.evobrain-upload-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.evobrain-upload-text strong,
.evobrain-upload-text span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.evobrain-upload-text strong {
	color: #18212f;
	font-size: 14px;
	font-weight: 700;
}

.evobrain-upload-text span {
	color: #7a8597;
	font-size: 11px;
}

.evobrain-upload-action {
	border: 0;
	border-radius: 999px;
	padding: 12px 18px;
	background: linear-gradient(135deg, #ff874f 0%, #ff6b35 100%);
	color: #1d130e;
	font-size: 13px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 18px 34px rgba(255, 107, 53, 0.2);
	flex-shrink: 0;
}

.evobrain-hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	padding-top: 12px;
	border-top: 1px solid rgba(24, 33, 47, 0.08);
}

.evobrain-hero-metric strong {
	display: block;
	font-size: 15px;
	font-weight: 800;
	color: #ff7a45;
	margin-bottom: 4px;
}

.evobrain-hero-metric span {
	display: block;
	font-size: 11px;
	color: #7a8597;
}

.evobrain-hero-visual {
	flex: 0 1 55%;
	min-width: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 6px 0;
}

.evobrain-app-window {
	width: min(100%, 430px);
	padding: 16px 16px 14px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(123, 140, 167, 0.18);
	box-shadow:
		0 26px 55px rgba(15, 23, 42, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.65);
	backdrop-filter: blur(18px);
}

.evobrain-app-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	color: #7a8597;
	font-size: 11px;
	font-weight: 600;
}

.evobrain-app-dots {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.evobrain-app-dots span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
}

.evobrain-app-dots span:nth-child(1) {
	background: #ff6b57;
}

.evobrain-app-dots span:nth-child(2) {
	background: #ff9f43;
}

.evobrain-app-dots span:nth-child(3) {
	background: #43d9ff;
}

.evobrain-app-url {
	flex: 1;
}

.evobrain-app-status {
	padding: 5px 8px;
	border-radius: 999px;
	background: rgba(255, 107, 53, 0.12);
	color: #ff7a45;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.evobrain-app-preview {
	position: relative;
	margin-bottom: 12px;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid rgba(123, 140, 167, 0.14);
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evobrain-app-preview::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(7, 12, 22, 0.22) 100%);
	transition: opacity 0.3s ease;
}

.evobrain-app-preview img {
	display: block;
	width: 100%;
	height: 182px;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.evobrain-app-preview:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.evobrain-app-preview:hover img {
	transform: scale(1.04);
}

.evobrain-app-preview:hover::after {
	opacity: 0.88;
}

.evobrain-app-play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%) scale(0.92);
	width: 56px;
	height: 56px;
	border: 0;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.92);
	color: #ff6b35;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
	opacity: 0.92;
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.evobrain-app-play i {
	font-size: 20px;
	margin-left: 2px;
}

.evobrain-app-preview:hover .evobrain-app-play {
	transform: translate(-50%, -50%) scale(1);
	background: #ff6b35;
	color: #ffffff;
	box-shadow: 0 16px 28px rgba(255, 107, 53, 0.28);
}

.evobrain-app-preview-badge {
	position: absolute;
	left: 10px;
	bottom: 10px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(123, 140, 167, 0.18);
	color: #f5f7fb;
	font-size: 11px;
	font-weight: 700;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.evobrain-app-preview-badge,
.evobrain-app-preview-badge i {
	color: #1f2937;
}

.evobrain-app-progress {
	margin-bottom: 10px;
}

.evobrain-app-progress-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
	color: #5b6472;
	font-size: 11px;
}

.evobrain-app-progress-head strong {
	color: #ff7a45;
	font-size: 11px;
	font-weight: 800;
}

.evobrain-app-progress-track {
	height: 5px;
	border-radius: 999px;
	background: rgba(24, 33, 47, 0.08);
	overflow: hidden;
}

.evobrain-app-progress-track span {
	display: block;
	width: 62%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #ff7a45 0%, #ff914d 100%);
}

.evobrain-app-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.evobrain-app-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 12px;
	color: #334155;
	background: #f8fafc;
}

.evobrain-app-item.active {
	background: rgba(255, 122, 69, 0.12);
}

.evobrain-app-item.muted {
	opacity: 0.66;
}

.evobrain-app-item-name {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	font-size: 11px;
}

.evobrain-app-item-name i {
	color: #ff7a45;
	font-size: 10px;
	flex-shrink: 0;
}

.evobrain-app-item-name span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.evobrain-app-item strong {
	font-size: 11px;
	color: #64748b;
	flex-shrink: 0;
}

@media (max-width: 991px) {
	.evobrain-hero-layout {
		padding: 24px 22px;
		gap: 22px;
	}

	.evobrain-hero-copy {
		text-align: left;
		padding-top: 0;
	}

	.evobrain-hero-title {
		font-size: clamp(30px, 5vw, 40px) !important;
	}

	.evobrain-hero-description {
		max-width: 100%;
	}

	.evobrain-upload-band {
		flex-direction: column;
		align-items: stretch;
	}

	.evobrain-upload-action {
		justify-content: center;
	}

	.evobrain-hero-metrics {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.evobrain-hero-visual {
		flex-basis: 50%;
		justify-content: center;
	}

	.evobrain-app-window {
		width: min(100%, 360px);
	}
}

@media (max-width: 767px) {

	.evobrain-hero-layout::before,
	.evobrain-hero-layout::after {
		opacity: 0.18;
	}

	.evobrain-hero-title {
		font-size: clamp(34px, 9vw, 48px) !important;
		letter-spacing: -1.4px !important;
	}

	.evobrain-hero-description {
		font-size: 14px !important;
	}

	.evobrain-hero-metrics {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.evobrain-app-window {
		padding: 16px 14px 14px;
		border-radius: 20px;
	}

	.evobrain-app-preview img {
		height: 180px;
	}

	.evobrain-app-play {
		width: 50px;
		height: 50px;
	}

	.evobrain-app-topbar {
		flex-wrap: wrap;
	}

	.evobrain-app-url {
		flex: 0 0 100%;
	}
}

.featured-products-section {
	background-color: #ffffff !important;
	padding: 60px 0 !important;
}

.evo_material-main {
	background-color: #f7f8fa !important;
	padding: 60px 0 !important;
}

@media (min-width: 769px) and (max-width: 1499px) {
	#evo_home .section-header {
		gap: 16px;
		align-items: flex-start;
	}

	#evo_home .section-header h2 {
		margin-bottom: 0;
		line-height: 1.2;
	}

	#evo_home .products-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 20px;
		align-items: stretch;
		justify-content: start;
	}

	#evo_home .product-card-link {
		width: 100%;
		max-width: 100%;
	}

	#evo_home .product-card {
		min-height: 390px;
		max-width: 185px;
	}

	#evo_home .product-image {
		width: calc(100% - 28px);
		height: 150px;
		margin: 14px auto 16px;
	}

	#evo_home .product-image img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	#evo_home .product-info {
		padding: 0 16px 18px;
	}

	#evo_home .product-category {
		height: auto;
		min-height: 2.6em;
		margin-bottom: 6px;
	}

	#evo_home .product-title {
		height: auto;
		min-height: 2.9em;
		margin-bottom: 8px;
	}

	#evo_home .product-price {
		flex-wrap: wrap;
		gap: 6px;
	}

	#evo_home .steps-container {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px;
		align-items: stretch;
	}

	#evo_home .step-item {
		width: auto;
		min-height: 100%;
		padding: 28px 22px;
	}

	#evo_home .step-content h3 {
		font-size: clamp(20px, 1.45vw, 24px);
		line-height: 1.2;
	}

	#evo_home .step-content p {
		font-size: 14px;
		line-height: 1.7;
	}
}

.hero-slide.evobrain-showcase {
	background:
		radial-gradient(circle at 12% 16%, rgba(255, 122, 69, 0.24) 0%, rgba(255, 122, 69, 0) 34%),
		radial-gradient(circle at 84% 88%, rgba(0, 196, 255, 0.18) 0%, rgba(0, 196, 255, 0) 28%),
		linear-gradient(92deg, #150f18 0%, #1f1219 30%, #0b1520 100%) !important;
}

.hero-slide.evobrain-showcase .hero-overlay {
	background:
		linear-gradient(90deg, rgba(16, 11, 17, 0.78) 0%, rgba(18, 11, 18, 0.5) 34%, rgba(8, 18, 25, 0.18) 100%) !important;
}

.hero-slide.evobrain-showcase .hero-content {
	align-items: center;
}

.hero-slide.evobrain-showcase .evobrain-hero-layout {
	min-height: 100%;
	padding: 16px 28px 18px 30px;
	gap: 24px;
	align-items: center;
}

.hero-slide.evobrain-showcase .evobrain-hero-layout::before {
	background-image:
		radial-gradient(circle, rgba(55, 200, 255, 0.62) 0 1.05px, transparent 1.7px),
		linear-gradient(121deg, transparent calc(50% - 0.5px), rgba(80, 197, 255, 0.11) 50%, transparent calc(50% + 0.5px));
	background-size: 170px 170px, 170px 170px;
	opacity: 0.34;
}

.hero-slide.evobrain-showcase .evobrain-hero-layout::after {
	background:
		linear-gradient(118deg, transparent 24%, rgba(255, 122, 69, 0.16) 49.5%, transparent 50.2%),
		linear-gradient(72deg, transparent 70%, rgba(55, 200, 255, 0.08) 70.2%, transparent 71%);
	opacity: 0.56;
}

.hero-slide.evobrain-showcase .evobrain-hero-copy {
	flex: 0 1 46%;
	max-width: 420px;
	padding-top: 0;
	justify-content: center;
}

.hero-slide.evobrain-showcase .hero-text-area.evobrain-hero-copy {
	color: #f4f7fb;
}

.hero-slide.evobrain-showcase .evobrain-hero-eyebrow {
	background: rgba(255, 122, 69, 0.12);
	border: 1px solid rgba(255, 122, 69, 0.28);
	color: #ff8c57;
	margin-bottom: 12px;
	padding: 6px 14px;
	font-size: 11px;
}

.hero-slide.evobrain-showcase .evobrain-hero-title {
	font-size: clamp(28px, 3.5vw, 42px);
	line-height: 0.96 !important;
	letter-spacing: -1.8px !important;
	color: #f5f7fb !important;
	margin-bottom: 12px !important;
}

.hero-slide.evobrain-showcase .evobrain-hero-title span {
	color: #ff7a45;
}

.hero-slide.evobrain-showcase .evobrain-hero-description {
	max-width: 420px;
	font-size: 12px !important;
	line-height: 1.5 !important;
	color: rgba(223, 232, 245, 0.78) !important;
	margin-bottom: 14px !important;
}

.hero-slide.evobrain-showcase .evobrain-upload-band {
	padding: 10px 14px;
	border-radius: 14px;
	margin-bottom: 10px;
}

.hero-slide.evobrain-showcase .evobrain-upload-icon {
	width: 34px;
	height: 34px;
	font-size: 18px;
}

.hero-slide.evobrain-showcase .evobrain-upload-text strong {
	font-size: 11px;
}

.hero-slide.evobrain-showcase .evobrain-upload-action {
	padding: 8px 14px;
	font-size: 11px;
}

.hero-slide.evobrain-showcase .evobrain-hero-metrics {
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-slide.evobrain-showcase .evobrain-hero-metric strong {
	font-size: 15px;
	color: #ff7a45;
}

.hero-slide.evobrain-showcase .evobrain-hero-metric span {
	font-size: 10px;
	color: rgba(192, 204, 223, 0.7);
}

.hero-slide.evobrain-showcase .evobrain-hero-visual {
	flex: 0 1 54%;
	padding: 0;
	align-items: center;
}

.hero-slide.evobrain-showcase .evobrain-app-window {
	width: min(100%, 390px);
	padding: 14px 14px 12px;
	border-radius: 22px;
	background: rgba(20, 26, 39, 0.92);
	border: 1px solid rgba(112, 132, 173, 0.14);
	box-shadow:
		0 24px 50px rgba(2, 8, 18, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-slide.evobrain-showcase .evobrain-app-topbar {
	margin-bottom: 10px;
	color: rgba(192, 204, 223, 0.74);
	font-size: 11px;
}

.hero-slide.evobrain-showcase .evobrain-app-url {
	color: rgba(194, 205, 226, 0.78);
}

.hero-slide.evobrain-showcase .evobrain-app-status {
	background: rgba(255, 107, 53, 0.12);
	color: #ff7a45;
}

.hero-slide.evobrain-showcase .evobrain-app-preview {
	margin-bottom: 12px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: none;
}

.hero-slide.evobrain-showcase .evobrain-app-preview::after {
	background: linear-gradient(180deg, rgba(7, 12, 22, 0.05) 0%, rgba(7, 12, 22, 0.44) 100%);
}

.hero-slide.evobrain-showcase .evobrain-app-preview img {
	height: 156px;
}

.hero-slide.evobrain-showcase .evobrain-app-play {
	width: 46px;
	height: 46px;
	background: rgba(255, 255, 255, 0.92);
	color: #ff7a45;
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.84);
}

.hero-slide.evobrain-showcase .evobrain-app-preview:hover .evobrain-app-play {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.hero-slide.evobrain-showcase .evobrain-app-preview-badge {
	left: 10px;
	bottom: 10px;
	padding: 7px 10px;
	background: rgba(8, 11, 20, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: none;
	font-size: 10px;
}

.hero-slide.evobrain-showcase .evobrain-app-preview-badge,
.hero-slide.evobrain-showcase .evobrain-app-preview-badge i {
	color: #f5f7fb;
}

.hero-slide.evobrain-showcase .evobrain-app-progress {
	margin-bottom: 10px;
}

.hero-slide.evobrain-showcase .evobrain-app-progress-head {
	color: rgba(192, 204, 223, 0.78);
	font-size: 11px;
}

.hero-slide.evobrain-showcase .evobrain-app-progress-head strong {
	font-size: 11px;
}

.hero-slide.evobrain-showcase .evobrain-app-progress-track {
	height: 5px;
	background: rgba(255, 255, 255, 0.08);
}

.hero-slide.evobrain-showcase .evobrain-app-list {
	gap: 6px;
}

.hero-slide.evobrain-showcase .evobrain-app-item {
	padding: 9px 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
	color: rgba(220, 230, 245, 0.92);
}

.hero-slide.evobrain-showcase .evobrain-app-item.active {
	background: rgba(255, 122, 69, 0.12);
}

.hero-slide.evobrain-showcase .evobrain-app-item-name {
	font-size: 11px;
	gap: 8px;
}

.hero-slide.evobrain-showcase .evobrain-app-item strong {
	font-size: 11px;
	color: rgba(192, 204, 223, 0.72);
}

@media (max-width: 1200px) {
	.hero-slide.evobrain-showcase .evobrain-hero-layout {
		padding: 16px 20px 18px 22px;
		gap: 18px;
	}

	.hero-slide.evobrain-showcase .evobrain-hero-title {
		font-size: clamp(30px, 3.4vw, 44px) !important;
	}

	.hero-slide.evobrain-showcase .evobrain-app-window {
		width: min(100%, 340px);
	}
}

@media (max-width: 991px) {
	.hero-slide.evobrain-showcase .evobrain-hero-layout {
		padding: 22px 20px;
		gap: 20px;
	}

	.hero-slide.evobrain-showcase .evobrain-hero-copy,
	.hero-slide.evobrain-showcase .evobrain-hero-visual {
		flex-basis: 50%;
	}

	.hero-slide.evobrain-showcase .evobrain-hero-title {
		font-size: clamp(30px, 4vw, 42px) !important;
	}

	.hero-slide.evobrain-showcase .evobrain-hero-description {
		font-size: 13px !important;
	}

	.hero-slide.evobrain-showcase .evobrain-upload-band {
		padding: 14px;
	}

	.hero-slide.evobrain-showcase .evobrain-app-window {
		width: min(100%, 340px);
		padding: 14px;
	}

	.hero-slide.evobrain-showcase .evobrain-app-preview img {
		height: 184px;
	}
}

.v2-media-card-premium {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 10px;
	box-shadow:
		0 25px 50px -12px rgba(0, 0, 0, 0.25),
		inset 0 0 0 1px rgba(255, 255, 255, 0.1);
	transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
	overflow: hidden;
}

.v2-media-card-premium:hover {
	transform: translateY(-8px) scale(1.01);
	background: rgba(255, 255, 255, 0.6);
	box-shadow:
		0 30px 70px -20px rgba(0, 0, 0, 0.15),
		0 0 20px rgba(219, 78, 57, 0.1);
}

.v2-media-inner {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
}

.v2-media-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.v2-media-card-premium:hover .v2-media-inner img {
	transform: scale(1.05);
}

.v2-media-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
	opacity: 0.8;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.v2-media-card-premium:hover .v2-media-overlay {
	opacity: 1;
	background: rgba(0, 0, 0, 0.3);
}

.v2-play-btn-studio {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.v2-play-btn-studio i {
	font-size: 24px;
	color: #db4e39;
	margin-left: 4px;
	transition: all 0.3s ease;
}

.v2-play-btn-studio::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 50%;
	background: linear-gradient(135deg, #db4e39, #ff7a45);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.v2-media-card-premium:hover .v2-play-btn-studio {
	transform: translate(-50%, -50%) scale(1.1);
	background: #db4e39;
	border-color: #db4e39;
	box-shadow: 0 0 30px rgba(219, 78, 57, 0.5);
}

.v2-media-card-premium:hover .v2-play-btn-studio i {
	color: #fff;
	transform: scale(1.1);
}

.v2-play-pulse {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(219, 78, 57, 0.4);
	z-index: -1;
	animation: studio-pulse 2s infinite;
}

@keyframes studio-pulse {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}

	100% {
		transform: scale(1.8);
		opacity: 0;
	}
}

.v2-media-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 150%;
	height: 150%;
	background: radial-gradient(circle, rgba(219, 78, 57, 0.15) 0%, transparent 70%);
	pointer-events: none;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.v2-media-card-premium:hover .v2-media-glow {
	opacity: 1;
}

@media (max-width: 991px) {
	.v2-media-card-premium {
		height: auto;
		margin-top: 20px;
	}
}

/* Hero Partners Layout Rules */
.hero-partners-layout {
	display: grid !important;
	grid-template-columns: 280px minmax(0, 1fr) !important;
	gap: 24px !important;
	align-items: center !important;
	margin-top: 20px !important;
	width: 100% !important;
	clear: both !important;
	z-index: 2 !important;
	position: relative !important;
}

@media (min-width: 1200px) {
	.hero-partners-layout {
		grid-template-columns: var(--hero-sidebar-width, 280px) minmax(0, 1fr) !important;
	}
}

.hero-partners-title-box {
	background: #ffffff !important;
	border-radius: 14px !important;
	padding: 12px 16px !important;
	/* border: 1px solid #e2e8f0 !important; */
	box-shadow: var(--hero-shadow) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	gap: 8px !important;
	height: 60px !important;
	min-height: 60px !important;
	width: 100% !important;
	box-sizing: border-box !important;
	text-decoration: none !important;
	position: relative !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
}

.partners-title-text {
	font-size: 0.85rem !important;
	font-weight: 700 !important;
	color: #1e293b !important;
	line-height: 1.3 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.3px !important;
	transition: color 0.2s ease !important;
}

.partners-title-icon {
	font-size: 14px !important;
	color: #64748b !important;
	opacity: 0.7 !important;
	transition: all 0.2s ease !important;
}

.hero-partners-title-box:hover {
	background: #f8fafc !important;
	border-color: #cbd5e1 !important;
}

.hero-partners-title-box:hover .partners-title-text {
	color: #DB4E39 !important;
}

.hero-partners-title-box:hover .partners-title-icon {
	color: #DB4E39 !important;
	opacity: 1 !important;
	transform: translateX(3px) !important;
}

.hero-partners-marquee-box {
	overflow: visible !important;
	min-width: 0 !important;
	width: 100% !important;
	height: 60px !important;
	display: flex !important;
	align-items: center !important;
	position: relative !important;
}

.partners-marquee-container {
	width: 100% !important;
	min-width: 0 !important;
	overflow-x: hidden !important;
	overflow-y: visible !important;
	padding-top: 36px !important;
	margin-top: -36px !important;
	display: block !important;
	position: relative !important;
	mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent) !important;
	-webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent) !important;
}

.marquee-track {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	white-space: nowrap !important;
	width: max-content !important;
	min-width: max-content !important;
	max-width: none !important;
	animation: partnerMarquee 25s linear infinite !important;
	gap: 16px !important;
	padding: 2px 0 !important;
}

.marquee-track:hover {
	animation-play-state: paused !important;
}

.logo-box {
	background-color: #ffffff !important;
	border: 1px solid #eef2f6 !important;
	border-radius: 10px !important;
	padding: 8px 16px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	height: 56px !important;
	width: 150px !important;
	min-width: 150px !important;
	max-width: 150px !important;
	flex: 0 0 auto !important;
	flex-shrink: 0 !important;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
	transform: none !important;
	box-shadow: none !important;
	cursor: pointer !important;
	position: relative !important;
}

.logo-box:hover {
	border-color: #94a3b8 !important;
	background-color: #ffffff !important;
	box-shadow: none !important;
	transform: none !important;
}

.logo-box img {
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain !important;
	height: 80% !important;
	width: 100% !important;
}

/* Custom Partner Tooltip */
.custom-partner-tooltip {
	position: absolute !important;
	bottom: calc(100% + 10px) !important;
	left: 50% !important;
	transform: translateX(-50%) translateY(4px) !important;
	background: #0f172a !important;
	color: #ffffff !important;
	padding: 5px 12px !important;
	border-radius: 6px !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	white-space: nowrap !important;
	pointer-events: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
	z-index: 1000 !important;
	letter-spacing: 0.3px !important;
}

.custom-partner-tooltip::after {
	content: '' !important;
	position: absolute !important;
	top: 100% !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	border-width: 5px 5px 0 5px !important;
	border-style: solid !important;
	border-color: #0f172a transparent transparent transparent !important;
}

.logo-box:hover .custom-partner-tooltip {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateX(-50%) translateY(0) !important;
}

@keyframes partnerMarquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 991px) {
	.hero-partners-layout {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
	}

	.hero-partners-title-box {
		height: auto !important;
		padding: 10px 14px !important;
	}
}
