/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Main stylesheet for TECNIS STUDIO website */

:root {
	/* Premium Gradient Palette - Red/Yellow Theme */
	--primary-color: #ef4444;
	--secondary-color: #f59e0b;
	--accent-color: #fbbf24;
	--accent-gold: #f59e0b;
	--text-dark: #1a1a1a;
	--text-light: #6b7280;
	--bg-light: #1a0a0a;
	--bg-white: rgba(255, 255, 255, 0.05);
	--bg-glass: rgba(255, 255, 255, 0.1);
	--border-color: rgba(255, 255, 255, 0.2);
	--shadow: 0 8px 32px 0 rgba(239, 68, 68, 0.15);
	--shadow-lg: 0 20px 60px 0 rgba(239, 68, 68, 0.25);
	--shadow-neo: 8px 8px 16px rgba(0, 0, 0, 0.3), -8px -8px 16px rgba(255, 255, 255, 0.05);
	--shadow-neo-inset: inset 8px 8px 16px rgba(0, 0, 0, 0.3), inset -8px -8px 16px rgba(255, 255, 255, 0.05);
	--gradient-primary: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #f59e0b 100%);
	--gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
	--gradient-premium: linear-gradient(135deg, #ef4444 0%, #f97316 25%, #f59e0b 50%, #fbbf24 75%, #fcd34d 100%);
	--gradient-text: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #f59e0b 100%);
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #ffffff;
	background: linear-gradient(135deg, #1a0a0a 0%, #2d0f0f 50%, #4a1a1a 100%);
	background-attachment: fixed;
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 40% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
	animation: gradientShift 15s ease infinite;
}

body::after {
	content: '';
	position: fixed;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: 
		radial-gradient(ellipse at 30% 40%, rgba(239, 68, 68, 0.08) 0%, transparent 40%),
		radial-gradient(ellipse at 70% 60%, rgba(245, 158, 11, 0.08) 0%, transparent 40%);
	pointer-events: none;
	z-index: 0;
	animation: rotateBackground 20s linear infinite;
}

@keyframes gradientShift {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.8; }
}

@keyframes rotateBackground {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

/* Cookie Notice */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(26, 10, 10, 0.95);
	backdrop-filter: blur(20px) saturate(180%);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--bg-white);
	padding: 20px;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.cookie-content p {
	margin: 0;
	flex: 1;
	min-width: 250px;
}

.cookie-content a {
	color: var(--accent-color);
	text-decoration: underline;
}

.cookie-btn {
	background: var(--gradient-primary);
	color: white;
	border: none;
	padding: 12px 24px;
	cursor: pointer;
	border-radius: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.cookie-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
	filter: brightness(1.1);
}

/* Header - Glassmorphism */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(26, 10, 10, 0.7);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
	background: rgba(26, 10, 10, 0.85);
	box-shadow: 0 8px 32px 0 rgba(239, 68, 68, 0.2);
}

.navbar {
	padding: 1rem 0;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.logo:hover {
	transform: scale(1.05);
	filter: brightness(1.2);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	padding: 8px 16px;
	border-radius: 8px;
}

.nav-link:hover {
	color: #ffffff;
	background: rgba(239, 68, 68, 0.2);
	transform: translateY(-2px);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	border-radius: 2px;
	transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
	width: 60%;
}

.burger-menu {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	gap: 5px;
	padding: 5px;
}

.burger-menu span {
	width: 25px;
	height: 3px;
	background: var(--text-dark);
	transition: all 0.3s ease;
	border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
}

.burger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Fullscreen Menu - Glassmorphism */
.fullscreen-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(26, 10, 10, 0.95);
	backdrop-filter: blur(30px) saturate(180%);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu.active {
	opacity: 1;
	visibility: visible;
}

.close-menu {
	position: absolute;
	top: 30px;
	right: 30px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	font-size: 2.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.close-menu:hover {
	background: var(--gradient-primary);
	border-color: transparent;
	transform: rotate(90deg) scale(1.1);
}

.fullscreen-nav ul {
	list-style: none;
	text-align: center;
}

.fullscreen-nav li {
	margin: 2rem 0;
	opacity: 0;
	transform: translateY(30px);
}

.fullscreen-menu.active .fullscreen-nav li {
	animation: fadeInUpMenu 0.6s ease forwards;
}

.fullscreen-menu.active .fullscreen-nav li:nth-child(1) { animation-delay: 0.1s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(2) { animation-delay: 0.2s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(3) { animation-delay: 0.3s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(4) { animation-delay: 0.4s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(5) { animation-delay: 0.5s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(6) { animation-delay: 0.6s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(7) { animation-delay: 0.7s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUpMenu {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fullscreen-link {
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 700;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.fullscreen-link::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 2px;
	transition: width 0.3s ease;
}

.fullscreen-link:hover {
	transform: scale(1.1);
	filter: brightness(1.2);
}

.fullscreen-link:hover::after {
	width: 100%;
}

/* Hero Section - Unique Split Layout */
.hero-section {
	position: relative;
	min-height: 100vh;
	margin-top: 70px;
	display: flex;
	flex-direction: column;
	background: #1a0a0a;
	overflow: hidden;
}

.hero-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	min-height: calc(100vh - 70px);
	position: relative;
}

/* Left Side - Main Content */
.hero-main {
	padding: 80px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.hero-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 40px;
	opacity: 0;
	animation: slideInLeft 0.8s ease 0.2s forwards;
}

.label-line {
	width: 60px;
	height: 2px;
	background: var(--gradient-primary);
}

.label-text {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}

.hero-heading {
	font-size: clamp(3rem, 7vw, 6rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 30px;
	letter-spacing: -0.03em;
}

.heading-word {
	display: block;
	opacity: 0;
	transform: translateX(-50px);
	animation: wordSlideIn 0.8s ease forwards;
}

.heading-word:nth-child(1) { animation-delay: 0.4s; }
.heading-word:nth-child(2) { animation-delay: 0.6s; }
.heading-word:nth-child(3) { animation-delay: 0.8s; }
.heading-word:nth-child(4) { animation-delay: 1s; }

.heading-word.highlight {
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	display: inline-block;
}

.heading-word.highlight::before {
	content: '';
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 80%;
	background: var(--gradient-primary);
	border-radius: 2px;
	opacity: 0;
	animation: lineAppear 0.5s ease 1.2s forwards;
}

@keyframes wordSlideIn {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes lineAppear {
	to {
		opacity: 1;
	}
}

@keyframes slideInLeft {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.hero-description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 40px;
	max-width: 500px;
	opacity: 0;
	animation: fadeInUp 0.8s ease 1.2s forwards;
}

.hero-actions {
	display: flex;
	gap: 20px;
	margin-bottom: 60px;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeInUp 0.8s ease 1.4s forwards;
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.hero-cta.primary {
	background: var(--gradient-primary);
	color: white;
}

.hero-cta.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

.hero-cta.secondary {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-cta.secondary:hover {
	border-color: rgba(239, 68, 68, 0.5);
	background: rgba(239, 68, 68, 0.1);
}

.cta-arrow {
	transition: transform 0.3s ease;
}

.hero-cta:hover .cta-arrow {
	transform: translateX(5px);
}

.hero-metrics {
	display: flex;
	gap: 40px;
	opacity: 0;
	animation: fadeInUp 0.8s ease 1.6s forwards;
}

.metric {
	display: flex;
	flex-direction: column;
}

.metric-value {
	font-size: 2.5rem;
	font-weight: 800;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 8px;
}

.metric-label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.metric-divider {
	width: 1px;
	background: rgba(255, 255, 255, 0.1);
	align-self: stretch;
}

/* Right Side - Visual */
.hero-visual {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.visual-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px;
}

.visual-image {
	position: relative;
	width: 100%;
	max-width: 500px;
	aspect-ratio: 1;
	border-radius: 20px;
	overflow: hidden;
	z-index: 2;
	transform: rotate(-5deg);
	transition: transform 0.5s ease;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.visual-image:hover {
	transform: rotate(0deg) scale(1.05);
}

.hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.visual-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(245, 158, 11, 0.2) 100%);
	z-index: 1;
}

.visual-grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 2px;
	opacity: 0.1;
	z-index: 1;
}

.grid-item {
	background: var(--gradient-primary);
	border-radius: 4px;
	animation: gridPulse 3s ease-in-out infinite;
}

.grid-item:nth-child(1) { animation-delay: 0s; }
.grid-item:nth-child(2) { animation-delay: 0.3s; }
.grid-item:nth-child(3) { animation-delay: 0.6s; }
.grid-item:nth-child(4) { animation-delay: 0.2s; }
.grid-item:nth-child(5) { animation-delay: 0.5s; }
.grid-item:nth-child(6) { animation-delay: 0.8s; }
.grid-item:nth-child(7) { animation-delay: 0.1s; }
.grid-item:nth-child(8) { animation-delay: 0.4s; }
.grid-item:nth-child(9) { animation-delay: 0.7s; }

@keyframes gridPulse {
	0%, 100% { opacity: 0.1; transform: scale(1); }
	50% { opacity: 0.3; transform: scale(1.1); }
}

.visual-accent {
	position: absolute;
	border-radius: 50%;
	background: var(--gradient-primary);
	filter: blur(60px);
	opacity: 0.3;
	z-index: 0;
}

.accent-1 {
	width: 300px;
	height: 300px;
	top: 10%;
	right: 10%;
	animation: floatAccent 8s ease-in-out infinite;
}

.accent-2 {
	width: 200px;
	height: 200px;
	bottom: 20%;
	left: 10%;
	animation: floatAccent 10s ease-in-out infinite reverse;
}

.accent-3 {
	width: 150px;
	height: 150px;
	top: 50%;
	right: 30%;
	animation: floatAccent 12s ease-in-out infinite;
}

@keyframes floatAccent {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(30px, -30px); }
}

/* Bottom Navigation */
.hero-nav {
	display: flex;
	justify-content: center;
	gap: 60px;
	padding: 30px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(26, 10, 10, 0.5);
	backdrop-filter: blur(10px);
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 8px;
	transition: all 0.3s ease;
	opacity: 0.6;
}

.nav-item:hover,
.nav-item.active {
	opacity: 1;
	background: rgba(239, 68, 68, 0.1);
}

.nav-number {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--primary-color);
}

.nav-label {
	font-size: 0.875rem;
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background: var(--gradient-primary);
	color: white;
	border: none;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4);
	filter: brightness(1.1);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.btn-secondary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.btn-secondary:hover::before {
	width: 300px;
	height: 300px;
}

.btn-secondary:hover {
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-3px);
	color: white;
}

/* Section Styles */
section {
	padding: 120px 0;
	position: relative;
	z-index: 1;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: clamp(2rem, 6vw, 4rem);
	font-weight: 800;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease forwards;
}

.section-subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: rgba(255, 255, 255, 0.7);
	max-width: 600px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 1s ease 0.2s forwards;
}

/* Services Section - Glassmorphism Cards */
.services-section {
	background: transparent;
	position: relative;
	padding: 120px 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.service-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2.5rem;
	border-radius: 24px;
	box-shadow: var(--shadow-neo);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(40px) scale(0.95);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
}

.service-card:hover::before {
	opacity: 0.1;
}

.service-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 60px rgba(239, 68, 68, 0.3), var(--shadow-neo);
	border-color: rgba(239, 68, 68, 0.5);
	background: rgba(255, 255, 255, 0.08);
}

.service-card.animate {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.service-icon {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 1.5rem;
	background: var(--bg-light);
}

.service-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card h3 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	color: #ffffff;
	font-weight: 700;
	transition: all 0.3s ease;
}

.service-card:hover h3 {
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service-card p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1.5rem;
	line-height: 1.8;
	transition: color 0.3s ease;
}

.service-card:hover p {
	color: rgba(255, 255, 255, 0.9);
}

.service-features {
	list-style: none;
}

.service-features li {
	padding: 0.5rem 0;
	color: var(--text-light);
	position: relative;
	padding-left: 1.5rem;
}

.service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: bold;
	font-size: 1.2em;
}

/* Portfolio Section */
.portfolio-filter {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 12px 28px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	color: rgba(255, 255, 255, 0.8);
	position: relative;
	overflow: hidden;
}

.filter-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: var(--gradient-primary);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.4s ease, height 0.4s ease;
	z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
	color: white;
	border-color: rgba(239, 68, 68, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.filter-btn.active::before,
.filter-btn:hover::before {
	width: 200px;
	height: 200px;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
}

.portfolio-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4/3;
	cursor: pointer;
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(239, 68, 68, 0.95), rgba(249, 115, 22, 0.7), transparent);
	backdrop-filter: blur(5px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2rem;
	color: white;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateY(20px);
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
	transform: translateY(0);
}

.portfolio-item:hover img {
	transform: scale(1.1);
}

.portfolio-overlay h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.portfolio-overlay p {
	margin-bottom: 1rem;
	opacity: 0.9;
}

.portfolio-link {
	color: white;
	text-decoration: underline;
	font-weight: 600;
}

/* About Section - Asymmetric Grid */
.about-content {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 4rem;
	align-items: center;
}

.about-text p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1.5rem;
	line-height: 1.8;
	font-size: 1.125rem;
}

.about-stats {
	display: flex;
	gap: 3rem;
	margin-top: 2rem;
}

.stat-item {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 0.5rem;
}

.about-image {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-neo);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.4s ease;
}

.about-image:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 60px rgba(239, 68, 68, 0.3);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Process Section */
.process-section {
	background: transparent;
	position: relative;
}

.process-accordion {
	max-width: 900px;
	margin: 0 auto;
}

.accordion-item {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	margin-bottom: 1.5rem;
	box-shadow: var(--shadow-neo);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:hover {
	border-color: rgba(99, 102, 241, 0.5);
	box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.accordion-header {
	width: 100%;
	padding: 1.5rem 2rem;
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	cursor: pointer;
	text-align: left;
	transition: all 0.3s ease;
}

.accordion-header:hover {
	background: rgba(239, 68, 68, 0.1);
}

.accordion-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	min-width: 50px;
}

.accordion-header h3 {
	flex: 1;
	font-size: 1.25rem;
	color: #ffffff;
	font-weight: 600;
}

.accordion-icon {
	font-size: 2rem;
	color: var(--primary-color);
	transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
	transform: rotate(45deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
	max-height: 500px;
}

.accordion-content {
	padding: 0 2rem;
}

.accordion-content p {
	padding: 1.5rem 0;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

.accordion-content ul {
	list-style: none;
	padding-bottom: 1.5rem;
}

.accordion-content li {
	padding: 0.5rem 0;
	color: rgba(255, 255, 255, 0.7);
	position: relative;
	padding-left: 1.5rem;
}

.accordion-content li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--primary-color);
}

/* Technologies Section */
.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.tech-item {
	background: var(--bg-light);
	padding: 2rem;
	border-radius: 12px;
	border-left: 4px solid var(--primary-color);
}

.tech-item h4 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: #ffffff;
	font-weight: 700;
}

.tech-item ul {
	list-style: none;
}

.tech-item li {
	padding: 0.5rem 0;
	color: rgba(255, 255, 255, 0.7);
	position: relative;
	padding-left: 1.5rem;
}

.tech-item li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-size: 1.5rem;
	line-height: 1;
}

/* Testimonials Section */
.testimonials-section {
	background: transparent;
	position: relative;
}

.testimonials-slider {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	min-height: 300px;
}

.testimonial-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 1;
}

.testimonial-item.active {
	position: relative;
	opacity: 1;
	z-index: 2;
}

.testimonial-content {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 3rem;
	border-radius: 24px;
	box-shadow: var(--shadow-neo);
	text-align: center;
	transition: all 0.4s ease;
}

.testimonial-content:hover {
	box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
	border-color: rgba(99, 102, 241, 0.5);
}

.testimonial-text {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
	margin-bottom: 2rem;
	font-style: italic;
}

.testimonial-author strong {
	display: block;
	font-size: 1.125rem;
	color: #ffffff;
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.testimonial-author span {
	color: rgba(255, 255, 255, 0.7);
}

.testimonial-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 2rem;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-prev:hover,
.testimonial-next:hover {
	background: var(--gradient-primary);
	border-color: transparent;
	transform: scale(1.15) rotate(5deg);
	box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: #ffffff;
	font-weight: 700;
}

.contact-item p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

.contact-item a {
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.contact-item a:hover {
	filter: brightness(1.3);
	text-decoration: underline;
}

.contact-form-wrapper {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2.5rem;
	border-radius: 24px;
	box-shadow: var(--shadow-neo);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #ffffff;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	font-family: inherit;
	font-size: 1rem;
	color: #ffffff;
	transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: rgba(239, 68, 68, 0.6);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Footer */
.footer {
	background: rgba(26, 10, 10, 0.8);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: white;
	padding: 4rem 0 2rem;
	position: relative;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h3 {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: white;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.footer-links a::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s ease;
}

.footer-links a:hover {
	color: white;
	padding-left: 5px;
}

.footer-links a:hover::before {
	width: 100%;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 2rem;
	text-align: center;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.5rem;
}

.business-id {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 968px) {
	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		background: rgba(26, 10, 10, 0.95);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 2rem;
		box-shadow: var(--shadow-lg);
		transition: left 0.3s ease;
		gap: 1.5rem;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.nav-menu.active {
		left: 0;
	}

	.burger-menu {
		display: flex;
	}
	
	.burger-menu span {
		background: #ffffff;
	}
	
	.fullscreen-menu {
		display: none;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.125rem;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.about-stats {
		justify-content: space-around;
		gap: 1rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
	}

	.services-grid,
	.portfolio-grid,
	.tech-grid {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 2rem;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-btn {
		width: 100%;
	}
}

@media (max-width: 968px) {
	.hero-container {
		grid-template-columns: 1fr;
	}
	
	.hero-main {
		padding: 60px 40px;
		text-align: center;
		align-items: center;
	}
	
	.hero-description {
		max-width: 100%;
	}
	
	.hero-visual {
		min-height: 400px;
	}
	
	.visual-wrapper {
		padding: 40px;
	}
	
	.visual-image {
		max-width: 400px;
	}
	
	.hero-nav {
		gap: 30px;
		flex-wrap: wrap;
	}
}

@media (max-width: 640px) {
	.hero-main {
		padding: 40px 20px;
	}
	
	.hero-heading {
		font-size: clamp(2rem, 8vw, 3rem);
	}
	
	.hero-description {
		font-size: 1rem;
	}
	
	.hero-actions {
		flex-direction: column;
		width: 100%;
	}
	
	.hero-cta {
		width: 100%;
		justify-content: center;
	}
	
	.hero-metrics {
		gap: 20px;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.metric-divider {
		display: none;
	}
	
	.metric-value {
		font-size: 2rem;
	}
	
	.visual-wrapper {
		padding: 20px;
	}
	
	.visual-image {
		max-width: 100%;
	}
	
	.hero-nav {
		gap: 15px;
		padding: 20px 10px;
	}
	
	.nav-item {
		padding: 8px 12px;
	}
	
	.nav-label {
		display: none;
	}
}

	.section-title {
		font-size: 1.75rem;
	}

	.about-stats {
		flex-direction: column;
		gap: 2rem;
	}

	.testimonial-content {
		padding: 2rem 1.5rem;
	}

	.contact-form-wrapper {
		padding: 1.5rem;
	}
	
	.about-content {
		grid-template-columns: 1fr;
	}
	
	section {
		padding: 80px 0;
	}
}

/* Policy Pages Styles */
.policy-page {
	padding-top: 100px;
	padding-bottom: 80px;
	min-height: 100vh;
}

.policy-content {
	max-width: 900px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 3rem;
	border-radius: 24px;
	box-shadow: var(--shadow-neo);
}

.policy-content h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.policy-content h2 {
	font-size: 1.75rem;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	color: #ffffff;
}

.policy-content h3 {
	font-size: 1.25rem;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	color: #ffffff;
}

.policy-content p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
	margin-left: 2rem;
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

.policy-content li {
	margin-bottom: 0.5rem;
}

.policy-content a {
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	transition: all 0.3s ease;
}

.policy-content a:hover {
	filter: brightness(1.3);
	text-decoration: underline;
}

.last-updated {
	color: rgba(255, 255, 255, 0.6);
	font-style: italic;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Thanks Page */
.thanks-page {
	padding-top: 150px;
	padding-bottom: 100px;
	min-height: 100vh;
	text-align: center;
}

.thanks-content {
	max-width: 600px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 3rem;
	border-radius: 24px;
	box-shadow: var(--shadow-neo);
}

.thanks-content h1 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.thanks-content p {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	margin-bottom: 2rem;
}
