/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Premium Triad Color Palette - Blue, Purple, Pink */
	--primary-blue: #6366f1;
	--primary-purple: #a855f7;
	--primary-pink: #ec4899;
	--dark-bg: #0a0a0f;
	--dark-surface: #151520;
	--text-light: #e0e0e8;
	--text-muted: #9ca3af;
	--glass-bg: rgba(255, 255, 255, 0.05);
	--glass-border: rgba(255, 255, 255, 0.1);
	--shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
	--shadow-glow-purple: 0 0 40px rgba(168, 85, 247, 0.3);
	--shadow-glow-pink: 0 0 40px rgba(236, 72, 153, 0.3);
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.7;
	color: var(--text-light);
	background: var(--dark-bg);
	overflow-x: hidden;
	position: relative;
}

/* Animated Gradient Background */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, 
		var(--dark-bg) 0%, 
		#1a1a2e 25%, 
		#16213e 50%, 
		#0f3460 75%, 
		var(--dark-bg) 100%);
	background-size: 400% 400%;
	animation: gradientShift 15s ease infinite;
	z-index: -2;
	opacity: 0.8;
}

@keyframes gradientShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

/* Floating Abstract Shapes */
body::after {
	content: '';
	position: fixed;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
				radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
				radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
	animation: floatShapes 20s ease-in-out infinite;
	z-index: -1;
	pointer-events: none;
}

@keyframes floatShapes {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	33% { transform: translate(30px, -30px) rotate(120deg); }
	66% { transform: translate(-30px, 30px) rotate(240deg); }
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
}

/* Premium Glassmorphism Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(10, 10, 15, 0.7);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid var(--glass-border);
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header.scrolled {
	background: rgba(10, 10, 15, 0.95);
	box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
}

.navbar {
	padding: 1.5rem 0;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.logo-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}
.logo-tagline {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-muted);
	margin-top: 2px;
	opacity: 0.9;
}

.logo {
	font-size: 1.75rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple), var(--primary-pink));
	-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);
	letter-spacing: -0.5px;
	position: relative;
}

.logo::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
	transition: width 0.4s ease;
}

.logo:hover::after {
	width: 100%;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	align-items: center;
}

.nav-link {
	text-decoration: none;
	color: var(--text-light);
	font-weight: 500;
	font-size: 0.95rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	padding: 0.5rem 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nav-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
	transform: translateX(-50%);
	transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-blue);
	text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.nav-link:hover::before,
.nav-link.active::before {
	width: 100%;
}

.burger-menu {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	gap: 6px;
	z-index: 1001;
}

.burger-menu span {
	width: 28px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(9px, 9px);
	background: var(--primary-pink);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
	transform: translateX(-20px);
}

.burger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(9px, -9px);
	background: var(--primary-purple);
}

/* Fullscreen Menu */
.fullscreen-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(10, 10, 15, 0.98);
	backdrop-filter: blur(30px);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu.active {
	opacity: 1;
	visibility: visible;
}

.fullscreen-menu ul {
	list-style: none;
	text-align: center;
}

.fullscreen-menu li {
	margin: 2rem 0;
}

.fullscreen-menu a {
	font-size: 3rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.fullscreen-menu a:hover {
	transform: scale(1.1);
	filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

/* Cookie Notice - Glassmorphism */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(21, 21, 32, 0.9);
	backdrop-filter: blur(20px);
	border-top: 1px solid var(--glass-border);
	color: var(--text-light);
	padding: 2rem;
	z-index: 9999;
	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.4);
}

.cookie-notice.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.cookie-content p {
	margin: 0;
	flex: 1;
	min-width: 250px;
	line-height: 1.8;
}

.cookie-content a {
	color: var(--primary-blue);
	text-decoration: underline;
	transition: color 0.3s ease;
}

.cookie-content a:hover {
	color: var(--primary-pink);
}

.cookie-btn {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
	color: white;
	border: none;
	padding: 1rem 2.5rem;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-glow);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cookie-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow-purple);
	background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
}

/* Hero Section - Premium with Parallax */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: 80px;
	padding: 4rem 0;
}

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

.hero-img-main {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.3;
	filter: blur(2px);
	transform: scale(1.1);
	transition: transform 0.3s ease;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse at center, 
		rgba(99, 102, 241, 0.2) 0%, 
		rgba(168, 85, 247, 0.15) 50%, 
		rgba(10, 10, 15, 0.9) 100%);
}

/* Hero decorative shapes */
.hero-deco {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	opacity: 0.15;
}
.hero-deco-1 {
	width: 400px;
	height: 400px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
	top: 10%;
	right: 5%;
	filter: blur(80px);
	animation: floatDeco 8s ease-in-out infinite;
}
.hero-deco-2 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
	bottom: 20%;
	left: 5%;
	filter: blur(60px);
	animation: floatDeco 10s ease-in-out infinite reverse;
}
@keyframes floatDeco {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-content {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 4rem 0;
	text-align: center;
}

.hero-text {
	margin-bottom: 4rem;
}

/* Massive Typography with Gradient */
.hero-title {
	font-size: clamp(3rem, 8vw, 7rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, 
		var(--primary-blue) 0%, 
		var(--primary-purple) 50%, 
		var(--primary-pink) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: gradientText 5s ease infinite;
	letter-spacing: -3px;
	text-transform: uppercase;
	filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.5));
}

@keyframes gradientText {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.title-line {
	display: block;
	opacity: 0;
	animation: fadeInUp 1s ease forwards;
}

.title-line:nth-child(1) {
	animation-delay: 0.2s;
}

.title-line:nth-child(2) {
	animation-delay: 0.4s;
}

.title-line.highlight {
	background: linear-gradient(135deg, var(--primary-pink), #ff6b9d);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.hero-description {
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	margin-bottom: 3rem;
	opacity: 0.9;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	color: var(--text-light);
	line-height: 1.8;
	font-weight: 300;
	animation: fadeInUp 1s ease 0.6s forwards;
	opacity: 0;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease 0.8s forwards;
	opacity: 0;
}

.btn {
	padding: 1.25rem 3rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	font-size: 1rem;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	position: relative;
	overflow: hidden;
}

.btn::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:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
	color: white;
	box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: var(--shadow-glow-purple);
	background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
}

.btn-secondary {
	background: transparent;
	color: var(--text-light);
	border: 2px solid var(--glass-border);
	backdrop-filter: blur(10px);
}

.btn-secondary:hover {
	background: var(--glass-bg);
	border-color: var(--primary-blue);
	color: var(--primary-blue);
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
	transform: translateY(-3px);
}

/* Floating Stats */
.hero-stats {
	display: flex;
	justify-content: center;
	gap: 5rem;
	margin-top: 5rem;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease 1s forwards;
	opacity: 0;
}

.stat-item {
	text-align: center;
	padding: 2rem;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.stat-item::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.stat-item:hover {
	transform: translateY(-10px) scale(1.05);
	border-color: var(--primary-blue);
	box-shadow: var(--shadow-glow);
}

.stat-item:hover::before {
	opacity: 1;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
	display: block;
}

.stat-label {
	font-size: 0.95rem;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-light);
}

.hero-scroll-indicator {
	position: absolute;
	bottom: 3rem;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: var(--text-light);
	font-size: 0.875rem;
	opacity: 0.7;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.scroll-arrow {
	width: 24px;
	height: 24px;
	border-right: 3px solid var(--primary-blue);
	border-bottom: 3px solid var(--primary-blue);
	transform: rotate(45deg);
	margin: 1rem auto;
	animation: bounceArrow 2s infinite;
	filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
}

@keyframes bounceArrow {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0) rotate(45deg);
	}
	40% {
		transform: translateY(-15px) rotate(45deg);
	}
	60% {
		transform: translateY(-8px) rotate(45deg);
	}
}

/* Section Styles */
section {
	padding: 8rem 0;
	position: relative;
}
/* Subtle pattern overlay on alternating sections */
.services-section::before,
.portfolio-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(99, 102, 241, 0.08) 1px, transparent 0);
	background-size: 40px 40px;
	pointer-events: none;
	z-index: 0;
}
.services-section .container,
.portfolio-section .container {
	position: relative;
	z-index: 1;
}

/* Section decorative dividers */
.section-divider {
	height: 1px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	background: linear-gradient(90deg, transparent, var(--primary-blue), var(--primary-purple), var(--primary-pink), transparent);
	opacity: 0.4;
}
.section-divider-top { margin-bottom: 2rem; }
.section-divider-bottom { margin-top: 4rem; }

.section-badge {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--primary-blue);
	margin-bottom: 1rem;
	padding: 0.5rem 1.25rem;
	background: rgba(99, 102, 241, 0.15);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	transition: all 0.3s ease;
}
.section-header:hover .section-badge {
	background: rgba(99, 102, 241, 0.25);
	border-color: var(--primary-blue);
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.section-header {
	text-align: center;
	margin-bottom: 5rem;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header.visible {
	opacity: 1;
	transform: translateY(0);
}

.section-title {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 900;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
	letter-spacing: -2px;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
	border-radius: 2px;
}

.section-subtitle {
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	color: var(--text-muted);
	max-width: 800px;
	margin: 2rem auto 0;
	line-height: 1.8;
	font-weight: 300;
}

/* Services Section - Cascading Cards */
.services-section {
	background: transparent;
	position: relative;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.service-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid var(--glass-border);
	padding: 3rem 2.5rem;
	border-radius: 24px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(50px) scale(0.9);
}
.service-card-accent {
	position: absolute;
	top: 0;
	right: 0;
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, var(--primary-blue), transparent);
	border-radius: 0 24px 0 100%;
	opacity: 0.2;
	transition: opacity 0.4s ease;
}
.service-card:hover .service-card-accent {
	opacity: 0.35;
}

.service-card.visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, 
		transparent, 
		rgba(99, 102, 241, 0.1), 
		transparent);
	transition: left 0.6s ease;
}

.service-card:hover::before {
	left: 100%;
}

.service-card:hover {
	transform: translateY(-15px) scale(1.02);
	border-color: var(--primary-blue);
	box-shadow: var(--shadow-glow);
	background: rgba(99, 102, 241, 0.1);
}

.service-icon {
	width: 100px;
	height: 100px;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 2rem;
	position: relative;
	transition: all 0.4s ease;
}

.service-icon::after {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.service-card:hover .service-icon::after {
	opacity: 1;
	filter: blur(10px);
}

.service-card:hover .service-icon {
	transform: rotate(5deg) scale(1.1);
}

.service-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.service-card h3 {
	font-size: 1.75rem;
	margin-bottom: 1.25rem;
	color: var(--text-light);
	font-weight: 700;
	transition: color 0.3s ease;
}

.service-card:hover h3 {
	color: var(--primary-blue);
	text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.service-card p {
	color: var(--text-muted);
	margin-bottom: 2rem;
	line-height: 1.8;
	font-size: 1.05rem;
}

.service-features {
	list-style: none;
}

.service-features li {
	padding: 0.75rem 0;
	color: var(--text-light);
	position: relative;
	padding-left: 2rem;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary-blue);
	font-weight: bold;
	font-size: 1.25rem;
	transition: all 0.3s ease;
}

.service-card:hover .service-features li::before {
	color: var(--primary-pink);
	transform: scale(1.2);
}

.service-features li:hover {
	padding-left: 2.5rem;
	color: var(--primary-blue);
}

/* Process Section - Accordion with Glassmorphism */
.process-section {
	background: transparent;
}

.process-accordion {
	max-width: 1000px;
	margin: 0 auto;
}

.accordion-item {
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	margin-bottom: 1.5rem;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	opacity: 0;
	transform: translateX(-50px);
}

.accordion-item.visible {
	opacity: 1;
	transform: translateX(0);
}

.accordion-item.active {
	border-color: var(--primary-blue);
	box-shadow: var(--shadow-glow);
	background: rgba(99, 102, 241, 0.15);
	transform: scale(1.02);
}

.accordion-header {
	padding: 2rem;
	background: transparent;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	position: relative;
}

.accordion-header::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--primary-blue), var(--primary-pink));
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::before {
	transform: scaleY(1);
}

.accordion-header h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-light);
	transition: all 0.3s ease;
}

.accordion-item.active .accordion-header h3 {
	color: var(--primary-blue);
	text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.accordion-icon {
	font-size: 2rem;
	font-weight: 300;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	color: var(--primary-blue);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(99, 102, 241, 0.1);
}

.accordion-item.active .accordion-icon {
	transform: rotate(45deg);
	background: rgba(99, 102, 241, 0.3);
	color: var(--primary-pink);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body {
	padding: 0 2rem 2rem;
}

.accordion-body p {
	margin-bottom: 1.5rem;
	color: var(--text-muted);
	line-height: 1.8;
	font-size: 1.05rem;
}

.accordion-body ul {
	list-style: none;
	padding-left: 0;
}

.accordion-body li {
	padding: 0.75rem 0;
	padding-left: 2rem;
	position: relative;
	color: var(--text-light);
	transition: all 0.3s ease;
}

.accordion-body li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--primary-purple);
	font-weight: bold;
	font-size: 1.25rem;
	transition: all 0.3s ease;
}

.accordion-body li:hover {
	padding-left: 2.5rem;
	color: var(--primary-blue);
}

.accordion-body li:hover::before {
	color: var(--primary-pink);
	transform: translateX(5px);
}

/* Technologies Section */
.technologies-section {
	background: transparent;
	position: relative;
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.tech-item {
	text-align: center;
	padding: 2.5rem 2rem;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: scale(0.8) rotate(5deg);
}

.tech-item.visible {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}

.tech-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, 
		rgba(99, 102, 241, 0.2) 0%, 
		transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 20px;
}

.tech-item::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
	border-radius: 50%;
	pointer-events: none;
}

.tech-item:hover::after {
	width: 200px;
	height: 200px;
}

.tech-item:hover {
	transform: translateY(-10px) scale(1.05);
	border-color: var(--primary-blue);
	box-shadow: var(--shadow-glow);
}

.tech-item:hover::before {
	opacity: 1;
}

.tech-icon {
	width: 90px;
	height: 90px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.tech-icon svg {
	width: 100%;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-item:hover .tech-icon {
	transform: scale(1.15) rotate(-5deg);
	filter: drop-shadow(0 8px 24px rgba(99, 102, 241, 0.6));
}

.tech-item:hover .tech-icon svg {
	transform: scale(1.1);
}

/* Specific icon hover effects */
.tech-item:hover .tech-icon svg circle,
.tech-item:hover .tech-icon svg rect,
.tech-item:hover .tech-icon svg path,
.tech-item:hover .tech-icon svg ellipse {
	animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.8;
	}
}

.tech-item h4 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: var(--text-light);
	font-weight: 700;
	transition: color 0.3s ease;
}

.tech-item:hover h4 {
	color: var(--primary-blue);
}

.tech-item p {
	font-size: 0.9rem;
	color: var(--text-muted);
}

/* Languages section - language flags */
.languages-section .languages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 2rem;
}
.lang-item .lang-flag {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	font-weight: 900;
	color: white;
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-flag.lang-en { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.lang-flag.lang-es { background: linear-gradient(135deg, #c2410c, #ea580c); }
.lang-flag.lang-fr { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.lang-flag.lang-de { background: linear-gradient(135deg, #1f2937, #4b5563); }
.lang-flag.lang-it { background: linear-gradient(135deg, #166534, #22c55e); }
.lang-flag.lang-more { background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink)); }
.lang-item:hover .lang-flag {
	transform: scale(1.1) rotate(-3deg);
	box-shadow: var(--shadow-glow);
}

/* Portfolio Section - Asymmetric Grid */
.portfolio-section {
	background: transparent;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	grid-auto-flow: dense;
}

.portfolio-item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 4/3;
	cursor: pointer;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	transform: scale(0.9);
}

.portfolio-item.visible {
	opacity: 1;
	transform: scale(1);
}

.portfolio-item:nth-child(2n) {
	aspect-ratio: 3/4;
}

.portfolio-item:nth-child(3n) {
	grid-column: span 2;
	aspect-ratio: 16/9;
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	filter: brightness(0.7);
}

.portfolio-item:hover {
	transform: scale(1.05);
	border-color: var(--primary-blue);
	box-shadow: var(--shadow-glow);
	z-index: 10;
}

.portfolio-item:hover img {
	transform: scale(1.2) rotate(2deg);
	filter: brightness(1);
}

.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, 
		rgba(10, 10, 15, 0.95) 0%, 
		rgba(10, 10, 15, 0.7) 50%, 
		transparent 100%);
	padding: 2.5rem;
	color: white;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-overlay {
	transform: translateY(0);
}

.portfolio-overlay h3 {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.portfolio-overlay p {
	font-size: 1rem;
	opacity: 0.9;
	line-height: 1.6;
}

/* About Section - Asymmetric Layout */
.about-section {
	background: transparent;
}

.about-content {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 5rem;
	align-items: center;
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content.visible {
	opacity: 1;
	transform: translateX(0);
}

.about-text h2 {
	margin-bottom: 2rem;
	font-size: clamp(2rem, 5vw, 3.5rem);
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -2px;
}

.about-text p {
	margin-bottom: 1.5rem;
	color: var(--text-muted);
	font-size: 1.125rem;
	line-height: 1.9;
	font-weight: 300;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.feature-item {
	text-align: center;
	padding: 2rem 1.5rem;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.feature-item::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.feature-item:hover {
	transform: translateY(-8px);
	border-color: var(--primary-blue);
	box-shadow: var(--shadow-glow);
}

.feature-item:hover::before {
	opacity: 1;
}

.feature-item h4 {
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

.feature-item p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--text-muted);
}

.about-image {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-glow);
	position: relative;
	transform: rotate(-2deg);
	transition: transform 0.4s ease;
}

.about-image:hover {
	transform: rotate(0deg) scale(1.05);
}

.about-image::before {
	content: '';
	position: absolute;
	inset: -4px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
	border-radius: 24px;
	opacity: 0.5;
	z-index: -1;
	filter: blur(20px);
	transition: opacity 0.4s ease;
}

.about-image:hover::before {
	opacity: 0.8;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 24px;
}

/* Contact Section - Radial Layout */
.contact-section {
	background: transparent;
	position: relative;
	padding: 8rem 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.contact-radial-wrapper {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem;
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-radial-wrapper.visible {
	opacity: 1;
	transform: scale(1);
}

/* Radial Contact Cards */
.contact-cards-radial {
	position: relative;
	width: 100%;
	height: 600px;
	margin-bottom: 3rem;
}

.contact-card-radial {
	position: absolute;
	width: 280px;
	padding: 2.5rem 2rem;
	background: var(--glass-bg);
	backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	text-align: center;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	opacity: 0;
	transform: scale(0.8);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-card-radial.visible {
	opacity: 1;
	transform: scale(1);
}

/* Radial Positioning */
.contact-card-radial.card-top {
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-20px);
	animation-delay: 0.1s;
}

.contact-card-radial.card-right {
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(20px);
	animation-delay: 0.2s;
}

.contact-card-radial.card-bottom {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	animation-delay: 0.3s;
}

.contact-card-radial.card-left {
	left: 0;
	top: 50%;
	transform: translateY(-50%) translateX(-20px);
	animation-delay: 0.4s;
}

.contact-card-radial:hover {
	transform: translateY(-50%) translateX(-20px) scale(1.1);
	border-color: var(--primary-blue);
	box-shadow: var(--shadow-glow);
	background: rgba(99, 102, 241, 0.15);
	z-index: 10;
}

.card-top:hover {
	transform: translateX(-50%) translateY(-30px) scale(1.1);
}

.card-right:hover {
	transform: translateY(-50%) translateX(30px) scale(1.1);
}

.card-bottom:hover {
	transform: translateX(-50%) translateY(30px) scale(1.1);
}

.card-left:hover {
	transform: translateY(-50%) translateX(-30px) scale(1.1);
}

.card-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
	border-radius: 16px;
	border: 1px solid var(--glass-border);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.card-icon::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.card-icon svg {
	position: relative;
	z-index: 1;
	color: var(--primary-blue);
	transition: all 0.4s ease;
}

.contact-card-radial:hover .card-icon {
	transform: rotate(5deg) scale(1.1);
	border-color: var(--primary-blue);
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.contact-card-radial:hover .card-icon::before {
	opacity: 1;
}

.contact-card-radial:hover .card-icon svg {
	color: white;
	transform: scale(1.1);
}

.contact-card-radial h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-light);
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

.contact-card-radial:hover h3 {
	background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-card-radial p {
	color: var(--text-muted);
	line-height: 1.8;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.contact-card-radial a {
	color: var(--primary-blue);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 600;
	display: inline-block;
}

.contact-card-radial:hover a {
	color: var(--primary-pink);
	transform: scale(1.05);
}

.card-action {
	margin-top: 1rem;
	padding: 0.75rem 1.5rem;
	background: rgba(99, 102, 241, 0.1);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	color: var(--primary-blue);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(10px);
}

.contact-card-radial:hover .card-action {
	opacity: 1;
	transform: translateY(0);
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
	border-color: var(--primary-blue);
}

/* Central Form */
.contact-form-radial {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding: 4rem 3rem;
	background: var(--glass-bg);
	backdrop-filter: blur(30px) saturate(180%);
	border: 1px solid var(--glass-border);
	border-radius: 32px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 
				0 0 0 1px rgba(99, 102, 241, 0.1),
				inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
	z-index: 5;
}

.contact-form-radial::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
	animation: rotateGradient 15s linear infinite;
	pointer-events: none;
}

@keyframes rotateGradient {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.form-header-radial {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	z-index: 1;
}

.form-header-radial h3 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
	letter-spacing: -1px;
}

.form-header-radial p {
	color: var(--text-muted);
	font-size: 1.125rem;
	line-height: 1.8;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.form-row-radial {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	position: relative;
}

.form-group-full {
	grid-column: 1 / -1;
}

.form-group label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
	color: var(--text-light);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.label-required {
	color: var(--primary-pink);
	font-weight: 700;
}

.form-group input,
.form-group textarea {
	padding: 1.25rem 0;
	background: transparent;
	border: none;
	border-bottom: 2px solid var(--glass-border);
	border-radius: 0;
	font-family: inherit;
	font-size: 1.125rem;
	color: var(--text-light);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 1;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--text-muted);
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
	opacity: 0.3;
}

.input-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--primary-pink));
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2;
}

.textarea-line {
	bottom: 0;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-bottom-color: transparent;
	transform: translateY(-2px);
}

.form-group input:focus + .input-line,
.form-group textarea:focus + .input-line {
	width: 100%;
}

.form-group input.error,
.form-group textarea.error {
	border-bottom-color: #ef4444;
	color: #ef4444;
}

.form-group input.error + .input-line,
.form-group textarea.error + .input-line {
	width: 100%;
	background: linear-gradient(90deg, #ef4444, #dc2626) !important;
	animation: pulseError 0.5s ease;
}

@keyframes pulseError {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
	padding-top: 1.25rem;
	font-family: inherit;
	line-height: 1.8;
}

.btn-submit-radial {
	width: 100%;
	padding: 1.5rem 3rem;
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	position: relative;
	overflow: hidden;
}

.btn-submit-radial svg {
	transition: transform 0.3s ease;
}

.btn-submit-radial:hover svg {
	transform: translateX(5px);
}

.btn-submit-radial::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-submit-radial:hover::before {
	width: 400px;
	height: 400px;
}

/* Footer */
.footer {
	background: rgba(10, 10, 15, 0.95);
	backdrop-filter: blur(20px);
	border-top: 1px solid var(--glass-border);
	color: var(--text-light);
	padding: 5rem 0 2rem;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent, 
		var(--primary-blue), 
		var(--primary-purple), 
		var(--primary-pink), 
		transparent);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 4rem;
	margin-bottom: 4rem;
}

.footer-section h3 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: white;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-section p {
	color: var(--text-muted);
	line-height: 1.9;
	margin-bottom: 1.25rem;
	font-size: 1.05rem;
}

.footer-section a {
	color: var(--text-muted);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.footer-section a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--primary-blue);
	transition: width 0.3s ease;
}

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

.footer-section a:hover::after {
	width: 100%;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 1rem;
}

.footer-bottom {
	border-top: 1px solid var(--glass-border);
	padding-top: 2.5rem;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.8;
}

/* Policy Pages Styles */
.policy-page {
	padding: 10rem 2rem 5rem;
	max-width: 1000px;
	margin: 0 auto;
	background: transparent;
}

.policy-page h1 {
	font-size: clamp(2.5rem, 6vw, 4rem);
	margin-bottom: 2rem;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -2px;
}

.policy-page h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	color: var(--text-light);
	font-weight: 700;
}

.policy-page h3 {
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: var(--primary-blue);
	font-weight: 600;
}

.policy-page p {
	margin-bottom: 1.5rem;
	color: var(--text-muted);
	line-height: 1.9;
	font-size: 1.05rem;
}

.policy-page ul,
.policy-page ol {
	margin-bottom: 2rem;
	padding-left: 2.5rem;
	color: var(--text-muted);
	line-height: 1.9;
}

.policy-page li {
	margin-bottom: 0.75rem;
	font-size: 1.05rem;
}

.policy-page a {
	color: var(--primary-blue);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.policy-page a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--primary-pink);
	transition: width 0.3s ease;
}

.policy-page a:hover {
	color: var(--primary-pink);
}

.policy-page a:hover::after {
	width: 100%;
}

/* Thanks Page */
.thanks-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
	background: transparent;
	position: relative;
}

.thanks-content {
	max-width: 700px;
	background: var(--glass-bg);
	backdrop-filter: blur(30px) saturate(180%);
	border: 1px solid var(--glass-border);
	padding: 5rem 4rem;
	border-radius: 32px;
	box-shadow: var(--shadow-glow);
	position: relative;
	overflow: hidden;
}

.thanks-content::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
	animation: rotateGradient 10s linear infinite;
}

@keyframes rotateGradient {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.thanks-content h1 {
	font-size: clamp(2.5rem, 6vw, 4rem);
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -2px;
	position: relative;
	z-index: 1;
}

.thanks-content p {
	font-size: 1.25rem;
	color: var(--text-muted);
	margin-bottom: 3rem;
	line-height: 1.8;
	position: relative;
	z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.about-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.contact-cards-radial {
		height: auto;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
		margin-bottom: 3rem;
	}

	.contact-card-radial {
		position: relative;
		width: 100%;
		transform: none !important;
	}

	.contact-card-radial.card-top,
	.contact-card-radial.card-right,
	.contact-card-radial.card-bottom,
	.contact-card-radial.card-left {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		transform: none;
	}

	.contact-card-radial:hover {
		transform: translateY(-5px) scale(1.02) !important;
	}

	.contact-form-radial {
		padding: 3rem 2rem;
	}

	.form-row-radial {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.portfolio-item:nth-child(3n) {
		grid-column: span 1;
		aspect-ratio: 4/3;
	}
}

@media (max-width: 768px) {
	.burger-menu {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 80px;
		left: -100%;
		flex-direction: column;
		background: rgba(10, 10, 15, 0.98);
		backdrop-filter: blur(30px);
		width: 100%;
		text-align: center;
		transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
		padding: 3rem 0;
		gap: 0;
		border-top: 1px solid var(--glass-border);
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu li {
		width: 100%;
		padding: 1.5rem 0;
	}

	.hero-title {
		font-size: clamp(2.5rem, 10vw, 4rem);
	}

	.hero-description {
		font-size: 1.125rem;
	}

	.hero-stats {
		gap: 2rem;
	}

	.stat-number {
		font-size: 2.5rem;
	}

	.section-title {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.about-features {
		grid-template-columns: 1fr;
	}

	.contact-cards-radial {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		height: auto;
	}

	.contact-card-radial {
		width: 100%;
	}

	.contact-form-radial {
		padding: 2.5rem 1.5rem;
	}

	.form-header-radial h3 {
		font-size: 1.75rem;
	}

	.tech-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tech-icon {
		width: 80px;
		height: 80px;
	}

	.portfolio-grid {
		grid-template-columns: 1fr;
	}

	.portfolio-item:nth-child(2n),
	.portfolio-item:nth-child(3n) {
		aspect-ratio: 4/3;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-btn {
		width: 100%;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.fullscreen-menu a {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.btn {
		width: 100%;
		text-align: center;
	}

	.tech-grid {
		grid-template-columns: 1fr;
	}

	.tech-icon {
		width: 70px;
		height: 70px;
	}

	.policy-page {
		padding: 8rem 1rem 3rem;
	}

	.policy-page h1 {
		font-size: 2rem;
	}

	.thanks-content {
		padding: 3rem 2rem;
	}
}
