:root {
	/* === Base Colors === */
	--bg: #000000;
	--bg-elev: #111111;
	--panel: #000000;
	--text: #ffffff;
	--muted: #888888;
	--primary: #ffffff;
	--accent: #ffffff;
	--border: #333333;
	--card: #111111;
	--shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	--radius: 0px;
	--gradient: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);

	/* === Enterprise Color System === */
	/* Category-specific accent colors */
	--accent-content: #3B82F6;      /* Blue for content */
	--accent-business: #10B981;     /* Green for business */
	--accent-workflows: #8B5CF6;    /* Purple for workflows */
	--accent-automation: #F59E0B;   /* Orange for automation */
	--accent-analytics: #EF4444;    /* Red for analytics */
	--accent-social: #EC4899;       /* Pink for social media */

	/* Semantic colors */
	--success: #10B981;
	--warning: #F59E0B;
	--error: #EF4444;
	--info: #3B82F6;

	/* Enterprise brand colors */
	--brand-primary: #1E40AF;
	--brand-secondary: #7C3AED;
	--brand-accent: #F59E0B;

	/* High contrast colors for accessibility */
	--text-high-contrast: #FFFFFF;
	--text-medium-contrast: #E5E7EB;
	--text-low-contrast: #9CA3AF;
	--border-high-contrast: #4B5563;
	--border-medium-contrast: #374151;
}

html[data-theme="light"] {
	/* === Base Colors === */
	--bg: #ffffff;
	--bg-elev: #f8f9fa;
	--panel: #ffffff;
	--text: #000000;
	--muted: #666666;
	--primary: #000000;
	--accent: #000000;
	--border: #e5e5e5;
	--card: #ffffff;
	--shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

	/* === Enterprise Color System - Light Mode === */
	/* Category-specific accent colors (same as dark mode) */
	--accent-content: #3B82F6;
	--accent-business: #10B981;
	--accent-workflows: #8B5CF6;
	--accent-automation: #F59E0B;
	--accent-analytics: #EF4444;
	--accent-social: #EC4899;

	/* Semantic colors (same as dark mode) */
	--success: #10B981;
	--warning: #F59E0B;
	--error: #EF4444;
	--info: #3B82F6;

	/* Enterprise brand colors (same as dark mode) */
	--brand-primary: #1E40AF;
	--brand-secondary: #7C3AED;
	--brand-accent: #F59E0B;

	/* High contrast colors for accessibility - Light Mode */
	--text-high-contrast: #000000;
	--text-medium-contrast: #374151;
	--text-low-contrast: #6B7280;
	--border-high-contrast: #9CA3AF;
	--border-medium-contrast: #D1D5DB;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
	margin: 0;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.4;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

::selection { background: var(--muted); color: var(--bg); }

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

/* Tablet and up */
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

/* Desktop and up */
@media (min-width: 1024px) {
  .container { padding: 0 40px; }
}

/* Typography */
h1, h2 { 
	letter-spacing: -0.02em; 
	font-weight: 700; 
}
h1 { 
	font-size: clamp(36px, 6vw, 64px); 
	line-height: 1.1; 
	margin: 0 0 20px 0; 
	font-weight: 700;
}
h2 { 
	font-size: clamp(28px, 4vw, 40px); 
	margin: 0 0 24px 0; 
	font-weight: 600;
	line-height: 1.2;
}
h3 {
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 600;
	margin: 0 0 12px 0;
	line-height: 1.3;
}
p { 
	margin: 0 0 16px 0; 
	color: var(--muted); 
	font-size: 16px; 
	line-height: 1.6; 
	font-weight: 400;
}

/* Accessibility */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -40px; background: var(--primary); color: white; padding: 8px 12px; border-radius: 8px; text-decoration: none; transition: top .2s ease; z-index: 100; }
.skip-link:focus { top: 12px; }

/* Header */
.site-header { 
	position: fixed; 
	top: 0; 
	left: 0; 
	right: 0;
	z-index: 1000; 
	background: rgba(0, 0, 0, 0.95); 
	backdrop-filter: saturate(180%) blur(20px); 
	border-bottom: 1px solid var(--border); 
	transition: all .3s ease;
	transform: translateY(0);
}

.site-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

.site-header:hover::before {
	opacity: 1;
}
.site-header.is-scrolled { 
	background: rgba(0, 0, 0, 0.98);
	box-shadow: 0 2px 20px rgba(0,0,0,.4); 
}
.header-inner { 
	display: flex; 
	align-items: center; 
	justify-content: space-between; 
	height: 48px; 
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}
.brand { 
	display: inline-flex; 
	gap: 8px; 
	align-items: center; 
	text-decoration: none; 
	color: var(--text); 
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -0.01em;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

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

.brand:hover::before {
	left: 100%;
}

.brand:hover {
	transform: translateY(-1px);
	color: var(--accent);
}
.brand-logo { 
	height: 24px; 
	width: 24px; 
	transition: all 0.3s ease;
}
.brand-logo.small { height: 18px; width: 18px; }

.brand:hover .brand-logo {
	transform: rotate(5deg) scale(1.1);
}
.brand-text { 
	font-weight: 700; 
	letter-spacing: -0.01em; 
	font-size: 18px;
}

.nav { display: none; gap: 24px; }
.nav a { 
	text-decoration: none; 
	color: var(--muted); 
	font-weight: 500; 
	font-size: 14px; 
	transition: all 0.3s ease;
	padding: 6px 12px;
	position: relative;
	letter-spacing: 0.2px;
	border-radius: 6px;
	overflow: hidden;
}

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

.nav a:hover::before {
	left: 100%;
}
.nav a:hover { 
	color: var(--text); 
	background: rgba(255,255,255,0.05);
	transform: translateY(-1px);
}
.nav a.is-active { 
	color: var(--text); 
	font-weight: 600;
}
.nav a.is-active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--text);
}

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

.nav-toggle { 
	display: inline-flex; flex-direction: column; gap: 3px; 
	width: 28px; height: 28px; align-items: center; justify-content: center; 
	border: 1px solid var(--border); border-radius: 6px; 
	background: transparent; color: var(--text); 
	transition: all 0.3s ease;
}

.nav-toggle:hover {
	background: rgba(255,255,255,0.05);
	transform: scale(1.05);
}
.nav-toggle span { display: block; width: 14px; height: 1px; background: var(--muted); }

.theme-toggle { 
	border: 1px solid var(--border); background: transparent; color: var(--text); 
	border-radius: 6px; height: 28px; width: 28px; 
	display: inline-flex; align-items: center; justify-content: center; 
	font-size: 12px;
	transition: all 0.3s ease;
}

.theme-toggle:hover {
	background: rgba(255,255,255,0.05);
	transform: scale(1.05);
}
.theme-toggle .sun { display: none; }
html[data-theme="light"] .theme-toggle .sun { display: inline; }
html[data-theme="light"] .theme-toggle .moon { display: none; }

.btn { 
	appearance: none; 
	border: 1px solid var(--accent); 
	padding: 8px 16px; 
	border-radius: 6px; 
	text-decoration: none; 
	font-weight: 500; 
	font-size: 13px;
	color: var(--accent); 
	background: transparent; 
	transition: all .3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 100px;
	letter-spacing: 0.3px;
	position: relative;
	overflow: hidden;
}
.btn:hover { 
	color: var(--bg);
	background: var(--accent);
	transform: translateY(-1px);
}
.btn:active { 
	transform: translateY(0); 
}
.btn-primary { 
	background: var(--accent); 
	border-color: var(--accent); 
	color: var(--bg);
}
.btn-primary:hover { 
	background: var(--accent);
	border-color: var(--accent);
	color: var(--bg);
	opacity: 0.9;
}
.btn-secondary { 
	background: transparent; 
	border-color: var(--text);
	color: var(--text);
}
.btn-secondary:hover {
	background: var(--text);
	color: var(--bg);
	border-color: var(--text);
}

/* Drawer */
.nav-drawer { position: fixed; inset: 0; display: none; background: rgba(0,0,0,.35); }
.nav-drawer.open { display: block; }
.nav-drawer-inner { position: absolute; right: 0; top: 0; height: 100%; width: min(92%, 340px); background: var(--panel); border-left: 1px solid var(--border); box-shadow: var(--shadow); transform: translateX(8px); animation: slideIn .16s ease forwards; }
@keyframes slideIn { to { transform: translateX(0); } }
.nav-drawer-head { display: flex; align-items: center; justify-content: space-between; height: 64px; padding: 0 16px; border-bottom: 1px solid var(--border); }
.drawer-close { background: transparent; border: 1px solid var(--border); border-radius: 8px; height: 36px; width: 36px; color: var(--text); }
.drawer-nav { display: flex; flex-direction: column; padding: 12px; gap: 6px; }
.drawer-nav a { color: var(--text); text-decoration: none; padding: 10px 12px; border-radius: 10px; }
.drawer-nav a:hover { background: rgba(255,255,255,0.04); }

/* Hero */
.hero { 
	padding: 100px 0 60px; 
	background: var(--bg);
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
	            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

#three-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}
.hero-inner { 
	display: grid; 
	grid-template-columns: 1fr 0.8fr; 
	gap: 60px; 
	align-items: center; 
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 1;
}
.hero h1 { 
	margin: 0 0 24px 0; 
	font-size: clamp(48px, 8vw, 72px);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text);
}
.hero p { 
	font-size: 18px; 
	line-height: 1.6; 
	margin-bottom: 32px; 
	color: var(--muted);
	max-width: 500px;
	font-weight: 400;
}
.cta-group { 
	display: flex; 
	gap: 16px; 
	margin-top: 0; 
	flex-wrap: wrap;
	align-items: center;
}
/* Hero Stats */
.hero-stats {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

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

.stat-item {
	text-align: center;
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--card);
	transition: all .2s ease;
}

.stat-item:hover {
	border-color: var(--accent);
	transform: translateY(-2px);
}

.stat-number {
	font-size: 32px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 8px;
	line-height: 1;
}

.stat-label {
	font-size: 14px;
	color: var(--muted);
	font-weight: 500;
	letter-spacing: 0.3px;
}

.hero-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border: 1px solid var(--border);
	border-radius: 6px;
	background: var(--card);
	transition: all .2s ease;
}

.feature-item:hover {
	border-color: var(--accent);
	background: var(--bg-elev);
}

.feature-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent);
	color: var(--bg);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
}

.feature-item span {
	font-size: 14px;
	color: var(--text);
	font-weight: 500;
}

/* About Section */
.about-header {
	text-align: center;
	margin-bottom: 80px;
	padding-top: 40px;
}
.about-header h2 {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
	line-height: 1.2;
}
.about-header p {
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
	max-width: 700px;
	margin: 0 auto;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 60px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 24px;
}
.stat-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 32px 24px;
	text-align: center;
	transition: all .4s ease;
	position: relative;
	overflow: hidden;
}
.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
	transition: left .6s ease;
}
.stat-card:hover::before {
	left: 100%;
}
.stat-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	border-color: var(--accent);
}
.stat-card .stat-number {
	font-size: 36px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 8px;
	line-height: 1;
}
.stat-card .stat-label {
	font-size: 14px;
	color: var(--muted);
	font-weight: 500;
	letter-spacing: 0.3px;
}

/* Cards */
.cards { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
	gap: 24px; 
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	margin-bottom: 80px;
}
.card { 
	background: var(--card); 
	border: 1px solid var(--border); 
	border-radius: 16px; 
	overflow: hidden; 
	transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 32px;
	gap: 24px;
}
.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
	opacity: 0;
	transition: opacity .3s ease;
	pointer-events: none;
}
.card:hover::before {
	opacity: 1;
}
.card:hover { 
	border-color: var(--accent);
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.card-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--accent), var(--muted));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
}
.card:hover .card-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, var(--text), var(--accent));
}
.card-icon svg {
	width: 24px;
	height: 24px;
	color: var(--bg);
	stroke-width: 2;
}
.card-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.card-header { 
	font-weight: 600; 
	font-size: 20px;
	letter-spacing: 0.2px;
	color: var(--text);
	margin: 0;
}
.card-content p { 
	margin: 0; 
	font-size: 15px; 
	line-height: 1.6;
	color: var(--muted);
	font-weight: 400;
	flex: 1;
}
.card-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
}
.feature-tag {
	background: var(--bg-elev);
	border: 1px solid var(--border);
	color: var(--muted);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.3px;
	transition: all .2s ease;
}
.card:hover .feature-tag {
	background: var(--accent);
	color: var(--bg);
	border-color: var(--accent);
}

/* About Values */
.about-values {
	margin-top: 80px;
	padding-top: 60px;
	border-top: 1px solid var(--border);
}
.about-values h3 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 40px;
	text-align: center;
	color: var(--text);
}
.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}
.value-item {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 32px 24px;
	text-align: center;
	transition: all .4s ease;
	position: relative;
	overflow: hidden;
}
.value-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--accent);
	transform: scaleX(0);
	transition: transform .3s ease;
}
.value-item:hover::before {
	transform: scaleX(1);
}
.value-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 32px rgba(0,0,0,0.15);
	border-color: var(--accent);
}
.value-icon {
	font-size: 32px;
	margin-bottom: 16px;
	display: block;
}
.value-item h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--text);
}
.value-item p {
	font-size: 14px;
	line-height: 1.5;
	color: var(--muted);
	margin: 0;
}

/* Contact Section */
.contact-header {
	text-align: center;
	margin-bottom: 100px;
	padding-top: 40px;
}
.contact-header h2 {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
	line-height: 1.2;
}
.contact-header p {
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
	max-width: 600px;
	margin: 0 auto;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	margin-bottom: 80px;
}

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

.contact-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 32px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	transition: all .3s ease;
	position: relative;
	overflow: hidden;
}
.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--accent);
	transform: scaleX(0);
	transition: transform .3s ease;
}
.contact-card:hover::before {
	transform: scaleX(1);
}
.contact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.15);
	border-color: var(--accent);
}

.contact-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--accent), var(--muted));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all .3s ease;
}
.contact-card:hover .contact-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, var(--text), var(--accent));
}
.contact-icon svg {
	width: 24px;
	height: 24px;
	color: var(--bg);
	stroke-width: 2;
}

.contact-details h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text);
}
.contact-details p {
	font-size: 16px;
	color: var(--text);
	margin-bottom: 4px;
	line-height: 1.4;
}
.contact-subtitle {
	font-size: 14px;
	color: var(--muted);
	font-weight: 500;
}

/* Contact Form */
.contact-form-container {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 40px;
	position: relative;
	overflow: hidden;
}
.contact-form-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 50%);
	pointer-events: none;
}

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

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

.form-group label {
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
	background: var(--bg-elev);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 16px;
	color: var(--text);
	transition: all .3s ease;
	font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
	background: var(--bg);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--muted);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
	font-family: inherit;
	line-height: 1.5;
}

.checkbox-group {
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.5;
	color: var(--muted);
}

.checkbox-label input[type="checkbox"] {
	display: none;
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid var(--border);
	border-radius: 4px;
	background: var(--bg-elev);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
	background: var(--accent);
	border-color: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
	content: '✓';
	color: var(--bg);
	font-size: 12px;
	font-weight: 700;
}

.btn-large {
	padding: 16px 32px;
	font-size: 16px;
	min-width: 200px;
	position: relative;
	overflow: hidden;
}

.btn-loading {
	display: flex;
	align-items: center;
	gap: 8px;
}

.spinner {
	width: 16px;
	height: 16px;
	animation: spin 1s linear infinite;
}

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

/* Contact CTA */
.contact-cta {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 60px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.contact-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
}

.contact-cta h3 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--text);
}
.contact-cta p {
	font-size: 16px;
	color: var(--muted);
	margin-bottom: 40px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.cta-stats {
	display: flex;
	justify-content: center;
	gap: 60px;
}

.cta-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.cta-stat .stat-number {
	font-size: 32px;
	font-weight: 700;
	color: var(--text);
	line-height: 1;
}
.cta-stat .stat-label {
	font-size: 14px;
	color: var(--muted);
	font-weight: 500;
	letter-spacing: 0.3px;
}

/* Team Section */
.team-section {
	margin-top: 80px;
	padding-top: 60px;
	border-top: 1px solid var(--border);
}
.team-section h3 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: center;
	color: var(--text);
}
.team-intro {
	font-size: 16px;
	line-height: 1.6;
	color: var(--muted);
	text-align: center;
	max-width: 600px;
	margin: 0 auto 60px;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.team-member {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 32px;
	transition: all .4s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.team-member::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 50%);
	opacity: 0;
	transition: opacity .3s ease;
	pointer-events: none;
}
.team-member:hover::before {
	opacity: 1;
}
.team-member:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	border-color: var(--accent);
}

.member-photo {
	display: flex;
	justify-content: center;
	margin-bottom: 16px;
}
.photo-placeholder {
	width: 80px;
	height: 80px;
	background: var(--bg-elev);
	border: 2px solid var(--border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
}
.team-member:hover .photo-placeholder {
	transform: scale(1.1);
	border-color: var(--accent);
	background: var(--accent);
}
.photo-placeholder svg {
	width: 40px;
	height: 40px;
	color: var(--muted);
	transition: color .3s ease;
}
.team-member:hover .photo-placeholder svg {
	color: var(--bg);
}

.member-info {
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.member-info h4 {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
	color: var(--text);
}
.member-role {
	font-size: 16px;
	font-weight: 500;
	color: var(--accent);
	margin: 0;
}
.member-experience {
	font-size: 14px;
	color: var(--muted);
	margin: 0;
	font-weight: 500;
}

.member-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin: 16px 0;
}
.skill-tag {
	background: var(--bg-elev);
	border: 1px solid var(--border);
	color: var(--muted);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.3px;
	transition: all .2s ease;
}
.team-member:hover .skill-tag {
	background: var(--accent);
	color: var(--bg);
	border-color: var(--accent);
}

.member-education,
.member-achievements {
	text-align: left;
	font-size: 13px;
	line-height: 1.5;
	color: var(--muted);
}
.member-education p,
.member-achievements p {
	margin: 0 0 8px 0;
}
.member-education strong,
.member-achievements strong {
	color: var(--text);
	font-weight: 600;
}

/* Panels */
.panel { 
	padding: 80px 0; 
	background: var(--bg-elev);
	position: relative;
	overflow: hidden;
}
.panel-inner { 
	display: grid; 
	grid-template-columns: 1.2fr 0.8fr; 
	gap: 60px; 
	align-items: start; 
	border-top: 1px solid var(--border); 
	border-bottom: 1px solid var(--border);
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 1;
}
.panel h2 {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 600;
	margin-bottom: 24px;
	letter-spacing: -0.02em;
	line-height: 1.2;
}
.panel p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--muted);
	margin-bottom: 24px;
	font-weight: 400;
}

/* Portfolio */
.portfolio-header {
	text-align: center;
	margin-bottom: 60px;
}
.portfolio-header h2 {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
	line-height: 1.2;
}
.portfolio-header p {
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
	max-width: 600px;
	margin: 0 auto;
}

.portfolio-showcase {
	display: flex;
	flex-direction: column;
	gap: 80px;
	margin-bottom: 80px;
}

.showcase-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 40px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	transition: all .3s ease;
}
.showcase-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.15);
	border-color: var(--accent);
}
.showcase-item.reverse {
	grid-template-columns: 1fr 1fr;
}
.showcase-item.reverse .showcase-content {
	order: 2;
}
.showcase-item.reverse .showcase-visual {
	order: 1;
}

.showcase-content h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--text);
}
.showcase-content p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--muted);
	margin-bottom: 24px;
}

.showcase-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}
.tag {
	background: var(--bg-elev);
	border: 1px solid var(--border);
	color: var(--muted);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.3px;
	transition: all .2s ease;
}
.showcase-item:hover .tag {
	background: var(--accent);
	color: var(--bg);
	border-color: var(--accent);
}

.showcase-metrics {
	display: flex;
	gap: 32px;
}
.metric {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.metric-number {
	font-size: 24px;
	font-weight: 700;
	color: var(--text);
	line-height: 1;
	margin-bottom: 4px;
}
.metric-label {
	font-size: 12px;
	color: var(--muted);
	font-weight: 500;
	letter-spacing: 0.3px;
}

.showcase-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}
.visual-placeholder {
	width: 100%;
	max-width: 300px;
	height: 180px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
}
.showcase-item:hover .visual-placeholder {
	transform: scale(1.02);
	border-color: var(--accent);
}
.visual-placeholder svg {
	width: 80%;
	height: 80%;
	color: var(--muted);
}

.testimonials {
	margin-top: 80px;
	padding-top: 60px;
	border-top: 1px solid var(--border);
}
.testimonials h3 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 40px;
	text-align: center;
	color: var(--text);
}
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
.testimonial {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 32px;
	transition: all .3s ease;
}
.testimonial:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
	border-color: var(--accent);
}
.testimonial-content p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--muted);
	margin-bottom: 24px;
	font-style: italic;
}
.testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
}
.author-info {
	display: flex;
	flex-direction: column;
}
.author-name {
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 4px;
}
.author-title {
	font-size: 14px;
	color: var(--muted);
	font-weight: 500;
}
.list { 
	margin: 0; 
	padding-left: 0; 
	color: var(--muted); 
	font-size: 18px; 
	line-height: 1.8;
	list-style: none;
}
.list li { 
	margin-bottom: 16px; 
	position: relative;
	padding-left: 32px;
}
.list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 700;
	font-size: 20px;
	animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(5px); }
}

/* Footer */
.site-footer { 
	border-top: 1px solid var(--border); 
	padding: 40px 0; 
	background: var(--bg);
}
.footer-inner { 
	display: flex; 
	justify-content: space-between; 
	align-items: center; 
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}
.footer-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}
.footer-nav { 
	display: inline-flex; 
	gap: 24px; 
}
.footer-nav a { 
	color: var(--muted); 
	text-decoration: none; 
	font-size: 14px;
	font-weight: 500;
	transition: color .2s ease;
}
.footer-nav a:hover { 
	color: var(--text); 
}

/* Focus styles */
:where(a, button, .btn, input):focus { outline: 2px solid var(--primary); outline-offset: 2px; }

/* Cursor styles */
.cursor-trail {
	position: fixed;
	width: 20px;
	height: 20px;
	background: var(--accent);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.1s ease;
	transform: translate(-50%, -50%);
}

/* Hide cursor trail on mobile */
@media (max-width: 768px) {
	.cursor-trail {
		display: none !important;
	}
}

/* Custom cursor for interactive elements */
a, button, .btn, input, select, textarea {
	cursor: pointer;
}

/* Smooth cursor transitions */
* {
	cursor: inherit;
}

/* Scroll-triggered animations */
.animate-in {
	animation: slideInFromBottom 0.8s ease-out forwards;
}

@keyframes slideInFromBottom {
	0% { 
		opacity: 0; 
		transform: translateY(50px); 
	}
	100% { 
		opacity: 1; 
		transform: translateY(0); 
	}
}

/* Enhanced scroll animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.slide-in-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-in-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.slide-in-right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-in-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.scale-in {
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.scale-in.visible {
	opacity: 1;
	transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Staggered animations for lists */
.list li {
	opacity: 0;
	transform: translateX(-30px);
	animation: slideInFromLeft 0.6s ease-out forwards;
}

.list li:nth-child(1) { animation-delay: 0.1s; }
.list li:nth-child(2) { animation-delay: 0.2s; }
.list li:nth-child(3) { animation-delay: 0.3s; }
.list li:nth-child(4) { animation-delay: 0.4s; }
.list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInFromLeft {
	0% { 
		opacity: 0; 
		transform: translateX(-30px); 
	}
	100% { 
		opacity: 1; 
		transform: translateX(0); 
	}
}

/* Button hover animations */
.btn {
	position: relative;
	overflow: hidden;
}

.btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
	width: 300px;
	height: 300px;
}

/* Text reveal animation */
@keyframes textReveal {
	0% { 
		opacity: 0; 
		transform: translateY(100%); 
	}
	100% { 
		opacity: 1; 
		transform: translateY(0); 
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; }
	.animate-in { animation: none !important; }
}

/* Legal Pages */
.legal-page {
	padding: 120px 0 80px;
	min-height: 100vh;
}

.legal-page h1 {
	font-size: clamp(32px, 5vw, 48px);
	margin-bottom: 16px;
	color: var(--text);
}

.last-updated {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 40px;
	font-style: italic;
}

.legal-content {
	max-width: 800px;
	margin: 0 auto;
}

.legal-content h2 {
	font-size: 24px;
	margin: 40px 0 16px 0;
	color: var(--text);
	border-bottom: 1px solid var(--border);
	padding-bottom: 8px;
}

.legal-content h3 {
	font-size: 20px;
	margin: 24px 0 12px 0;
	color: var(--text);
}

.legal-content p {
	margin-bottom: 16px;
	line-height: 1.6;
}

.legal-content ul {
	margin: 16px 0;
	padding-left: 24px;
}

.legal-content li {
	margin-bottom: 8px;
	line-height: 1.5;
}

/* Pricing Page */
.pricing-hero {
	background: var(--bg-elev);
	padding: 120px 0 80px;
	text-align: center;
}

.pricing-section {
	padding: 80px 0;
}

.pricing-header {
	text-align: center;
	margin-bottom: 60px;
}

.pricing-header h2 {
	font-size: clamp(32px, 5vw, 48px);
	margin-bottom: 20px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 32px;
	margin-bottom: 80px;
}

.pricing-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 32px;
	position: relative;
	transition: all 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	border-color: var(--accent);
}

.pricing-card.featured {
	border-color: var(--accent);
	transform: scale(1.05);
}

.featured-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: var(--bg);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.pricing-header-card h3 {
	font-size: 24px;
	margin-bottom: 8px;
	color: var(--text);
}

.pricing-header-card p {
	color: var(--muted);
	margin-bottom: 24px;
}

.pricing-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.rate-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
}

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

.service {
	font-weight: 500;
	color: var(--text);
}

.price {
	font-weight: 700;
	color: var(--accent);
	font-size: 18px;
}

.package-item {
	padding: 16px 0;
	border-bottom: 1px solid var(--border);
}

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

.package-item h4 {
	font-size: 18px;
	margin-bottom: 8px;
	color: var(--text);
}

.package-item p {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 8px;
}

.package-item .price {
	font-size: 20px;
}

.pricing-notes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	margin-bottom: 60px;
}

.note-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 24px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.note-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.note-icon {
	font-size: 24px;
	flex-shrink: 0;
}

.note-content h4 {
	font-size: 16px;
	margin-bottom: 8px;
	color: var(--text);
}

.note-content p {
	font-size: 14px;
	color: var(--muted);
	margin: 0;
	line-height: 1.5;
}

.cta-section {
	background: var(--bg-elev);
	padding: 80px 0;
	text-align: center;
}

.cta-content h2 {
	font-size: clamp(28px, 4vw, 40px);
	margin-bottom: 16px;
}

.cta-content p {
	font-size: 18px;
	color: var(--muted);
	margin-bottom: 32px;
}

.cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Scroll to Top Button */
.scroll-to-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 48px;
	height: 48px;
	background: var(--accent);
	color: var(--bg);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	z-index: 1000;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.scroll-to-top:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.scroll-to-top.show {
	display: flex;
}

/* Sticky Navigation Enhancements */
.site-header.sticky-hidden {
	transform: translateY(-100%);
}

.site-header.sticky-visible {
	transform: translateY(0);
}

/* === AI Store Variables === */
:root {
	/* AI Store specific variables */
	--ai-store-padding: 120px;
	--ai-store-gap: 32px;
	--ai-card-radius: 28px;
	--ai-card-padding: 40px 32px;
	--ai-tab-radius: 28px;
	--ai-tab-padding: 14px 28px;
	--ai-icon-size: 72px;
	--ai-transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === AI Store Layout === */
.ai-store-section {
	padding: var(--ai-store-padding) 0;
	background: var(--bg);
	position: relative;
	overflow: hidden;
}

.ai-store-header {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
	z-index: 1;
}

.ai-store-header h2 {
	font-size: clamp(40px, 6vw, 56px);
	font-weight: 800;
	margin-bottom: 16px;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--text-high-contrast);
	background: linear-gradient(135deg, var(--text-high-contrast) 0%, var(--text-medium-contrast) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ai-store-header p {
	font-size: 20px;
	line-height: 1.5;
	color: var(--text-medium-contrast);
	max-width: 500px;
	margin: 0 auto;
	font-weight: 400;
}

/* === AI Store Tabs === */
.ai-categories-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 80px;
	position: relative;
	z-index: 1;
	padding: 20px;
	background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
	border-radius: 24px;
	border: 1px solid var(--border-medium-contrast);
	backdrop-filter: blur(10px);
}

.category-tab {
	background: linear-gradient(135deg, var(--card) 0%, rgba(255,255,255,0.05) 100%);
	border: 1px solid var(--border-medium-contrast);
	border-radius: var(--ai-tab-radius);
	padding: var(--ai-tab-padding);
	font-size: 14px;
	font-weight: 600;
	color: var(--text-medium-contrast);
	cursor: pointer;
	transition: var(--ai-transition);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.category-tab:hover {
	background: linear-gradient(135deg, var(--bg-elev) 0%, rgba(255,255,255,0.08) 100%);
	border-color: var(--accent);
	color: var(--text-high-contrast);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-tab.active {
	background: linear-gradient(135deg, var(--accent) 0%, rgba(255,255,255,0.1) 100%);
	border-color: var(--accent);
	color: var(--bg);
	box-shadow: 0 8px 30px rgba(0,0,0,0.2);
	transform: translateY(-2px);
}

.category-tab.active:hover {
	background: linear-gradient(135deg, var(--accent) 0%, rgba(255,255,255,0.15) 100%);
	color: var(--bg);
	transform: translateY(-3px) scale(1.02);
}

/* Category-specific tab colors */
.category-tab[data-category="content"]:hover,
.category-tab[data-category="content"].active {
	border-color: var(--accent-content);
	background: linear-gradient(135deg, var(--accent-content) 0%, rgba(255,255,255,0.1) 100%);
}

.category-tab[data-category="business"]:hover,
.category-tab[data-category="business"].active {
	border-color: var(--accent-business);
	background: linear-gradient(135deg, var(--accent-business) 0%, rgba(255,255,255,0.1) 100%);
}

.category-tab[data-category="workflows"]:hover,
.category-tab[data-category="workflows"].active {
	border-color: var(--accent-workflows);
	background: linear-gradient(135deg, var(--accent-workflows) 0%, rgba(255,255,255,0.1) 100%);
}

.category-tab[data-category="automation"]:hover,
.category-tab[data-category="automation"].active {
	border-color: var(--accent-automation);
	background: linear-gradient(135deg, var(--accent-automation) 0%, rgba(255,255,255,0.1) 100%);
}

.category-tab[data-category="analytics"]:hover,
.category-tab[data-category="analytics"].active {
	border-color: var(--accent-analytics);
	background: linear-gradient(135deg, var(--accent-analytics) 0%, rgba(255,255,255,0.1) 100%);
}

.category-tab[data-category="social-media"]:hover,
.category-tab[data-category="social-media"].active {
	border-color: var(--accent-social);
	background: linear-gradient(135deg, var(--accent-social) 0%, rgba(255,255,255,0.1) 100%);
}

/* Enhanced tab animation */
.category-tab::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left .6s ease;
}

.category-tab:hover::before {
	left: 100%;
}

/* Tab count badges - Removed */

/* === AI Store Cards === */
.ai-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: var(--ai-store-gap);
	margin-bottom: 100px;
	position: relative;
	z-index: 1;
	width: 100%;
}

.ai-product-card {
	background: linear-gradient(135deg, var(--card) 0%, rgba(255,255,255,0.02) 100%);
	border: 1px solid var(--border-medium-contrast);
	border-radius: var(--ai-card-radius);
	padding: 0;
	transition: var(--ai-transition);
	position: relative;
	overflow: hidden;
	height: auto;
	display: block;
	margin-bottom: 0;
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
	cursor: pointer;
	backdrop-filter: blur(10px);
}

.ai-product-card:hover {
	transform: translateY(-12px) scale(1.03);
	box-shadow: 0 25px 50px rgba(0,0,0,0.2);
	border-color: var(--accent);
}

.ai-product-card.featured {
	background: linear-gradient(135deg, var(--card) 0%, rgba(255,255,255,0.08) 100%);
	box-shadow: 0 12px 40px rgba(0,0,0,0.15);
	border: 2px solid var(--accent);
	position: relative;
}

.ai-product-card.featured::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
	border-radius: var(--ai-card-radius);
	pointer-events: none;
}

/* Mobile hover effects - reduced for touch devices */
@media (hover: none) and (pointer: coarse) {
	.ai-product-card:hover {
		transform: none;
		box-shadow: 0 8px 32px rgba(0,0,0,0.08);
	}
	
	.ai-product-card:active {
		transform: translateY(-4px) scale(1.01);
		box-shadow: 0 12px 24px rgba(0,0,0,0.12);
	}
}

.product-header {
	text-align: center;
	padding: var(--ai-card-padding);
	position: relative;
}

.product-icon {
	font-size: var(--ai-icon-size);
	margin-bottom: 20px;
	display: block;
	opacity: 1;
	filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
	transition: all .3s ease;
	position: relative;
}

.ai-product-card:hover .product-icon {
	transform: scale(1.1) rotate(5deg);
	filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}

.product-header h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--text-high-contrast);
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.product-header p {
	font-size: 15px;
	color: var(--text-medium-contrast);
	line-height: 1.4;
	font-weight: 400;
	margin: 0;
}

.featured-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--accent);
	color: var(--bg);
	padding: 8px 16px;
	border-radius: 24px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-features {
	padding: 0 32px 32px;
}

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

.product-features li {
	padding: 8px 0;
	color: var(--text-medium-contrast);
	font-size: 14px;
	position: relative;
	padding-left: 20px;
	font-weight: 400;
	line-height: 1.4;
}

.product-features li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 700;
	font-size: 16px;
	top: 8px;
}

.product-pricing {
	background: var(--bg-elev);
	padding: 28px 32px;
	text-align: center;
	border-top: 1px solid var(--border-medium-contrast);
}

.product-pricing .price {
	font-size: 28px;
	font-weight: 800;
	color: var(--text-high-contrast);
	margin-bottom: 4px;
	letter-spacing: -0.02em;
}

.product-pricing .price-note {
	font-size: 13px;
	color: var(--text-medium-contrast);
	font-weight: 500;
	margin-bottom: 16px;
}

.ai-product-card .btn {
	width: 100%;
	justify-content: center;
	font-weight: 600;
	padding: 16px 24px;
	border-radius: 20px;
	font-size: 15px;
	background: linear-gradient(135deg, var(--accent) 0%, rgba(255,255,255,0.1) 100%);
	color: var(--bg);
	border: none;
	transition: all .3s ease;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	position: relative;
	overflow: hidden;
}

.ai-product-card .btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left .5s ease;
}

.ai-product-card .btn:hover::before {
	left: 100%;
}

.ai-product-card .btn:hover {
	background: linear-gradient(135deg, var(--text-high-contrast) 0%, rgba(255,255,255,0.1) 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Better touch feedback for mobile */
@media (hover: none) and (pointer: coarse) {
	.ai-product-card .btn:active {
		background: var(--text-high-contrast);
		transform: translateY(0);
		box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	}
	
	.ai-product-card .btn {
		-webkit-tap-highlight-color: transparent;
		touch-action: manipulation;
	}
}

/* === AI Store Enhancements === */
.ai-product-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
	opacity: 0;
	transition: opacity .3s ease;
	pointer-events: none;
}

.ai-product-card:hover::after {
	opacity: 1;
}

.ai-product-card.featured::after {
	opacity: 0.3;
}

/* Loading animation */
@keyframes appCardLoad {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.ai-product-card {
	animation: appCardLoad 0.6s ease-out;
}

.ai-product-card:nth-child(1) { animation-delay: 0.1s; }
.ai-product-card:nth-child(2) { animation-delay: 0.2s; }
.ai-product-card:nth-child(3) { animation-delay: 0.3s; }
.ai-product-card:nth-child(4) { animation-delay: 0.4s; }
.ai-product-card:nth-child(5) { animation-delay: 0.5s; }
.ai-product-card:nth-child(6) { animation-delay: 0.6s; }

/* Category filtering */
.ai-product-card.hidden {
	display: none;
	animation: none;
}

.ai-product-card.show {
	display: block;
	animation: appCardLoad 0.6s ease-out;
}

/* Smooth transition for category changes */
.ai-products-grid {
	transition: all .3s ease;
}

/* === AI Store Responsive === */
@media (max-width: 960px) {
	.ai-store-section {
		padding: 80px 0;
	}
	
	.ai-store-header {
		margin-bottom: 60px;
	}
	
	.ai-categories-tabs {
		margin-bottom: 40px;
		gap: 6px;
	}
	
	.category-tab {
		padding: 10px 16px;
		font-size: 13px;
	}
	
	.ai-products-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 24px;
		margin-bottom: 80px;
	}
	
	.product-header {
		padding: 32px 24px 24px;
	}
	
	.product-header h3 {
		font-size: 20px;
	}
	
	.product-pricing {
		padding: 24px 24px;
	}
	
	.product-pricing .price {
		font-size: 24px;
	}
	
	.product-icon {
		font-size: 56px;
	}
	
	.product-features {
		padding: 0 24px 24px;
	}
}

/* Focus states for accessibility */
.category-tab:focus {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

.ai-product-card .btn:focus {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
	.ai-product-card {
		animation: none;
		transition: none;
	}
	
	.category-tab {
		transition: none;
	}
	
	.ai-product-card .btn {
		transition: none;
	}
}

/* Media Integration */
.media-section {
	padding: 80px 0;
	background: var(--bg-elev);
}

.media-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
}

.media-item {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.media-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.media-placeholder {
	width: 100%;
	height: 200px;
	background: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-size: 14px;
}

.youtube-embed {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.youtube-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Responsive */
@media (max-width: 960px) {
	.header-inner { 
		padding: 0 24px; 
		height: 44px;
	}
	.hero { 
		padding: 80px 0 40px;
		min-height: auto;
	}
	.hero-inner { 
		grid-template-columns: 1fr; 
		gap: 40px; 
		padding: 0 24px;
	}
	.hero h1 {
		font-size: clamp(36px, 10vw, 56px);
	}
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.hero-features {
		gap: 12px;
	}
	.cards { 
		grid-template-columns: 1fr; 
		gap: 20px;
		padding: 0 24px;
	}
	.panel-inner { 
		grid-template-columns: 1fr; 
		gap: 40px; 
		padding: 0 24px;
	}
	.panel h2 {
		font-size: clamp(28px, 6vw, 40px);
	}
	.portfolio-showcase {
		gap: 40px;
		margin-bottom: 40px;
	}
	.showcase-item {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 24px;
	}
	.showcase-item.reverse {
		grid-template-columns: 1fr;
	}
	.showcase-item.reverse .showcase-content {
		order: 1;
	}
	.showcase-item.reverse .showcase-visual {
		order: 2;
	}
	.showcase-metrics {
		gap: 20px;
	}
	.testimonial-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.about-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.contact-form-container {
		padding: 24px;
	}
	.contact-cta {
		padding: 40px 24px;
	}
	.cta-stats {
		gap: 40px;
	}
	.team-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.cards {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.team-member {
		padding: 24px;
	}
	.footer-inner {
		padding: 0 24px;
		flex-direction: column;
		gap: 24px;
		text-align: center;
	}
	.nav { display: none; }
	.panel { padding: 60px 0; }
	.cta-group {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.btn {
		width: 100%;
		max-width: 280px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}
	.header-inner {
		padding: 0 16px;
	}
	.hero-inner {
		padding: 0 16px;
	}
	.cards {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 0 16px;
	}
	.panel-inner {
		padding: 0 16px;
	}
	.footer-inner {
		padding: 0 16px;
	}
	.about-stats {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.values-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.cta-stats {
		flex-direction: column;
		gap: 24px;
	}
	.contact-card {
		padding: 20px;
	}
	.team-member {
		padding: 20px;
	}
	.showcase-item {
		padding: 20px;
	}
	.contact-form-container {
		padding: 20px;
	}
	.contact-cta {
		padding: 32px 20px;
	}
	.ai-store-section {
		padding: 80px 0 !important;
	}
	.ai-store-header {
		margin-bottom: 60px;
	}
	.ai-categories-tabs {
		margin-bottom: 40px;
		gap: 6px;
	}
	.category-tab {
		padding: 10px 16px;
		font-size: 13px;
	}
	.ai-products-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
		gap: 24px !important;
		margin-bottom: 80px !important;
	}
	.ai-product-card {
		padding: 0 !important;
	}
	.product-header {
		padding: 32px 24px 24px;
	}
	.product-header h3 {
		font-size: 20px;
	}
	.product-pricing {
		padding: 24px 24px;
	}
	.product-pricing .price {
		font-size: 24px;
	}
	.product-icon {
		font-size: 56px;
	}
	.product-features {
		padding: 0 24px 24px;
	}
}

@media (min-width: 961px) {
	.nav { display: inline-flex; }
	.nav-toggle { display: none; }
}
