/* ==========================================================================
   PXVERS.COM - Modern Dark Cinematic CSS Architecture (v6.0 - Hakkımızda & Timeline)
   ========================================================================== */

:root {
	/* Referans Logodan Alınan Tam Renk Paleti */
	--bg-dark: #030508;
	--bg-card: rgba(10, 14, 24, 0.78);
	--bg-card-hover: rgba(16, 22, 38, 0.92);
	--border-subtle: rgba(255, 255, 255, 0.08);
	--border-glow: rgba(0, 210, 255, 0.3);
	
	/* Logo Ana Vurgu Renkleri */
	--accent-cyan: #00d2ff;      /* Logo Üst Açık Elektrik Mavisi */
	--accent-blue: #1a68f8;      /* Logo Taban Koyu Kobalt Mavi */
	--accent-white: #ffffff;     /* Logo Parıltı & Tipografi Beyazı */
	
	--text-main: #ffffff;
	--text-muted: #94a3b8;
	--text-dim: #64748b;

	/* Orijinal Font Ailesi */
	--font-main: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-mono: 'JetBrains Mono', monospace;

	--transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Settings */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}

html {
	scroll-behavior: smooth;
	background-color: var(--bg-dark);
	color: var(--text-main);
	font-family: var(--font-main);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

body {
	background: var(--bg-dark);
	color: var(--text-main);
	font-family: var(--font-main);
	font-weight: 400;
	overflow-x: hidden;
	position: relative;
}

/* PXVERS Neural Mesh Canvas & Ambient Lighting */
#pxvers-neural-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 0;
	display: block;
}

.bg-ambient-grid {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 1;
	background: 
		radial-gradient(circle at 50% 0%, rgba(0, 210, 255, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 85% 60%, rgba(26, 104, 248, 0.06) 0%, transparent 45%),
		radial-gradient(circle at 15% 80%, rgba(0, 210, 255, 0.04) 0%, transparent 40%);
}

.bg-noise {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Container */
.container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 32px);
	position: relative;
	z-index: 3;
}

/* Custom Mouse Cursor */
.custom-cursor-dot {
	position: fixed;
	top: 0;
	left: 0;
	width: 8px;
	height: 8px;
	background: var(--accent-cyan);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: width 0.2s, height 0.2s, background-color 0.2s;
	box-shadow: 0 0 12px var(--accent-cyan), 0 0 20px rgba(0, 210, 255, 0.6);
}

.custom-cursor-follower {
	position: fixed;
	top: 0;
	left: 0;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(0, 210, 255, 0.45);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9998;
	transform: translate(-50%, -50%);
	transition: transform 0.12s ease-out, width 0.25s, height 0.25s, border-color 0.25s;
}

body.cursor-active .custom-cursor-follower {
	width: 62px;
	height: 62px;
	background: rgba(0, 210, 255, 0.08);
	border-color: var(--accent-cyan);
	box-shadow: 0 0 25px rgba(0, 210, 255, 0.3);
}

body.cursor-active .custom-cursor-dot {
	width: 12px;
	height: 12px;
	background: #ffffff;
}

/* Header Navbar */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1200;
	background: rgba(3, 5, 8, 0.88);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.3s ease;
}

body.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

/* Ensure Hero elements are immediately visible */
.hero-section .reveal-item,
.subpage-hero .reveal-item,
.contact-page-hero .reveal-item {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

.brand-group {
	display: flex;
	align-items: center;
	gap: 16px;
}

.brand-logo svg {
	transition: transform 0.25s ease, filter 0.25s ease;
}

.brand-logo:hover svg {
	transform: scale(1.03);
	filter: drop-shadow(0 0 16px rgba(0, 210, 255, 0.65)) !important;
}

.header-email-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono, monospace);
	font-size: 12.5px;
	font-weight: 700;
	color: #94a3b8;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(0, 210, 255, 0.2);
	padding: 6px 14px;
	border-radius: 20px;
	text-decoration: none;
	transition: all 0.25s ease;
}

.header-email-link svg {
	color: var(--accent-cyan);
}

.header-email-link:hover {
	color: #ffffff;
	background: rgba(0, 210, 255, 0.12);
	border-color: var(--accent-cyan);
	box-shadow: 0 0 16px rgba(0, 210, 255, 0.35);
}

@media (max-width: 768px) {
	.header-email-link span {
		display: none;
	}
	.header-email-link {
		padding: 6px;
		border-radius: 50%;
	}
}

/* Site Header Navigation Menu */
.site-nav {
	display: flex;
	align-items: center;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-link {
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 14px;
	color: #cbd5e1;
	text-decoration: none;
	transition: all 0.25s ease;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

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

.nav-link.btn-nav-cta {
	background: linear-gradient(135deg, rgba(0, 210, 255, 0.15) 0%, rgba(26, 104, 248, 0.25) 100%);
	border: 1px solid rgba(0, 210, 255, 0.4);
	color: #ffffff;
	padding: 9px 20px;
	border-radius: 20px;
	box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.nav-link.btn-nav-cta:hover {
	background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
	color: #ffffff;
	box-shadow: 0 0 25px rgba(0, 210, 255, 0.5);
	transform: translateY(-1px);
}

/* Navigation Dropdown Menu Styles */
.nav-item.has-dropdown {
	position: relative;
}

/* Invisible Hover Bridge Area on Desktop Parent */
.nav-item.has-dropdown::after {
	content: '';
	position: absolute;
	top: 100%;
	left: -20px;
	right: -20px;
	height: 24px;
	background: transparent;
	pointer-events: auto;
	z-index: 1040;
}

.dropdown-toggle {
	cursor: pointer;
}

.dropdown-toggle .chevron-icon {
	transition: transform 0.3s ease;
	margin-left: 2px;
}

.nav-item.has-dropdown:hover .dropdown-toggle .chevron-icon,
.nav-item.has-dropdown.mobile-open .dropdown-toggle .chevron-icon {
	transform: rotate(180deg);
	color: var(--accent-cyan);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	background: rgba(9, 14, 24, 0.96);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 210, 255, 0.3);
	border-radius: 16px;
	padding: 10px 8px;
	min-width: 240px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 210, 255, 0.18);
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease 0.2s, transform 0.25s ease 0.2s, visibility 0.25s ease 0.2s;
	z-index: 1050;
}

/* Invisible Hover Bridge Area on Dropdown Menu Top Edge */
.dropdown-menu::before {
	content: '';
	position: absolute;
	top: -24px;
	left: -10px;
	right: -10px;
	height: 28px;
	background: transparent;
	pointer-events: auto;
	z-index: 1055;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(4px);
	transition-delay: 0s;
}

.dropdown-item {
	margin: 2px 0;
	list-style: none;
}

.dropdown-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	border-radius: 10px;
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 13.5px;
	color: #cbd5e1;
	text-decoration: none;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.dropdown-link:hover {
	background: rgba(0, 210, 255, 0.12);
	color: #ffffff;
	transform: translateX(4px);
}

.dropdown-link.is-highlight {
	color: #00d2ff;
	font-weight: 700;
}

.dropdown-link.is-highlight:hover {
	background: linear-gradient(135deg, rgba(0, 210, 255, 0.18) 0%, rgba(26, 104, 248, 0.25) 100%);
	color: #ffffff;
}

.dropdown-badge {
	background: rgba(0, 210, 255, 0.18);
	border: 1px solid rgba(0, 210, 255, 0.4);
	color: #00d2ff;
	font-size: 11px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 12px;
	margin-left: 8px;
}

/* Mobile Hamburger Menu Toggle Button */
.mobile-menu-toggle {
	display: none;
	background: rgba(0, 240, 255, 0.05);
	border: 1px solid rgba(0, 240, 255, 0.22);
	border-radius: 8px;
	cursor: pointer;
	padding: 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	z-index: 1100;
	position: relative;
	pointer-events: auto;
	touch-action: manipulation;
	width: 44px;
	height: 44px;
	transition: all 0.25s ease;
	-webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
	background: rgba(0, 240, 255, 0.15);
	border-color: var(--accent-cyan);
	outline: none;
}

.hamburger-bar {
	width: 22px;
	height: 2px;
	background-color: #ffffff;
	border-radius: 2px;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, background-color 0.3s ease;
	transform-origin: center;
	display: block;
	pointer-events: none;
}

.mobile-menu-toggle.active .bar-1 {
	transform: translateY(7px) rotate(45deg);
	background-color: var(--accent-cyan);
}
.mobile-menu-toggle.active .bar-2 {
	opacity: 0;
	transform: scaleX(0);
}
.mobile-menu-toggle.active .bar-3 {
	transform: translateY(-7px) rotate(-45deg);
	background-color: var(--accent-cyan);
}

/* Mobile Menu Backdrop Overlay */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1100;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.mobile-menu-open {
	overflow: hidden !important;
	touch-action: none !important;
}

.brand-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.brand-logo img,
.brand-logo svg {
	height: 38px;
	width: auto;
	display: block;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 210, 255, 0.06);
	border: 1px solid rgba(0, 210, 255, 0.25);
	padding: 6px 14px;
	border-radius: 20px;
	font-family: var(--font-main);
	font-weight: 500;
	font-size: 12px;
	color: var(--accent-cyan);
}

.status-dot {
	width: 7px;
	height: 7px;
	background: var(--accent-cyan);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--accent-cyan);
	animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(1.2); }
}

.btn-contact,
.btn-primary,
.btn-secondary {
	font-family: var(--font-main);
	font-weight: 600;
}

.btn-contact {
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-main);
	border: 1px solid var(--border-subtle);
	padding: 10px 22px;
	border-radius: 30px;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s var(--transition-smooth);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.btn-contact:hover {
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
	color: #ffffff;
	border-color: var(--accent-cyan);
	box-shadow: 0 0 22px rgba(0, 210, 255, 0.45);
	transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 140px;
	padding-bottom: 60px;
	position: relative;
	text-align: center;
}

@media (min-width: 992px) {
	.hero-section .container {
		transform: translateX(35px);
	}
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: rgba(0, 210, 255, 0.05);
	border: 1px solid rgba(0, 210, 255, 0.2);
	border-radius: 30px;
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 13px;
	color: var(--accent-cyan);
	margin-bottom: 28px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.hero-title {
	font-family: var(--font-main);
	font-size: clamp(2.2rem, 5.5vw, 4.8rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 24px;
	max-width: 1050px;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(180deg, #ffffff 40%, #cbd5e1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subtitle {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	color: var(--text-muted);
	max-width: 820px;
	margin: 0 auto 28px auto;
	line-height: 1.65;
}

/* Micro Service Tags */
.hero-tech-tags {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 14px;
	margin: 0 auto 36px auto;
	max-width: 860px;
}

.hero-tech-tags .tag-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono, monospace);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--accent-cyan);
	background: rgba(0, 210, 255, 0.06);
	border: 1px solid rgba(0, 210, 255, 0.22);
	padding: 5px 12px;
	border-radius: 14px;
	text-transform: uppercase;
	transition: all 0.25s ease;
}

.hero-tech-tags .tag-item .dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--accent-cyan);
	box-shadow: 0 0 6px var(--accent-cyan);
}

.hero-tech-tags .tag-item:hover {
	background: rgba(0, 210, 255, 0.14);
	border-color: var(--accent-cyan);
	box-shadow: 0 0 12px rgba(0, 210, 255, 0.3);
}

.hero-tech-tags .tag-sep {
	color: rgba(255, 255, 255, 0.2);
	font-size: 12px;
}

@media (max-width: 576px) {
	.hero-tech-tags .tag-sep {
		display: none;
	}
	.hero-tech-tags {
		gap: 8px;
		margin-bottom: 28px;
	}
	.hero-tech-tags .tag-item {
		font-size: 10px;
		padding: 4px 10px;
	}
}

.hero-cta-group {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	padding: 16px 36px;
	border-radius: 40px;
	text-decoration: none;
	transition: all 0.3s var(--transition-smooth);
	box-shadow: 0 0 25px rgba(0, 210, 255, 0.4);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 0 38px rgba(0, 210, 255, 0.65);
	filter: brightness(1.1);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
	border: 1px solid var(--border-subtle);
	font-size: 15px;
	padding: 16px 36px;
	border-radius: 40px;
	text-decoration: none;
	transition: all 0.3s var(--transition-smooth);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(0, 210, 255, 0.35);
	transform: translateY(-3px);
}

/* Custom PXVERS Video Player */
.video-section {
	padding: 40px 0 100px 0;
	position: relative;
}

.video-expand-wrapper {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	transition: max-width 0.1s ease-out, transform 0.1s ease-out;
}

.video-card-container.px-video-player-root {
	position: relative;
	aspect-ratio: 16 / 9;
	width: 100%;
	background: var(--bg-dark);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(0, 210, 255, 0.35);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 45px rgba(0, 210, 255, 0.2);
	user-select: none;
}

.video-card-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	cursor: pointer;
}

.video-play-center-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	width: 76px;
	height: 76px;
	background: rgba(0, 210, 255, 0.18);
	border: 2px solid var(--accent-cyan);
	color: #ffffff;
	border-radius: 50%;
	backdrop-filter: blur(12px);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: transform 0.3s var(--transition-smooth), opacity 0.3s, background-color 0.3s;
	box-shadow: 0 0 30px rgba(0, 210, 255, 0.45);
}

.video-play-center-btn svg {
	width: 32px;
	height: 32px;
	margin-left: 4px;
	fill: #ffffff;
}

.video-play-center-btn:hover {
	transform: translate(-50%, -50%) scale(1.12);
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
	color: #ffffff;
	box-shadow: 0 0 45px rgba(0, 210, 255, 0.75);
}

.px-video-player-root.playing .video-play-center-btn {
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(0.8);
}

.video-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	pointer-events: none;
	z-index: 8;
	transition: opacity 0.3s ease;
}

.video-top-bar {
	padding: 24px;
	align-self: flex-start;
	pointer-events: auto;
}

.video-badge {
	background: rgba(3, 5, 8, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 210, 255, 0.25);
	padding: 6px 14px;
	border-radius: 20px;
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 11px;
	color: var(--accent-cyan);
	letter-spacing: 0.5px;
}

.video-controls-bar {
	width: 100%;
	padding: 20px 24px 16px 24px;
	background: linear-gradient(0deg, rgba(3,5,8,0.95) 0%, rgba(3,5,8,0.7) 70%, transparent 100%);
	backdrop-filter: blur(14px);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	pointer-events: auto;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.px-video-player-root.playing.user-idle .video-controls-bar {
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
}

.video-progress-container {
	position: relative;
	width: 100%;
	padding: 8px 0;
	cursor: pointer;
	margin-bottom: 10px;
}

.video-progress-bar-bg {
	height: 5px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 3px;
	position: relative;
	overflow: visible;
	transition: height 0.15s ease;
}

.video-progress-container:hover .video-progress-bar-bg {
	height: 8px;
}

.video-progress-filled {
	height: 100%;
	background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
	border-radius: 3px;
	width: 0%;
	box-shadow: 0 0 12px var(--accent-cyan);
	position: relative;
}

.video-progress-handle {
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translate(-50%, -50%) scale(0);
	width: 14px;
	height: 14px;
	background: #ffffff;
	border: 2px solid var(--accent-cyan);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--accent-cyan);
	transition: transform 0.15s ease;
}

.video-progress-container:hover .video-progress-handle {
	transform: translate(-50%, -50%) scale(1);
}

.video-progress-hover-time {
	position: absolute;
	top: -28px;
	left: 0;
	transform: translateX(-50%);
	background: #000000;
	border: 1px solid rgba(0, 210, 255, 0.3);
	color: var(--accent-cyan);
	font-family: var(--font-mono);
	font-size: 11px;
	padding: 2px 7px;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.video-progress-container:hover .video-progress-hover-time {
	opacity: 1;
}

.video-controls-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.video-controls-left,
.video-controls-right {
	display: flex;
	align-items: center;
	gap: 8px;
}

.v-control-btn {
	background: transparent;
	border: none;
	color: #cbd5e1;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.v-control-btn svg {
	width: 20px;
	height: 20px;
}

.v-control-btn:hover {
	color: var(--accent-cyan);
	background: rgba(0, 210, 255, 0.12);
}

.video-time-display {
	font-family: var(--font-mono);
	font-size: 12px;
	color: #cbd5e1;
	margin-left: 8px;
	white-space: nowrap;
}

.video-volume-group {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.video-volume-slider {
	width: 65px;
	height: 4px;
	accent-color: var(--accent-cyan);
	cursor: pointer;
}

.v-btn-speed {
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 12px;
	border: 1px solid rgba(0, 210, 255, 0.3);
	border-radius: 6px;
	padding: 4px 10px;
	color: var(--accent-cyan);
	width: auto;
}

.video-below-info {
	margin-top: 24px;
	text-align: center;
}

.video-below-info h3 {
	font-family: var(--font-main);
	font-size: clamp(1.4rem, 2.5vw, 2.2rem);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 6px;
}

.video-below-info p {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 15px;
	color: var(--text-muted);
}

.px-video-player-root:fullscreen,
.px-video-player-root:-webkit-full-screen {
	width: 100vw !important;
	height: 100vh !important;
	max-width: none !important;
	border-radius: 0 !important;
}

/* Section Header Typography */
.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-label {
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 12px;
	color: var(--accent-cyan);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
	display: block;
}

.section-title {
	font-family: var(--font-main);
	font-size: clamp(1.8rem, 3.8vw, 3.2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin-bottom: 16px;
}

.section-subtitle {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 16px;
	color: var(--text-muted);
	max-width: 620px;
	margin: 0 auto;
}

/* Services Grid with 3D Tilt */
.services-section {
	padding: 90px 0;
	position: relative;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
	perspective: 1000px;
}

.service-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	padding: 32px 26px;
	position: relative;
	overflow: hidden;
	transition: transform 0.4s var(--transition-smooth), border-color 0.4s, box-shadow 0.4s, background-color 0.4s;
	backdrop-filter: blur(12px);
	transform-style: preserve-3d;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
	opacity: 0;
	transition: opacity 0.4s;
}

.service-card:hover {
	background: var(--bg-card-hover);
	border-color: rgba(0, 210, 255, 0.4);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 210, 255, 0.18);
}

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

.service-icon-box {
	width: 50px;
	height: 50px;
	background: rgba(0, 210, 255, 0.08);
	border: 1px solid rgba(0, 210, 255, 0.22);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	color: var(--accent-cyan);
}

.service-icon-box svg {
	width: 24px;
	height: 24px;
	stroke-width: 2;
}

.service-card h3 {
	font-family: var(--font-main);
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
}

.service-card p {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 22px;
	line-height: 1.65;
}

.service-tags {
	font-family: var(--font-main);
	font-weight: 500;
	font-size: 12px;
	color: var(--accent-cyan);
	background: rgba(0, 210, 255, 0.06);
	padding: 6px 12px;
	border-radius: 6px;
	display: inline-block;
}

/* Selected Works Grid with 3D Tilt */
.works-section {
	padding: 90px 0;
	position: relative;
}

.works-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	perspective: 1000px;
}

.work-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 20px;
	overflow: hidden;
	transition: transform 0.4s var(--transition-smooth), border-color 0.4s, box-shadow 0.4s;
	transform-style: preserve-3d;
}

.work-card:hover {
	border-color: rgba(0, 210, 255, 0.45);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), 0 0 35px rgba(0, 210, 255, 0.2);
}

.work-media {
	width: 100%;
	height: 280px;
	overflow: hidden;
	position: relative;
}

.work-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--transition-smooth);
}

.work-card:hover .work-media img {
	transform: scale(1.08);
}

.work-body {
	padding: 26px;
}

.work-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.work-category {
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 12px;
	color: var(--accent-cyan);
}

.work-year {
	font-family: var(--font-main);
	font-weight: 500;
	font-size: 12px;
	color: var(--text-dim);
}

.work-title {
	font-family: var(--font-main);
	font-size: 24px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 12px;
}

.work-tags {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 13px;
	color: var(--text-muted);
}

/* AI & Creative Technology Section */
.ai-section {
	padding: 100px 0;
	position: relative;
}

.ai-card-main {
	background: linear-gradient(135deg, rgba(10, 14, 24, 0.88) 0%, rgba(5, 8, 14, 0.96) 100%);
	border: 1px solid rgba(0, 210, 255, 0.28);
	border-radius: 24px;
	padding: clamp(24px, 5vw, 56px);
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: center;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), inset 0 0 30px rgba(0, 210, 255, 0.05);
}

.ai-content h2 {
	font-family: var(--font-main);
	font-size: clamp(1.8rem, 3.2vw, 2.8rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 20px;
	color: #ffffff;
}

.ai-content p {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 16px;
	color: var(--text-muted);
	margin-bottom: 32px;
	line-height: 1.7;
}

.ai-stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.stat-item {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
	border: 1px solid rgba(0, 210, 255, 0.2);
	padding: 16px 14px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	gap: 14px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	backdrop-filter: blur(10px);
}

.stat-item:hover {
	transform: translateY(-3px);
	border-color: rgba(0, 210, 255, 0.5);
	box-shadow: 0 10px 25px rgba(0, 210, 255, 0.15);
	background: linear-gradient(135deg, rgba(0, 210, 255, 0.08) 0%, rgba(26, 104, 248, 0.12) 100%);
}

.stat-icon-badge {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(0, 210, 255, 0.08);
	border: 1px solid rgba(0, 210, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.stat-info {
	display: flex;
	flex-direction: column;
}

.stat-number {
	font-family: var(--font-main);
	font-size: clamp(18px, 1.8vw, 24px);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	margin-bottom: 2px;
	display: block;
	letter-spacing: -0.02em;
}

.stat-label {
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 12px;
	color: var(--accent-cyan);
	letter-spacing: 0.3px;
}

.ai-visual-box {
	background: #030508;
	border: 1px solid #1e293b;
	border-radius: 16px;
	padding: 22px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	overflow-x: auto;
}

/* ==========================================================================
   HOMEPAGE ABOUT FOUNDER PREVIEW SECTION
   ========================================================================== */
.about-home-section {
	padding: 100px 0;
	position: relative;
}

.about-home-card {
	background: linear-gradient(135deg, rgba(10, 14, 24, 0.85) 0%, rgba(5, 8, 14, 0.95) 100%);
	border: 1px solid rgba(0, 210, 255, 0.3);
	border-radius: 28px;
	padding: clamp(24px, 5vw, 56px);
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 48px;
	align-items: center;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), inset 0 0 30px rgba(0, 210, 255, 0.05);
}

.about-founder-media {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border: 1px solid rgba(0, 210, 255, 0.35);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 210, 255, 0.15);
}

.about-founder-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.founder-badge-floating {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: rgba(3, 5, 8, 0.85);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 210, 255, 0.3);
	padding: 6px 14px;
	border-radius: 20px;
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 11px;
	color: var(--accent-cyan);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.about-home-content .about-home-title {
	font-family: var(--font-main);
	font-size: clamp(1.8rem, 3.2vw, 2.8rem);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 8px;
}

.about-founder-name {
	font-family: var(--font-main);
	font-size: 22px;
	font-weight: 700;
	color: var(--accent-cyan);
	margin-bottom: 4px;
}

.about-founder-title-text {
	font-family: var(--font-main);
	font-weight: 500;
	font-size: 14px;
	color: var(--text-dim);
	display: block;
	margin-bottom: 20px;
}

.about-home-desc {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 24px;
}

.about-pills-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.about-pill {
	font-family: var(--font-main);
	font-weight: 500;
	font-size: 12px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-subtle);
	padding: 6px 14px;
	border-radius: 20px;
}

/* ==========================================================================
   DEDICATED HAKKIMIZDA PAGE STYLING (PAGE-HAKKIMIZDA.PHP)
   ========================================================================== */
.about-page-hero {
	padding-top: 140px;
	padding-bottom: 60px;
	text-align: center;
}

.about-section-bio {
	padding: 60px 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 50px;
	align-items: center;
}

.about-photo-wrapper {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border: 1px solid rgba(0, 210, 255, 0.35);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 210, 255, 0.18);
}

.about-photo-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-bio-content h2 {
	font-family: var(--font-main);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 4px;
}

.founder-role-title {
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 16px;
	color: var(--accent-cyan);
	display: block;
	margin-bottom: 24px;
}

.bio-paragraph {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.8;
}

/* Interactive Animated Timeline */
.about-section-timeline {
	padding: 100px 0;
	position: relative;
}

.timeline-container {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 0;
}

.timeline-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: linear-gradient(180deg, var(--accent-cyan), var(--accent-blue), var(--accent-cyan));
	transform: translateX(-50%);
	box-shadow: 0 0 12px var(--accent-cyan);
}

.timeline-item {
	position: relative;
	width: 50%;
	padding: 0 36px;
	margin-bottom: 50px;
	box-sizing: border-box;
}

.timeline-item.left {
	left: 0;
	text-align: right;
}

.timeline-item.right {
	left: 50%;
	text-align: left;
}

.timeline-node {
	position: absolute;
	top: 10px;
	width: 16px;
	height: 16px;
	background: #ffffff;
	border: 3px solid var(--accent-cyan);
	border-radius: 50%;
	box-shadow: 0 0 14px var(--accent-cyan);
	z-index: 5;
}

.timeline-item.left .timeline-node {
	right: -8px;
}

.timeline-item.right .timeline-node {
	left: -8px;
}

.timeline-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 18px;
	padding: 24px;
	backdrop-filter: blur(12px);
	transition: all 0.3s var(--transition-smooth);
}

.timeline-card:hover {
	border-color: rgba(0, 210, 255, 0.4);
	transform: translateY(-4px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 210, 255, 0.15);
}

.timeline-year {
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 700;
	color: var(--accent-cyan);
	background: rgba(0, 210, 255, 0.08);
	padding: 4px 10px;
	border-radius: 6px;
	display: inline-block;
	margin-bottom: 10px;
}

.timeline-title {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 8px;
}

.timeline-desc {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
}

/* Pillars & Strategy Grid */
.about-section-pillars,
.about-section-strategy {
	padding: 60px 0;
}

.pillars-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.pillar-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 20px;
	padding: 36px 30px;
	backdrop-filter: blur(12px);
	transition: all 0.3s var(--transition-smooth);
}

.pillar-card:hover {
	border-color: rgba(0, 210, 255, 0.35);
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.pillar-icon {
	width: 54px;
	height: 54px;
	background: rgba(0, 210, 255, 0.08);
	border: 1px solid rgba(0, 210, 255, 0.25);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-cyan);
	margin-bottom: 22px;
}

.pillar-card h3 {
	font-family: var(--font-main);
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 14px;
}

.pillar-card p {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.7;
}

/* Vision & Mandatory Quote Box */
.about-section-vision {
	padding: 100px 0;
}

.vision-card {
	background: linear-gradient(135deg, rgba(10, 14, 24, 0.9) 0%, rgba(3, 5, 8, 0.96) 100%);
	border: 1px solid rgba(0, 210, 255, 0.35);
	border-radius: 28px;
	padding: clamp(32px, 6vw, 64px);
	text-align: center;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), inset 0 0 35px rgba(0, 210, 255, 0.06);
}

.vision-card h2 {
	font-family: var(--font-main);
	font-size: clamp(2rem, 3.8vw, 3.2rem);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 16px;
}

.vision-desc {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 16px;
	color: var(--text-muted);
	max-width: 750px;
	margin: 0 auto 40px auto;
	line-height: 1.7;
}

/* Highlighted Quote Box */
.quote-highlight-box {
	background: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.12) 0%, rgba(5, 8, 14, 0.95) 80%);
	border: 1px solid rgba(0, 210, 255, 0.45);
	border-radius: 24px;
	padding: clamp(28px, 4vw, 48px);
	position: relative;
	max-width: 850px;
	margin: 0 auto;
	box-shadow: 0 0 45px rgba(0, 210, 255, 0.2);
}

.quote-icon {
	font-family: var(--font-main);
	font-size: 64px;
	font-weight: 900;
	color: var(--accent-cyan);
	line-height: 1;
	margin-bottom: 8px;
	opacity: 0.8;
}

.closing-quote-text {
	font-family: var(--font-main);
	font-size: clamp(1.2rem, 2.2vw, 1.6rem);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.5;
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.quote-author {
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 14px;
	color: var(--accent-cyan);
}

/* ==========================================================================
   PXVERS CONTACT PAGE & WORKING FORM STYLING (PAGE-ILETISIM.PHP)
   ========================================================================== */
.contact-page-hero {
	padding-top: 140px;
	padding-bottom: 50px;
	text-align: center;
}

.contact-form-section {
	padding: 40px 0 100px 0;
	position: relative;
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 40px;
	align-items: start;
}

.contact-info-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 24px;
	padding: clamp(28px, 4vw, 48px);
	backdrop-filter: blur(14px);
}

.contact-info-card h2 {
	font-family: var(--font-main);
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 16px;
}

.contact-info-card p {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.65;
	margin-bottom: 36px;
}

.info-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.info-icon {
	width: 46px;
	height: 46px;
	background: rgba(0, 210, 255, 0.08);
	border: 1px solid rgba(0, 210, 255, 0.25);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-cyan);
	flex-shrink: 0;
}

.info-label {
	display: block;
	font-family: var(--font-main);
	font-weight: 500;
	font-size: 12px;
	color: var(--text-dim);
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.info-value {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 16px;
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s;
}

.info-value:hover {
	color: var(--accent-cyan);
}

/* Continuous Animated Rainbow Frame Glow & Border */
@keyframes pxvRainbowFrameGlow {
	0% {
		border-color: #ff0055;
		box-shadow: 0 0 25px rgba(255, 0, 85, 0.5), 0 0 50px rgba(255, 0, 85, 0.25), inset 0 0 20px rgba(255, 0, 85, 0.1);
	}
	16.6% {
		border-color: #ff7f00;
		box-shadow: 0 0 25px rgba(255, 127, 0, 0.5), 0 0 50px rgba(255, 127, 0, 0.25), inset 0 0 20px rgba(255, 127, 0, 0.1);
	}
	33.3% {
		border-color: #ffea00;
		box-shadow: 0 0 25px rgba(255, 234, 0, 0.5), 0 0 50px rgba(255, 234, 0, 0.25), inset 0 0 20px rgba(255, 234, 0, 0.1);
	}
	50% {
		border-color: #00ff88;
		box-shadow: 0 0 25px rgba(0, 255, 136, 0.5), 0 0 50px rgba(0, 255, 136, 0.25), inset 0 0 20px rgba(0, 255, 136, 0.1);
	}
	66.6% {
		border-color: #00d2ff;
		box-shadow: 0 0 25px rgba(0, 210, 255, 0.5), 0 0 50px rgba(0, 210, 255, 0.25), inset 0 0 20px rgba(0, 210, 255, 0.1);
	}
	83.3% {
		border-color: #a855f7;
		box-shadow: 0 0 25px rgba(168, 85, 247, 0.5), 0 0 50px rgba(168, 85, 247, 0.25), inset 0 0 20px rgba(168, 85, 247, 0.1);
	}
	100% {
		border-color: #ff0055;
		box-shadow: 0 0 25px rgba(255, 0, 85, 0.5), 0 0 50px rgba(255, 0, 85, 0.25), inset 0 0 20px rgba(255, 0, 85, 0.1);
	}
}

.contact-form-card {
	background: linear-gradient(135deg, rgba(8, 12, 22, 0.94) 0%, rgba(4, 7, 13, 0.98) 100%);
	border: 2px solid #00d2ff;
	border-radius: 18px;
	padding: 18px 22px;
	box-shadow: 0 0 30px rgba(0, 210, 255, 0.35);
	animation: pxvRainbowFrameGlow 8s linear infinite;
	position: relative;
}

.form-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.form-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.form-group {
	margin-bottom: 8px;
}

.form-group label {
	display: block;
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 11.5px;
	color: #cbd5e1;
	margin-bottom: 2px;
}

.form-group label .req {
	color: var(--accent-cyan);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
	width: 100%;
	background: #030508;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	color: #ffffff;
	padding: 7px 10px;
	font-family: var(--font-main);
	font-size: 12.5px;
	box-sizing: border-box;
	transition: all 0.25s ease;
}

.form-group select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300d2ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	padding-right: 30px;
	cursor: pointer;
}

.form-group select option {
	background: #090e18;
	color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--accent-cyan);
	outline: none;
	box-shadow: 0 0 0 2px rgba(0, 210, 255, 0.2), 0 0 10px rgba(0, 210, 255, 0.15);
	background: #050810;
}

.form-group textarea {
	min-height: 55px;
	resize: vertical;
	line-height: 1.4;
}

.char-count-bar {
	font-family: var(--font-mono);
	font-size: 10.5px;
	color: var(--text-dim);
	margin-top: 2px;
	margin-bottom: 6px;
	text-align: right;
}

.pxvers-form-alert {
	padding: 8px 12px;
	border-radius: 6px;
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 12px;
	margin-bottom: 12px;
	line-height: 1.35;
}

.pxvers-form-alert.alert-danger {
	background: rgba(239, 68, 68, 0.12);
	border: 1px solid rgba(239, 68, 68, 0.4);
	color: #f87171;
}

.pxvers-form-alert.alert-success {
	background: rgba(34, 197, 94, 0.12);
	border: 1px solid rgba(34, 197, 94, 0.4);
	color: #4ade80;
}

.form-btn-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 4px;
}

.btn-contact-submit {
	width: 100%;
	padding: 9px 16px;
	border-radius: 20px;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 13.5px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s var(--transition-smooth);
	border: none;
}

.btn-contact-submit.btn-wa {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	color: #ffffff;
	box-shadow: 0 0 25px rgba(37, 211, 102, 0.35);
}

.btn-contact-submit.btn-wa:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 35px rgba(37, 211, 102, 0.6);
	filter: brightness(1.1);
}

.btn-contact-submit.btn-standard {
	background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
	color: #ffffff;
	box-shadow: 0 0 25px rgba(0, 210, 255, 0.35);
}

.btn-contact-submit.btn-standard:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 35px rgba(0, 210, 255, 0.6);
	filter: brightness(1.1);
}

.btn-contact-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none !important;
}

@media (max-width: 900px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.contact-form-card {
		padding: 20px 18px;
	}
	.form-grid-2,
	.form-grid-3 {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

.cta-section {
	padding: 100px 0;
	text-align: center;
	position: relative;
}

.cta-box {
	background: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.12) 0%, rgba(3, 5, 8, 0.96) 75%);
	border: 1px solid rgba(0, 210, 255, 0.35);
	border-radius: 30px;
	padding: clamp(40px, 6vw, 80px) 24px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 55px rgba(0, 210, 255, 0.18);
}

.cta-title {
	font-family: var(--font-main);
	font-size: clamp(2rem, 4.5vw, 3.8rem);
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin-bottom: 20px;
}

.cta-desc {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 16px;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto 36px auto;
}

/* Footer Section */
.site-footer {
	background: #020305;
	border-top: 1px solid var(--border-subtle);
	padding: 80px 0 40px 0;
	font-size: 14px;
	color: var(--text-muted);
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 50px;
	margin-bottom: 60px;
}

.footer-brand p {
	font-family: var(--font-main);
	font-weight: 400;
	margin-top: 16px;
	max-width: 400px;
	line-height: 1.65;
}

.footer-col h4 {
	font-family: var(--font-main);
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 12px;
	font-family: var(--font-main);
	font-weight: 400;
}

.footer-col ul li a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-col ul li a:hover {
	color: var(--accent-cyan);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	color: var(--text-dim);
	font-family: var(--font-main);
	font-weight: 500;
}

/* Scroll Reveal Classes */
.reveal-item {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal-item.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Mobile Responsive Breakpoints */
@media (max-width: 1024px) {
	.works-grid {
		grid-template-columns: 1fr;
	}
	.ai-card-main,
	.about-home-card,
	.about-grid,
	.pillars-grid {
		grid-template-columns: 1fr;
	}
	.footer-top {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

@media (max-width: 768px) {
	.hero-section, .about-page-hero {
		padding-top: 120px;
		min-height: auto;
	}
	.status-pill {
		display: none;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
	.ai-stats-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.custom-cursor-dot, .custom-cursor-follower {
		display: none !important;
	}
	body {
		cursor: auto;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
	.timeline-item {
		width: 100%;
		left: 0 !important;
		text-align: left !important;
		padding-left: 30px;
		padding-right: 0;
	}
	.timeline-line {
		left: 10px;
	}
	.timeline-node {
		left: 2px !important;
	}
}

/* ==========================================================================
   PXVERS SUBPAGES & PRODUCTS STYLING
   ========================================================================== */
.subpage-main {
	padding-top: 80px;
}

.subpage-hero {
	padding: 120px 0 60px 0;
	text-align: center;
	position: relative;
}

.products-section,
.services-subpage-section {
	padding: 20px 0 100px 0;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.product-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 24px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	backdrop-filter: blur(14px);
	transition: all 0.35s var(--transition-smooth);
	position: relative;
	overflow: hidden;
}

.product-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 210, 255, 0.45);
	box-shadow: 0 20px 45px rgba(0, 210, 255, 0.12);
}

.product-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.product-category {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 12px;
	color: var(--accent-cyan);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.product-badge {
	background: rgba(0, 210, 255, 0.12);
	border: 1px solid rgba(0, 210, 255, 0.35);
	color: #00d2ff;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 20px;
}

.product-title {
	font-family: var(--font-main);
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 12px;
}

.product-price {
	font-family: var(--font-main);
	font-weight: 800;
	font-size: 24px;
	color: #38bdf8;
	margin-bottom: 16px;
}

.product-desc {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.65;
	margin-bottom: 24px;
}

.product-features-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-feat-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-main);
	font-weight: 500;
	font-size: 13px;
	color: #cbd5e1;
}

.btn-product-buy,
.btn-service-action {
	width: 100%;
	padding: 14px 20px;
	background: rgba(0, 210, 255, 0.08);
	border: 1px solid rgba(0, 210, 255, 0.3);
	border-radius: 25px;
	color: #ffffff;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.btn-product-buy:hover,
.btn-service-action:hover {
	background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
	color: #ffffff;
	border-color: transparent;
	box-shadow: 0 0 25px rgba(0, 210, 255, 0.4);
}

.service-subcard {
	padding: 36px;
}

.service-badge-pill {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 10px;
	color: #64748b;
	border: 1px solid #1e293b;
	padding: 3px 8px;
	border-radius: 6px;
}

.subpage-cta-banner {
	padding: 60px 0 100px 0;
}

.cta-banner-box {
	background: linear-gradient(135deg, rgba(0, 210, 255, 0.1) 0%, rgba(26, 104, 248, 0.15) 100%);
	border: 1px solid rgba(0, 210, 255, 0.3);
	border-radius: 24px;
	padding: 60px 40px;
	text-align: center;
}

.cta-banner-box h2 {
	font-family: var(--font-main);
	font-weight: 800;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	color: #ffffff;
	margin-bottom: 16px;
}

.cta-banner-box p {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 16px;
	color: var(--text-muted);
	max-width: 650px;
	margin: 0 auto 30px auto;
}

/* Mobile Drawer Responsive Adjustments */
@media (max-width: 900px) {
	.header-actions {
		position: relative;
		z-index: 1200;
	}
	.mobile-menu-toggle {
		display: flex;
		z-index: 1200;
	}
	.site-nav {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100vw !important;
		max-width: 100vw !important;
		height: 100vh !important;
		height: 100dvh !important;
		margin: 0 !important;
		flex: none !important;
		background: #080c14 !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: stretch !important;
		padding: 95px 20px 40px 20px !important;
		transform: translateX(100%) !important;
		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s !important;
		z-index: 1150 !important;
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch !important;
		visibility: hidden !important;
		pointer-events: none !important;
		box-shadow: -15px 0 40px rgba(0, 0, 0, 0.9) !important;
	}
	@media (min-width: 481px) and (max-width: 900px) {
		.site-nav {
			left: auto !important;
			right: 0 !important;
			width: 360px !important;
			max-width: 360px !important;
			border-left: 1px solid rgba(0, 240, 255, 0.25) !important;
		}
	}
	.site-nav.active {
		transform: translateX(0) !important;
		visibility: visible !important;
		pointer-events: auto !important;
	}
	body.admin-bar .site-nav {
		padding-top: 140px;
	}
	.nav-menu {
		flex-direction: column;
		width: 100%;
		gap: 12px;
		align-items: stretch;
	}
	.nav-item {
		width: 100%;
		text-align: left;
	}
	.nav-link {
		font-size: 16px;
		font-weight: 700;
		padding: 14px 18px;
		border-radius: 12px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		background: rgba(16, 23, 38, 0.85);
		border: 1px solid rgba(0, 240, 255, 0.15);
		transition: all 0.2s ease;
		color: #ffffff;
		text-decoration: none;
	}
	.nav-link:hover,
	.nav-link:active {
		background: rgba(0, 240, 255, 0.12);
		border-color: rgba(0, 240, 255, 0.45);
		color: var(--accent-cyan);
	}
	.nav-link.btn-nav-cta {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 14px;
		width: 100%;
		text-align: center;
		padding: 15px 22px;
		font-size: 16px;
		font-weight: 800;
		background: linear-gradient(135deg, #00f0ff 0%, #0066ff 100%);
		color: #050608 !important;
		border: none;
		box-shadow: 0 0 25px rgba(0, 240, 255, 0.35);
	}
	.nav-link.btn-nav-cta:hover {
		box-shadow: 0 0 35px rgba(0, 240, 255, 0.6);
		transform: translateY(-1px);
	}
	.products-grid {
		grid-template-columns: 1fr;
	}
	.nav-item.has-dropdown {
		width: 100%;
	}
	.dropdown-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}
	.dropdown-toggle .chevron-icon {
		transition: transform 0.3s ease;
		stroke: var(--accent-cyan);
	}
	.nav-item.has-dropdown.mobile-open .dropdown-toggle .chevron-icon {
		transform: rotate(180deg);
	}
	.dropdown-menu {
		position: static;
		transform: none !important;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		background: rgba(10, 15, 26, 0.95);
		border: 1px solid rgba(0, 240, 255, 0.18);
		border-radius: 12px;
		margin-top: 8px;
		max-height: 0;
		overflow: hidden;
		padding: 0 8px;
		transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
		box-shadow: none;
		list-style: none;
	}
	.nav-item.has-dropdown.mobile-open .dropdown-menu {
		max-height: 500px;
		padding: 10px 8px;
	}
	.dropdown-item {
		width: 100%;
		margin-bottom: 4px;
	}
	.dropdown-item:last-child {
		margin-bottom: 0;
	}
	.dropdown-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 14px;
		font-size: 14.5px;
		font-weight: 600;
		border-radius: 8px;
		color: #cbd5e1;
		background: transparent;
		transition: all 0.2s ease;
		text-decoration: none;
	}
	.dropdown-link:hover {
		background: rgba(0, 240, 255, 0.12);
		color: #ffffff;
		padding-left: 18px;
	}
	.dropdown-badge {
		font-size: 10.5px;
		font-weight: 700;
		background: rgba(0, 240, 255, 0.18);
		color: var(--accent-cyan);
		border: 1px solid rgba(0, 240, 255, 0.35);
		padding: 2px 8px;
		border-radius: 6px;
	}
}

/* ==========================================================================
   PXVERS KURUMSAL WEB SİTE PAGE STYLING
   ========================================================================== */
.corp-web-page-main {
	padding-top: 80px;
}

.corp-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 28px;
}

.corp-feature-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.corp-feat-badge {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 11px;
	color: var(--accent-cyan);
	letter-spacing: 0.5px;
	margin-top: 14px;
	display: inline-block;
}

@media (max-width: 900px) {
	.corp-features-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   PXVERS META REKLAM YÖNETİMİ PAGE STYLING
   ========================================================================== */
.meta-ads-page-main {
	padding-top: 80px;
}

.meta-quote-card:hover {
	border-color: var(--accent-cyan) !important;
	transform: translateY(-4px);
	transition: all 0.3s ease;
}

.strategy-flow-card:hover {
	border-color: rgba(0, 210, 255, 0.4) !important;
	background: rgba(15, 23, 42, 0.95) !important;
	transform: translateY(-4px);
}

@media (max-width: 900px) {
	.meta-quote-grid {
		grid-template-columns: 1fr !important;
	}
	.strategy-flow-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ==========================================================================
   PXVERS İNSTAGRAM YÖNETİMİ PAGE STYLING
   ========================================================================== */
.insta-page-main {
	padding-top: 80px;
}

/* ==========================================================================
   PXVERS YAPAY ZEKÂ REKLAM FİLMLERİ PAGE STYLING
   ========================================================================== */
.ai-video-page-main {
	padding-top: 80px;
}

.ai-video-card:hover {
	border-color: var(--accent-cyan) !important;
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 210, 255, 0.15) !important;
}

@media (max-width: 768px) {
	.ai-video-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ==========================================================================
   PXVERS CINEMATIC SCENE TIMELINE STYLING
   ========================================================================== */
.about-section-cinematic-timeline {
	padding: 100px 0;
	position: relative;
}

.cinematic-timeline-wrapper {
	position: relative;
	padding-left: 48px;
}

.cinematic-timeline-track {
	position: absolute;
	left: 19px;
	top: 10px;
	bottom: 10px;
	width: 3px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	overflow: hidden;
}

.cinematic-timeline-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: linear-gradient(180deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
	box-shadow: 0 0 16px var(--accent-cyan);
	transition: height 0.25s ease-out;
}

.cinematic-scenes-list {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.cinematic-scene-card {
	position: relative;
	background: linear-gradient(135deg, rgba(9, 14, 24, 0.95) 0%, rgba(15, 23, 42, 0.92) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 44px 48px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cinematic-scene-card:hover,
.cinematic-scene-card.is-active {
	border-color: rgba(0, 210, 255, 0.45);
	box-shadow: 0 30px 70px rgba(0, 210, 255, 0.15);
	transform: translateY(-4px);
}

.scene-node-marker {
	position: absolute;
	left: -48px;
	top: 48px;
	transform: translateX(-50%);
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scene-node-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #0f172a;
	border: 3px solid var(--text-muted);
	transition: all 0.35s ease;
	z-index: 2;
}

.cinematic-scene-card:hover .scene-node-dot,
.cinematic-scene-card.is-active .scene-node-dot {
	background: var(--accent-cyan);
	border-color: #ffffff;
	box-shadow: 0 0 18px var(--accent-cyan);
}

.scene-content-grid {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 48px;
	align-items: start;
}

.scene-header-col {
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	padding-right: 32px;
}

.scene-year-badge {
	font-family: var(--font-mono);
	font-size: 38px;
	font-weight: 800;
	color: var(--accent-cyan);
	line-height: 1.1;
	letter-spacing: -1px;
	margin-bottom: 14px;
	background: linear-gradient(135deg, #00d2ff 0%, #38bdf8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.scene-title {
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.35;
	margin-bottom: 12px;
}

.scene-subtitle {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: #94a3b8;
	line-height: 1.4;
}

.scene-subtitle svg {
	color: var(--accent-cyan);
	flex-shrink: 0;
}

.scene-narrative-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.scene-story-text {
	font-size: 15px;
	color: #cbd5e1;
	line-height: 1.8;
}

.scene-quote-callout {
	position: relative;
	background: rgba(0, 210, 255, 0.06);
	border-left: 4px solid var(--accent-cyan);
	border-radius: 0 16px 16px 0;
	padding: 20px 24px;
}

.scene-quote-callout .quote-symbol {
	position: absolute;
	top: 8px;
	right: 16px;
	font-size: 40px;
	font-family: Georgia, serif;
	color: rgba(0, 210, 255, 0.15);
	line-height: 1;
	pointer-events: none;
}

.scene-quote-callout .quote-text {
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.6;
	margin: 0;
	font-style: italic;
}

.scene-stats-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, rgba(26, 104, 248, 0.2) 0%, rgba(0, 210, 255, 0.15) 100%);
	border: 1px solid rgba(0, 210, 255, 0.35);
	padding: 10px 20px;
	border-radius: 30px;
	align-self: flex-start;
}

.scene-stats-pill .stats-text {
	font-family: var(--font-mono);
	font-size: 13.5px;
	font-weight: 800;
	color: #00d2ff;
	letter-spacing: 0.5px;
}

@media (max-width: 992px) {
	.cinematic-timeline-wrapper {
		padding-left: 36px;
	}
	.cinematic-timeline-track {
		left: 12px;
	}
	.scene-node-marker {
		left: -36px;
	}
	.scene-content-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.scene-header-col {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		padding-right: 0;
		padding-bottom: 20px;
	}
	.cinematic-scene-card {
		padding: 32px 28px;
	}
	.scene-year-badge {
		font-size: 32px;
	}
}

/* ==========================================================================
   PXVERS DİJİTALLESME YOLCULUĞU - 6 AŞAMALI DİKEY TIMELINE (NO STICKY / PIN)
   ========================================================================== */
.pxv-timeline-section {
	padding: 110px 0;
	position: relative;
	background: #040711;
	color: #ffffff;
}

.pxv-timeline-header {
	text-align: center;
	margin-bottom: 70px;
}

.pxv-timeline-badge {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 13px;
	color: var(--accent-cyan);
	letter-spacing: 1px;
	background: rgba(0, 210, 255, 0.06);
	border: 1px solid rgba(0, 210, 255, 0.22);
	padding: 8px 18px;
	border-radius: 30px;
	margin-bottom: 18px;
	display: inline-block;
}

.pxv-timeline-main-title {
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	margin-bottom: 14px;
	background: linear-gradient(180deg, #ffffff 30%, #e2e8f0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.pxv-timeline-main-sub {
	font-size: 16px;
	color: #cbd5e1;
	max-width: 650px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Central Vertical Timeline Wrapper & Progress Track */
.pxv-timeline-wrapper {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 0;
}

.pxv-timeline-central-track {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 4px;
	background: rgba(255, 255, 255, 0.08);
	transform: translateX(-50%);
	border-radius: 4px;
	z-index: 1;
}

.pxv-timeline-progress-fill {
	width: 100%;
	height: 0%;
	background: linear-gradient(180deg, #00d2ff 0%, #1a68f8 100%);
	box-shadow: 0 0 25px #00d2ff, 0 0 50px rgba(0, 210, 255, 0.7);
	border-radius: 4px;
	transition: height 0.1s ease-out;
}

/* Timeline Items List & Alternating Card Layout */
.pxv-timeline-items-list {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 60px;
}

/* Timeline Card Initial State (Dimmed glass, awaiting scroll activation) */
.pxv-timeline-item {
	position: relative;
	width: 50%;
	z-index: 2;
	box-sizing: border-box;
	opacity: 0.3;
	filter: grayscale(0.5);
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
	            filter 0.6s ease;
}

.pxv-timeline-item.pxv-align-left {
	left: 0;
	padding-right: 50px;
	text-align: right;
	transform: translateX(-40px);
}

.pxv-timeline-item.pxv-align-right {
	left: 50%;
	padding-left: 50px;
	text-align: left;
	transform: translateX(40px);
}

/* ACTIVE NEON STATE - Triggers dynamically on Mouse Scroll */
.pxv-timeline-item.is-active,
.pxv-timeline-item.is-revealed {
	opacity: 1;
	filter: grayscale(0);
	transform: translateX(0) !important;
}

/* Center Node Bullet Number Indicator - Dynamic Neon Glow */
.pxv-timeline-node {
	position: absolute;
	top: 24px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #080d1a;
	border: 2px solid rgba(0, 210, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 4;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pxv-timeline-item.pxv-align-left .pxv-timeline-node {
	right: -23px;
}

.pxv-timeline-item.pxv-align-right .pxv-timeline-node {
	left: -23px;
}

.pxv-timeline-node .node-num {
	font-family: var(--font-mono, monospace);
	font-size: 13px;
	font-weight: 800;
	color: #64748b;
	transition: color 0.4s ease;
}

.pxv-timeline-item.is-active .pxv-timeline-node,
.pxv-timeline-item.is-revealed .pxv-timeline-node {
	background: #00d2ff;
	border-color: #ffffff;
	box-shadow: 0 0 30px #00d2ff, 0 0 60px rgba(0, 210, 255, 0.8);
	transform: scale(1.15);
}

.pxv-timeline-item.is-active .pxv-timeline-node .node-num,
.pxv-timeline-item.is-revealed .pxv-timeline-node .node-num {
	color: #03050a;
}

/* Card Glass Container - Neon Glow Border & Backdrop */
.pxv-timeline-card-glass {
	background: linear-gradient(135deg, rgba(13, 21, 37, 0.85) 0%, rgba(6, 10, 18, 0.95) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 30px;
	display: flex;
	gap: 24px;
	align-items: center;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	backdrop-filter: blur(12px);
}

.pxv-timeline-item.pxv-align-left .pxv-timeline-card-glass {
	flex-direction: row-reverse;
}

.pxv-timeline-item.is-active .pxv-timeline-card-glass,
.pxv-timeline-item.is-revealed .pxv-timeline-card-glass {
	border-color: #00d2ff;
	background: linear-gradient(135deg, rgba(0, 210, 255, 0.12) 0%, rgba(10, 18, 32, 0.96) 100%);
	box-shadow: 0 0 35px rgba(0, 210, 255, 0.35), inset 0 0 20px rgba(0, 210, 255, 0.12);
	animation: pxvNeonCardPulse 4s ease-in-out infinite alternate;
}

@keyframes pxvNeonCardPulse {
	0% {
		box-shadow: 0 0 25px rgba(0, 210, 255, 0.25), inset 0 0 15px rgba(0, 210, 255, 0.08);
		border-color: rgba(0, 210, 255, 0.7);
	}
	100% {
		box-shadow: 0 0 45px rgba(0, 210, 255, 0.5), inset 0 0 25px rgba(0, 210, 255, 0.2);
		border-color: #00d2ff;
	}
}

.pxv-timeline-micro-svg {
	flex-shrink: 0;
	filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
	transition: filter 0.5s ease;
}

.pxv-timeline-item.is-active .pxv-timeline-micro-svg,
.pxv-timeline-item.is-revealed .pxv-timeline-micro-svg {
	filter: drop-shadow(0 0 20px #00d2ff) brightness(1.2);
}

.pxv-timeline-text {
	flex-grow: 1;
}

.pxv-timeline-step-badge {
	font-family: var(--font-mono, monospace);
	font-size: 11px;
	font-weight: 800;
	color: #64748b;
	letter-spacing: 1.5px;
	margin-bottom: 8px;
	display: inline-block;
	padding: 3px 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.4s ease;
}

.pxv-timeline-item.is-active .pxv-timeline-step-badge,
.pxv-timeline-item.is-revealed .pxv-timeline-step-badge {
	color: #00d2ff;
	background: rgba(0, 210, 255, 0.12);
	border-color: rgba(0, 210, 255, 0.4);
	box-shadow: 0 0 12px rgba(0, 210, 255, 0.3);
}

.pxv-timeline-item-title {
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 10px;
	line-height: 1.25;
}

.pxv-timeline-item-desc {
	font-size: 15px;
	color: #cbd5e1;
	line-height: 1.6;
	margin: 0;
}

/* Final CTA Card Container */
.pxv-timeline-final-cta-wrap {
	position: relative;
	z-index: 3;
	margin-top: 40px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.pxv-timeline-final-cta-wrap.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

.pxv-timeline-final-card {
	background: linear-gradient(135deg, rgba(26, 104, 248, 0.18) 0%, rgba(0, 210, 255, 0.12) 100%);
	border: 1.5px solid rgba(0, 210, 255, 0.4);
	border-radius: 24px;
	padding: 48px 36px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 210, 255, 0.2);
}

.final-cta-title {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 12px;
}

.final-cta-sub {
	font-size: 16px;
	color: #cbd5e1;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.btn-pxv-timeline-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
	padding: 18px 40px;
	border-radius: 40px;
	text-decoration: none;
	box-shadow: 0 0 30px rgba(0, 210, 255, 0.45);
	margin-top: 24px;
	transition: all 0.3s ease;
}

.btn-pxv-timeline-cta:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 0 45px rgba(0, 210, 255, 0.7);
	color: #ffffff;
}

/* Mobile & Tablet Responsive Single Column Layout (No Pinning / Sticky) */
@media (max-width: 992px) {
	.pxv-timeline-central-track {
		left: 20px;
		transform: none;
	}

	.pxv-timeline-items-list {
		gap: 40px;
	}

	.pxv-timeline-item {
		width: 100%;
		left: 0 !important;
		padding-left: 60px !important;
		padding-right: 0 !important;
		text-align: left !important;
		transform: translateY(30px) !important;
	}

	.pxv-timeline-item.is-revealed {
		transform: translateY(0) !important;
	}

	.pxv-timeline-node {
		left: 0 !important;
		right: auto !important;
		width: 40px;
		height: 40px;
		top: 16px;
	}

	.pxv-timeline-card-glass {
		flex-direction: column !important;
		align-items: flex-start;
		padding: 24px;
	}

	.pxv-timeline-item-title {
		font-size: 1.35rem;
	}

	.pxv-timeline-item-desc {
		font-size: 0.95rem;
	}

	.pxv-timeline-final-card {
		padding: 32px 20px;
	}
}

/* ==========================================================================
   PXVERS BİRLİKTE ÇALIŞTIĞIMIZ MARKALAR - INFINITE DUAL MARQUEE LOGO SLIDER
   ========================================================================== */
.pxv-brands-section {
	padding: 100px 0;
	position: relative;
	background: #040711;
	overflow: hidden;
}

.pxv-brands-header {
	text-align: center;
	margin-bottom: 50px;
}

.pxv-brands-label {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 13px;
	color: var(--accent-cyan);
	letter-spacing: 1px;
	background: rgba(0, 210, 255, 0.06);
	border: 1px solid rgba(0, 210, 255, 0.22);
	padding: 8px 18px;
	border-radius: 30px;
	margin-bottom: 16px;
	display: inline-block;
}

.pxv-brands-title {
	font-size: clamp(2rem, 3.8vw, 3.2rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	margin-bottom: 12px;
	background: linear-gradient(180deg, #ffffff 30%, #cbd5e1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.pxv-brands-subtitle {
	font-size: 16px;
	color: #cbd5e1;
	max-width: 620px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Infinite Marquee Wrapper & Tracks */
.pxv-marquee-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.pxv-marquee-track {
	display: flex;
	width: max-content;
	overflow: hidden;
	user-select: none;
}

.pxv-marquee-group {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
	padding-right: 20px;
	will-change: transform;
}

.pxv-track-left .pxv-marquee-group {
	animation: pxvMarqueeLeft 70s linear infinite;
}

.pxv-track-right .pxv-marquee-group {
	animation: pxvMarqueeRight 70s linear infinite;
}

.pxv-marquee-wrapper:hover .pxv-marquee-group {
	animation-play-state: paused;
}

@keyframes pxvMarqueeLeft {
	0% { transform: translateX(0%); }
	100% { transform: translateX(-100%); }
}

@keyframes pxvMarqueeRight {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(0%); }
}

/* Brand Logo Card & Glass Container */
.pxv-brand-card {
	background: linear-gradient(135deg, rgba(13, 21, 37, 0.88) 0%, rgba(9, 14, 24, 0.95) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 12px 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	min-width: 170px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	box-sizing: border-box;
	cursor: default;
}

.pxv-brand-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	width: 100%;
	height: 100%;
}

.pxv-brand-card:hover {
	transform: scale(1.06) translateY(-2px);
	border-color: rgba(0, 210, 255, 0.55);
	box-shadow: 0 0 25px rgba(0, 210, 255, 0.35);
	background: linear-gradient(135deg, rgba(0, 210, 255, 0.12) 0%, rgba(26, 104, 248, 0.18) 100%);
}

.pxv-brand-logo {
	max-height: 38px;
	max-width: 130px;
	object-fit: contain;
	filter: brightness(0.95) contrast(1.05);
	transition: filter 0.3s ease;
}

.pxv-brand-card:hover .pxv-brand-logo {
	filter: brightness(1.1) contrast(1.15) drop-shadow(0 0 8px rgba(0, 210, 255, 0.5));
}

/* Typography Pill when Logo Image is not uploaded */
.pxv-brand-text-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.pxv-brand-symbol {
	color: var(--accent-cyan);
	font-size: 11px;
	filter: drop-shadow(0 0 6px var(--accent-cyan));
}

.pxv-brand-name {
	font-family: var(--font-main);
	font-weight: 800;
	font-size: 15px;
	color: #ffffff;
	letter-spacing: -0.2px;
	white-space: nowrap;
}

.pxv-brand-sub-tag {
	font-family: var(--font-main);
	font-size: 10.5px;
	font-weight: 600;
	color: #00d2ff;
	background: rgba(0, 210, 255, 0.1);
	border: 1px solid rgba(0, 210, 255, 0.25);
	padding: 2px 8px;
	border-radius: 10px;
	margin-left: 6px;
	letter-spacing: 0.3px;
	white-space: nowrap;
}

/* PXVERS Concept Brands / Demo Projects Sub-Section Styling */
.pxv-demo-brands-divider {
	text-align: center;
	margin: 50px 0 24px 0;
	position: relative;
}

.pxv-demo-brands-divider::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 5%;
	right: 5%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.25), transparent);
	z-index: 1;
}

.pxv-demo-brands-badge {
	position: relative;
	z-index: 2;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 11.5px;
	color: var(--accent-cyan);
	letter-spacing: 1.5px;
	background: #040711;
	border: 1px solid rgba(0, 210, 255, 0.3);
	padding: 6px 18px;
	border-radius: 24px;
	display: inline-block;
	box-shadow: 0 0 20px rgba(0, 210, 255, 0.15);
}

.pxv-demo-brand-card {
	cursor: pointer;
	border-color: rgba(0, 210, 255, 0.18);
}

.pxv-demo-brand-card:hover {
	border-color: rgba(0, 210, 255, 0.65);
	box-shadow: 0 0 30px rgba(0, 210, 255, 0.35);
	background: linear-gradient(135deg, rgba(0, 210, 255, 0.15) 0%, rgba(26, 104, 248, 0.22) 100%);
}

.pxv-demo-sector-tag {
	font-family: var(--font-main);
	font-size: 10px;
	font-weight: 700;
	color: #38bdf8;
	background: rgba(56, 189, 248, 0.12);
	border: 1px solid rgba(56, 189, 248, 0.3);
	padding: 2px 8px;
	border-radius: 12px;
	margin-left: 8px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

@media (max-width: 768px) {
	.pxv-brands-section {
		padding: 70px 0;
	}
	.pxv-brand-card {
		height: 54px;
		padding: 10px 20px;
		min-width: 140px;
	}
	.pxv-brand-name {
		font-size: 13.5px;
	}
	.pxv-brand-logo {
		max-height: 32px;
		max-width: 110px;
	}
}

/* ==========================================================================
   PXVERS DİJİTAL DENEYİM EKOSİSTEMİ - INTERACTIVE ANIMATED NETWORK VISUAL
   ========================================================================== */
.pxv-ecosystem-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.pxv-ecosystem-visual {
	width: 100%;
	max-width: 440px;
	aspect-ratio: 1 / 1;
	background: linear-gradient(135deg, rgba(4, 9, 20, 0.95) 0%, rgba(9, 15, 28, 0.98) 100%);
	border: 1px solid rgba(0, 210, 255, 0.3);
	border-radius: 28px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), inset 0 0 30px rgba(0, 210, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
}

.pxv-ecosystem-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.pxv-ring-rotate {
	transform-origin: center;
	animation: pxvRingRotate 60s linear infinite;
}

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

.pxv-line-flow {
	animation: pxvLineDash 15s linear infinite;
}

@keyframes pxvLineDash {
	0% { stroke-dashoffset: 0; }
	100% { stroke-dashoffset: -100; }
}

/* Energy Pulse Stream Particles */
.pxv-pulse-dot1 { animation: pxvPulseMove1 4s ease-in-out infinite; }
.pxv-pulse-dot2 { animation: pxvPulseMove2 5s ease-in-out infinite 1s; }
.pxv-pulse-dot3 { animation: pxvPulseMove3 4.5s ease-in-out infinite 0.5s; }
.pxv-pulse-dot4 { animation: pxvPulseMove4 5.5s ease-in-out infinite 1.5s; }

@keyframes pxvPulseMove1 {
	0%, 100% { transform: translate(0, 0); opacity: 0.2; }
	50% { transform: translate(0, -65px); opacity: 1; filter: drop-shadow(0 0 6px #00f0ff); }
}
@keyframes pxvPulseMove2 {
	0%, 100% { transform: translate(0, 0); opacity: 0.2; }
	50% { transform: translate(65px, 0); opacity: 1; filter: drop-shadow(0 0 6px #00f0ff); }
}
@keyframes pxvPulseMove3 {
	0%, 100% { transform: translate(0, 0); opacity: 0.2; }
	50% { transform: translate(-65px, 0); opacity: 1; filter: drop-shadow(0 0 6px #00f0ff); }
}
@keyframes pxvPulseMove4 {
	0%, 100% { transform: translate(0, 0); opacity: 0.2; }
	50% { transform: translate(0, 65px); opacity: 1; filter: drop-shadow(0 0 6px #00f0ff); }
}

/* Node Styling */
.pxv-eco-node {
	position: absolute;
	z-index: 3;
	box-sizing: border-box;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Center Core Node */
.pxv-eco-core {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, #00f0ff 0%, #1a68f8 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 35px rgba(0, 210, 255, 0.65), inset 0 0 15px rgba(255, 255, 255, 0.5);
	cursor: pointer;
}

.pxv-core-title {
	font-family: var(--font-main);
	font-weight: 900;
	font-size: 15px;
	color: #ffffff;
	letter-spacing: 2px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.pxv-core-pulse-ring {
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 1.5px solid rgba(0, 210, 255, 0.6);
	animation: pxvCorePulse 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
	pointer-events: none;
}

.pxv-core-pulse-ring.delay {
	animation-delay: 1.5s;
}

@keyframes pxvCorePulse {
	0% { transform: scale(0.9); opacity: 0.8; }
	100% { transform: scale(1.6); opacity: 0; }
}

/* Orbit Satellite Glass Nodes */
.pxv-eco-node:not(.pxv-eco-core) {
	background: linear-gradient(135deg, rgba(13, 21, 37, 0.92) 0%, rgba(8, 14, 25, 0.96) 100%);
	border: 1px solid rgba(0, 210, 255, 0.35);
	border-radius: 30px;
	padding: 6px 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 210, 255, 0.15);
	backdrop-filter: blur(10px);
	cursor: pointer;
}

.pxv-eco-node:not(.pxv-eco-core):hover {
	transform: scale(1.12);
	border-color: rgba(0, 210, 255, 0.7);
	box-shadow: 0 0 25px rgba(0, 210, 255, 0.4);
	background: linear-gradient(135deg, rgba(0, 210, 255, 0.2) 0%, rgba(26, 104, 248, 0.25) 100%);
}

.pxv-node-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00f0ff;
	box-shadow: 0 0 8px #00f0ff;
}

.pxv-node-text {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 12px;
	color: #ffffff;
	letter-spacing: -0.1px;
	white-space: nowrap;
}

/* Positioning 8 Satellite Nodes around 400x400 Ecosystem Box */
.pxv-node-top    { top: 7%; left: 50%; transform: translateX(-50%); }
.pxv-node-tr     { top: 18%; right: 5%; }
.pxv-node-right  { top: 48%; right: 2%; transform: translateY(-50%); }
.pxv-node-br     { bottom: 18%; right: 5%; }
.pxv-node-bottom { bottom: 7%; left: 50%; transform: translateX(-50%); }
.pxv-node-bl     { bottom: 18%; left: 5%; }
.pxv-node-left   { top: 48%; left: 2%; transform: translateY(-50%); }
.pxv-node-tl     { top: 18%; left: 5%; }

/* Floating Orbit Animation Classes */
.float-1 { animation: pxvFloat1 6s ease-in-out infinite alternate; }
.float-2 { animation: pxvFloat2 7s ease-in-out infinite alternate; }
.float-3 { animation: pxvFloat3 8s ease-in-out infinite alternate; }
.float-4 { animation: pxvFloat4 6.5s ease-in-out infinite alternate; }

@keyframes pxvFloat1 {
	0% { transform: translateY(0px); }
	100% { transform: translateY(-8px); }
}

@keyframes pxvFloat2 {
	0% { transform: translateY(0px); }
	100% { transform: translateY(8px); }
}

@keyframes pxvFloat3 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(-6px); }
}

@keyframes pxvFloat4 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(6px); }
}

@media (max-width: 992px) {
	.ai-card-main {
		grid-template-columns: 1fr;
	}
	.pxv-ecosystem-visual {
		max-width: 360px;
		margin: 0 auto;
	}
	.pxv-eco-core {
		width: 76px;
		height: 76px;
	}
	.pxv-core-title {
		font-size: 13px;
	}
	.pxv-node-text {
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	.pxv-ecosystem-visual {
		max-width: 310px;
	}
	.pxv-eco-node:not(.pxv-eco-core) {
		padding: 4px 10px;
	}
	.pxv-node-text {
		font-size: 10px;
	}
}

/* ==========================================================================
   PXVERS HİZMETLERİMİZ KATALOGU & ALT KATEGORİLER STYLES
   ========================================================================== */
.pxv-services-cat-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.pxv-service-cat-card {
	background: linear-gradient(135deg, rgba(10, 15, 26, 0.9) 0%, rgba(5, 8, 15, 0.96) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.pxv-service-cat-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 210, 255, 0.5);
	box-shadow: 0 20px 50px rgba(0, 210, 255, 0.15);
	background: linear-gradient(135deg, rgba(0, 210, 255, 0.08) 0%, rgba(26, 104, 248, 0.12) 100%);
}

.pxv-cat-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.pxv-cat-icon-box {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: rgba(0, 210, 255, 0.06);
	border: 1px solid rgba(0, 210, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
}

.pxv-cat-badge {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 11px;
	color: var(--accent-cyan);
	letter-spacing: 1px;
	background: rgba(0, 210, 255, 0.08);
	border: 1px solid rgba(0, 210, 255, 0.25);
	padding: 4px 12px;
	border-radius: 20px;
}

.pxv-cat-title {
	font-family: var(--font-main);
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.25;
	margin-bottom: 12px;
}

.pxv-cat-desc {
	font-family: var(--font-main);
	font-weight: 400;
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.65;
	margin-bottom: 24px;
}

.pxv-cat-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.pxv-tag-chip {
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 11px;
	color: #cbd5e1;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 4px 10px;
	border-radius: 6px;
}

.pxv-cat-footer {
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pxv-btn-cat-action {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #00d2ff;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.pxv-btn-cat-action:hover {
	color: #ffffff;
	transform: translateX(4px);
}

@media (max-width: 768px) {
	.pxv-services-cat-grid {
		grid-template-columns: 1fr;
	}
	.pxv-service-cat-card {
		padding: 24px;
	}
}

/* ==========================================================================
   PXVERS DİJİTAL ÜRÜNLER & PREMİUM STORE STYLES
   ========================================================================== */
.pxv-store-section {
	padding: 100px 0;
	position: relative;
}

.pxv-store-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 60px auto;
}

.pxv-store-badge {
	display: inline-block;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 2px;
	color: #00d2ff;
	background: rgba(0, 210, 255, 0.08);
	border: 1px solid rgba(0, 210, 255, 0.25);
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.pxv-store-title {
	font-family: var(--font-main);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.5px;
	margin-bottom: 16px;
}

.pxv-store-subtitle {
	font-family: var(--font-main);
	font-size: clamp(15px, 1.8vw, 17px);
	color: var(--text-muted);
	line-height: 1.6;
}

/* Grid Layouts */
.pxv-web-packages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 32px;
}

.pxv-marketing-packages-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

/* Card Container */
.pxv-package-card {
	background: linear-gradient(145deg, rgba(13, 21, 37, 0.92) 0%, rgba(8, 13, 23, 0.97) 100%);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 24px;
	padding: 36px 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
	backdrop-filter: blur(16px);
}

.pxv-package-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 210, 255, 0.45);
	box-shadow: 0 20px 45px rgba(0, 210, 255, 0.14);
}

/* Featured / Pro Badges */
.pxv-featured-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(90deg, #00d2ff 0%, #1a68f8 100%);
	color: #ffffff;
	font-family: var(--font-main);
	font-weight: 800;
	font-size: 11px;
	letter-spacing: 1px;
	padding: 5px 16px;
	border-radius: 20px;
	box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
}

.pxv-pro-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(90deg, #a855f7 0%, #3b82f6 100%);
	color: #ffffff;
	font-family: var(--font-main);
	font-weight: 800;
	font-size: 11px;
	letter-spacing: 1px;
	padding: 5px 16px;
	border-radius: 20px;
	box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.pxv-gift-badge {
	display: inline-block;
	background: rgba(34, 197, 94, 0.12);
	border: 1px solid rgba(34, 197, 94, 0.35);
	color: #4ade80;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 11px;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 16px;
	align-self: flex-start;
}

.pxv-card-featured {
	border-color: rgba(0, 210, 255, 0.4);
	box-shadow: 0 15px 40px rgba(0, 210, 255, 0.12);
	background: linear-gradient(145deg, rgba(0, 210, 255, 0.08) 0%, rgba(13, 21, 37, 0.95) 100%);
}

/* Card Header & Pricing */
.pxv-card-head {
	margin-bottom: 16px;
}

.pxv-card-cat {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 11px;
	color: var(--accent-cyan);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 6px;
}

.pxv-card-name {
	font-family: var(--font-main);
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.3;
}

.pxv-card-pricing {
	margin-bottom: 18px;
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.pxv-price-old {
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 600;
	color: #64748b;
	text-decoration: line-through;
}

.pxv-price-current {
	font-family: var(--font-main);
	font-size: 32px;
	font-weight: 800;
	color: #38bdf8;
	line-height: 1;
}

.pxv-currency {
	font-size: 18px;
	font-weight: 700;
	color: #94a3b8;
}

.pxv-card-desc {
	font-family: var(--font-main);
	font-size: 14px;
	color: #cbd5e1;
	line-height: 1.6;
	margin-bottom: 20px;
}

.pxv-card-subdesc {
	font-family: var(--font-main);
	font-size: 13px;
	color: #94a3b8;
	line-height: 1.55;
	margin-bottom: 20px;
}

.pxv-edu-highlight-pill {
	background: rgba(0, 210, 255, 0.08);
	border: 1px stroke rgba(0, 210, 255, 0.25);
	color: #00d2ff;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 8px;
	margin-bottom: 20px;
}

/* Features List */
.pxv-card-features {
	margin-bottom: 24px;
	flex-grow: 1;
}

.pxv-card-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pxv-card-features li {
	font-family: var(--font-main);
	font-size: 13px;
	color: #94a3b8;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1.4;
}

.pxv-card-features li.highlight-feat {
	color: #ffffff;
	font-weight: 600;
}

.pxv-card-extra-info {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	padding: 12px 14px;
	margin-bottom: 20px;
}

.pxv-info-item.text-negative {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 12px;
	color: #ef4444;
	margin-bottom: 4px;
}

.pxv-info-note {
	font-family: var(--font-main);
	font-size: 11px;
	color: #64748b;
}

.pxv-card-cta {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 14px;
}

.btn-pxv-details {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #cbd5e1;
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 13px;
	padding: 10px 16px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.25s ease;
	width: 100%;
	box-sizing: border-box;
}

.btn-pxv-details:hover {
	background: rgba(0, 210, 255, 0.1);
	border-color: rgba(0, 210, 255, 0.4);
	color: #ffffff;
}

/* WhatsApp CTA Button */
.btn-pxv-wa-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: rgba(37, 211, 102, 0.12);
	border: 1px solid rgba(37, 211, 102, 0.4);
	color: #25d366;
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 14px;
	padding: 13px 20px;
	border-radius: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	width: 100%;
	box-sizing: border-box;
	cursor: pointer;
}

.btn-pxv-wa-cta:hover {
	background: #25d366;
	color: #050b14;
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
	transform: translateY(-2px);
}

.btn-primary-wa {
	background: linear-gradient(135deg, #00d2ff 0%, #1a68f8 100%);
	border: none;
	color: #ffffff;
}

.btn-primary-wa:hover {
	background: linear-gradient(135deg, #1a68f8 0%, #00d2ff 100%);
	color: #ffffff;
	box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
}

/* Custom Project Card (Card 4) */
.pxv-custom-project-card {
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(8, 13, 24, 0.98) 100%);
	border: 1px solid rgba(0, 210, 255, 0.3);
	border-radius: 28px;
	padding: 44px;
	margin-bottom: 60px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
	position: relative;
	overflow: hidden;
}

.pxv-custom-card-inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 40px;
	align-items: center;
}

.pxv-custom-label {
	font-family: var(--font-main);
	font-weight: 800;
	font-size: 11px;
	letter-spacing: 2px;
	color: #00d2ff;
	background: rgba(0, 210, 255, 0.1);
	border: 1px solid rgba(0, 210, 255, 0.3);
	padding: 4px 12px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 16px;
}

.pxv-custom-title {
	font-family: var(--font-main);
	font-size: 26px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 14px;
}

.pxv-custom-desc {
	font-family: var(--font-main);
	font-size: 15px;
	color: #cbd5e1;
	line-height: 1.6;
	margin-bottom: 20px;
}

.pxv-custom-note {
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 13px;
	color: #38bdf8;
	margin-bottom: 24px;
}

.pxv-custom-right h4 {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
}

.pxv-custom-features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.pxv-cfeat-item {
	font-family: var(--font-main);
	font-size: 13px;
	color: #94a3b8;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Section Divider */
.pxv-section-divider {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 60px 0 40px 0;
}

.pxv-divider-line {
	flex-grow: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(0, 210, 255, 0.3), rgba(255,255,255,0.02));
}

.pxv-divider-title {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 3px;
	color: #00d2ff;
	text-transform: uppercase;
	margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
	.pxv-web-packages-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.pxv-custom-card-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

@media (max-width: 768px) {
	.pxv-web-packages-grid,
	.pxv-marketing-packages-grid {
		grid-template-columns: 1fr;
	}
	.pxv-custom-project-card {
		padding: 28px 20px;
	}
	.pxv-custom-features-grid {
		grid-template-columns: 1fr;
	}
	.pxv-package-card {
		padding: 28px 20px;
	}
}

/* ==========================================================================
   PXVERS DEMO WEB SİTELERİ GALERİ SİSTEMİ STİLLERİ
   ========================================================================== */

.pxv-demo-page-main {
	min-height: 100vh;
	padding-bottom: 100px;
}

.pxv-demo-hero-section {
	padding-top: 140px;
	padding-bottom: 40px;
	text-align: center;
}

.pxv-demo-gallery-section {
	padding-bottom: 60px;
}

.pxv-demo-filter-wrapper {
	max-width: 1000px;
	margin: 0 auto 50px auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Search Box */
.pxv-demo-search-box {
	position: relative;
	max-width: 580px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.pxv-demo-search-box svg {
	position: absolute;
	left: 18px;
	pointer-events: none;
}

.pxv-demo-search-box input {
	width: 100%;
	background: rgba(12, 18, 32, 0.85);
	border: 1.5px solid rgba(0, 210, 255, 0.3);
	border-radius: 30px;
	padding: 14px 20px 14px 48px;
	font-family: var(--font-main, sans-serif);
	font-size: 14px;
	color: #ffffff;
	outline: none;
	backdrop-filter: blur(12px);
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.pxv-demo-search-box input:focus {
	border-color: #00d2ff;
	box-shadow: 0 0 20px rgba(0, 210, 255, 0.35);
}

/* Category Tabs */
.pxv-demo-category-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.pxv-cat-btn {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 8px 18px;
	font-family: var(--font-main, sans-serif);
	font-size: 12.5px;
	font-weight: 700;
	color: #cbd5e1;
	cursor: pointer;
	transition: all 0.25s ease;
}

.pxv-cat-btn:hover {
	color: #ffffff;
	background: rgba(0, 210, 255, 0.1);
	border-color: rgba(0, 210, 255, 0.3);
}

.pxv-cat-btn.active {
	background: linear-gradient(135deg, rgba(0, 210, 255, 0.2) 0%, rgba(26, 104, 248, 0.3) 100%);
	border-color: #00d2ff;
	color: #ffffff;
	box-shadow: 0 0 14px rgba(0, 210, 255, 0.35);
}

/* Demo Grid */
.pxv-demo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: stretch;
}

/* Demo Card */
.pxv-demo-card {
	background: linear-gradient(145deg, rgba(13, 21, 37, 0.82) 0%, rgba(6, 10, 18, 0.88) 100%);
	border: 1.5px solid rgba(0, 210, 255, 0.25);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.pxv-demo-card:hover {
	transform: translateY(-5px);
	border-color: #00d2ff;
	box-shadow: 0 12px 35px rgba(0, 210, 255, 0.25);
}

.pxv-demo-thumb-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #060a12;
}

.pxv-demo-thumb-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.pxv-demo-card:hover .pxv-demo-thumb-wrap img {
	transform: scale(1.06);
}

.pxv-demo-thumb-overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 10, 18, 0.75);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.pxv-demo-card:hover .pxv-demo-thumb-overlay {
	opacity: 1;
}

.btn-pxv-demo-view {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #00d2ff 0%, #1a68f8 100%);
	color: #ffffff;
	font-family: var(--font-main, sans-serif);
	font-size: 13px;
	font-weight: 800;
	padding: 10px 20px;
	border-radius: 20px;
	text-decoration: none;
	box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
	transition: transform 0.25s ease;
}

.btn-pxv-demo-view:hover {
	transform: scale(1.05);
}

.pxv-demo-featured-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
	color: #000000;
	font-family: var(--font-mono, monospace);
	font-size: 10px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.pxv-demo-card-body {
	padding: 24px 22px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.pxv-demo-sector-tag {
	font-family: var(--font-mono, monospace);
	font-size: 10.5px;
	font-weight: 800;
	color: #00d2ff;
	letter-spacing: 1px;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.pxv-demo-card-title {
	font-family: var(--font-main, sans-serif);
	font-size: 19px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 8px 0;
	line-height: 1.3;
}

.pxv-demo-card-desc {
	font-family: var(--font-main, sans-serif);
	font-size: 13px;
	color: #cbd5e1;
	margin: 0 0 20px 0;
	line-height: 1.55;
	flex-grow: 1;
}

.pxv-demo-card-footer {
	margin-top: auto;
}

.pxv-demo-link-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-main, sans-serif);
	font-size: 13px;
	font-weight: 800;
	color: #00d2ff;
	text-decoration: none;
	transition: color 0.2s ease, gap 0.2s ease;
}

.pxv-demo-link-btn:hover {
	color: #ffffff;
	gap: 10px;
}

/* Empty State */
.pxv-demo-empty-state {
	display: none;
	text-align: center;
	padding: 70px 30px;
	background: linear-gradient(145deg, rgba(12, 18, 32, 0.7) 0%, rgba(6, 10, 18, 0.8) 100%);
	border: 1.5px dashed rgba(0, 210, 255, 0.3);
	border-radius: 24px;
	max-width: 620px;
	margin: 40px auto;
	backdrop-filter: blur(12px);
}

.pxv-demo-empty-state.is-visible {
	display: block;
}

.pxv-empty-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px auto;
	background: rgba(0, 210, 255, 0.08);
	border: 1px solid rgba(0, 210, 255, 0.25);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
}

.pxv-demo-empty-state h3 {
	font-family: var(--font-main, sans-serif);
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 8px 0;
}

.pxv-demo-empty-state p {
	font-family: var(--font-main, sans-serif);
	font-size: 14px;
	color: #cbd5e1;
	margin: 0;
}

@media (max-width: 992px) {
	.pxv-demo-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.pxv-demo-grid {
		grid-template-columns: 1fr;
	}
	.pxv-demo-category-tabs {
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 8px;
		flex-wrap: nowrap;
	}
	.pxv-cat-btn {
		white-space: nowrap;
		font-size: 11.5px;
		padding: 6px 14px;
	}
}

/* ==========================================================================
   PXVERS DİJİTAL ALTYAPI MİMARİSİ (INTERACTIVE ECOSYSTEM DIAGRAM)
   ========================================================================== */
.pxv-arch-diagram-card {
	background: linear-gradient(145deg, rgba(8, 14, 28, 0.96) 0%, rgba(4, 7, 17, 0.98) 100%);
	border: 1px solid rgba(0, 210, 255, 0.28);
	border-radius: 20px;
	padding: 20px 20px 22px 20px;
	position: relative;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(0, 210, 255, 0.08);
	overflow: hidden;
	user-select: none;
	width: 100%;
}

.pxv-arch-diagram-card::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(0, 210, 255, 0.12) 0%, rgba(26, 104, 248, 0.06) 45%, transparent 70%);
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 0;
	animation: pxvArchHaloPulse 6s ease-in-out infinite alternate;
}

.pxv-arch-diagram-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 32px 32px;
	pointer-events: none;
	opacity: 0.6;
	z-index: 0;
}

@keyframes pxvArchHaloPulse {
	0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.7; }
	100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.pxv-arch-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	padding-bottom: 12px;
	margin-bottom: 12px;
	position: relative;
	z-index: 2;
}

.pxv-arch-title-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono, monospace);
	font-size: 11px;
	font-weight: 600;
	color: #94a3b8;
	letter-spacing: 0.5px;
}

.pxv-arch-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono, monospace);
	font-size: 10px;
	font-weight: 700;
	color: #00d2ff;
	background: rgba(0, 210, 255, 0.1);
	border: 1px solid rgba(0, 210, 255, 0.25);
	padding: 3px 10px;
	border-radius: 12px;
	letter-spacing: 0.4px;
}

.pxv-arch-status-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00d2ff;
	box-shadow: 0 0 8px #00d2ff;
	animation: pxvStatusBlink 2s ease-in-out infinite;
}

@keyframes pxvStatusBlink {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(0.85); }
}

.pxv-arch-stage {
	position: relative;
	width: 100%;
	height: 370px;
	z-index: 2;
}

.pxv-arch-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.pxv-conn-line {
	fill: none;
	stroke: rgba(255, 255, 255, 0.09);
	stroke-width: 1.5;
	stroke-dasharray: 4 4;
	transition: stroke 0.4s ease, stroke-width 0.4s ease, filter 0.4s ease;
}

.pxv-conn-energy {
	fill: none;
	stroke: url(#pxvEnergyGrad);
	stroke-width: 2.2;
	stroke-dasharray: 8 16;
	stroke-dashoffset: 0;
	animation: pxvEnergyFlow 4s linear infinite;
	opacity: 0.35;
	transition: opacity 0.4s ease, stroke-width 0.4s ease, filter 0.4s ease;
}

@keyframes pxvEnergyFlow {
	to { stroke-dashoffset: -96; }
}

.pxv-arch-stage[data-active="seo"] #line-seo,
.pxv-arch-stage[data-active="performance"] #line-performance,
.pxv-arch-stage[data-active="security"] #line-security,
.pxv-arch-stage[data-active="meta-ads"] #line-meta-ads,
.pxv-arch-stage[data-active="analytics"] #line-analytics,
.pxv-arch-stage[data-active="automation"] #line-automation,
.pxv-arch-stage[data-active="backup"] #line-backup {
	stroke: rgba(0, 210, 255, 0.7);
	stroke-width: 2;
	stroke-dasharray: none;
	filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.6));
}

.pxv-arch-stage[data-active="seo"] #energy-seo,
.pxv-arch-stage[data-active="performance"] #energy-performance,
.pxv-arch-stage[data-active="security"] #energy-security,
.pxv-arch-stage[data-active="meta-ads"] #energy-meta-ads,
.pxv-arch-stage[data-active="analytics"] #energy-analytics,
.pxv-arch-stage[data-active="automation"] #energy-automation,
.pxv-arch-stage[data-active="backup"] #energy-backup {
	opacity: 1;
	stroke-width: 3;
	animation-duration: 1.8s;
	filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.9));
}

.pxv-arch-core {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 180px;
	background: linear-gradient(145deg, rgba(14, 23, 42, 0.95) 0%, rgba(8, 14, 26, 0.98) 100%);
	border: 1.5px solid rgba(0, 210, 255, 0.45);
	border-radius: 14px;
	padding: 8px 12px 12px 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 210, 255, 0.2);
	z-index: 5;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
}

.pxv-arch-core:hover {
	transform: translate(-50%, -50%) scale(1.04);
	border-color: rgba(0, 210, 255, 0.85);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 210, 255, 0.4);
}

.pxv-core-window-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 6px;
	margin-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pxv-core-dots {
	display: flex;
	gap: 4px;
}

.pxv-core-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.pxv-core-dot.dot-cyan { background: #00d2ff; }

.pxv-core-address {
	font-family: var(--font-mono, monospace);
	font-size: 8.5px;
	color: #64748b;
	letter-spacing: 0.2px;
}

.pxv-core-icon-box {
	width: 34px;
	height: 34px;
	margin: 0 auto 6px auto;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(0, 210, 255, 0.2) 0%, rgba(26, 104, 248, 0.3) 100%);
	border: 1px solid rgba(0, 210, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00d2ff;
	box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.pxv-core-icon-box svg {
	width: 18px;
	height: 18px;
}

.pxv-core-title {
	font-family: var(--font-main, sans-serif);
	font-size: 11.5px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: 0.3px;
	line-height: 1.2;
	margin-bottom: 2px;
}

.pxv-core-badge {
	font-size: 9px;
	font-weight: 600;
	color: #38bdf8;
	opacity: 0.9;
	letter-spacing: 0.4px;
}

.pxv-arch-node {
	position: absolute;
	background: linear-gradient(135deg, rgba(13, 22, 38, 0.92) 0%, rgba(8, 14, 24, 0.96) 100%);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 12px;
	padding: 7px 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
	cursor: pointer;
	z-index: 4;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	white-space: nowrap;
}

.pxv-node-icon {
	width: 24px;
	height: 24px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.pxv-node-icon svg {
	width: 13px;
	height: 13px;
}

.pxv-node-content {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.pxv-node-title {
	font-size: 11px;
	font-weight: 700;
	color: #e2e8f0;
	letter-spacing: 0.3px;
	line-height: 1.2;
	transition: color 0.3s ease;
}

.pxv-node-sub {
	font-size: 9px;
	font-weight: 500;
	color: #64748b;
	line-height: 1.2;
	margin-top: 1px;
	transition: color 0.3s ease;
}

.node-seo         { top: 25px; left: 15px; }
.node-backup      { top: 12px; left: 50%; transform: translateX(-50%); }
.node-performance { top: 25px; right: 15px; }
.node-security    { top: 165px; right: 10px; }
.node-meta-ads    { bottom: 20px; right: 25px; }
.node-analytics   { bottom: 20px; left: 45px; }
.node-automation  { top: 165px; left: 10px; }

.pxv-arch-node:hover,
.pxv-arch-node.is-active {
	border-color: rgba(0, 210, 255, 0.7);
	background: linear-gradient(135deg, rgba(0, 210, 255, 0.16) 0%, rgba(26, 104, 248, 0.22) 100%);
	box-shadow: 0 0 20px rgba(0, 210, 255, 0.3), 0 10px 25px rgba(0, 0, 0, 0.5);
	transform: scale(1.06);
}

.node-backup:hover,
.node-backup.is-active {
	transform: translateX(-50%) scale(1.06);
}

.pxv-arch-node:hover .pxv-node-icon,
.pxv-arch-node.is-active .pxv-node-icon {
	background: rgba(0, 210, 255, 0.25);
	border-color: rgba(0, 210, 255, 0.6);
	color: #00d2ff;
	box-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

.pxv-arch-node:hover .pxv-node-title,
.pxv-arch-node.is-active .pxv-node-title {
	color: #ffffff;
}

.pxv-arch-node:hover .pxv-node-sub,
.pxv-arch-node.is-active .pxv-node-sub {
	color: #38bdf8;
}

.pxv-arch-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	z-index: 2;
}

.pxv-arch-active-summary {
	font-size: 11px;
	font-weight: 600;
	color: #94a3b8;
	display: flex;
	align-items: center;
	gap: 6px;
}

.pxv-arch-active-summary span.highlight {
	color: #00d2ff;
	font-weight: 700;
}

.pxv-arch-tech-badge {
	font-family: var(--font-mono, monospace);
	font-size: 9.5px;
	color: #64748b;
}

@media (max-width: 600px) {
	.pxv-arch-stage {
		height: 420px;
	}
	.pxv-arch-core {
		width: 145px;
		padding: 6px 10px 10px 10px;
	}
	.pxv-core-title {
		font-size: 10px;
	}
	.pxv-arch-node {
		padding: 5px 9px;
		gap: 6px;
	}
	.pxv-node-icon {
		width: 20px;
		height: 20px;
	}
	.pxv-node-icon svg {
		width: 11px;
		height: 11px;
	}
	.pxv-node-title {
		font-size: 9.5px;
	}
	.pxv-node-sub {
		font-size: 8px;
	}
	.node-seo         { top: 15px; left: 8px; }
	.node-backup      { top: 10px; }
	.node-performance { top: 15px; right: 8px; }
	.node-security    { top: 180px; right: 6px; }
	.node-meta-ads    { bottom: 15px; right: 12px; }
	.node-analytics   { bottom: 15px; left: 12px; }
	.node-automation  { top: 180px; left: 6px; }
}

/* ==========================================================================
   PXVERS REAL DOMAIN AVAILABILITY CHECKER & WEB OFFER SECTION
   ========================================================================== */
.pxv-domain-checker-section {
	padding: 80px 0 110px 0;
	position: relative;
	background: radial-gradient(circle at 50% 0%, rgba(0, 210, 255, 0.07) 0%, transparent 65%), #030712;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.pxv-domain-checker-card {
	background: linear-gradient(145deg, rgba(10, 18, 35, 0.94) 0%, rgba(5, 9, 20, 0.98) 100%);
	border: 1px solid rgba(0, 210, 255, 0.25);
	border-radius: 24px;
	padding: 44px 36px;
	max-width: 880px;
	margin: 0 auto;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 210, 255, 0.08);
	position: relative;
	overflow: hidden;
}

.pxv-domain-card-header {
	text-align: center;
	margin-bottom: 32px;
}

.pxv-domain-card-header .hero-badge {
	margin-bottom: 12px;
	display: inline-flex;
}

.pxv-domain-card-title {
	font-family: var(--font-main, sans-serif);
	font-size: clamp(1.6rem, 2.8vw, 2.2rem);
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.5px;
	margin-bottom: 10px;
	line-height: 1.25;
}

.pxv-domain-card-subtitle {
	font-family: var(--font-main, sans-serif);
	font-size: 15px;
	color: #94a3b8;
	max-width: 620px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Domain Search Bar Form */
.pxv-domain-form-wrapper {
	position: relative;
	margin-bottom: 24px;
}

.pxv-domain-search-box {
	display: flex;
	align-items: center;
	background: rgba(4, 8, 18, 0.9);
	border: 1.5px solid rgba(0, 210, 255, 0.35);
	border-radius: 16px;
	padding: 6px 8px 6px 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 2px 6px rgba(0, 0, 0, 0.5);
	transition: all 0.35s ease;
}

.pxv-domain-search-box:focus-within {
	border-color: #00d2ff;
	box-shadow: 0 0 30px rgba(0, 210, 255, 0.35), inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

.pxv-domain-prefix {
	font-family: var(--font-mono, monospace);
	font-size: 14px;
	font-weight: 600;
	color: #64748b;
	margin-right: 8px;
	user-select: none;
}

.pxv-domain-input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	color: #ffffff;
	font-family: var(--font-main, sans-serif);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.3px;
	padding: 10px 4px;
}

.pxv-domain-input::placeholder {
	color: #475569;
	font-weight: 400;
}

.btn-pxv-domain-search {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #00d2ff 0%, #1a68f8 100%);
	border: none;
	color: #ffffff;
	font-family: var(--font-main, sans-serif);
	font-size: 14px;
	font-weight: 700;
	padding: 12px 24px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 15px rgba(0, 210, 255, 0.35);
	white-space: nowrap;
}

.btn-pxv-domain-search:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 210, 255, 0.5);
}

.btn-pxv-domain-search:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Spinner */
.pxv-spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: pxvSpin 0.8s linear infinite;
}

@keyframes pxvSpin {
	to { transform: rotate(360deg); }
}

/* Results Display Area */
.pxv-domain-results-area {
	display: none;
	margin-top: 24px;
	animation: pxvFadeSlideUp 0.4s ease forwards;
}

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

/* Available Box */
.pxv-domain-available-card {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(6, 78, 59, 0.18) 100%);
	border: 1.5px solid rgba(16, 185, 129, 0.5);
	border-radius: 18px;
	padding: 24px 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.pxv-domain-status-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 19px;
	font-weight: 800;
	color: #34d399;
	margin-bottom: 6px;
}

.pxv-domain-status-desc {
	font-size: 13.5px;
	color: #cbd5e1;
	line-height: 1.5;
}

.btn-pxv-domain-offer {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #00d2ff 0%, #1a68f8 100%);
	color: #ffffff;
	font-family: var(--font-main, sans-serif);
	font-size: 14px;
	font-weight: 800;
	padding: 13px 26px;
	border-radius: 12px;
	text-decoration: none;
	cursor: pointer;
	border: none;
	box-shadow: 0 6px 20px rgba(0, 210, 255, 0.4);
	transition: all 0.3s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.btn-pxv-domain-offer:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 10px 30px rgba(0, 210, 255, 0.6);
	color: #ffffff;
}

/* Taken Box & Alternative Grid */
.pxv-domain-taken-card {
	background: rgba(15, 23, 42, 0.85);
	border: 1px solid rgba(239, 68, 68, 0.35);
	border-radius: 18px;
	padding: 22px 26px;
	margin-bottom: 24px;
}

.pxv-domain-taken-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	color: #f87171;
	margin-bottom: 8px;
}

.pxv-domain-taken-sub {
	font-size: 14px;
	color: #94a3b8;
}

.pxv-domain-alt-section-title {
	font-size: 14.5px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.pxv-domain-alt-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 12px;
	margin-bottom: 24px;
}

.pxv-domain-alt-item {
	background: rgba(8, 15, 30, 0.8);
	border: 1px solid rgba(0, 210, 255, 0.2);
	border-radius: 14px;
	padding: 14px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all 0.25s ease;
	user-select: none;
}

.pxv-domain-alt-item:hover {
	border-color: rgba(0, 210, 255, 0.7);
	background: rgba(0, 210, 255, 0.1);
	transform: translateY(-2px);
}

.pxv-domain-alt-item.is-selected {
	border-color: #00d2ff;
	background: linear-gradient(135deg, rgba(0, 210, 255, 0.2) 0%, rgba(26, 104, 248, 0.25) 100%);
	box-shadow: 0 0 20px rgba(0, 210, 255, 0.35);
}

.pxv-alt-name {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 6px;
}

.pxv-alt-name .chk {
	color: #34d399;
	font-weight: 800;
}

.pxv-alt-select-badge {
	font-size: 11px;
	font-weight: 700;
	color: #00d2ff;
	background: rgba(0, 210, 255, 0.12);
	border: 1px solid rgba(0, 210, 255, 0.3);
	padding: 4px 10px;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.pxv-domain-alt-item.is-selected .pxv-alt-select-badge {
	background: #00d2ff;
	color: #040812;
	border-color: #00d2ff;
}

/* Selected Action Bar */
.pxv-domain-selected-bar {
	background: linear-gradient(135deg, rgba(14, 23, 42, 0.95) 0%, rgba(8, 14, 28, 0.98) 100%);
	border: 1.5px solid rgba(0, 210, 255, 0.5);
	border-radius: 16px;
	padding: 18px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pxv-domain-selected-info {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14.5px;
	color: #94a3b8;
}

.pxv-domain-selected-info strong {
	color: #00d2ff;
	font-size: 16px;
	letter-spacing: 0.3px;
}

/* Error message box */
.pxv-domain-error-box {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	border-radius: 12px;
	padding: 16px 20px;
	color: #fca5a5;
	font-size: 13.5px;
	display: flex;
	align-items: center;
	gap: 10px;
}

@media (max-width: 768px) {
	.pxv-domain-checker-card {
		padding: 30px 20px;
		border-radius: 18px;
	}
	.pxv-domain-search-box {
		flex-direction: column;
		gap: 10px;
		padding: 12px;
	}
	.pxv-domain-prefix {
		display: none;
	}
	.pxv-domain-input {
		width: 100%;
		text-align: center;
	}
	.btn-pxv-domain-search {
		width: 100%;
		justify-content: center;
	}
	.pxv-domain-available-card,
	.pxv-domain-selected-bar {
		flex-direction: column;
		text-align: center;
	}
	.btn-pxv-domain-offer {
		width: 100%;
		justify-content: center;
	}
}

/* ==========================================================================
   HEADER, FOOTER & CONTACT PAGE SOCIAL & CONTACT ENHANCEMENTS
   ========================================================================== */
.header-social-group {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 6px;
}

.hdr-social-icon {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #94a3b8;
	text-decoration: none;
	transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
	flex-shrink: 0;
}

.hdr-social-icon:hover {
	color: #ffffff;
	background: rgba(0, 210, 255, 0.12);
	border-color: rgba(0, 210, 255, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(0, 210, 255, 0.25);
}

.hdr-social-icon.hdr-wa:hover {
	color: #25d366;
	background: rgba(37, 211, 102, 0.12);
	border-color: rgba(37, 211, 102, 0.4);
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.hdr-social-icon.hdr-yt:hover {
	color: #ff0000;
	background: rgba(255, 0, 0, 0.12);
	border-color: rgba(255, 0, 0, 0.4);
	box-shadow: 0 4px 14px rgba(255, 0, 0, 0.25);
}

.hdr-social-icon.hdr-ig:hover {
	color: #e1306c;
	background: rgba(225, 48, 108, 0.12);
	border-color: rgba(225, 48, 108, 0.4);
	box-shadow: 0 4px 14px rgba(225, 48, 108, 0.25);
}

.hdr-social-icon.hdr-li:hover {
	color: #0a66c2;
	background: rgba(10, 102, 194, 0.12);
	border-color: rgba(10, 102, 194, 0.4);
	box-shadow: 0 4px 14px rgba(10, 102, 194, 0.25);
}

.hdr-social-icon.hdr-tt:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.4);
	box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

/* Mobile Navigation Social Strip */
.mobile-social-strip {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding-top: 18px;
	margin-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	width: 100%;
}

@media (max-width: 1024px) {
	.header-actions .header-social-group {
		display: none;
	}
	.mobile-social-strip {
		display: flex;
	}
}

/* Footer Enhanced Info & Social Lists */
.footer-info-list,
.footer-social-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ftr-info-link,
.ftr-social-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text-muted);
	text-decoration: none;
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
}

.ftr-info-link svg,
.ftr-social-link svg {
	color: var(--accent-cyan);
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.ftr-info-link:hover,
.ftr-social-link:hover {
	color: #ffffff;
	transform: translateX(3px);
}

.ftr-info-link:hover svg,
.ftr-social-link:hover svg {
	color: #ffffff;
	transform: scale(1.1);
}

.ftr-info-static {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text-muted);
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 500;
}

.ftr-info-static svg {
	color: var(--accent-cyan);
	flex-shrink: 0;
}

/* Contact Page Social Section & Pills */
.contact-social-section {
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-social-title {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 13px;
	color: var(--text-dim);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 14px;
}

.contact-social-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.contact-social-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	color: #cbd5e1;
	text-decoration: none;
	font-family: var(--font-main);
	font-size: 13.5px;
	font-weight: 600;
	transition: all 0.25s ease;
}

.contact-social-pill svg {
	color: var(--accent-cyan);
	transition: transform 0.25s ease;
	flex-shrink: 0;
}

.contact-social-pill:hover {
	background: rgba(0, 210, 255, 0.1);
	border-color: rgba(0, 210, 255, 0.35);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 210, 255, 0.15);
}

.contact-social-pill:hover svg {
	transform: scale(1.15);
	color: #ffffff;
}

@media (max-width: 480px) {
	.contact-social-grid {
		grid-template-columns: 1fr;
	}
}

