/* ===== VARIABLES WITH FIBONACCI SPACING ===== */
/* Updated: 2025-07-09 15:05 */
:root {
	--primary: #e5e7eb;
	--primary-dark: #d1d5db;
	--primary-light: #f3f4f6;
	--secondary: #9ca3af;
	--accent: #ffffff;
	--dark: #000000;
	--dark-lighter: #111111;
	--gray: #64748b;
	--gray-light: #94a3b8;
	--white: #ffffff;
	--gradient-1: linear-gradient(135deg, #374151 0%, #111827 100%);
	--gradient-2: linear-gradient(135deg, #374151 0%, #111827 100%);
	--gradient-3: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	--gradient-text: linear-gradient(
		135deg,
		#e5e7eb 0%,
		#9ca3af 50%,
		#ffffff 100%
	);
	
	/* Fibonacci-based spacing system */
	--space-1: 8px;    /* fibonacci */
	--space-2: 13px;   /* fibonacci */
	--space-3: 21px;   /* fibonacci */
	--space-4: 34px;   /* fibonacci */
	--space-5: 55px;   /* fibonacci */
	--space-6: 89px;   /* fibonacci */
	--space-7: 144px;  /* fibonacci */
	
	/* Golden ratio shadows - more organic */
	--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 5px 8px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 13px 21px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 34px 55px -5px rgba(0, 0, 0, 0.1);
	
	/* Slightly irregular transitions for human feel */
	--transition: all 0.34s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: var(--dark);
	color: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Hide scrollbar completely */
::-webkit-scrollbar {
	display: none;
}

* {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

/* ===== NAVIGATION ===== */
.navbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1001;
	padding: var(--space-4) 0;
	opacity: 0;
	animation: fadeInDown 0.8s ease forwards;
	animation-delay: 0.1s;
}

.navbar.menu-open {
	background: #000000;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 var(--space-4);
}

.nav-logo {
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--white);
}

.nav-menu {
	display: flex;
	gap: var(--space-2);
}

.nav-link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-weight: 400;
	font-size: 0.9rem;
	padding: var(--space-2) var(--space-4);
	transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--space-3);
	overflow: hidden;
	min-width: 120px;
}

/* Liquid fill effect */
.nav-liquid {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: rgba(255, 255, 255, 0.08);
	transition: height 0.6s cubic-bezier(0.23, 1, 0.320, 1);
	z-index: -1;
}

.nav-liquid-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30px;
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(30px);
	transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
	z-index: -1;
	clip-path: polygon(
		0% 75%,
		10% 70%, 20% 75%, 30% 70%, 40% 75%,
		50% 70%, 60% 75%, 70% 70%, 80% 75%,
		90% 70%, 100% 75%,
		100% 100%, 0% 100%
	);
}

.nav-link:hover .nav-liquid {
	height: 100%;
}

.nav-link:hover .nav-liquid-wave {
	transform: translateY(0);
	animation: wave 2s linear infinite;
}

@keyframes wave {
	0% {
		clip-path: polygon(
			0% 75%,
			10% 70%, 20% 75%, 30% 70%, 40% 75%,
			50% 70%, 60% 75%, 70% 70%, 80% 75%,
			90% 70%, 100% 75%,
			100% 100%, 0% 100%
		);
	}
	50% {
		clip-path: polygon(
			0% 70%,
			10% 75%, 20% 70%, 30% 75%, 40% 70%,
			50% 75%, 60% 70%, 70% 75%, 80% 70%,
			90% 75%, 100% 70%,
			100% 100%, 0% 100%
		);
	}
	100% {
		clip-path: polygon(
			0% 75%,
			10% 70%, 20% 75%, 30% 70%, 40% 75%,
			50% 70%, 60% 75%, 70% 70%, 80% 75%,
			90% 70%, 100% 75%,
			100% 100%, 0% 100%
		);
	}
}

.nav-number {
	font-size: 1.1rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
	transition: all 0.6s ease;
	font-family: monospace;
}

.nav-text {
	font-size: 0.8rem;
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 300;
}

.nav-link:hover .nav-text {
	opacity: 1;
	transform: translateX(0);
}

.nav-link:hover {
	color: var(--white);
}

/* Special Kontakt button */
.nav-link-special {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	position: relative;
	overflow: hidden;
	min-width: auto;
	padding: var(--space-2) var(--space-5);
}

.nav-holographic {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 0, 255, 0.1),
		rgba(0, 255, 255, 0.1),
		rgba(255, 255, 0, 0.1),
		transparent
	);
	transform: skewX(-20deg);
	transition: left 0.5s ease;
}

.nav-link-special:hover .nav-holographic {
	left: 100%;
	animation: holographicShimmer 1.5s linear infinite;
}

@keyframes holographicShimmer {
	0% {
		filter: hue-rotate(0deg);
	}
	100% {
		filter: hue-rotate(360deg);
	}
}

.nav-link-special .nav-text {
	opacity: 1;
	transform: none;
	font-weight: 500;
}

.nav-link-special:hover {
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-2px) scale(1.05);
	box-shadow: 
		0 10px 30px rgba(255, 255, 255, 0.2),
		inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Remove liquid effects for special button */
.nav-link-special .nav-liquid,
.nav-link-special .nav-liquid-wave {
	display: none;
}

/* Language Toggle - Top Right Corner */
.lang-toggle-corner {
	position: absolute;
	top: var(--space-4);
	right: var(--space-4);
	z-index: 1001;
	padding: var(--space-2);
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	backdrop-filter: blur(10px);
}

.lang-toggle-corner:hover {
	background: rgba(0, 0, 0, 0.5);
	border-color: rgba(255, 255, 255, 0.4);
	transform: scale(1.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lang-toggle-corner .flag {
	font-size: 18px;
	filter: grayscale(20%);
	transition: all 0.3s ease;
}

.lang-toggle-corner:hover .flag {
	filter: grayscale(0%);
	transform: scale(1.1);
}

/* Mobile language switcher in nav menu */
.nav-lang-mobile {
	display: none;
}

@media (max-width: 1023px) {
	.lang-toggle-corner {
		display: none;
	}
	
	.nav-lang-mobile {
		display: flex;
		background: transparent !important;
		border: none !important;
		color: inherit;
		font-family: inherit;
		font-size: inherit;
		cursor: pointer;
		justify-content: center !important;
		padding: var(--space-2) var(--space-4) !important;
		margin-bottom: 0 !important;
		border-radius: 0 !important;
	}
	
	/* Make nav text visible on mobile and align to left */
	.nav-text {
		opacity: 1 !important;
		transform: translateX(0) !important;
	}
	
	.nav-link:not(.nav-link-special):not(.nav-lang-mobile) {
		justify-content: flex-start;
		padding: var(--space-3) var(--space-4);
		margin-bottom: var(--space-2);
		border-radius: 8px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		background: rgba(255, 255, 255, 0.02);
	}
	
	/* Make Contact button identical to desktop version */
	.nav-link-special {
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 50px;
		position: relative;
		overflow: hidden;
		min-width: auto;
		padding: var(--space-2) var(--space-5);
		justify-content: center !important;
	}
	
	@media (min-width: 1024px) {
		.nav-link-special:hover {
			border-color: rgba(255, 255, 255, 0.4);
			transform: translateY(-2px) scale(1.05);
			box-shadow: 
				0 10px 30px rgba(255, 255, 255, 0.2),
				inset 0 0 20px rgba(255, 255, 255, 0.1);
		}
		
		.nav-link-special:hover .nav-holographic {
			left: 100%;
			animation: holographicShimmer 1.5s linear infinite;
		}
	}
	
	.nav-link-special .nav-text {
		opacity: 1;
		transform: none;
		font-weight: 500;
	}
	
	.nav-link-special .nav-liquid,
	.nav-link-special .nav-liquid-wave {
		display: none;
	}
	
	.mobile-flag {
		font-size: 2.6rem;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}
	
	.nav-menu {
		padding: var(--space-5) var(--space-4);
		gap: var(--space-2);
	}
	
	/* Hide decorative elements on mobile */
	.code-stream,
	.neural-network {
		display: none;
	}
	
	
	/* Hide contact details on mobile - keep only form */
	.contact-details {
		display: none;
	}
}


@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}







/* ===== NOISE TEXTURE ===== */
.noise {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0.03;
	z-index: 1;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
}

/* ===== HERO SECTION ===== */
.hero {
	height: 100vh;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 150px;
	background: linear-gradient(
		0deg,
		rgba(59, 130, 246, 0.08) 0%,
		rgba(37, 99, 235, 0.05) 30%,
		rgba(29, 78, 216, 0.03) 60%,
		transparent 100%
	);
	z-index: 0;
	pointer-events: none;
}



.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200vh;
	z-index: -1;
	overflow: hidden;
	background: linear-gradient(
		180deg,
		var(--dark) 0%,
		rgba(0, 0, 0, 0.9) 5%,
		rgba(0, 0, 0, 0.8) 15%,
		rgba(0, 0, 0, 0.7) 30%,
		rgba(0, 0, 0, 0.6) 45%,
		rgba(0, 0, 0, 0.3) 60%,
		rgba(0, 0, 0, 0.1) 80%,
		transparent 100%
	);
}

.hero-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
		ellipse at 30% 20%,
		rgba(0, 0, 0, 0.8) 0%,
		transparent 50%
	),
	radial-gradient(
		ellipse at 70% 80%,
		rgba(0, 0, 0, 0.7) 0%,
		transparent 50%
	),
	radial-gradient(
		ellipse at 50% 50%,
		rgba(0, 0, 0, 0.6) 0%,
		transparent 60%
	);
}

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.6;
}

.gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.3;
	animation: float 25s infinite ease-in-out;
	mix-blend-mode: screen;
}

.orb-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
	top: -150px;
	left: -150px;
	animation-delay: 0s;
}

.orb-2 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.5) 0%, transparent 70%);
	bottom: -200px;
	right: -200px;
	animation-delay: 8s;
}

.orb-3 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(29, 78, 216, 0.4) 0%, transparent 70%);
	top: 40%;
	left: 60%;
	transform: translate(-50%, -50%);
	animation: float3 30s infinite ease-in-out;
}

.orb-4 {
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(96, 165, 250, 0.3) 0%, transparent 70%);
	top: 25%;
	right: 15%;
	animation-delay: 12s;
}

.orb-5 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(147, 197, 253, 0.35) 0%, transparent 70%);
	bottom: 40%;
	left: 20%;
	animation-delay: 6s;
}

.orb-6 {
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
	top: 20%;
	right: 10%;
	animation-delay: 3s;
}

.orb-7 {
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.5) 0%, transparent 70%);
	bottom: 30%;
	left: 15%;
	animation-delay: 10s;
}

.orb-8 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(29, 78, 216, 0.4) 0%, transparent 70%);
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: float3 35s infinite ease-in-out;
	animation-delay: 15s;
}

.orb-9 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(96, 165, 250, 0.45) 0%, transparent 70%);
	top: 80%;
	right: 20%;
	animation-delay: 5s;
}

.orb-10 {
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, rgba(147, 197, 253, 0.4) 0%, transparent 70%);
	top: 10%;
	left: 30%;
	animation-delay: 20s;
}

@keyframes float3 {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
	}
	33% {
		transform: translate(calc(-50% + 15px), calc(-50% - 15px)) scale(1.03);
	}
	66% {
		transform: translate(calc(-50% - 10px), calc(-50% + 10px)) scale(0.97);
	}
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(20px, -20px) scale(1.05);
	}
	66% {
		transform: translate(-15px, 15px) scale(0.95);
	}
}

@keyframes iconFloat {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-10px) rotate(10deg);
	}
}

@keyframes glowPulse {
	0%, 100% {
		opacity: 0.5;
	}
	50% {
		opacity: 1;
	}
}

.hero-content {
	text-align: center;
	z-index: 2;
	max-width: 1200px;
	padding: 0 var(--space-4);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-6);
	height: 100%;
}

.hero-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-3);
}

.hero-logo-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-1);
}

.hero-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-4);
	position: relative;
}

.hero-x {
	font-size: clamp(3.5rem, 15vw, 8rem);
	font-weight: 900;
	color: rgba(255, 255, 255, 0.95);
	opacity: 0;
	animation: fadeInLeft 0.8s ease forwards, glitch 2s ease-in-out infinite;
	animation-delay: 0.2s, 2s;
	position: relative;
}

.hero-x::before,
.hero-x::after {
	content: 'x';
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.8;
}

.hero-x::before {
	animation: glitch-1 0.5s infinite;
	color: rgba(255, 0, 255, 0.5);
	z-index: -1;
}

.hero-x::after {
	animation: glitch-2 0.5s infinite;
	color: rgba(0, 255, 255, 0.5);
	z-index: -1;
}

@keyframes glitch {
	0%, 90%, 100% {
		filter: none;
	}
	92% {
		filter: blur(0.5px);
	}
	94% {
		filter: blur(0);
	}
}

@keyframes glitch-1 {
	0%, 94%, 100% {
		transform: translate(0);
		opacity: 0;
	}
	95% {
		transform: translate(-2px, -1px);
		opacity: 0.8;
	}
	96% {
		transform: translate(2px, 1px);
		opacity: 0.8;
	}
}

@keyframes glitch-2 {
	0%, 94%, 100% {
		transform: translate(0);
		opacity: 0;
	}
	95% {
		transform: translate(2px, 1px);
		opacity: 0.8;
	}
	96% {
		transform: translate(-2px, -1px);
		opacity: 0.8;
	}
}

.hero-liquid {
	width: clamp(80px, 15vw, 150px);
	height: 60px;
	opacity: 0;
	animation: liquidFadeIn 1.2s ease forwards;
	animation-delay: 0.4s;
}

.liquid-path {
	fill: none;
	stroke: rgba(255, 255, 255, 0.4);
	stroke-width: 3;
	stroke-linecap: round;
	animation: liquidMorph 4s ease-in-out infinite;
}

@keyframes liquidMorph {
	0%, 100% {
		d: path("M0,50 Q50,30 100,50 T200,50");
	}
	25% {
		d: path("M0,50 Q50,70 100,50 T200,50");
	}
	50% {
		d: path("M0,50 Q50,40 100,60 T200,50");
	}
	75% {
		d: path("M0,50 Q50,60 100,40 T200,50");
	}
}

@keyframes liquidFadeIn {
	from {
		opacity: 0;
		transform: scaleX(0);
	}
	to {
		opacity: 1;
		transform: scaleX(1);
	}
}

.hero-one {
	font-size: clamp(3.5rem, 15vw, 8rem);
	font-weight: 900;
	color: rgba(255, 255, 255, 0.95);
	opacity: 0;
	animation: fadeInRight 0.8s ease forwards;
	animation-delay: 0.3s;
}

.hero-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	letter-spacing: 0.2em;
	text-transform: lowercase;
	display: flex;
	justify-content: center;
	gap: 0.05em;
}

.title-letter {
	opacity: 0;
	display: inline-block;
	animation: typewriterFadeIn 0.1s ease forwards;
}

.title-letter:nth-child(1) { animation-delay: 0.8s; }
.title-letter:nth-child(2) { animation-delay: 0.85s; }
.title-letter:nth-child(3) { animation-delay: 0.9s; }
.title-letter:nth-child(4) { animation-delay: 0.95s; }
.title-letter:nth-child(5) { animation-delay: 1s; }
.title-letter:nth-child(6) { animation-delay: 1.05s; }
.title-letter:nth-child(7) { animation-delay: 1.1s; }
.title-letter:nth-child(8) { animation-delay: 1.15s; }
.title-letter:nth-child(9) { animation-delay: 1.2s; }
.title-letter:nth-child(10) { animation-delay: 1.25s; }
.title-letter:nth-child(11) { animation-delay: 1.3s; }
.title-letter:nth-child(12) { animation-delay: 1.35s; }

@keyframes typewriterFadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes expandWidth {
	from {
		opacity: 0;
		width: 0;
	}
	to {
		opacity: 1;
		width: clamp(60px, 10vw, 120px);
	}
}

.hero-subtitle {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	max-width: 600px;
	line-height: 1.6;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.7s;
}

.hero-cta {
	display: flex;
	gap: var(--space-3);
	flex-wrap: wrap;
	justify-content: center;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.8s;
}

.hero-btn {
	padding: var(--space-3) var(--space-5);
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
}

.btn-arrow {
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.hero-btn:hover .btn-arrow {
	transform: translateX(4px);
}

.primary-btn {
	background: rgba(255, 255, 255, 0.9);
	color: var(--dark);
	border: 2px solid transparent;
}

.primary-btn:hover {
	background: rgba(255, 255, 255, 1);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.secondary-btn {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.secondary-btn:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-2px);
}

/* Mobile responsive Hero */
@media (max-width: 768px) {
	.hero-content {
		padding: var(--space-4) var(--space-3);
		gap: var(--space-6); /* Even larger gap between header and CTA buttons on mobile */
	}
	
	.hero-header {
		gap: var(--space-2); /* Smaller gap within header elements */
	}
	
	.hero-logo-container {
		gap: 5px; /* Very small gap between x1 and technologies */
	}
	
	.hero-logo {
		gap: var(--space-3);
	}
	
	
	.hero-divider {
		width: clamp(40px, 8vw, 60px);
	}
	
	.hero-title {
		font-size: clamp(1.7rem, 6vw, 2.2rem); /* Slightly larger on mobile */
	}
	
	.hero-subtitle {
		display: none; /* Hide subtitle on mobile */
	}
	
	.hero-cta {
		flex-direction: column;
		width: 100%;
		padding: 0 var(--space-3);
	}
	
	.hero-btn {
		width: 100%;
		justify-content: flex-start;
	}
}

.hero-tagline::before {
	content: '';
	position: absolute;
	top: -2vh;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(59, 130, 246, 0.4) 50%, 
		transparent 100%);
	opacity: 0;
	animation: fadeInUp 1s ease forwards;
	animation-delay: 1.4s;
}


@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== ANIMATED SHAPES ===== */
.animated-shape {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 140px;
}


/* Naukado - Neural Network */
.neural-network {
	position: relative;
	width: 100%;
	height: 100%;
}

.neuron {
	position: absolute;
	width: 8px;
	height: 8px;
	background: var(--white);
	border-radius: 50%;
	opacity: 0.6;
}

.neuron:nth-child(1) {
	top: 50%;
	left: 20%;
	animation: pulse 2s ease-in-out infinite;
}

.neuron:nth-child(2) {
	top: 30%;
	left: 50%;
	animation: pulse 2s ease-in-out 0.4s infinite;
}

.neuron:nth-child(3) {
	top: 70%;
	left: 50%;
	animation: pulse 2s ease-in-out 0.8s infinite;
}

.neuron:nth-child(4) {
	top: 40%;
	left: 80%;
	animation: pulse 2s ease-in-out 1.2s infinite;
}

.neuron:nth-child(5) {
	top: 60%;
	left: 80%;
	animation: pulse 2s ease-in-out 1.6s infinite;
}

.connection {
	position: absolute;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--white) 50%, transparent 100%);
	opacity: 0.2;
	transform-origin: left center;
}

.connection:nth-child(6) {
	top: 50%;
	left: 20%;
	width: 60px;
	transform: rotate(-20deg);
	animation: connectionPulse 2s ease-in-out infinite;
}

.connection:nth-child(7) {
	top: 50%;
	left: 20%;
	width: 60px;
	transform: rotate(20deg);
	animation: connectionPulse 2s ease-in-out 0.5s infinite;
}

.connection:nth-child(8) {
	top: 50%;
	left: 50%;
	width: 40px;
	transform: rotate(0deg);
	animation: connectionPulse 2s ease-in-out 1s infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.6;
	}
	50% {
		transform: scale(1.5);
		opacity: 1;
	}
}

@keyframes connectionPulse {
	0%, 100% {
		opacity: 0.2;
	}
	50% {
		opacity: 0.5;
	}
}

/* ===== CONTACT SECTION ===== */
.contact-section {
	padding: var(--space-7) 0;
	background: var(--dark);
	position: relative;
	overflow: hidden;
}

.contact-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

#contact-particles-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.6;
}

.contact-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--space-4);
	position: relative;
	z-index: 2;
}

@media (max-width: 768px) {
	.contact-container {
		padding: 0 var(--space-1);
	}
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: var(--space-6);
	margin-top: var(--space-6);
}

/* Professional Contact Form */
.contact-form-container {
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	transition: all 0.3s ease;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: var(--space-5);
	position: relative;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-form-container:hover {
	transform: translateY(-3px);
	border-color: rgba(255, 255, 255, 0.25);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
	background: rgba(0, 0, 0, 0.5);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.form-field label {
	color: var(--white);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.3px;
	opacity: 0.9;
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: var(--space-3);
	background: rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	color: var(--white);
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(0, 0, 0, 0.8);
	box-shadow: 
		0 0 0 1px rgba(255, 255, 255, 0.2),
		0 0 20px rgba(255, 255, 255, 0.05),
		inset 0 2px 4px rgba(0, 0, 0, 0.2);
	transform: translateY(-1px);
}

.form-field textarea {
	resize: vertical;
	min-height: 100px;
}

.form-actions {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	margin-top: var(--space-2);
}

.submit-button {
	padding: var(--space-3) var(--space-6);
	background: rgba(0, 0, 0, 0.9);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	margin-top: var(--space-2);
	position: relative;
	overflow: hidden;
}

.submit-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		rgba(255, 255, 255, 0.2),
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: left 0.5s ease;
	z-index: 1;
}

.submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 255, 255, 0.9);
	background: rgba(0, 0, 0, 0.95);
}

.submit-button:hover::before {
	left: 100%;
}

.submit-button:active {
	transform: translateY(-1px);
}

.submit-button:active {
	transform: translateY(0);
}

.submit-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.form-message {
	padding: var(--space-2) var(--space-3);
	border-radius: 6px;
	font-size: 0.85rem;
	display: none;
	text-align: center;
}

.form-message.success {
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.2);
	color: rgba(34, 197, 94, 1);
	display: block;
}

.form-message.error {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.2);
	color: rgba(239, 68, 68, 1);
	display: block;
}

/* Contact Details */
.contact-details {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.detail-group {
	padding-bottom: var(--space-4);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-group:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.detail-group h3 {
	color: var(--white);
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 var(--space-3) 0;
	letter-spacing: 0.5px;
}

.detail-item {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0 0 var(--space-2) 0;
}

.detail-item strong {
	color: var(--white);
	font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: var(--space-5);
		justify-content: center;
	}
	
	.contact-form-container {
		max-width: 600px;
		margin: 0 auto;
	}
	
	.contact-details {
		display: none;
	}
	
	.detail-group {
		border-bottom: none;
		text-align: center;
		padding: var(--space-3);
		background: rgba(255, 255, 255, 0.02);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 8px;
	}
}

@media (max-width: 768px) {
	.contact-form-container {
		padding: var(--space-3);
		max-width: 500px;
		margin: 0 auto;
	}
	
	.contact-section .section-title {
		font-size: 2rem;
		margin-bottom: var(--space-5);
	}
	
	.contact-details {
		grid-template-columns: 1fr;
	}
	
	.detail-group {
		text-align: left;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		background: none;
		border: none;
		border-radius: 0;
		padding: var(--space-4) 0;
	}
}

/* Mobile phones - much smaller FAQ spiral */
/* FAQ spiral styles moved to main FAQ section */
	
.detail-group:last-child {
	border-bottom: none;
}
	
	.form-field input,
	.form-field textarea {
		font-size: 16px; /* Prevent zoom on iOS */
	}
}

/* Form Validation Errors */
.form-field input.error,
.form-field textarea.error {
	border-color: rgba(239, 68, 68, 0.5);
}

.field-error {
	display: block;
	color: rgba(239, 68, 68, 1);
	font-size: 0.85rem;
	margin-top: var(--space-1);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
	min-height: 100vh;
	background: var(--dark);
	padding: var(--space-7) 0;
	position: relative;
	overflow: hidden;
}

.products-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 150px;
	background: linear-gradient(
		180deg,
		rgba(59, 130, 246, 0.08) 0%,
		rgba(37, 99, 235, 0.05) 30%,
		rgba(29, 78, 216, 0.03) 60%,
		transparent 100%
	);
	z-index: 0;
	pointer-events: none;
}


.products-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

#products-particles-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.6;
	pointer-events: none;
}

.products-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--space-4);
}

.products-header {
	text-align: center;
	margin-bottom: var(--space-7);
	opacity: 0;
	animation: fadeInUp 1s ease forwards;
	animation-delay: 0.2s;
}

.products-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.7);
	padding: var(--space-1) var(--space-3);
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: var(--space-4);
}

.products-title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--white);
	margin-bottom: var(--space-3);
	line-height: 1.2;
}

.products-subtitle {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	color: rgba(255, 255, 255, 0.6);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.products-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-5);
	margin-top: var(--space-7);
}

.product-card {
	background: linear-gradient(145deg, 
		rgba(255, 255, 255, 0.1) 0%, 
		rgba(255, 255, 255, 0.05) 100%);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	animation: fadeInUp 1s ease forwards;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	display: flex;
	flex-direction: column;
	height: 500px;
	position: relative;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.defense-card {
	animation-delay: 0.4s;
}

.enterprise-card {
	animation-delay: 0.6s;
}

.product-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(145deg, 
		rgba(255, 255, 255, 0.1) 0%, 
		transparent 50%, 
		rgba(59, 130, 246, 0.05) 100%);
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
	border-radius: 20px;
}

.product-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 255, 255, 0.3);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.4),
		0 0 20px rgba(59, 130, 246, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.product-card:hover::before {
	opacity: 1;
}

.card-header {
	padding: var(--space-4);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	flex-shrink: 0;
}

.card-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8);
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: var(--space-3);
}

.card-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: var(--space-2);
	line-height: 1.3;
}

.card-description {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

.card-interface {
	flex: 1;
	padding: var(--space-3);
	display: flex;
	flex-direction: column;
}

.interface-window {
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	overflow: hidden;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.interface-header {
	background: rgba(30, 41, 59, 0.8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: var(--space-2) var(--space-3);
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 40px;
}

.interface-tab {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.8rem;
	font-weight: 500;
}

.interface-tab.active {
	color: rgba(255, 255, 255, 0.9);
}

.interface-controls {
	display: flex;
	gap: 6px;
}

.control-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
}

.interface-content {
	flex: 1;
	padding: var(--space-3);
	display: flex;
	flex-direction: column;
}

/* Chat Interface Styles */
.chat-area {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	margin-bottom: var(--space-3);
}

.chat-message {
	display: flex;
	gap: var(--space-2);
	align-items: flex-start;
}

.message-icon {
	font-size: 1.2rem;
	width: 30px;
	height: 30px;
	background: rgba(59, 130, 246, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.message-text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.85rem;
	line-height: 1.5;
	flex: 1;
}

.input-area {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: var(--space-3);
}

.input-field {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	padding: var(--space-2) var(--space-3);
	display: flex;
	align-items: center;
}

.input-placeholder {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
}

/* Models Grid Styles */
.models-grid {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
	flex: 1;
}

.model-section {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.section-title {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: var(--space-1);
}

.model-item {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-2);
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	transition: all 0.3s ease;
}

.model-item:hover {
	background: rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 255, 255, 0.2);
}

.model-icon {
	font-size: 1.1rem;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.model-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.model-name {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.8rem;
	font-weight: 500;
}

.model-desc {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.7rem;
	line-height: 1.3;
}

.model-status {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	flex-shrink: 0;
}

.model-status.active {
	background: #10b981;
}

.interface-sidebar {
	width: 40%;
	background: rgba(30, 41, 59, 0.8);
	padding: var(--space-2);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-section {
	margin-bottom: var(--space-2);
}

.section-title {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
	margin-bottom: var(--space-1);
}

.chat-item {
	font-size: 0.65rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.4;
	padding: var(--space-1);
	border-radius: 4px;
}

.chat-item.active {
	background: rgba(37, 99, 235, 0.2);
	color: rgba(59, 130, 246, 1);
}

.action-button {
	background: rgba(37, 99, 235, 0.3);
	color: rgba(59, 130, 246, 1);
	padding: var(--space-1) var(--space-2);
	border-radius: 6px;
	font-size: 0.65rem;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	border: 1px solid rgba(37, 99, 235, 0.4);
}

.interface-map {
	flex: 1;
	position: relative;
	background: linear-gradient(135deg, 
		rgba(30, 58, 138, 0.3) 0%, 
		rgba(15, 23, 42, 0.6) 100%);
}

.map-container {
	width: 100%;
	height: 100%;
	position: relative;
	background-image: 
		radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
		radial-gradient(circle at 70% 60%, rgba(37, 99, 235, 0.1) 0%, transparent 40%);
}

.map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.map-point {
	position: absolute;
	width: 8px;
	height: 8px;
	background: rgba(59, 130, 246, 0.8);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.6);
}

.map-point.point-1 {
	top: 30%;
	left: 25%;
}

.map-point.point-2 {
	top: 60%;
	right: 30%;
}

.map-region {
	position: absolute;
	top: 20%;
	right: 20%;
	width: 40%;
	height: 50%;
	border: 1px solid rgba(59, 130, 246, 0.4);
	border-radius: 4px;
	background: rgba(59, 130, 246, 0.05);
}

/* Enterprise Interface Styles */
.enterprise-interface {
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.9);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.interface-header {
	background: rgba(30, 41, 59, 0.8);
	padding: var(--space-1) var(--space-2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-tabs {
	display: flex;
	gap: var(--space-1);
}

.tab {
	padding: 2px 8px;
	font-size: 0.6rem;
	color: rgba(255, 255, 255, 0.6);
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.tab.active {
	background: rgba(37, 99, 235, 0.3);
	color: rgba(59, 130, 246, 1);
}

/* ===== SERVICES SECTION ===== */
.services-section {
	min-height: 100vh;
	background: var(--dark);
	padding: var(--space-7) 0;
	position: relative;
	overflow: hidden;
}

.services-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.services-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--space-4);
	position: relative;
	z-index: 2;
}


/* Bento Grid Layout */
.bento-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, auto);
	gap: var(--space-3);
	max-width: 1000px;
	margin: 0 auto;
	grid-template-areas: 
		"main main ecommerce saas"
		"main main ai mobile"
		"consulting consulting consulting consulting";
}

/* Base Bento Card Styles */
.bento-card {
	background: linear-gradient(145deg, 
		rgba(255, 255, 255, 0.08) 0%, 
		rgba(255, 255, 255, 0.03) 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	padding: var(--space-4);
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	overflow: hidden;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.bento-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.03);
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 16px;
}

.bento-card:hover::before {
	opacity: 1;
}

.bento-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Main Pricing Card - Large */
.main-pricing {
	grid-area: main;
	padding: var(--space-6);
	background: linear-gradient(145deg, 
		rgba(255, 255, 255, 0.05) 0%, 
		rgba(255, 255, 255, 0.01) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.pricing-range {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: var(--space-2);
	margin-bottom: var(--space-4);
	flex-wrap: wrap;
}

.price-from,
.price-to {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
}

.price-big {
	font-size: 3.5rem;
	font-weight: 900;
	color: var(--white);
}

.price-currency {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
}

.pricing-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: var(--space-2);
	line-height: 1.3;
}

.pricing-desc {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	margin-bottom: var(--space-4);
	line-height: 1.5;
}

.pricing-cta {
	padding: var(--space-3) var(--space-5);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	color: white;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pricing-cta:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}

/* Service Icon for Main Card */
.service-icon {
	font-size: 3rem;
	margin-bottom: var(--space-3);
	text-align: center;
}

/* Features Mini List */
.features-mini {
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
	margin: var(--space-3) 0;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.8);
}

/* Common Card Styles */
.card-icon {
	font-size: 2rem;
	margin-bottom: var(--space-2);
}

.bento-card h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: var(--space-2);
}

.bento-card p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: var(--space-3);
	line-height: 1.4;
}

.card-price {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--white);
}

/* Tech Stack */
.tech-stack {
	display: flex;
	gap: var(--space-1);
	justify-content: center;
	flex-wrap: wrap;
	margin-top: var(--space-2);
}

.tech-stack span {
	background: rgba(255, 255, 255, 0.1);
	padding: var(--space-1) var(--space-2);
	border-radius: 8px;
	font-size: 0.65rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

/* Specific Service Cards */
.ecommerce {
	grid-area: ecommerce;
	text-align: center;
}

.saas-apps {
	grid-area: saas;
	text-align: center;
}

.ai-solutions {
	grid-area: ai;
	text-align: center;
}

.mobile-apps {
	grid-area: mobile;
	text-align: center;
}

.consulting {
	grid-area: consulting;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


/* ===== PRODUCTS SECTION (SHOWCASE DESIGN) ===== */
.products-showcase {
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
	margin-top: var(--space-6);
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.product-showcase-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: var(--space-7) var(--space-6) var(--space-6) var(--space-6);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.product-showcase-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(255, 255, 255, 0.05) 50%,
		transparent 70%
	);
	transform: rotate(45deg) translateX(-100%);
	transition: transform 0.6s ease;
}

.product-showcase-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.3),
		inset 0 0 30px rgba(255, 255, 255, 0.03);
}

.product-showcase-card:hover::before {
	transform: rotate(45deg) translateX(100%);
}


/* Naukado Specific Styling */
.naukado-showcase {
	--product-accent: rgba(255, 255, 255, 0.9);
	--product-glow: rgba(255, 255, 255, 0.1);
}

.naukado-logo {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	margin-bottom: var(--space-3);
}

.naukado-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
	transition: all 0.3s ease;
}

.naukado-showcase:hover .naukado-icon {
	transform: scale(1.05);
	box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

.naukado-text {
	font-family: 'Inter', sans-serif;
	font-weight: 800;
	font-size: 2.2rem;
	color: rgba(255, 255, 255, 0.95);
	letter-spacing: -0.02em;
	text-shadow: 0 2px 4px rgba(255, 255, 255, 0.2);
}

.product-logo-section {
	margin-bottom: var(--space-5);
}

.product-tagline {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Grid Layout for Main Product */
.product-info-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: var(--space-6);
	align-items: start;
}

.product-details {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.product-desc {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.feature-item {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: var(--space-2);
}

.feature-star {
	font-size: 1.1rem;
	color: var(--product-accent);
	flex-shrink: 0;
	width: 20px;
	display: inline-flex;
	justify-content: center;
	animation: starRotate 3s linear infinite;
}

.notice-star {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	animation: starRotate 4s linear infinite;
}

.feature-text {
	flex: 1;
}

@keyframes starRotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Stats Section */
.product-stats {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-4);
}

.stat-circle {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: var(--space-4);
}

.stat-circle::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 100px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	transform: rotate(45deg);
	transition: all 0.3s ease;
}

.stat-circle::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 100px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	transform: rotate(-45deg);
	transition: all 0.3s ease;
}

.product-showcase-card:hover .stat-circle::before {
	transform: rotate(60deg) scale(1.1);
	border-color: rgba(255, 255, 255, 0.3);
}

.product-showcase-card:hover .stat-circle::after {
	transform: rotate(-30deg) scale(0.9);
	border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
	font-size: 1.8rem;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1;
}

.stat-label {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 4px;
}

.launch-info {
	text-align: center;
}

.launch-date {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
}

.launch-label {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 4px;
}

/* Compact Layout for Secondary Product */
.product-info-compact {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.compact-stats {
	display: flex;
	align-items: center;
	gap: var(--space-4);
	flex-wrap: wrap;
}

.stat-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	padding: 8px 16px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-value {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--product-accent);
}

.stat-text {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.beta-badge {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.8);
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.tech-tag {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.8);
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 0.75rem;
	font-weight: 500;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
}

.tech-tag:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
}

/* Product Action Buttons */
.product-action {
	margin-top: var(--space-4);
}

.product-btn {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-3) var(--space-5);
	background: rgba(255, 255, 255, 0.08);
	color: var(--product-accent);
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.product-btn:hover {
	transform: translateY(-2px);
	border-color: var(--product-accent);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* Naukado App Store Buttons */
.naukado-action {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	align-items: flex-start;
}

.store-buttons-container {
	display: flex;
	gap: var(--space-2);
	flex-wrap: wrap;
}

.store-btn {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-2) var(--space-3);
	text-decoration: none;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 1px solid;
	min-width: 140px;
	justify-content: center;
}

.app-store-btn {
	background: #000000;
	color: #ffffff;
	border-color: #000000;
	border-radius: 6px;
}

.app-store-btn:hover:not(.disabled) {
	background: #1a1a1a;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.google-play-btn {
	background: #000000;
	color: #ffffff;
	border-color: #000000;
	border-radius: 6px;
}

.google-play-btn:hover:not(.disabled) {
	background: #1a1a1a;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.store-btn.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.store-icon {
	flex-shrink: 0;
}

.apple-icon {
	color: #ffffff;
}

.google-icon {
	color: #ffffff;
}

.store-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.1;
}

.store-line-1 {
	font-size: 0.65rem;
	font-weight: 400;
	opacity: 0.8;
}

.store-line-2 {
	font-size: 0.9rem;
	font-weight: 600;
	margin-top: 1px;
}

.availability-notice {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.08);
	padding: var(--space-2) var(--space-3);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.notice-icon {
	font-size: 1rem;
}

.notice-text {
	font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.products-showcase {
		padding: 0 var(--space-1);
		gap: var(--space-4);
	}
	
	.product-showcase-card {
		padding: var(--space-4) var(--space-3) var(--space-3) var(--space-3);
		margin: 0 calc(-1 * var(--space-1));
	}
	
	
	.naukado-icon {
		width: 40px;
		height: 40px;
	}
	
	.naukado-text {
		font-size: 1.8rem;
	}
	
	.product-info-grid {
		grid-template-columns: 1fr;
		gap: var(--space-4);
	}
	
	.product-stats {
		display: none;
	}
	
	.stat-circle {
		width: 100px;
		height: 100px;
	}
	
	.stat-number {
		font-size: 1.4rem;
	}
	
	.compact-stats {
		justify-content: flex-start;
	}
	
	.store-buttons-container {
		justify-content: flex-start;
	}
	
	.product-btn {
		font-size: 0.8rem;
		padding: var(--space-2) var(--space-3);
	}
}

/* ===== SERVICES SECTION (PROFESSIONAL LIST) ===== */
.professional-services-list {
	margin-top: var(--space-6);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.service-item {
	display: flex;
	align-items: flex-start;
	gap: var(--space-4);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: var(--space-5) 0;
	transition: all 0.3s ease;
	position: relative;
}

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

.service-item:hover {
	background: rgba(255, 255, 255, 0.02);
	padding-left: var(--space-3);
	padding-right: var(--space-3);
	margin-left: calc(-1 * var(--space-3));
	margin-right: calc(-1 * var(--space-3));
	border-radius: 8px;
}

.service-number {
	color: rgba(255, 255, 255, 0.3);
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
	font-family: 'Inter', monospace;
	min-width: 80px;
	margin-top: -8px;
}

.service-content {
	flex: 1;
}

.service-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: var(--space-3);
	gap: var(--space-4);
}

.service-name {
	color: var(--white);
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0;
	flex: 1;
}

.service-price {
	color: var(--white);
	font-size: 1.1rem;
	font-weight: 800;
	white-space: nowrap;
	background: rgba(255, 255, 255, 0.1);
	padding: var(--space-1) var(--space-3);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-description {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0 0 var(--space-3) 0;
}

.service-actions {
	margin-top: var(--space-4);
}

.service-cta {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: var(--space-3) var(--space-4);
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.service-cta:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}

/* Mobile responsive for Services */
@media (max-width: 768px) {
	.professional-services-list {
		margin-top: var(--space-5);
		padding: 0 var(--space-3);
	}
	
	.service-item {
		padding: var(--space-4) 0;
		gap: var(--space-3);
	}
	
	.service-number {
		font-size: 2rem;
		min-width: 60px;
		margin-top: 0;
	}
	
	.service-header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-2);
	}
	
	.service-name {
		font-size: 1.1rem;
	}
	
	.service-price {
		font-size: 1rem;
		padding: 4px var(--space-2);
	}
	
	.service-description {
		font-size: 0.9rem;
	}
	
	.service-cta {
		display: none;
	}
}

/* ===== FAQ SECTION ===== */
.faq-section {
	padding: var(--space-7) 0;
	position: relative;
	overflow: visible;
	background: var(--dark);
}

.faq-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.faq-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--space-4);
	position: relative;
	z-index: 2;
	overflow-x: hidden;
}

@media (max-width: 768px) {
	.faq-container {
		padding: 0 var(--space-1);
	}
	
	.faq-items {
		margin: 0 calc(-0.5 * var(--space-1));
		padding: 0 var(--space-1);
	}
}

.faq-content-grid {
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: var(--space-6);
	align-items: center;
	margin-top: var(--space-6);
}

.faq-spiral-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 400px;
}

/* Mobile spiral above title */
.faq-spiral-mobile {
	display: none;
}

/* Desktop spiral in grid */
.faq-spiral-desktop {
	display: flex;
}

#faq-spiral {
	width: 400px;
	height: 400px;
}

#faq-spiral-mobile {
	width: 400px;
	height: 400px;
}

#faq-spiral circle,
#faq-spiral-mobile circle {
	fill: #ffffff;
	opacity: 0.6;
}

.faq-items {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--space-4) 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
	color: var(--white);
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
	flex: 1;
	padding-right: var(--space-3);
}

.faq-toggle {
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 300;
	transition: transform 0.3s ease;
	min-width: 24px;
	text-align: center;
}

.faq-question.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
	max-height: 200px;
	padding-bottom: var(--space-4);
}

.faq-answer p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
	padding-right: var(--space-5);
}

/* Mobile responsive */
@media (max-width: 1024px) {
	.faq-content-grid {
		grid-template-columns: 1fr;
		gap: var(--space-5);
	}
	
	.faq-spiral-container {
		order: -1;
		min-height: 300px;
	}
	
	#faq-spiral {
		width: 300px;
		height: 300px;
	}
}

@media (max-width: 768px) {
	.faq-section {
		padding: var(--space-5) 0 var(--space-5) 0;
	}
	
	.faq-content-grid {
		grid-template-columns: 1fr;
		gap: var(--space-3);
	}
	
	/* Hide desktop spiral */
	.faq-spiral-desktop {
		display: none !important;
	}
	
	/* Show mobile spiral above title */
	.faq-spiral-mobile {
		display: flex !important;
		justify-content: center;
		align-items: center;
		width: 100%;
		min-height: 40vw;
		margin-bottom: var(--space-5);
	}
	
	#faq-spiral, #faq-spiral-mobile {
		width: 40vw;
		height: 40vw;
		max-width: 200px;
		max-height: 200px;
	}
	
	.faq-question h3 {
		font-size: 1rem;
	}
	
	.faq-answer p {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	#faq-spiral, #faq-spiral-mobile {
		width: 50vw;
		height: 50vw;
		max-width: 180px;
		max-height: 180px;
	}
	
	.faq-spiral-mobile {
		min-height: 50vw;
	}
}


.header-button {
	background: rgba(34, 197, 94, 0.2);
	color: rgba(34, 197, 94, 1);
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.6rem;
	font-weight: 600;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.interface-content {
	flex: 1;
	padding: var(--space-2);
	display: flex;
	gap: var(--space-2);
}

.content-left {
	flex: 1;
}

.content-right {
	flex: 1;
}

.section-header {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
	margin-bottom: var(--space-1);
	margin-top: var(--space-2);
}

.section-header:first-child {
	margin-top: 0;
}

.model-grid {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.model-item {
	font-size: 0.65rem;
	color: rgba(255, 255, 255, 0.6);
	padding: 2px 4px;
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.model-item.active {
	background: rgba(37, 99, 235, 0.2);
	color: rgba(59, 130, 246, 1);
}

.model-item:hover {
	background: rgba(255, 255, 255, 0.05);
}

.module-header {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.module-title {
	font-size: 0.65rem;
	color: rgba(255, 255, 255, 0.7);
	padding: var(--space-1);
	background: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-window {
	width: 100%;
	max-width: 280px;
	height: 200px;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.window-header {
	height: 28px;
	background: rgba(30, 41, 59, 0.8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 var(--space-2);
}

.window-controls {
	display: flex;
	gap: 4px;
}

.control {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
}

.control.red {
	background: #ef4444;
}

.control.yellow {
	background: #f59e0b;
}

.control.green {
	background: #10b981;
}

.window-title {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
}

.preview-content {
	height: calc(100% - 28px);
	padding: var(--space-1);
}

.hermis-preview {
	display: flex;
	gap: var(--space-1);
	height: 100%;
}

.preview-sidebar {
	width: 80px;
	background: rgba(15, 23, 42, 0.6);
	border-radius: 4px;
	padding: var(--space-1);
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.sidebar-item {
	padding: 4px 6px;
	border-radius: 4px;
	font-size: 0.6rem;
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.3s ease;
	cursor: pointer;
}

.sidebar-item.active {
	background: rgba(37, 99, 235, 0.2);
	color: rgba(59, 130, 246, 1);
}

.preview-main {
	flex: 1;
	padding: var(--space-3);
	background: rgba(30, 41, 59, 0.4);
}

.main-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--space-3);
}

.main-header h4 {
	color: var(--white);
	font-size: 1rem;
	margin: 0;
}

.ai-button {
	background: linear-gradient(135deg, 
		rgba(37, 99, 235, 0.8) 0%, 
		rgba(59, 130, 246, 0.6) 100%);
	color: white;
	padding: var(--space-1) var(--space-2);
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 600;
}

.template-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-2);
}

.template-item {
	background: rgba(15, 23, 42, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	height: 60px;
}

/* NAUKADO Mobile Preview */
.mobile-frame {
	background: #1a1a1a;
	border-radius: 20px;
	padding: var(--space-2);
	max-width: 200px;
	margin: 0 auto;
	border: 2px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.mobile-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--space-1) var(--space-2);
	color: white;
	font-size: 0.8rem;
	font-weight: 600;
}

.mobile-battery {
	width: 20px;
	height: 10px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 2px;
	position: relative;
}

.battery-fill {
	background: #4ade80;
	height: 100%;
	width: 75%;
	border-radius: 1px;
}

.mobile-content {
	background: rgba(0, 0, 0, 0.8);
	border-radius: 16px;
	padding: var(--space-3);
	min-height: 200px;
}

.app-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--space-3);
}

.app-header h4 {
	color: white;
	font-size: 1.1rem;
	margin: 0;
}

.profile-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.progress-ring {
	position: relative;
	width: 60px;
	height: 60px;
	margin: 0 auto var(--space-3);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ring-fill {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: conic-gradient(#4ade80 0deg 270deg, rgba(255, 255, 255, 0.1) 270deg);
}

.progress-text {
	color: white;
	font-weight: 700;
	font-size: 0.9rem;
	z-index: 1;
}

.lesson-cards {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	margin-bottom: var(--space-3);
}

.lesson-card {
	padding: var(--space-2);
	border-radius: 8px;
	font-size: 0.8rem;
	text-align: center;
	font-weight: 500;
}

.lesson-card.completed {
	background: rgba(34, 197, 94, 0.2);
	color: #4ade80;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.lesson-card.current {
	background: rgba(37, 99, 235, 0.2);
	color: #60a5fa;
	border: 1px solid rgba(37, 99, 235, 0.3);
}

.lesson-card.locked {
	background: rgba(156, 163, 175, 0.1);
	color: rgba(156, 163, 175, 0.6);
	border: 1px solid rgba(156, 163, 175, 0.2);
}

.achievement-badge {
	background: linear-gradient(135deg, 
		rgba(251, 146, 60, 0.2) 0%, 
		rgba(245, 101, 101, 0.1) 100%);
	color: #fb923c;
	padding: var(--space-1) var(--space-2);
	border-radius: 12px;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 600;
	border: 1px solid rgba(251, 146, 60, 0.3);
}

/* ===== MOBILE & TABLET RESPONSIVE ===== */

/* Futuristic mobile menu toggle */
.nav-toggle {
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(20px);
	transition: var(--transition);
	overflow: hidden;
}

.nav-toggle::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, 
		rgba(59, 130, 246, 0.1) 0%, 
		transparent 50%, 
		rgba(147, 197, 253, 0.1) 100%);
	opacity: 0;
	transition: var(--transition);
}

.nav-toggle:hover {
	border-color: rgba(59, 130, 246, 0.3);
	box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
	transform: translateY(-1px);
}

.nav-toggle:hover::before {
	opacity: 1;
}

.nav-toggle-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
}

.nav-toggle span {
	position: absolute;
	left: 0;
	width: 20px;
	height: 2px;
	background: linear-gradient(90deg, 
		rgba(255, 255, 255, 0.9) 0%, 
		rgba(59, 130, 246, 0.8) 50%, 
		rgba(255, 255, 255, 0.9) 100%);
	border-radius: 2px;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

.nav-toggle span:nth-child(1) {
	top: 3px;
	transform-origin: left center;
}

.nav-toggle span:nth-child(2) {
	top: 9px;
	transform-origin: center;
}

.nav-toggle span:nth-child(3) {
	top: 15px;
	transform-origin: left center;
}

/* Active state - morphs into X with energy effect */
.nav-toggle.active {
	border-color: rgba(59, 130, 246, 0.5);
	box-shadow: 
		0 0 20px rgba(59, 130, 246, 0.3),
		inset 0 0 20px rgba(59, 130, 246, 0.1);
}

.nav-toggle.active::before {
	opacity: 1;
	background: linear-gradient(45deg, 
		rgba(59, 130, 246, 0.2) 0%, 
		rgba(147, 197, 253, 0.1) 50%, 
		rgba(59, 130, 246, 0.2) 100%);
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(0px, 0px);
	top: 9px;
	background: linear-gradient(90deg, 
		rgba(59, 130, 246, 1) 0%, 
		rgba(147, 197, 253, 0.9) 50%, 
		rgba(59, 130, 246, 1) 100%);
	box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: scale(0) rotate(360deg);
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(0px, 0px);
	top: 9px;
	background: linear-gradient(90deg, 
		rgba(59, 130, 246, 1) 0%, 
		rgba(147, 197, 253, 0.9) 50%, 
		rgba(59, 130, 246, 1) 100%);
	box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

/* Pulse animation for active state */
.nav-toggle.active::after {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border: 1px solid rgba(59, 130, 246, 0.4);
	border-radius: 14px;
	animation: menuPulse 2s infinite;
}

@keyframes menuPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.8;
	}
}

/* Extra small phones (320px - 399px) */
@media (max-width: 399px) {
	.nav-container {
		padding: 0 var(--space-4);
		justify-content: flex-end;
	}
	
	.nav-logo {
		display: none;
	}
	
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: linear-gradient(to bottom, #000000 0%, #000000 95%, rgba(0, 0, 0, 0) 100%);
		flex-direction: column;
		padding: var(--space-4) var(--space-4) var(--space-5) var(--space-4);
	}
	
	.nav-menu.active {
		display: flex;
	}
	
	.nav-toggle {
		display: flex;
	}
	
	.nav-link {
		font-size: 1rem;
		padding: var(--space-3) var(--space-2);
		text-align: center;
		border: 1px solid rgba(255, 255, 255, 0.1);
		margin-bottom: var(--space-2);
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	
	.hero-main {
		gap: clamp(8vh, 10vh, 12vh);
		flex-direction: row;
		text-align: center;
	}
	
	.hero-x {
		font-size: clamp(12vh, 16vh, 20vh);
		color: rgba(255, 255, 255, 0.95);
	}
	
	.hero-one {
		font-size: clamp(12vh, 16vh, 20vh);
		color: rgba(255, 255, 255, 0.95);
	}
	
	.hero-subtitle-shadow {
		font-size: clamp(3vh, 4vh, 5vh);
		margin-top: 8vh;
		letter-spacing: 0.8vw;
	}
	
	.hero-content {
		padding: 0 var(--space-1);
		margin-top: 3vh;
	}
	
	.gradient-orb {
		filter: blur(60px);
		opacity: 0.15;
	}
	
	.hero-tagline {
		font-size: clamp(0.9rem, 1.5vw, 1.2rem);
		margin-top: 2vh;
	}
	
	/* Products section mobile styles */
	.products-section {
		padding: var(--space-4) var(--space-2);
	}
	
	.products-container {
		max-width: 100%;
		padding: 0;
	}
	
	.products-header {
		margin-bottom: var(--space-4);
	}
	
	.products-title {
		font-size: 1.5rem;
		margin-bottom: var(--space-2);
	}
	
	.products-subtitle {
		font-size: 0.9rem;
		line-height: 1.5;
	}
	
	.products-grid {
		grid-template-columns: 1fr;
		gap: var(--space-4);
	}
	
	.product-card {
		padding: var(--space-3);
		display: flex;
		flex-direction: column;
		gap: var(--space-3);
	}
	
	.card-title {
		font-size: 1.2rem;
		margin-bottom: var(--space-2);
	}
	
	.card-description {
		font-size: 0.85rem;
		line-height: 1.5;
	}
	
	.card-preview {
		order: -1;
		margin-bottom: var(--space-3);
	}
	
	.preview-window {
		width: 100%;
		height: 180px;
	}
	
	.mobile-frame {
		width: 120px;
		height: 200px;
		margin: 0 auto;
	}
	
	.hermis-preview {
		flex-direction: column;
		gap: var(--space-1);
	}
	
	.preview-sidebar {
		width: 100%;
		height: 30px;
		display: flex;
		gap: var(--space-1);
		overflow-x: auto;
		margin-bottom: var(--space-1);
	}
	
	.sidebar-item {
		flex: 0 0 auto;
		padding: 4px 8px;
		font-size: 0.6rem;
		border-radius: 4px;
		white-space: nowrap;
	}
	
	.preview-main {
		flex: 1;
		gap: var(--space-1);
	}
	
	.main-header {
		height: 20px;
		margin-bottom: var(--space-1);
	}
	
	.main-header h4 {
		font-size: 0.6rem;
	}
	
	.ai-button {
		padding: 2px 6px;
		font-size: 0.5rem;
		border-radius: 4px;
	}
	
	.template-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 2px;
	}
	
	.template-item {
		height: 25px;
		border-radius: 2px;
	}
	
	.mobile-content {
		padding: var(--space-1);
	}
	
	.app-header h4 {
		font-size: 0.8rem;
	}
	
	.progress-ring {
		width: 60px;
		height: 60px;
		margin: var(--space-2) auto;
	}
	
	.progress-text {
		font-size: 0.7rem;
	}
	
	.lesson-card {
		padding: var(--space-1);
		font-size: 0.7rem;
		margin-bottom: var(--space-1);
	}
	
	.achievement-badge {
		font-size: 0.7rem;
		padding: 4px 8px;
	}
}

/* Small phones (400px - 499px) */
@media (min-width: 400px) and (max-width: 499px) {
	.nav-container {
		padding: 0 var(--space-4);
		justify-content: flex-end;
	}
	
	.nav-logo {
		display: none;
	}
	
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: linear-gradient(to bottom, #000000 0%, #000000 95%, rgba(0, 0, 0, 0) 100%);
		flex-direction: column;
		padding: var(--space-4) var(--space-4) var(--space-5) var(--space-4);
	}
	
	.nav-menu.active {
		display: flex;
	}
	
	.nav-toggle {
		display: flex;
	}
	
	.nav-link {
		font-size: 1rem;
		padding: var(--space-3) var(--space-2);
		text-align: center;
		border: 1px solid rgba(255, 255, 255, 0.1);
		margin-bottom: var(--space-2);
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	
	.hero-main {
		gap: clamp(10vh, 12vh, 14vh);
	}
	
	.hero-x {
		font-size: clamp(14vh, 18vh, 22vh);
	}
	
	.hero-one {
		font-size: clamp(14vh, 18vh, 22vh);
	}
	
	.hero-subtitle-shadow {
		font-size: clamp(3.5vh, 5vh, 6vh);
		letter-spacing: 0.9vw;
		margin-top: 6vh;
	}
	
	.hero-content {
		padding: 0 var(--space-2);
		margin-top: 2vh;
	}
	
	.gradient-orb {
		filter: blur(70px);
		opacity: 0.18;
	}
	
	.hero-tagline {
		font-size: clamp(1rem, 1.6vw, 1.3rem);
		margin-top: 3vh;
	}
}

/* Medium phones (500px - 599px) */
@media (min-width: 500px) and (max-width: 599px) {
	.nav-container {
		padding: 0 var(--space-4);
		justify-content: flex-end;
	}
	
	.nav-logo {
		display: none;
	}
	
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: linear-gradient(to bottom, #000000 0%, #000000 95%, rgba(0, 0, 0, 0) 100%);
		flex-direction: column;
		padding: var(--space-4) var(--space-4) var(--space-5) var(--space-4);
	}
	
	.nav-menu.active {
		display: flex;
	}
	
	.nav-toggle {
		display: flex;
	}
	
	.nav-link {
		font-size: 1rem;
		padding: var(--space-3) var(--space-2);
		text-align: center;
		border: 1px solid rgba(255, 255, 255, 0.1);
		margin-bottom: var(--space-2);
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	
	.hero-main {
		gap: clamp(12vh, 14vh, 16vh);
	}
	
	.hero-x {
		font-size: clamp(16vh, 20vh, 24vh);
	}
	
	.hero-one {
		font-size: clamp(16vh, 20vh, 24vh);
	}
	
	.hero-subtitle-shadow {
		font-size: clamp(4vh, 6vh, 7vh);
		letter-spacing: 1vw;
		margin-top: 5vh;
	}
	
	.hero-content {
		padding: 0 var(--space-3);
		margin-top: 2vh;
	}
	
	.hero-tagline {
		font-size: clamp(1.1rem, 1.8vw, 1.4rem);
		margin-top: 3vh;
	}
	
	/* Products section styles for medium phones */
	.products-section {
		padding: var(--space-5) var(--space-3);
	}
	
	.products-title {
		font-size: 1.7rem;
	}
	
	.products-subtitle {
		font-size: 1rem;
	}
	
	.product-card {
		padding: var(--space-4);
	}
	
	.card-title {
		font-size: 1.3rem;
	}
	
	.card-description {
		font-size: 0.9rem;
	}
	
	.preview-window {
		height: 200px;
	}
	
	.mobile-frame {
		width: 140px;
		height: 220px;
	}
	
	.progress-ring {
		width: 70px;
		height: 70px;
	}
	
	.progress-text {
		font-size: 0.8rem;
	}
	
	.lesson-card {
		font-size: 0.75rem;
	}
	
	.achievement-badge {
		font-size: 0.75rem;
	}
}

/* Large phones (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
	.nav-menu {
		gap: var(--space-2);
	}
	
	.nav-link {
		font-size: 0.9rem;
		padding: var(--space-2) var(--space-3);
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	
	.nav-container {
		padding: 0 var(--space-3);
		justify-content: flex-end;
	}
	
	.nav-logo {
		display: none;
	}
	
	.hero-main {
		gap: clamp(14vh, 18vh, 22vh);
	}
	
	.hero-x {
		font-size: clamp(18vh, 22vh, 26vh);
	}
	
	.hero-one {
		font-size: clamp(18vh, 22vh, 26vh);
	}
	
	.hero-subtitle-shadow {
		font-size: clamp(5vh, 7vh, 8vh);
		letter-spacing: 1.1vw;
		margin-top: 3vh;
	}
	
	.hero-tagline {
		font-size: clamp(1.2rem, 1.9vw, 1.5rem);
		margin-top: 4vh;
	}
	
	/* Products section styles for large phones */
	.products-section {
		padding: var(--space-6) var(--space-4);
	}
	
	.products-title {
		font-size: 1.9rem;
	}
	
	.products-subtitle {
		font-size: 1.1rem;
	}
	
	.product-card {
		padding: var(--space-5);
	}
	
	.card-title {
		font-size: 1.4rem;
	}
	
	.card-description {
		font-size: 0.95rem;
	}
	
	.preview-window {
		height: 220px;
	}
	
	.mobile-frame {
		width: 160px;
		height: 240px;
	}
	
	.progress-ring {
		width: 80px;
		height: 80px;
	}
	
	.progress-text {
		font-size: 0.9rem;
	}
	
	.lesson-card {
		font-size: 0.8rem;
	}
	
	.achievement-badge {
		font-size: 0.8rem;
	}
}

/* Small tablets (768px - 899px) */
@media (min-width: 768px) and (max-width: 899px) {
	.nav-menu {
		gap: var(--space-3);
	}
	
	.nav-link {
		font-size: 0.95rem;
		padding: var(--space-2) var(--space-4);
		min-height: 44px;
	}
	
	.nav-container {
		padding: 0 var(--space-4);
	}
	
	.hero-main {
		gap: clamp(14vh, 18vh, 22vh);
	}
	
	.hero-x {
		font-size: clamp(20vh, 25vh, 30vh);
	}
	
	.hero-one {
		font-size: clamp(20vh, 25vh, 30vh);
	}
	
	.hero-subtitle-shadow {
		font-size: clamp(6vh, 8vh, 10vh);
		letter-spacing: 1.3vw;
		margin-top: 2vh;
	}
	
	.hero-content {
		padding: 0 var(--space-4);
		margin-top: -4vh;
	}
	
	/* Products section styles for small tablets */
	.products-section {
		padding: var(--space-7) var(--space-5);
	}
	
	.products-title {
		font-size: 2.2rem;
	}
	
	.products-subtitle {
		font-size: 1.2rem;
	}
	
	.products-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-5);
	}
	
	.product-card {
		padding: var(--space-5);
		flex-direction: column;
		gap: var(--space-4);
	}
	
	.card-title {
		font-size: 1.5rem;
	}
	
	.card-description {
		font-size: 1rem;
	}
	
	.card-preview {
		order: 0;
		margin-bottom: 0;
	}
	
	.preview-window {
		height: 240px;
	}
	
	.mobile-frame {
		width: 180px;
		height: 260px;
	}
	
	.progress-ring {
		width: 90px;
		height: 90px;
	}
	
	.progress-text {
		font-size: 1rem;
	}
	
	.lesson-card {
		font-size: 0.85rem;
	}
	
	.achievement-badge {
		font-size: 0.85rem;
	}
}

/* Medium tablets (900px - 1023px) */
@media (min-width: 900px) and (max-width: 1023px) {
	.nav-menu {
		gap: var(--space-3);
	}
	
	.nav-link {
		font-size: 0.95rem;
		padding: var(--space-2) var(--space-4);
		min-height: 44px;
	}
	
	.nav-container {
		padding: 0 var(--space-4);
	}
	
	.hero-main {
		gap: clamp(16vh, 22vh, 28vh);
	}
	
	.hero-x {
		font-size: clamp(22vh, 28vh, 35vh);
	}
	
	.hero-one {
		font-size: clamp(22vh, 28vh, 35vh);
	}
	
	.hero-subtitle-shadow {
		font-size: clamp(7vh, 9vh, 11vh);
		letter-spacing: 1.5vw;
		margin-top: -2vh;
	}
	
	.hero-content {
		padding: 0 var(--space-4);
		margin-top: -6vh;
	}
	
	/* Products section styles for medium tablets */
	.products-section {
		padding: var(--space-7) var(--space-6);
	}
	
	.products-title {
		font-size: 2.5rem;
	}
	
	.products-subtitle {
		font-size: 1.3rem;
	}
	
	.products-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-6);
	}
	
	.product-card {
		padding: var(--space-6);
		flex-direction: column;
		gap: var(--space-5);
	}
	
	.card-title {
		font-size: 1.6rem;
	}
	
	.card-description {
		font-size: 1.1rem;
	}
	
	.preview-window {
		height: 260px;
	}
	
	.mobile-frame {
		width: 200px;
		height: 280px;
	}
	
	.progress-ring {
		width: 100px;
		height: 100px;
	}
	
	.progress-text {
		font-size: 1.1rem;
	}
	
	.lesson-card {
		font-size: 0.9rem;
	}
	
	.achievement-badge {
		font-size: 0.9rem;
	}
}

/* Large tablets (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
	.nav-menu {
		gap: var(--space-4);
	}
	
	.nav-link {
		font-size: 1rem;
		padding: var(--space-2) var(--space-4);
	}
	
	.hero-main {
		gap: clamp(20vh, 30vh, 40vh);
	}
	
	.hero-x {
		font-size: clamp(30vh, 40vh, 50vh);
	}
	
	.hero-one {
		font-size: clamp(30vh, 40vh, 50vh);
	}
	
	.hero-subtitle-shadow {
		font-size: clamp(8vh, 11vh, 14vh);
		letter-spacing: 1.6vw;
		margin-top: -3vh;
	}
	
	/* Products section styles for large tablets */
	.products-section {
		padding: var(--space-7) var(--space-7);
	}
	
	.products-title {
		font-size: 2.8rem;
	}
	
	.products-subtitle {
		font-size: 1.4rem;
	}
	
	.products-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-7);
	}
	
	.product-card {
		padding: var(--space-7);
		flex-direction: column;
		gap: var(--space-6);
	}
	
	.card-title {
		font-size: 1.8rem;
	}
	
	.card-description {
		font-size: 1.2rem;
	}
	
	.preview-window {
		height: 280px;
	}
	
	.mobile-frame {
		width: 220px;
		height: 300px;
	}
	
	.progress-ring {
		width: 110px;
		height: 110px;
	}
	
	.progress-text {
		font-size: 1.2rem;
	}
	
	.lesson-card {
		font-size: 1rem;
	}
	
	.achievement-badge {
		font-size: 1rem;
	}
}

/* Common mobile/tablet styles */
@media (max-width: 1023px) {
	.hero {
		height: 100vh;
		height: 100dvh; /* iOS Safari support */
	}
	
	/* Performance optimizations for mobile */
	* {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}
	
	/* Disable heavy animations on mobile for performance */
	.gradient-orb {
		animation-duration: 40s; /* Slower animation */
	}
	
	.hero-x::before,
	.hero-x::after {
		animation: none; /* Disable glitch effects on mobile */
	}
	
	/* Simplify particle animations */
	#particles-canvas,
	#products-particles-canvas,
	#services-particles-canvas,
	#faq-particles-canvas,
	#contact-particles-canvas {
		opacity: 0.3; /* Reduce particle opacity for better performance */
	}
	
	/* Better touch targets for mobile */
	.nav-link {
		min-height: 48px; /* Better touch target size */
		padding: var(--space-3) var(--space-4);
	}
	
	.hero-btn {
		min-height: 48px;
		padding: var(--space-3) var(--space-5);
	}
	
	.submit-button {
		min-height: 48px;
		padding: var(--space-3) var(--space-5);
	}
	
	/* Reduce motion for users who prefer it */
	@media (prefers-reduced-motion: reduce) {
		.gradient-orb {
			animation: none;
		}
		
		.hero-x, .hero-one, .hero-subtitle-shadow {
			animation: none;
			opacity: 1;
		}
		
		.navbar {
			animation: none;
			opacity: 1;
		}
		
		.service-package {
			transition: none;
		}
		
		.tech-icon {
			transition: none;
		}
	}
}

/* ===== BENTO GRID RESPONSIVE DESIGN ===== */

/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
	.services-section {
		padding: var(--space-6) 0 var(--space-4) 0;
	}
	
	.services-container {
		padding: 0 var(--space-3);
	}
	
	
	.bento-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: var(--space-3);
		max-width: 400px;
		grid-template-areas: 
			"main"
			"ecommerce"
			"saas"
			"ai"
			"mobile"
			"consulting";
	}
	
	.bento-card {
		padding: var(--space-3);
	}
	
	.main-pricing {
		padding: var(--space-4);
	}
	
	.price-big {
		font-size: 2.8rem;
	}
	
	.pricing-title {
		font-size: 1.1rem;
	}
	
	.pricing-desc {
		font-size: 0.9rem;
	}
	
	.tech-grid {
		gap: var(--space-1);
	}
	
	.tech {
		font-size: 0.65rem;
		padding: var(--space-1) var(--space-2);
	}
}

/* Tablet devices (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
	.services-container {
		padding: 0 var(--space-4);
	}
	
	.bento-grid {
		grid-template-columns: repeat(3, 1fr);
		max-width: 800px;
		grid-template-areas: 
			"main main ecommerce"
			"main main saas"
			"ai mobile consulting";
	}
}

/* Large tablets and small desktops (1024px to 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
	.bento-grid {
		max-width: 900px;
	}
}

/* Performance optimizations for mobile */
@media (max-width: 1023px) {
	.bento-card {
		transition: transform 0.3s ease, box-shadow 0.3s ease;
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
	}
	
	.bento-card:hover {
		transform: translateY(-2px);
	}
}

/* ===== MODAL RESPONSIVE DESIGN ===== */

/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
	.modal-container {
		width: 95vw;
		height: 85vh;
		max-width: none;
		max-height: none;
	}
	
	.modal-header {
		padding: var(--space-3) var(--space-4);
	}
	
	.modal-title {
		font-size: 1.1rem;
	}
	
	.modal-close {
		width: 35px;
		height: 35px;
		font-size: 1.5rem;
	}
	
	.modal-content {
		padding: var(--space-3) var(--space-4);
		height: calc(100% - 70px);
		gap: var(--space-3);
	}
	
	
	.nav-btn {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}
	
	.example-title {
		font-size: 1rem;
	}
	
	.example-desc {
		font-size: 0.85rem;
	}
	
	.iframe-overlay {
		top: var(--space-2);
		right: var(--space-2);
	}
	
	.open-link {
		padding: var(--space-1) var(--space-2);
		font-size: 0.75rem;
	}
}

/* Tablet devices (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
	.modal-container {
		width: 90vw;
		height: 80vh;
	}
	
	.modal-header {
		padding: var(--space-3) var(--space-4);
	}
	
	.modal-content {
		padding: var(--space-3) var(--space-4);
		height: calc(100% - 75px);
	}
}

/* ===== FOOTER SECTION ===== */
.footer-section {
	background: linear-gradient(to bottom, var(--dark) 0%, #0a0a0a 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: var(--space-6) 0 0 0;
	position: relative;
	overflow: hidden;
}

.footer-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.1) 50%,
		transparent 100%
	);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--space-4);
}

.footer-top {
	padding-bottom: var(--space-6);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: var(--space-6);
}

/* Company Column */
.footer-company {
	padding-right: var(--space-5);
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: var(--space-4);
}

.footer-logo .logo-text {
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--white);
}

.footer-logo .logo-suffix {
	font-size: 1rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
}

.footer-description {
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	margin-bottom: var(--space-4);
	font-size: 0.95rem;
}

.footer-social {
	display: flex;
	gap: var(--space-3);
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.3s ease;
}

.social-link:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	color: var(--white);
	transform: translateY(-2px);
}

/* Footer Column Styles */
.footer-title {
	color: var(--white);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: var(--space-4);
}

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

.footer-links li {
	margin-bottom: var(--space-2);
}

.footer-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.footer-links a:hover {
	color: var(--white);
	transform: translateX(3px);
}

.link-arrow {
	font-size: 0.8rem;
	opacity: 0.7;
}

.disabled-link {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.badge-soon {
	background: rgba(255, 255, 255, 0.1);
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Contact Column */
.footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-contact li {
	margin-bottom: var(--space-3);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.95rem;
}

.contact-label {
	display: inline-block;
	min-width: 70px;
	color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact a:hover {
	color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: var(--space-4) 0;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copyright p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
	margin: 0;
}

.footer-legal {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}

.footer-legal a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-legal a:hover {
	color: var(--white);
}

.footer-legal .separator {
	color: rgba(255, 255, 255, 0.3);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-5);
	}
	
	.footer-company {
		grid-column: 1 / -1;
		padding-right: 0;
		text-align: center;
	}
	
	.footer-logo {
		justify-content: center;
	}
	
	.footer-social {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.footer-section {
		padding: var(--space-5) 0 0 0;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
		gap: var(--space-5);
		text-align: center;
	}
	
	.footer-links a {
		justify-content: center;
	}
	
	.footer-links a:hover {
		transform: none;
	}
	
	.footer-contact {
		text-align: center;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		gap: var(--space-3);
		text-align: center;
	}
	
	.footer-legal {
		flex-wrap: wrap;
		justify-content: center;
	}
}