:root {
	--primary: #7c3aed;
	--primary-light: #a78bfa;
	--primary-dark: #5b21b6;
	--accent: #10b981;
	--accent-light: #34d399;
	--blue: #3b82f6;
	--green: #10b981;
	--orange: #f97316;
	--pink: #f472b6;
	--bg: #ffffff;
	--bg-soft: #f9fafb;
	--bg-deep: #0f172a;
	--bg-card: #ffffff;
	--text: #0f172a;
	--text-body: #475569;
	--text-muted: #94a3b8;
	--border: rgba(124, 58, 237, 0.1);
	--border-glass: rgba(255, 255, 255, 0.2);
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow:
		0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-lg:
		0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-hover: 0 12px 40px rgba(108, 58, 237, 0.15);
	--shadow-float: 0 25px 50px -12px rgba(124, 58, 237, 0.25);
	--radius: 12px;
	--max-width: 1200px;
	--gradient-1: linear-gradient(135deg, #6c3aed, #ec4899);
	--gradient-2: linear-gradient(135deg, #3b82f6, #06b6d4);
	--gradient-3: linear-gradient(135deg, #f97316, #ef4444);
	--gradient-4: linear-gradient(135deg, #10b981, #059669);
	--gradient-mesh:
		radial-gradient(at 0% 0%, rgba(124, 58, 237, 0.05) 0, transparent 50%),
		radial-gradient(at 50% 0%, rgba(16, 185, 129, 0.05) 0, transparent 50%),
		radial-gradient(
			at 100% 0%,
			rgba(244, 114, 182, 0.05) 0,
			transparent 50%
		);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
	overflow-x: hidden;
	width: 100%;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
	background-image: var(--gradient-mesh);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ======= NAVBAR ======= */
.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid var(--border);
}

.navbar .logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.navbar .logo img {
	height: 45px;
}

.navbar .logo span {
	font-size: 13px;
	color: var(--primary);
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.navbar nav a {
	color: var(--text-body);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	margin-left: 32px;
	transition: color 0.3s;
}

.navbar nav a:hover {
	color: var(--primary);
}

/* ======= HERO ======= */
.hero {
	position: relative;
	padding: 80px 0 100px;
	background: transparent;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* Floating background elements - Optimized */
.hero::before,
.hero::after {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: var(--primary);
	filter: blur(80px);
	opacity: 0.05;
	z-index: -1;
	pointer-events: none;
	will-change: transform;
}

.hero::before {
	top: -200px;
	left: -200px;
}

.hero::after {
	bottom: -200px;
	right: -200px;
	background: var(--pink);
}

@keyframes floatBackground {
	from {
		transform: translate(0, 0) scale(1);
	}

	to {
		transform: translate(100px, 50px) scale(1.2);
	}
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	perspective: 2000px;
}

.hero-content {
	z-index: 10;
	animation: heroTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroTextReveal {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

.hero h1 {
	font-family: 'Outfit', sans-serif;
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.05;
	margin-bottom: 24px;
	color: var(--text);
	letter-spacing: -0.02em;
}

.hero h1 em {
	font-style: normal;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero p {
	font-size: 1.1rem;
	color: var(--text-body);
	margin-bottom: 48px;
	line-height: 1.7;
	max-width: 520px;
	opacity: 0.9;
}

.hero .cta-row {
	display: flex;
	gap: 16px;
	justify-content: flex-start;
	flex-wrap: wrap;
}

/* Hero Carousel UI */
.hero-showcase {
	position: relative;
	z-index: 5;
	perspective: 2000px;
}

.hero-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 32px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.08); /* Increased opacity for depth without blur */
	border: 1px solid var(--border-glass);
	box-shadow: var(--shadow-float);
	transform: rotateY(0deg) rotateX(0deg);
	transform-style: preserve-3d;
	will-change: transform;
	transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-carousel:hover {
	transition: transform 0.1s ease-out;
}

.hero-carousel-item {
	display: none;
	animation: heroItemFade 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	transform-style: preserve-3d;
}

.hero-carousel-item.active {
	display: block;
}

@keyframes heroItemFade {
	from {
		opacity: 0;
		transform: translateZ(-50px) scale(0.95);
	}

	to {
		opacity: 1;
		transform: translateZ(0) scale(1);
	}
}

.hero-card-header {
	padding: 14px 20px;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--text-muted);
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #f1f5f9;
}

.hero-card-body {
	position: relative;
	aspect-ratio: 16 / 11;
	border-radius: 24px;
	overflow: hidden;
	background: #000;
	box-shadow: inset 0 0 40px rgba(124, 58, 237, 0.2);
	will-change: transform;
}

.hero-card-body video,
.hero-card-body img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.hero-carousel-item:hover .hero-card-body video {
	transform: scale(1.05);
}

.hero-card-label {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	padding: 10px 20px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateZ(20px);
	will-change: transform;
}

.hero-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 15px;
	margin-bottom: 5px;
}

.h-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #e2e8f0;
	transition: all 0.3s;
	cursor: pointer;
}

.h-dot.active {
	background: var(--primary);
	width: 20px;
	border-radius: 10px;
}

.btn-primary {
	background: var(--gradient-1);
	color: #fff;
	padding: 18px 40px;
	border-radius: 16px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border: none;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
	display: flex;
	align-items: center;
	gap: 10px;
}

.btn-primary:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 12px 32px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.8);
	color: var(--text);
	padding: 18px 40px;
	border-radius: 16px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid var(--border);
	backdrop-filter: blur(8px);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
	background: #fff;
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

/* ======= PRODUCT CARDS ======= */
.products {
	padding: 60px 0 80px;
	content-visibility: auto;
	contain-intrinsic-size: 800px;
}

.product-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	padding: 50px;
	margin-bottom: 50px;
	background: var(--bg-card);
	border: 2px dashed var(--border);
	border-radius: 24px;
	position: relative;
	overflow: hidden;
	transition:
		border-color 0.4s,
		box-shadow 0.4s;
}

.product-card:hover {
	border-style: solid;
	box-shadow: var(--shadow-hover);
}

.product-card.reverse {
	direction: rtl;
}

.product-card.reverse > * {
	direction: ltr;
}

.product-card .number {
	position: absolute;
	top: 25px;
	right: 35px;
	font-size: 110px;
	font-weight: 900;
	line-height: 1;
	color: rgba(108, 58, 237, 0.04);
}

.product-info .product-icon {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #fff;
	margin-bottom: 18px;
}

.product-info h2 {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 14px;
	color: var(--text);
}

.product-info .tagline {
	font-size: 15px;
	color: var(--text-body);
	margin-bottom: 22px;
	line-height: 1.7;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin-bottom: 28px;
}

.feature-list li {
	padding: 7px 0;
	font-size: 14px;
	color: var(--text-body);
	display: flex;
	align-items: center;
	gap: 10px;
}

.feature-list li .check {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	color: #fff;
	flex-shrink: 0;
}

.product-cta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.product-cta .btn-sm {
	padding: 11px 22px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
	cursor: pointer;
}

.product-cta .btn-fill {
	color: #fff;
	border: none;
}

.product-cta .btn-fill:hover {
	transform: translateY(-1px);
}

.product-cta .btn-outline {
	background: transparent;
	color: var(--text-body);
	border: 1.5px solid var(--border);
}

.product-cta .btn-outline:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.product-visual {
	position: relative;
}

.product-visual .mockup-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.product-visual .mockup-grid img,
.product-visual .mockup-grid video {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	aspect-ratio: 1;
	border: 1px solid var(--border);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.product-visual .mockup-grid img:hover,
.product-visual .mockup-grid video:hover {
	transform: scale(1.04);
	box-shadow: var(--shadow);
}

/* Per-card colors */
.card-1:hover {
	border-color: rgba(16, 185, 129, 0.3);
}

.card-1 .product-icon,
.card-1 .check,
.card-1 .btn-fill {
	background: var(--gradient-4);
}

.card-2:hover {
	border-color: rgba(108, 58, 237, 0.3);
}

.card-2 .product-icon,
.card-2 .check,
.card-2 .btn-fill {
	background: var(--gradient-1);
}

.card-2 .number {
	color: rgba(59, 130, 246, 0.04);
}

.card-3:hover {
	border-color: rgba(59, 130, 246, 0.3);
}

.card-3 .product-icon,
.card-3 .check,
.card-3 .btn-fill {
	background: var(--gradient-2);
}

.card-3 .number {
	color: rgba(249, 115, 22, 0.04);
}

.card-4:hover {
	border-color: rgba(249, 115, 22, 0.3);
}

.card-4 .product-icon,
.card-4 .check,
.card-4 .btn-fill {
	background: var(--gradient-3);
}

.card-4 .number {
	color: rgba(16, 185, 129, 0.04);
}

/* ======= CTA BANNER ======= */
.cta-section {
	text-align: center;
	padding: 70px 40px;
	background: var(--gradient-1);
	border-radius: 24px;
	margin-bottom: 60px;
	color: #fff;
}

.cta-section h2 {
	font-size: 38px;
	font-weight: 800;
	margin-bottom: 14px;
}

.cta-section p {
	font-size: 17px;
	opacity: 0.9;
	margin-bottom: 30px;
}

.cta-section .btn-white {
	background: #fff;
	color: var(--primary);
	padding: 15px 38px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ======= ANIMATED WORDS ======= */
.animated-words {
	display: inline-grid;
	vertical-align: bottom;
	margin-left: 10px;
}

.animated-words span {
	grid-area: 1 / 1;
	opacity: 0;
	animation: spinWords 8s infinite;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: left;
}

.animated-words span:nth-child(1) {
	animation-delay: 0s;
	background-image: var(--gradient-4);
}

.animated-words span:nth-child(2) {
	animation-delay: 2s;
	background-image: var(--gradient-2);
}

.animated-words span:nth-child(3) {
	animation-delay: 4s;
	background-image: var(--gradient-1);
}

.animated-words span:nth-child(4) {
	animation-delay: 6s;
	background-image: var(--gradient-3);
}

@keyframes spinWords {
	0% {
		opacity: 0;
		transform: translateY(10px) rotateX(-20deg);
	}

	5%,
	20% {
		opacity: 1;
		transform: translateY(0) rotateX(0deg);
	}

	25%,
	100% {
		opacity: 0;
		transform: translateY(-10px) rotateX(20deg);
	}
}

/* ======= FOOTER ======= */
.footer {
	border-top: 1px solid var(--border);
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.footer p {
	color: var(--text-muted);
	font-size: 13px;
}

.footer a {
	color: var(--primary);
	text-decoration: none;
}

.footer .footer-links {
	display: flex;
	gap: 24px;
}

.footer .footer-links a {
	color: var(--text-muted);
	font-size: 13px;
	transition: color 0.3s;
}

.footer .footer-links a:hover {
	color: var(--primary);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 34px;
	}

	.hero p {
		font-size: 16px;
	}

	.product-card {
		grid-template-columns: 1fr;
		padding: 28px;
		gap: 28px;
	}

	.product-card.reverse {
		direction: ltr;
	}

	.product-card .number {
		font-size: 70px;
		top: 12px;
		right: 16px;
	}

	.product-info h2 {
		font-size: 26px;
	}

	.navbar {
		flex-direction: column;
		gap: 14px;
	}

	.navbar nav a {
		margin-left: 16px;
	}

	.cta-section {
		padding: 45px 20px;
	}

	.cta-section h2 {
		font-size: 26px;
	}

	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.hero .cta-row {
		justify-content: center;
	}

	.hero h1 {
		font-size: 38px;
	}

	.hero p {
		margin: 0 auto 40px;
	}
}

/* ======= SHOWCASE SECTION ======= */
.showcase-section {
	padding: 100px 0;
	background: #fdfdff;
	content-visibility: auto;
	contain-intrinsic-size: 600px;
}

.showcase-wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.showcase-sidebar {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	padding: 10px 20px;
	background: var(--bg-soft);
	border-radius: 100px;
	width: fit-content;
	max-width: calc(100% - 40px);
	margin: 0 auto 40px;
	border: 1.5px solid var(--border);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	justify-content: flex-start;
}

.showcase-sidebar::-webkit-scrollbar {
	display: none;
}

.showcase-tab {
	background: transparent;
	border: none;
	border-radius: 100px;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-body);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.showcase-tab span {
	font-family: 'Outfit', sans-serif;
	font-size: 10px;
	opacity: 0.5;
	background: rgba(0, 0, 0, 0.05);
	padding: 2px 8px;
	border-radius: 6px;
	transition: all 0.3s;
}

.showcase-tab:hover {
	color: var(--primary);
	transform: translateY(-2px);
}

.showcase-tab.active {
	background: #fff;
	color: var(--primary);
	box-shadow: var(--shadow);
	transform: scale(1.05);
}

.showcase-tab.active span {
	background: var(--primary);
	color: #fff;
	opacity: 1;
}

.showcase-content {
	background: #fff;
	border-radius: 40px;
	padding: 50px;
	box-shadow: var(--shadow-float);
	border: 1px solid var(--border);
	position: relative;
	background-image: radial-gradient(
		at 0% 0%,
		rgba(124, 58, 237, 0.02) 0,
		transparent 50%
	);
}

.showcase-item {
	display: none;
	animation: showcaseReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-item.active {
	display: block;
}

@keyframes showcaseReveal {
	from {
		opacity: 0;
		transform: scale(0.98) translateY(10px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.showcase-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.showcase-side {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	background: var(--bg-soft);
	aspect-ratio: 16 / 10;
	box-shadow: var(--shadow);
	border: 2px solid var(--bg-soft);
	transition: all 0.4s ease;
}

.showcase-side.input-side {
	background: #f8fafc;
}

.showcase-side .prompt-text {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-body);
	padding: 40px;
	line-height: 1.5;
	letter-spacing: 1px;
	word-break: break-word;
	text-align: justify;
	margin-top: 23px;
}

.side-header {
	position: absolute;
	top: 24px;
	left: 24px;
	z-index: 5;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 100px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.out-header {
	background: var(--gradient-1);
	color: #fff;
	border: none;
}

.side-body {
	width: 100%;
	height: 100%;
}

.side-body img,
.side-body video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-side:hover .side-body img,
.showcase-side:hover .side-body video {
	transform: scale(1.08);
}

/* Inner Carousel for multi-input items */
.inner-carousel {
	position: relative;
	width: 100%;
	height: 100%;
}

.inner-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.inner-slide.active {
	opacity: 1;
	visibility: visible;
}

.inner-dots {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	display: flex;
	z-index: 10;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.inner-dot {
	flex: 1;
	height: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 0.3s ease;
}

/* The visual indicator dot */
.inner-dot::after {
	content: '';
	width: 6px;
	height: 6px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.inner-dot.active::after {
	background: #fff;
	transform: scale(1.5);
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.inner-dot:hover::after {
	background: rgba(255, 255, 255, 0.8);
}

.inner-badge {
	position: absolute;
	bottom: 24px;
	right: 24px;
	background: var(--gradient-1);
	color: #fff;
	padding: 4px 12px;
	border-radius: 100px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.showcase-divider {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	color: var(--primary);
	border: 4px solid #f8fafc;
}

.showcase-main-ui {
	position: relative;
	display: flex;
	align-items: center;
}

@media (max-width: 900px) {
	.showcase-section {
		padding: 60px 0;
	}

	.showcase-split {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.showcase-divider {
		top: 50%;
		transform: translate(-50%, -50%) rotate(90deg);
	}

	.showcase-content {
		padding: 24px;
		border-radius: 30px;
	}
}

/* ======= SHOWCASE SECTIONS ======= */
.avatar-section {
	padding: 80px 0;
	content-visibility: auto;
	contain-intrinsic-size: 500px;
}

.interaction-section {
	padding: 80px 0;
	content-visibility: auto;
	contain-intrinsic-size: 600px;
}

.feature-grid,
.interaction-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 40px;
}

.feature-card,
.interaction-card {
	background: #fff;
	border-radius: 24px;
	padding: 40px;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}

.interaction-card {
	padding: 0;
}

.interaction-content {
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.step-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f8f7ff;
	color: var(--primary);
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.feature-img-box {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 30px 0;
}

.img-wrapper {
	flex: 1;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid var(--border);
	aspect-ratio: 1 / 1;
	background: #f8f9fa;
}

.img-wrapper img,
.img-wrapper video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.arrow-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--gradient-1);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
	z-index: 2;
}

.img-label {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 4px 10px;
	border-radius: 6px;
	font-size: 10px;
	z-index: 3;
}

.prompt-box {
	background: #f1f5f9;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0;
}

.prompt-text {
	font-size: 13px;
	color: var(--text-body);
	line-height: 1.6;
	font-weight: 500;
	font-style: italic;
	padding: 15px;
}

.prompt-text i {
	opacity: 0.3;
	margin-right: 8px;
	color: var(--primary);
}

.prompt-footer {
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	margin-top: auto;
	padding: 10px 15px;
	font-size: 10px;
	text-transform: uppercase;
	color: var(--text-muted);
	font-weight: 600;
	letter-spacing: 1px;
}

.interaction-visual-box {
	position: relative;
	background: #000;
	overflow: hidden;
}

.interaction-video {
	width: 100%;
	height: 100%;
	display: block;
	filter: brightness(0.9);
	object-fit: cover;
}

.interaction-overlay {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: rgba(0, 0, 0, 0.7);
	padding: 12px;
	border-radius: 12px;
	color: #fff;
	font-size: 13px;
}

.interaction-overlay span {
	color: var(--accent);
	margin-right: 8px;
}

.interaction-ui {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
}

.ui-box {
	border: 1.5px dashed var(--border);
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	position: relative;
}

.ui-box h5 {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 10px;
}

.interaction-input-img {
	width: 70%;
	border-radius: 8px;
	opacity: 0.7;
	margin-inline: auto;
}

.submitted-asset-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--text);
	color: #fff;
	padding: 8px 15px;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 700;
}

.interaction-modes {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 20px;
}

.mode-btn {
	padding: 6px 14px;
	border-radius: 50px;
	border: 1px solid var(--border);
	font-size: 12px;
	color: var(--text-body);
	background: #fff;
}

.mode-btn-active {
	border-color: var(--primary);
	color: var(--primary);
	font-weight: 600;
}

.interaction-header-visual {
	width: 100%;
	background: rgba(97, 155, 252, 0.9);
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
}

.interaction-header-visual h4 {
	font-size: 14px;
	margin: 0;
}

.studio-output-label {
	font-size: 11px;
	opacity: 0.8;
	font-weight: 600;
}

/* ======= CONTACT MODAL ======= */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	padding: 20px;
	overflow-y: auto;
}

.modal-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.contact-container {
	max-width: 600px;
	width: 100%;
	margin: auto;
	background: #fff;
	padding: 40px;
	border-radius: 20px;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-hover);
	position: relative;
	transform: translateY(10px);
	transition: transform 0.3s ease;
	max-height: calc(100vh - 40px);
	display: flex;
	flex-direction: column;
}

.modal-overlay.active .contact-container {
	transform: translateY(0);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f8fafc;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	transition: all 0.2s;
	z-index: 10;
}

.modal-close:hover {
	background: #fee2e2;
	color: #ef4444;
}

.contact-header {
	text-align: left;
	margin-bottom: 25px;
}

.contact-header h2 {
	font-size: 28px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 8px;
}

.contact-header p {
	color: var(--text-muted);
	font-size: 14px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group label {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-body);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px;
	border-radius: 8px;
	border: 1px solid var(--border);
	font-family: inherit;
	font-size: 14px;
	color: var(--text);
	background: #fff;
	width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(108, 58, 237, 0.15);
}

.form-group textarea {
	min-height: 80px;
	resize: vertical;
}

.submit-btn {
	background: var(--primary);
	color: #fff;
	padding: 14px;
	border-radius: 12px;
	border: none;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s;
	margin-top: 10px;
}

.submit-btn:hover {
	background: var(--primary-light);
}

@media (max-width: 992px) {
	.feature-grid,
	.interaction-card {
		grid-template-columns: 1fr;
	}

	.interaction-content {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.avatar-section {
		padding: 60px 0;
	}

	.feature-card {
		padding: 30px 20px;
	}

	.feature-img-box {
		flex-direction: column;
		gap: 20px;
	}

	.arrow-icon i {
		transform: rotate(90deg);
	}

	.img-wrapper {
		width: 100%;
		max-width: 320px;
		margin-inline: auto;
	}

	.interaction-section {
		padding: 60px 0;
	}

	.interaction-content {
		padding: 30px 20px;
	}

	.interaction-ui {
		align-items: center;
	}

	.ui-box {
		width: 100%;
		max-width: 320px;
	}

	.contact-container {
		padding: 30px 20px;
		border-radius: 0;
		max-height: 100%;
		height: 100%;
		margin: 0;
		max-width: 100%;
	}

	.modal-overlay {
		align-items: flex-start;
		padding: 0;
	}

	.modal-close {
		top: 15px;
		right: 15px;
		background: #fff;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}
}

@media (max-width: 480px) {
	.interaction-modes {
		flex-wrap: wrap;
		justify-content: center;
	}

	.ui-box {
		padding: 10px;
	}

	.mode-btn {
		font-size: 0.6rem;
	}

	.mode-btn-active {
		font-size: 0.6rem;
	}

	.interaction-visual-box {
		min-height: 250px;
	}

	.interaction-header-visual h4 {
		font-size: 0.6rem;
	}

	.interaction-header-visual .studio-output-label {
		font-size: 0.6rem;
	}

	.interaction-overlay {
		padding: 8px;
		font-size: 0.6rem;
	}
}

/* ======= MISSING CSS FOR AVATAR & INTERACTION ======= */
.txt-center {
	text-align: center;
}

.gradient-text {
	display: inline-block;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	color: transparent !important;
}

.suite-label {
	font-size: 14px;
	color: var(--text-body);
	font-weight: 500;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
	display: block;
	text-align: center;
}

.suite-heading {
	font-size: 46px;
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 16px;
	color: var(--text);
}

.suite-heading.txt-center {
	text-align: center;
}

.suite-heading .gradient-text {
	background: var(--gradient-1);
}
