/* Premium Hero Redesign Styles */
: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);
}

/* Fluid Typography for Responsive Scale */
.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;
	/* Increased for premium rhythm consistency */
}

.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: 100;
}

/* Sidebar Styling - Synchronized Height */
.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;
	/* Removed margins to sync height */
	position: relative;
	/* Anchor for absolute mega-menu */
	display: flex;
	flex-direction: column;
	height: 100%;
	/* Stretch accurately to grid row height */
	z-index: 20;
	/* Ensure it stays above the slider */
	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;
	/* Fix corners */
}

.hero-sidebar-list {
	list-style: none;
	padding: 10px 0;
	margin: 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	/* Space out items if list is short */
	overflow-y: auto;
}

/* Premium Custom Scrollbar for Sidebar */
.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;
	/* Let absolute megamenu relative to .hero-sidebar */
}

.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;
	/* Darker for white background */
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 600;
	transition: var(--hero-transition);
}

.hero-sidebar-link:hover {
	background-color: #fff8f8;
	/* Very light red tint */
	color: #DB4E39 !important;
	/* Brand red color */
	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 Footer: See All Categories Link (Simplified & Premium) */
.sidebar-all-categories {
	border-top: 1px solid #f8fafc;
	margin-top: auto;
	/* Pushes to the absolute bottom of the flex container */
	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;
	/* Sophisticated slate gray by default */
	padding: 12px 20px !important;
	/* Matching standard item padding */
	border: none !important;
	background: transparent !important;
}

.all-categories-link .category-name {
	font-size: 11px;
	/* Slightly smaller for secondary importance */
	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;
	/* Reveal brand color only on hover */
	background: #f8fafc !important;
	/* Subtle gray highlight */
}

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

/* Mega-Menu Styling - Integrated Hero Replacement */
.hero-megamenu {
	position: absolute;
	top: 0;
	left: calc(100% + 4px);
	/* Tighter gutter so panel is wider */
	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);
	/* Applied to all corners as requested */
	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;
}

/* Consolidated Mega Menu Content Area */
.megamenu-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden; /* Prevent parent from scrolling, children will scroll */
	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;
}

/* Scrollable area for category columns */
.megamenu-columns {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 12px; /* More space for the scrollbar to prevent clipping */
}

/* Premium Custom Scrollbar for Mega Menu */
.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));
	/* Slightly wider panel */
	transform: translateX(0);
}

/* Removed duplicate megamenu-columns and scrollbar styles - consolidated above */

.megamenu-masonry {
	column-count: 3;
	/* Reverted to 3 columns for better readability in the synchronized width */
	column-gap: 40px;
	height: max-content;
}

.megamenu-column {
	display: inline-block;
	/* Essential to enforce break-inside carefully across browsers */
	break-inside: avoid;
	/* Keep title and its items tightly grouped together */
	page-break-inside: avoid;
	width: 100%;
	margin-bottom: 20px;
	/* Breathing room between independent categories */
	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;
	/* Acts like inline-block for border width but immune to inline flex/column bugs */
	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;
	/* Use neutral dark gray by default as requested */
	text-decoration: none;
	font-size: 13.5px;
	transition: color 0.2s ease, transform 0.2s ease;
	display: flex;
	/* Use flex to align icon and text */
	align-items: flex-start;
	line-height: 1.4;
}

.megamenu-list a::before {
	content: "›";
	/* CSS based chevron, simple and fast */
	margin-right: 7px;
	font-size: 18px;
	line-height: 1;
	font-weight: bold;
	color: #a0aec0;
	/* Match text color for unified default state */
	transition: color 0.2s ease;
}

.megamenu-list a:hover {
	color: #DB4E39;
	/* Highlight color on hover */
	transform: translateX(4px);
	/* Slightly stronger indent on hover */
}

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

.megamenu-footer {
	flex: 0 0 auto;
	/* Adjusted to take only needed height instead of fixed 115px */
	margin-top: auto;
	padding-top: 12px;
	padding-bottom: 5px;
	border-top: 1px solid #f1f5f9;
	/* Refined top border */
	background: #ffffff;
	/* Unified white background */
	border-radius: 0 0 var(--hero-border-radius) 0;
	/* Ensures bottom-right rounding matches parent */
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
}

.megamenu-image {
	flex: 0 0 auto;
	/* Reliable width for the image container */
	max-width: 250px;
	height: 65px;
	/* Reduced fixed height */
	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;
	/* Unified horizontal set */
	align-items: center;
	/* Baseline alignment for text and cards */
	gap: 12px;
	/* Professional spacing between label and brands */
	flex-grow: 1;
	justify-content: flex-end;
	/* Keep aligned to the right edge */
	/* overflow: hidden; Removed to prevent image clipping during hover transitions */
	overflow: visible;
}

.megamenu-suppliers span {
	font-size: 11px;
	font-weight: 800;
	/* Bolder for premium contrast */
	color: #a0aec0;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	/* Slightly more tracked for clean aesthetic */
	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;
	/* Chrome/Safari */
}

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

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

.supplier-logo-link:hover img {
	border-color: #DB4E39;
	/* Brand primary color on hover */
}

/* Main Hero Area Styling */
.hero-main-area {
	grid-column: span 1;
	/* Use the right column of the 2-col grid */
	overflow: visible;
	/* Allows shadow to show */
	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; /* Prevent dots from wrapping to next line */
    z-index: 50 !important; /* Ensure dots stay above slide content */
}

.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;
    margin: 0 15px;
}

/* Increase hit area for easier clicking */
.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);
}

/* Stabilized Control Dock - Mini Version */
.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;
}

/* Slider Layout Fixes for Column Context */
.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;
}

/* Red accent border as a pseudo-element for perfect corner synchronization */
.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;
	color: white;
}

.product-showcase .hero-text-area {
	color: #111111;
	/* Deep slate for maximum readability in studio theme */
}

.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, 3.5vw, 42px);
	font-weight: 800;
	margin-bottom: 8px;
	line-height: 1.25;
	color: #0f172a !important;
	text-shadow: none !important;
    padding-bottom: 6px;
    display: block; /* Removed line clamp to show full title */
}

.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;
}

/* Ensure background images fit the column */
.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;
	/* Studio Lighting effect */
	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;
	/* Slightly different tint for contrast */
	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;
        /* margin-bottom: 10px; */
	}

	.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: column layout on mobile */
    .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: 200px !important;
        transform: none !important;
    }

    /* Center mobile hero images */
    .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: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        opacity: 0.25 !important; /* Subtle centered background accent */
        pointer-events: none;
        z-index: 1;
    }
}

/* 4K and 2K Screen Optimization */
@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;
    }
}

/* Standalone BOM Upload Section */
.evobrain-standalone-section {
	background-color: #ffffff;
	/* Explicitly White */
	padding: 60px 0;
}

/* Refactored standalone area without the box card */
.evobrain-standalone-section .hero-flex-container {
	padding: 0 !important;
	/* Remove internal padding to align with container edges */
	gap: 60px;
	/* Strong professional gap for clarity */
}

.evobrain-standalone-section .hero-video-area {
	flex: 0 0 540px;
	/* Increased width for better impact */
	margin-right: 0;
}

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

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

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

/* Redesign dashed box for light background */
.dark-feature-box {
	border: 2px dashed rgba(219, 78, 57, 0.5) !important;
	/* Brand color dashed line instead of white */
	background: #fffaef !important;
	/* very light brand tint */
	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;
	/* Increased impactful size to match container */
	aspect-ratio: 16 / 9;
	border-radius: 1.5rem !important;
	/* Matches site-wide curvature */
	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);
	/* Subtle brand color glow */
}

.premium-video-thumb .video-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	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;
		/* Slightly reduced for mobile but consistent */
	}

	.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;
		/* Centers the label and video on mobile */
	}

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

	.premium-video-thumb {
		margin: 0 auto;
		/* Centers the thumbnail */
	}

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

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

/* Zebra Striping for Homepage Sections */
.featured-products-section {
	background-color: #f9fafb !important;
	padding: 60px 0 !important;
}

.evo_material-main {
	background-color: #ffffff !important;
	padding: 60px 0 !important;
	margin-bottom: 30px;
	text-align: center;
	/* Centers the label and video on mobile */
}

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

.premium-video-thumb {
	margin: 0 auto;
	/* Centers the thumbnail */
}

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


/* Hero Section Wrapper Background */
.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%;
	}
}

/* Zebra Striping for Homepage Sections */
.featured-products-section {
	background-color: #f9fafb !important;
	padding: 60px 0 !important;
}

.evo_material-main {
	background-color: #ffffff !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(auto-fill, minmax(185px, 185px));
		gap: 20px;
		align-items: stretch;
		justify-content: start;
	}

	#evo_home .product-card-link {
		width: 185px;
		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;
	}
}

/* Final reference-aligned Evobrain hero override */
.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;
	}
}

/* --- PREMIUM VIDEO HERO UI --- */
.v2-media-card-premium {
    position: relative;
    width: 100%;
    height: 310px;
    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);
}

/* Premium Play Button */
.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; /* Optical centering */
    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);
}

/* Pulse Animation for Play Button */
.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; }
}

/* Glass Accent Glow */
.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: 280px;
        margin-top: 20px;
    }
}
