/* ========================================
   EditingTools.io - Modern Dark Theme 2026
   ======================================== */

/* ========================================
   CSS Variables & Color System
   ======================================== */

/* Prevent horizontal scroll */
html, body { 
	max-width: 100%; 
	overflow-x: hidden; 
	position: relative; 
}

:root {
	/* Dark Theme Colors */
	--bg-primary: #0a0e1a;
	--bg-secondary: #121824;
	--bg-tertiary: #1a2033;
	--bg-card: #1e2538;
	--bg-card-hover: #252d45;
	
	/* Gradient Colors */
	--gradient-start: #4f46e5;
	--gradient-middle: #7c3aed;
	--gradient-end: #ec4899;
	
	/* Accent Colors */
	--accent-blue: #3b82f6;
	--accent-purple: #8b5cf6;
	--accent-pink: #ec4899;
	
	/* Text Colors */
	--text-primary: #ffffff;
	--text-secondary: #e5e7eb;
	--text-muted: #d1d5db;
	--text-light-gray: #d1d5db;
	--text-stats: #f3f4f6;
	
	/* Border & Divider */
	--border-color: #2d3748;
	--border-light: #374151;
	
	/* Shadows */
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
	--shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
	
	/* Glow Effects */
	--glow-blue: 0 0 20px rgba(59, 130, 246, 0.3);
	--glow-purple: 0 0 20px rgba(139, 92, 246, 0.3);
	--glow-pink: 0 0 20px rgba(236, 72, 153, 0.3);
}

/* ========================================
   Global Styles
   ======================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'CircularStd', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	min-height: 100vh;
}

body.dark-theme {
	background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
	background: var(--bg-tertiary);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--bg-card);
}

/* Selection */
::selection {
	background-color: var(--accent-purple);
	color: white;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

p {
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.text-muted {
	color: var(--text-muted) !important;
}

a {
	color: var(--accent-blue);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--accent-purple);
}

.text-light-gray {
	color: var(--text-light-gray);
}

.gradient-text {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ========================================
   Navigation Bar
   ======================================== */
.modern-navbar {
	background: rgba(10, 14, 26, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 1rem 0;
	transition: all 0.3s ease;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	position: relative !important; /* Override fixed-top */
}

.modern-navbar.scrolled {
	background: rgba(10, 14, 26, 0.98);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
	padding: 0.5rem 0;
}

.modern-navbar .navbar-brand img {
	transition: all 0.3s ease;
}

.modern-navbar.scrolled .navbar-brand img {
	height: 30px !important;
}

.modern-navbar .nav-link {
	color: var(--text-secondary);
	font-weight: 500;
	padding: 0.5rem 1rem;
	margin: 0 0.25rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.modern-navbar .nav-link:hover {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.05);
}

.modern-navbar .nav-link.active {
	color: var(--text-primary);
	background: rgba(79, 70, 229, 0.1);
}

.modern-navbar .dropdown-toggle::after {
	display: none;
}

.modern-navbar .navbar-toggler {
	border: none;
	padding: 0.5rem;
}

.modern-navbar .navbar-toggler:focus {
	box-shadow: none;
}

.modern-navbar .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mega Dropdown Menus */
.mega-dropdown {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 16px;
	box-shadow: var(--shadow-xl);
	padding: 1.5rem;
	min-width: 600px;
	margin-top: 0.5rem !important;
}

.mega-dropdown .dropdown-header {
	color: var(--text-primary);
	font-weight: 700;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 0.5rem 1rem;
	margin-bottom: 0.5rem;
	border-bottom: 2px solid var(--border-color);
}

.mega-dropdown .dropdown-item {
	border-radius: 8px;
	padding: 0.5rem 1rem;
	color: var(--text-secondary);
	transition: all 0.2s ease;
	font-size: 0.9rem;
	margin-bottom: 0.25rem;
}

.mega-dropdown .dropdown-item:hover {
	background: var(--bg-card-hover);
	color: var(--text-primary);
	transform: translateX(5px);
}

/* Regular Dropdown (for Pricing, etc.) */
.dropdown-menu-dark:not(.mega-dropdown) {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	padding: 0.5rem;
	min-width: 200px;
	margin-top: 0.5rem !important;
}

.dropdown-menu-dark:not(.mega-dropdown) .dropdown-item {
	border-radius: 8px;
	padding: 0.5rem 1rem;
	color: var(--text-secondary);
	transition: all 0.2s ease;
	font-size: 0.9rem;
}

.dropdown-menu-dark:not(.mega-dropdown) .dropdown-item:hover {
	background: var(--bg-card-hover);
	color: var(--text-primary);
}

/* Three Dots Menu Button */
.btn-menu-dots {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.15);
	color: var(--text-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	padding: 0;
}

.btn-menu-dots:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.25);
	color: var(--text-primary);
	transform: scale(1.05);
}

.btn-menu-dots:focus {
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.btn-menu-dots i {
	font-size: 1.1rem;
}

/* Custom Dropdown Menu */
.menu-dropdown-custom {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 16px;
	box-shadow: var(--shadow-xl);
	padding: 0.5rem;
	min-width: 350px;
	margin-top: 0.5rem !important;
}

.menu-dropdown-custom .dropdown-item {
	border-radius: 10px;
	padding: 0.75rem 1rem;
	color: var(--text-secondary);
	transition: all 0.2s ease;
	font-size: 0.95rem;
}

.menu-dropdown-custom .dropdown-item:hover {
	background: var(--bg-card-hover);
	color: var(--text-primary);
}

.menu-dropdown-custom .dropdown-item i {
	width: 20px;
	text-align: center;
}

.menu-dropdown-custom .dropdown-divider {
	border-color: var(--border-color);
	margin: 0.5rem 0;
}

/* Theme toggle text size to match other items */
.menu-dropdown-custom #themeModeLabel {
	font-size: 0.95rem;
	color: var(--text-secondary);
	transition: color 0.2s ease;
}

/* Pro Membership Item */
.dropdown-item-pro {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(139, 92, 246, 0.15));
	border: 1px solid rgba(79, 70, 229, 0.3);
	margin-bottom: 0.5rem;
}

.dropdown-item-pro:hover {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.25), rgba(139, 92, 246, 0.25));
	border-color: rgba(79, 70, 229, 0.5);
}

.pro-icon {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.bg-gradient-purple {
	background: linear-gradient(135deg, var(--gradient-middle), var(--gradient-end));
	color: white;
	font-size: 0.75rem;
	padding: 0.25rem 0.75rem;
	border-radius: 6px;
	font-weight: 700;
}

/* Theme Toggle Switch */
.theme-toggle-switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 24px;
}

.theme-toggle-input {
	opacity: 0;
	width: 0;
	height: 0;
}

.theme-toggle-label {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--bg-tertiary);
	transition: all 0.3s ease;
	border-radius: 24px;
	border: 2px solid var(--border-color);
}

.theme-toggle-slider {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 2px;
	bottom: 1px;
	background-color: var(--text-muted);
	transition: all 0.3s ease;
	border-radius: 50%;
}

.theme-toggle-input:checked + .theme-toggle-label {
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	border-color: var(--accent-blue);
}

.theme-toggle-input:checked + .theme-toggle-label .theme-toggle-slider {
	transform: translateX(24px);
	background-color: white;
}

.theme-toggle-label:hover {
	border-color: var(--accent-blue);
}

/* Logout text color */
.dropdown-item.text-danger {
	color: #ef4444 !important;
}

.dropdown-item.text-danger:hover {
	background: rgba(239, 68, 68, 0.1);
	color: #ef4444 !important;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
	font-weight: 600;
	border-radius: 12px;
	padding: 0.75rem 1.5rem;
	transition: all 0.3s ease;
	border: none;
	text-transform: none;
	letter-spacing: 0.3px;
}

.btn-gradient {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
	color: white !important;
	box-shadow: var(--shadow-md);
	position: relative;
	border: none;
	transition: all 0.3s ease;
}

.btn-gradient:hover {
	background: linear-gradient(135deg, var(--gradient-end), var(--gradient-middle), var(--gradient-start));
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	color: white !important;
}

.btn-gradient:focus,
.btn-gradient:active {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
	color: white !important;
	box-shadow: var(--shadow-md);
}

.btn-gradient span,
.btn-gradient i,
.btn-gradient * {
	color: white !important;
}

.btn-gradient:hover span,
.btn-gradient:hover i,
.btn-gradient:hover *,
.btn-gradient:focus span,
.btn-gradient:focus i,
.btn-gradient:focus *,
.btn-gradient:active span,
.btn-gradient:active i,
.btn-gradient:active * {
	color: white !important;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	color: white !important;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
	border: none;
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--gradient-end), var(--gradient-middle), var(--gradient-start));
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-primary *,
.btn-primary:hover *,
.btn-primary:focus *,
.btn-primary:active * {
	color: white !important;
}

.btn-outline-light {
	border: 2px solid rgba(255, 255, 255, 0.2);
	color: var(--text-primary);
	background: transparent;
}

.btn-outline-light:hover {
	border-color: var(--accent-blue);
	background: rgba(59, 130, 246, 0.1);
	color: var(--text-primary);
	transform: translateY(-2px);
}

.btn-outline-primary {
	border: 2px solid var(--accent-blue);
	color: var(--accent-blue);
	background: transparent;
}

.btn-outline-primary:hover {
	background: var(--accent-blue);
	color: white;
	transform: translateY(-2px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
	padding: 20px 0 60px !important;
	position: relative;
	overflow: visible;
}

.hero-gradient-box {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(236, 72, 153, 0.1) 100%);
	border-radius: 32px;
	padding: 60px 0;
	position: relative;
	overflow: visible;
}

.hero-gradient-box::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 20s ease-in-out infinite;
	z-index: 0;
	pointer-events: none;
}

.hero-gradient-box::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 15s ease-in-out infinite reverse;
	z-index: 0;
	pointer-events: none;
}

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

.min-vh-70 {
	min-height: 70vh;
}

.hero-content {
	position: relative;
	z-index: 1;
	padding-left: 20px;
	padding-right: 20px;
}

.hero-title {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	line-height: 1.1;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
}

.hero-description {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	color: var(--text-light-gray);
	margin-bottom: 2rem;
}

/* Hero Search Wrapper */
.hero-search-wrapper {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	z-index: 10;
}

.hero-search-wrapper .search-icon-wrapper {
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 12;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.hero-search-wrapper .search-results-dropdown {
	z-index: 1050 !important;
	position: absolute;
}

.hero-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
	z-index: 1;
}

.hero-side-icon {
	max-width: 300px;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
	animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}

.editor-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	position: relative;
	z-index: 1;
}

.editor-logo-link {
	transition: all 0.3s ease;
	display: inline-block;
}

.editor-logo {
	height: 40px;
	transition: all 0.3s ease;
	opacity: 0.8;
}

.editor-logo-link:hover .editor-logo {
	transform: scale(1.05) translateY(-5px);
	opacity: 1;
}

/* ========================================
   Tool Search Section
   ======================================== */
.tool-search-section {
	padding: 40px 0 20px;
	position: relative;
}

.tool-search-wrapper {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
}

.search-icon-wrapper {
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.search-icon-wrapper i {
	font-size: 1.25rem;
	color: var(--text-muted);
	transition: all 0.3s ease;
}

.tool-search-input {
	width: 100%;
	padding: 1.25rem 1.5rem 1.25rem 4rem;
	font-size: 1.125rem;
	border: 2px solid var(--border-color);
	border-radius: 20px;
	background: var(--bg-card);
	color: var(--text-primary);
	transition: all 0.4s ease;
	outline: none;
	box-shadow: var(--shadow-md);
	font-weight: 500;
}

.tool-search-input::placeholder {
	color: var(--text-muted);
	font-weight: 400;
}

.tool-search-input:focus {
	border-color: var(--accent-blue);
	background: var(--bg-card-hover);
	box-shadow: var(--shadow-lg), 0 0 0 4px rgba(59, 130, 246, 0.1);
	transform: translateY(-2px);
}

.tool-search-input:focus ~ .search-icon-wrapper i {
	color: var(--accent-blue);
	transform: scale(1.1);
}

/* Search Results Dropdown */
.search-results-dropdown {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	right: 0;
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 16px;
	box-shadow: var(--shadow-xl);
	max-height: 450px;
	overflow-y: auto;
	display: none;
	z-index: 1050;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	animation: slideDown 0.3s ease;
}

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

.search-results-dropdown::-webkit-scrollbar {
	width: 8px;
}

.search-results-dropdown::-webkit-scrollbar-track {
	background: transparent;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
	background: var(--border-color);
	border-radius: 4px;
}

.search-results-dropdown::-webkit-scrollbar-thumb:hover {
	background: var(--border-light);
}

/* Search Result Items */
.search-result-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	color: var(--text-primary);
	text-decoration: none;
	border-bottom: 1px solid var(--border-color);
	transition: all 0.3s ease;
	cursor: pointer;
	gap: 1rem;
}

.search-result-item:last-of-type {
	border-bottom: none;
}

.search-result-item:hover,
.search-result-item.selected {
	background: var(--bg-card-hover);
	border-left: 4px solid var(--accent-blue);
	padding-left: calc(1.5rem - 4px);
}

.search-result-item:hover .search-result-arrow,
.search-result-item.selected .search-result-arrow {
	transform: translateX(5px);
	color: var(--accent-blue);
}

.search-result-content {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
	min-width: 0;
}

.search-result-name {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-result-name mark {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
	color: var(--accent-blue);
	padding: 2px 4px;
	border-radius: 4px;
	font-weight: 700;
}

.search-result-category {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: rgba(59, 130, 246, 0.15);
	color: var(--accent-blue);
	border-radius: 8px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
	border: 1px solid rgba(59, 130, 246, 0.3);
}

.search-result-arrow {
	color: var(--text-muted);
	font-size: 0.875rem;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

/* Category Color Variants - Based on Category Name */
/* Generator - Blue */
.search-result-category:has(+ *):is(:contains("Generator")),
.search-result-item:has(.search-result-category:contains("Generator")) .search-result-category {
	background: rgba(59, 130, 246, 0.15);
	color: #3b82f6;
	border-color: rgba(59, 130, 246, 0.3);
}

/* Converter - Purple */
.search-result-item:has(.search-result-category:contains("Converter")) .search-result-category {
	background: rgba(139, 92, 246, 0.15);
	color: #8b5cf6;
	border-color: rgba(139, 92, 246, 0.3);
}

/* Tool - Pink */
.search-result-item:has(.search-result-category:contains("Tool")) .search-result-category {
	background: rgba(236, 72, 153, 0.15);
	color: #ec4899;
	border-color: rgba(236, 72, 153, 0.3);
}

/* App - Green */
.search-result-item:has(.search-result-category:contains("App")) .search-result-category {
	background: rgba(16, 185, 129, 0.15);
	color: #10b981;
	border-color: rgba(16, 185, 129, 0.3);
}

/* Plugin - Orange */
.search-result-item:has(.search-result-category:contains("Plugin")) .search-result-category {
	background: rgba(245, 158, 11, 0.15);
	color: #f59e0b;
	border-color: rgba(245, 158, 11, 0.3);
}

/* AI - Cyan */
.search-result-item:has(.search-result-category:contains("AI")) .search-result-category {
	background: rgba(6, 182, 212, 0.15);
	color: #06b6d4;
	border-color: rgba(6, 182, 212, 0.3);
}

/* Documentation - Indigo */
.search-result-item:has(.search-result-category:contains("Documentation")) .search-result-category {
	background: rgba(99, 102, 241, 0.15);
	color: #6366f1;
	border-color: rgba(99, 102, 241, 0.3);
}

/* No Results Message */
.search-no-results {
	padding: 2rem 1.5rem;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.95rem;
}

.search-no-results i {
	display: block;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	opacity: 0.5;
}

/* More Results Indicator */
.search-result-more {
	padding: 0.75rem 1.5rem;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.875rem;
	font-weight: 600;
	background: var(--bg-tertiary);
	border-top: 1px solid var(--border-color);
}

/* Loading State */
.search-loading {
	padding: 2rem 1.5rem;
	text-align: center;
	color: var(--text-muted);
}

.search-loading::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid var(--border-color);
	border-top-color: var(--accent-blue);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin-left: 10px;
}

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

/* Responsive Design for Search */
@media (max-width: 767.98px) {
	.tool-search-section {
		padding: 30px 0 15px;
	}
	
	.tool-search-input {
		padding: 1rem 1.25rem 1rem 3.5rem;
		font-size: 1rem;
		border-radius: 16px;
	}
	
	.search-icon-wrapper {
		left: 18px;
	}
	
	.search-icon-wrapper i {
		font-size: 1.1rem;
	}
	
	.search-results-dropdown {
		max-height: 350px;
		border-radius: 12px;
	}
	
	.search-result-item {
		padding: 0.875rem 1.25rem;
	}
	
	.search-result-content {
		gap: 0.75rem;
	}
	
	.search-result-name {
		font-size: 0.925rem;
	}
	
	.search-result-category {
		font-size: 0.7rem;
		padding: 0.2rem 0.6rem;
	}
}

@media (max-width: 575.98px) {
	.search-result-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
	
	.search-result-name {
		white-space: normal;
		line-height: 1.4;
	}
}

/* Focus Visible for Accessibility */
.tool-search-input:focus-visible {
	outline: 2px solid var(--accent-blue);
	outline-offset: 2px;
}

.search-result-item:focus-visible {
	outline: 2px solid var(--accent-blue);
	outline-offset: -2px;
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
	padding: 25px 0;
}

.stat-card {
	padding: 2rem;
	border-radius: 20px;
	background: var(--bg-card);
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

.stat-card:hover {
	transform: translateY(-10px);
	background: var(--bg-card-hover);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-blue);
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ffffff;
	font-weight: 600;
}

/* ========================================
   MediaDB Feature Section
   ======================================== */
.mediadb-feature-section {
	background: rgba(0, 0, 0, 0.2);
	position: relative;
}

.badge.bg-gradient-new {
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	color: white;
	font-size: 0.7rem;
	padding: 0.4rem 0.8rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	vertical-align: middle;
}

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

.mediadb-features-list li {
	padding: 0.75rem 0;
	font-size: 1.05rem;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
}

.mediadb-features-list i {
	font-size: 1.25rem;
}

.mediadb-feature-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 2rem;
	height: 100%;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.mediadb-feature-card:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.mediadb-feature-card .feature-icon {
	color: var(--accent-blue);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
	padding: 60px 0;
}

.testimonial-card {
	background: var(--bg-card);
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
	min-height: 350px;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-xl);
	border-color: var(--accent-purple);
}

.testimonial-card .stars {
	color: #F8B400;
	font-size: 1.1rem;
}

.testimonial-card .stars i {
	margin-right: 0.25rem;
}

.testimonial-text {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-light-gray);
	font-style: italic;
	flex-grow: 1;
}

.testimonial-author h6 {
	color: var(--text-primary);
	font-size: 1rem;
}

.testimonial-author p {
	font-size: 0.9rem;
}

/* ========================================
   Brands Section
   ======================================== */
.brands-section {
	background: rgba(255, 255, 255, 0.01);
}

.brands-grid {
	max-width: 1000px;
	margin: 0 auto;
}

.brand-logo-wrapper {
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	transition: all 0.3s ease;
}

.brand-logo-wrapper:hover {
	transform: scale(1.05);
}

.brand-logo {
	max-width: 130px;
	width: 100%;
	height: auto;
	opacity: 0.8;
	filter: grayscale(100%);
	transition: all 0.3s ease;
}

.brand-logo-wrapper:hover .brand-logo {
	opacity: 1;
	filter: grayscale(0%);
}

/* ========================================
   Carousel Section
   ======================================== */
.carousel-section {
	padding: 60px 0;
}

.carousel-modern-card {
	background: var(--bg-card);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-color);
}

.carousel-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.carousel-content {
	padding: 3rem;
}

.carousel-indicators {
	margin-bottom: -30px;
	z-index: 10;
}

.carousel-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	border: none;
	transition: all 0.3s ease;
}

.carousel-indicators .active {
	background-color: var(--accent-blue);
	width: 40px;
	border-radius: 6px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
	background-color: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

/* ========================================
   Sections
   ======================================== */
.section-title {
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.title-underline {
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
	margin: 0 auto 2rem;
	border-radius: 2px;
}

/* ========================================
   Feature Sections
   ======================================== */
.feature-section {
	padding: 60px 0;
}

.feature-section-alt {
	padding: 60px 0;
	background: rgba(255, 255, 255, 0.01);
}

.feature-icon-title {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.feature-icon-title img {
	margin-top: -5px;
}

.feature-icon-title h2 {
	margin-bottom: 0;
}

/* Library Partner Cards */
.library-partner-card {
	background: var(--bg-card);
	border-radius: 12px;
	padding: 1rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.library-partner-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: var(--accent-blue);
}

.library-partner-logo {
	max-width: 100%;
	height: auto;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.library-partner-card:hover .library-partner-logo {
	opacity: 1;
}

/* ========================================
   Designed For Section
   ======================================== */
.designed-for-section {
	padding: 60px 0;
}

.nle-card {
	padding: 1.5rem;
	background: var(--bg-card);
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
	height: 100%;
}

.nle-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
	background: var(--bg-card-hover);
}

.nle-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.nle-logo {
	max-width: 120px;
	width: 100%;
	height: auto;
	filter: grayscale(0.3);
	transition: all 0.3s ease;
}

.nle-card:hover .nle-logo {
	filter: grayscale(0);
	transform: scale(1.05);
}

.nle-name {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-top: 1rem;
}

.nle-company {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* ========================================
   Security Section
   ======================================== */
.security-section {
	padding: 60px 0;
	background: rgba(255, 255, 255, 0.01);
}

.security-card {
	padding: 2rem 1.5rem;
	height: 100%;
}

.security-badge {
	margin-bottom: 1rem;
}

.security-badge .badge {
	font-size: 1.5rem;
	padding: 0.75rem 1.5rem;
	font-weight: 700;
}

.bg-gradient-security {
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	color: white;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
	padding: 0;
}

.cta-card {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
	border: 2px solid var(--border-color);
	border-radius: 24px;
	padding: 4rem 3rem;
	box-shadow: var(--shadow-xl);
}

.cta-price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.cta-price .currency {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-secondary);
}

.cta-price .price-value {
	font-size: 4rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.text-gradient {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

/* ========================================
   Tool Cards
   ======================================== */
.tool-card-link {
	text-decoration: none;
	display: block;
}

.tool-card {
	background: var(--bg-card);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s ease;
	border: 1px solid var(--border-color);
	height: 100%;
}

.tool-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-xl), var(--glow-purple);
	border-color: var(--accent-purple);
}

.tool-card-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/9;
}

.tool-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s ease;
}

.tool-card:hover .tool-card-image img {
	transform: scale(1.1);
}

.tool-card-content {
	padding: 1.5rem;
	text-align: center;
}

.tool-card-content h3 {
	color: var(--text-primary);
	margin-bottom: 0;
	transition: all 0.3s ease;
}

.tool-card:hover .tool-card-content h3 {
	color: var(--accent-blue);
}

/* ========================================
   Platform Cards
   ======================================== */
.platform-card {
	display: block;
	text-decoration: none;
	color: var(--text-primary);
}

.platform-card-inner {
	background: var(--bg-card);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.4s ease;
	border: 2px solid var(--border-color);
	height: 100%;
}

.platform-card:hover .platform-card-inner {
	transform: translateY(-10px);
	background: var(--bg-card-hover);
	border-color: var(--accent-blue);
	box-shadow: var(--shadow-xl), var(--glow-blue);
}

.platform-logo {
	max-height: 80px;
	max-width: 100%;
	transition: all 0.3s ease;
}

.platform-card:hover .platform-logo {
	transform: scale(1.05);
}

.platform-name {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.platform-brand {
	font-size: 0.9rem;
	color: var(--text-muted);
}

/* ========================================
   Library Cards
   ======================================== */
.library-card {
	display: block;
	text-decoration: none;
}

.library-card-inner {
	background: var(--bg-card);
	border-radius: 16px;
	padding: 1.5rem;
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
}

.library-card:hover .library-card-inner {
	transform: translateY(-5px);
	background: var(--bg-card-hover);
	border-color: var(--accent-purple);
	box-shadow: var(--shadow-md);
}

.library-logo {
	max-width: 100%;
	max-height: 60px;
	filter: brightness(0.9);
	transition: all 0.3s ease;
}

.library-card:hover .library-logo {
	filter: brightness(1.1);
}

/* ========================================
   Partner Cards
   ======================================== */
.partner-card {
	display: block;
	text-decoration: none;
}

.partner-card-inner {
	background: var(--bg-card);
	border-radius: 20px;
	padding: 2.5rem;
	transition: all 0.4s ease;
	border: 2px solid var(--border-color);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partner-card:hover .partner-card-inner {
	transform: translateY(-10px) scale(1.02);
	background: var(--bg-card-hover);
	border-color: var(--accent-pink);
	box-shadow: var(--shadow-xl), var(--glow-pink);
}

.partner-logo {
	max-width: 100%;
	max-height: 80px;
	transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
	transform: scale(1.05);
}

/* ========================================
   Footer
   ======================================== */
.modern-footer {
	background: var(--bg-secondary);
	padding: 4rem 0 2rem;
	margin-top: 0rem;
	border-top: 0px;
	position: relative;
}

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

.footer-logo {
	max-width: 180px;
	margin-bottom: 1rem;
}

.footer-description {
	font-size: 0.95rem;
	line-height: 1.6;
}

.footer-badge .badge {
	font-size: 0.85rem;
	padding: 0.5rem 1rem;
	font-weight: 600;
}

.bg-gradient-blue {
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
}

.bg-gradient-eu {
	background: linear-gradient(135deg, #003399, #ffcc00);
	color: white;
	font-weight: 700;
	letter-spacing: 0.3px;
	box-shadow: 0 2px 8px rgba(0, 51, 153, 0.3);
}

.footer-copyright {
	font-size: 0.85rem;
}

.footer-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

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

.footer-links a {
	color: var(--text-light-gray);
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-links a:hover {
	color: var(--accent-blue);
	transform: translateX(5px);
}

.footer-bottom {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
}

/* ========================================
   Help FAB Button
   ======================================== */
.help-fab-button {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	box-shadow: var(--shadow-lg);
	transition: all 0.3s ease;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.help-fab-button:hover {
	transform: scale(1.1) rotate(90deg);
	box-shadow: var(--shadow-xl), var(--glow-blue);
}

/* ========================================
   Modals
   ======================================== */
.modal-content.bg-dark-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-xl);
}

.modal-header.border-secondary {
	border-bottom-color: var(--border-color) !important;
}

.modal-footer.border-secondary {
	border-top-color: var(--border-color) !important;
}

.modal-title {
	color: var(--text-primary);
	font-weight: 700;
}

/* Language Selection */
.language-box {
	display: flex;
	align-items: center;
	padding: 1rem;
	background: var(--bg-tertiary);
	border: 2px solid var(--border-color);
	border-radius: 12px;
	transition: all 0.3s ease;
	text-decoration: none;
	color: var(--text-primary);
	gap: 1rem;
}

.language-box:hover {
	background: var(--bg-card-hover);
	border-color: var(--accent-blue);
	transform: translateX(5px);
	box-shadow: var(--shadow-md);
	color: var(--text-primary);
}

.language-box.selected {
	background: rgba(59, 130, 246, 0.1);
	border-color: var(--accent-blue);
}

.language-box .flag {
	font-size: 1.5rem;
}

.language-box strong {
	font-size: 1rem;
	font-weight: 600;
}

/* Form Controls */
.form-control.bg-dark,
.form-select.bg-dark {
	background-color: var(--bg-tertiary);
	border-color: var(--border-color);
	color: var(--text-primary);
}

.form-control.bg-dark:focus,
.form-select.bg-dark:focus {
	background-color: var(--bg-tertiary);
	border-color: var(--accent-blue);
	color: var(--text-primary);
	box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.form-label {
	color: var(--text-secondary);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

/* ========================================
   Utility Classes
   ======================================== */
.py-7 {
	padding-top: 5rem !important;
	padding-bottom: 5rem !important;
}

.bg-dark-card {
	background: var(--bg-card);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 991.98px) {
	.hero-section {
		padding: 20px 0 40px;
	}
	
	.min-vh-70 {
		min-height: 35vh;
	}
	
	.hero-gradient-box {
		padding: 40px 20px;
	}
	
	.hero-title {
		font-size: 1.5rem;
	}
	
	.hero-description {
		font-size: 1rem;
	}
	
	.carousel-image {
		height: 250px;
	}
	
	.carousel-content {
		padding: 2rem;
	}
	
	.modern-footer {
		padding: 3rem 0 1.5rem;
	}
	
	/* Mega dropdown on mobile */
	.mega-dropdown {
		min-width: 100%;
		max-width: 100vw;
		padding: 1rem;
	}
	
	.mega-dropdown .container-fluid {
		padding: 0;
	}
	
	.mega-dropdown .row {
		margin: 0;
	}
	
	.mega-dropdown .col-md-6 {
		padding: 0;
	}
	
	.mega-dropdown .dropdown-header {
		margin-top: 1rem;
	}
	
	.mega-dropdown .dropdown-header:first-child {
		margin-top: 0;
	}
}

@media (max-width: 767.98px) {
	.stat-number {
		font-size: 2.5rem;
	}
	
	.stat-label {
		font-size: 0.9rem;
	}
	
	.platform-card-inner,
	.partner-card-inner {
		padding: 1.5rem;
	}
	
	.platform-logo,
	.partner-logo {
		max-height: 60px;
	}
}

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

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

/* Loading States */
.spinner-border.text-primary {
	color: var(--accent-blue) !important;
}

/* Alerts */
.alert {
	border-radius: 12px;
	border: none;
	box-shadow: var(--shadow-md);
}

.alert-success {
	background: rgba(16, 185, 129, 0.1);
	color: #10b981;
	border-left: 4px solid #10b981;
}

/* ========================================
   Light Theme Support
   ======================================== */
body.light-theme {
	--bg-primary: #ffffff;
	--bg-secondary: #f9fafb;
	--bg-tertiary: #f3f4f6;
	--bg-card: #ffffff;
	--bg-card-hover: #f9fafb;
	
	--text-primary: #111827;
	--text-secondary: #374151;
	--text-muted: #6b7280;
	--text-light-gray: #4b5563;
	
	--border-color: #e5e7eb;
	--border-light: #d1d5db;
	
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
	--shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
	
	background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

body.light-theme .modern-navbar {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

body.light-theme .modern-navbar.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

body.light-theme .modern-navbar .navbar-brand img {
	content: url('/img/logo-main-black.png');
}

body.light-theme .footer-logo {
	content: url('/img/logo-main-black.png');
}

body.light-theme .modern-navbar .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.light-theme .btn-close,
body.light-theme .btn-close-white {
	filter: invert(1) brightness(0);
	opacity: 1;
}

body.light-theme .modal-content .btn-close {
	filter: invert(1) brightness(0);
	opacity: 1;
	background-color: transparent;
}

body.light-theme .modal-content .btn-close:hover {
	opacity: 0.7;
}

body.light-theme .modern-navbar .nav-link {
	color: var(--text-secondary);
}

body.light-theme .modern-navbar .nav-link:hover {
	color: var(--text-primary);
	background: rgba(0, 0, 0, 0.05);
}

body.light-theme .btn-outline-light {
	border-color: var(--border-color);
	color: var(--text-primary);
}

body.light-theme .btn-outline-light:hover {
	background: var(--bg-tertiary);
	border-color: var(--accent-blue);
}

body.light-theme .btn-menu-dots {
	border-color: var(--border-color);
	color: var(--text-primary);
}

body.light-theme .btn-menu-dots:hover {
	background: var(--bg-tertiary);
}

body.light-theme .menu-dropdown-custom {
	background: var(--bg-card);
	border-color: var(--border-color);
}

body.light-theme .menu-dropdown-custom .dropdown-item {
	color: var(--text-secondary);
}

body.light-theme .menu-dropdown-custom .dropdown-item:hover {
	background: var(--bg-tertiary);
	color: var(--text-primary);
}

body.light-theme .hero-gradient-box {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(236, 72, 153, 0.15) 100%);
}

body.light-theme .hero-gradient-box::before {
	background: radial-gradient(circle, rgba(79, 70, 229, 0.25) 0%, transparent 70%);
}

body.light-theme .hero-gradient-box::after {
	background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, transparent 70%);
}

body.light-theme .tool-search-input {
	background: var(--bg-card);
	color: var(--text-primary);
	border-color: var(--border-color);
}

body.light-theme .tool-search-input:focus {
	background: var(--bg-card);
}

body.light-theme .search-results-dropdown {
	background: var(--bg-card);
	border-color: var(--border-color);
}

body.light-theme .modern-footer {
	background: var(--bg-secondary);
	border-top-color: var(--border-color);
}

body.light-theme .help-fab-button {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Invert partner and library logos in light mode */
body.light-theme .library-logo,
body.light-theme .partner-logo {
	filter: invert(1) brightness(0.9);
}

body.light-theme .library-card:hover .library-logo,
body.light-theme .partner-card:hover .partner-logo {
	filter: invert(1) brightness(1.1);
}

/* Invert brand logos in light mode */
body.light-theme .brand-logo {
	filter: grayscale(100%) invert(1) brightness(0.8);
}

body.light-theme .brand-logo-wrapper:hover .brand-logo {
	filter: grayscale(0%) invert(1) brightness(0.9);
}

/* Light mode feature cards */
body.light-theme .mediadb-feature-card {
	background: rgba(0, 0, 0, 0.03);
	border-color: var(--border-color);
}

body.light-theme .mediadb-feature-card:hover {
	background: rgba(0, 0, 0, 0.05);
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
	.modern-navbar,
	.help-fab-button,
	.modern-footer {
		display: none;
	}
}

/* ========================================
   Logging Solutions Section Styles
   ======================================== */

.logging-solutions-section {
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}

.glass-panel-large {
	background: rgba(30, 37, 56, 0.6);
	backdrop-filter: blur(20px);
	border-radius: 24px;
	padding: 3rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: var(--shadow-lg);
}

.live-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: red;
	border-radius: 50%;
	margin-right: 8px;
	animation: pulse-dot 2s ease-in-out infinite;
}

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

/* Plugin Card Styles */
.plugin-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	background: var(--bg-card);
	border: 2px solid transparent;
	border-radius: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.plugin-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
}

.plugin-card:hover {
	border-color: var(--accent-purple);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.plugin-card.active {
	border-color: var(--accent-purple);
	background: var(--bg-card-hover);
}

.plugin-card.active::before {
	opacity: 0.1;
}

.plugin-card-left {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
	position: relative;
	z-index: 1;
}

.plugin-icon-box {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	flex-shrink: 0;
	box-shadow: var(--shadow-sm);
}

.plugin-content h5 {
	margin: 0 0 0.5rem 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-primary);
}

.plugin-content p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--text-light-gray);
	line-height: 1.4;
}

.product-link-btn {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-primary);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
	flex-shrink: 0;
}

.product-link-btn:hover {
	background: var(--accent-purple);
	color: white;
	transform: translateY(-2px);
}

/* Video Container Styles */
.video-container {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: var(--bg-tertiary);
	box-shadow: var(--shadow-lg);
	height: 100%;
	min-height: 400px;
}

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

.video-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
	z-index: 10;
}

.video-overlay .badge {
	font-size: 0.85rem;
	padding: 0.5rem 1rem;
	border-radius: 20px;
}

.video-overlay h5 {
	font-size: 1.5rem;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Feature Card Enhancements */
.feature-card {
	background: var(--bg-card);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
	border: 1px solid transparent;
	height: 100%;
}

.feature-card:hover {
	border-color: var(--accent-purple);
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.feature-icon {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Partners Grid */
.partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	align-items: center;
	justify-items: center;
}

.partner-logo-wrapper {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: var(--bg-card);
	border-radius: 12px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.partner-logo-wrapper:hover {
	border-color: var(--accent-purple);
	transform: translateY(-3px);
	box-shadow: var(--shadow-sm);
}

.partner-logo {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: grayscale(100%) brightness(1.2);
	transition: filter 0.3s ease;
}

.partner-logo-wrapper:hover .partner-logo {
	filter: grayscale(0%) brightness(1);
}

.tech-partner-link img {
	filter: grayscale(100%) brightness(1.2);
	transition: filter 0.3s ease;
}

.tech-partner-link:hover img {
	filter: grayscale(0%) brightness(1);
}

/* CTA Card */
.cta-card {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
	border-radius: 24px;
	padding: 3rem;
	box-shadow: var(--shadow-xl);
	position: relative;
	overflow: hidden;
}

.cta-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: rotate 20s linear infinite;
}

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

.cta-card h2,
.cta-card p {
	position: relative;
	z-index: 1;
}

/* Section Header Improvements */
.section-header h2 {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Stats Section Enhancement */
.stat-card {
	background: var(--bg-card);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.stat-card:hover {
	border-color: var(--accent-purple);
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.stat-icon {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-number {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.glass-panel-large {
		padding: 2rem 1.5rem;
	}
	
	.plugin-card {
		padding: 1rem;
	}
	
	.plugin-icon-box {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}
	
	.plugin-content h5 {
		font-size: 1rem;
	}
	
	.plugin-content p {
		font-size: 0.85rem;
	}
	
	.video-container {
		min-height: 300px;
		margin-top: 2rem;
	}
	
	.partners-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap: 1rem;
	}
	
	.partner-logo-wrapper {
		height: 60px;
	}
}

@media (max-width: 767px) {
	.cta-card {
		padding: 2rem 1.5rem;
		text-align: center;
	}
	
	.cta-card .col-lg-4 {
		margin-top: 1.5rem;
	}
	
	.section-header h2 {
		font-size: 2rem !important;
	}
}

/* Accessibility Improvements */
.plugin-card:focus {
	outline: 2px solid var(--accent-purple);
	outline-offset: 2px;
}

.plugin-card:focus-visible {
	box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

/* Animation delays for AOS */
.animate-on-scroll {
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.aos-animate {
	opacity: 1;
}

.delay-100 {
	transition-delay: 0.1s;
}

.delay-200 {
	transition-delay: 0.2s;
}

.delay-300 {
	transition-delay: 0.3s;
}

.delay-400 {
	transition-delay: 0.4s;
}

.delay-500 {
	transition-delay: 0.5s;
}

/* NoScript Alert Styling */
noscript .alert {
	display: block !important;
	margin: 1rem 0;
	padding: 1rem;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid var(--accent-blue);
	border-radius: 8px;
	color: var(--text-primary);
}

noscript .alert-link {
	color: var(--accent-blue);
	text-decoration: underline;
}

noscript .alert-link:hover {
	color: var(--accent-purple);
}

/* Category-specific colors using data attributes */
[data-category="Generator"] .search-result-category {
	background: rgba(59, 130, 246, 0.15) !important;
	color: #3b82f6 !important;
	border-color: rgba(59, 130, 246, 0.3) !important;
}

[data-category="Converter"] .search-result-category {
	background: rgba(139, 92, 246, 0.15) !important;
	color: #8b5cf6 !important;
	border-color: rgba(139, 92, 246, 0.3) !important;
}

[data-category="Tool"] .search-result-category {
	background: rgba(236, 72, 153, 0.15) !important;
	color: #ec4899 !important;
	border-color: rgba(236, 72, 153, 0.3) !important;
}

[data-category="App"] .search-result-category {
	background: rgba(16, 185, 129, 0.15) !important;
	color: #10b981 !important;
	border-color: rgba(16, 185, 129, 0.3) !important;
}

[data-category="Plugin"] .search-result-category {
	background: rgba(245, 158, 11, 0.15) !important;
	color: #f59e0b !important;
	border-color: rgba(245, 158, 11, 0.3) !important;
}

[data-category="AI"] .search-result-category {
	background: rgba(6, 182, 212, 0.15) !important;
	color: #06b6d4 !important;
	border-color: rgba(6, 182, 212, 0.3) !important;
}

[data-category="Documentation"] .search-result-category {
	background: rgba(99, 102, 241, 0.15) !important;
	color: #6366f1 !important;
	border-color: rgba(99, 102, 241, 0.3) !important;
}

/* ========================================
   Live Logging Solutions Tabs Section
   ======================================== */

.live-logging-section {
	background: var(--bg-primary);
	position: relative;
	overflow: hidden;
}

.live-logging-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* Logging Tabs Navigation */
.logging-tabs {
	background: var(--bg-card);
	border-radius: 16px;
	padding: 0.5rem;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	margin: 0 auto 3rem auto;
}

.logging-tabs .nav-item {
	flex: 1;
	min-width: 0;
}

.logging-tabs .nav-link {
	background: transparent;
	border: none;
	border-radius: 12px;
	padding: 1rem 0.75rem;
	color: var(--text-muted);
	font-weight: 500;
	transition: all 0.3s ease;
	text-align: center;
	position: relative;
	overflow: hidden;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.logging-tabs .nav-link i {
	font-size: 1.5rem;
	display: block;
	transition: all 0.3s ease;
}

.logging-tabs .nav-link span {
	font-size: 0.9rem;
	font-weight: 600;
}

.logging-tabs .nav-link small {
	font-size: 0.75rem;
	opacity: 0.7;
}

.logging-tabs .nav-link:hover {
	background: var(--bg-tertiary);
	color: var(--text-primary);
}

.logging-tabs .nav-link.active {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	color: white;
	box-shadow: var(--shadow-md);
}

.logging-tabs .nav-link.active i {
	transform: scale(1.1);
}

.logging-tabs .nav-link.active small {
	opacity: 1;
}

/* Tab Content */
.tab-content {
	background: var(--bg-card);
	border-radius: 20px;
	padding: 3rem;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-lg);
	min-height: 400px;
}

/* Logging App Icon */
.logging-app-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2.5rem;
	box-shadow: var(--shadow-md);
	animation: float 3s ease-in-out infinite;
}

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

/* Feature List */
.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-list li {
	padding: 0.75rem 0;
	color: var(--text-secondary);
	font-size: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
	border-bottom: none;
}

.feature-list i.fa-check-circle {
	font-size: 1.1rem;
}

/* Preview Wrapper */
.logging-preview-wrapper {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	transition: all 0.3s ease;
}

.logging-preview-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.logging-preview-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	transition: all 0.3s ease;
}

.logging-preview-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(139, 92, 246, 0.1));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
	pointer-events: none;
}

.logging-preview-wrapper:hover::before {
	opacity: 1;
}

/* Tab Pane Animation */
.tab-pane {
	animation: fadeInUp 0.5s ease;
}

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

/* Responsive Adjustments */
@media (max-width: 991px) {
	.tab-content {
		padding: 2rem 1.5rem;
	}
	
	.logging-app-icon {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}
	
	.logging-tabs .nav-link {
		padding: 0.75rem 0.5rem;
		min-height: 100px;
	}
	
	.logging-tabs .nav-link i {
		font-size: 1.25rem;
	}
	
	.logging-tabs .nav-link span {
		font-size: 0.8rem;
	}
}

@media (max-width: 767px) {
	.logging-tabs {
		padding: 0.25rem;
		margin-bottom: 2rem;
	}
	
	.logging-tabs .nav-link {
		padding: 0.5rem 0.25rem;
		min-height: 90px;
	}
	
	.logging-tabs .nav-link span {
		font-size: 0.7rem;
	}
	
	.logging-tabs .nav-link small {
		display: none !important;
	}
	
	.tab-content {
		padding: 1.5rem 1rem;
	}
	
	.logging-preview-wrapper {
		margin-top: 2rem;
	}
}

/* Enhanced Gradient Button */
.btn-gradient {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
	border: none;
	color: white;
	font-weight: 600;
	padding: 0.75rem 2rem;
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden;
}

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

.btn-gradient:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
	color: white;
}

.btn-gradient:hover::before {
	left: 100%;
}

.btn-gradient:active {
	transform: translateY(0);
}

/* Live Dot Animation Enhancement */
.live-dot {
	position: relative;
}

.live-dot::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	background: red;
	border-radius: 50%;
	opacity: 0.3;
	animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
	0% {
		transform: translate(-50%, -50%) scale(0.5);
		opacity: 0.5;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0;
	}
	100% {
		transform: translate(-50%, -50%) scale(0.5);
		opacity: 0;
	}
}

/* Hero Background Image */
.hero-background-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('/img/hero-background-min.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.15;
	z-index: 1;
	pointer-events: none;
}

/* Ensure gradient orbs stay in background */
.hero-gradient-box::before,
.hero-gradient-box::after {
	z-index: 0 !important;
}

/* Ensure content is above background image */
.hero-gradient-box > .container {
	position: relative;
	z-index: 2;
}

/* Responsive adjustments for background image */
@media (max-width: 991px) {
	.hero-background-image {
		opacity: 0.1;
		background-size: contain;
	}
}

@media (max-width: 767px) {
	.hero-background-image {
		opacity: 0.08;
	}
}

/* CTA Section Light Mode Compatibility */
.cta-description {
	color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
	background: white;
	color: var(--gradient-start);
	border: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-cta:hover {
	background: rgba(255, 255, 255, 0.9);
	color: var(--gradient-middle);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Light Mode Overrides for CTA */
body.light-theme .cta-card {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
}

body.light-theme .cta-card h2,
body.light-theme .cta-description {
	color: white !important;
}

body.light-theme .btn-cta {
	background: white;
	color: var(--gradient-start);
}

body.light-theme .btn-cta:hover {
	background: rgba(255, 255, 255, 0.95);
	color: var(--gradient-middle);
}

/* ========================================
   Premiere Pro Plugins Section
   ======================================== */

.plugins-showcase-section {
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}

.plugins-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.plugin-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	background: var(--bg-card);
	border: 2px solid transparent;
	border-radius: 16px;
	color: var(--text-primary);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	min-height: 80px;
}

.plugin-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
}

.plugin-link:hover,
.plugin-link.active {
	border-color: var(--accent-purple);
	transform: translateX(5px);
	box-shadow: var(--shadow-md);
	color: var(--text-primary);
}

.plugin-link.active::before {
	opacity: 0.1;
}

.plugin-link-content {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
	position: relative;
	z-index: 1;
}

.plugin-link-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.3rem;
	flex-shrink: 0;
	box-shadow: var(--shadow-sm);
}

.plugin-link-text h5 {
	margin: 0 0 0.25rem 0;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text-primary);
}

.plugin-link-text p {
	margin: 0;
	font-size: 0.85rem;
	color: var(--text-light-gray);
	line-height: 1.3;
}

.plugin-link-arrow {
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-primary);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.plugin-link:hover .plugin-link-arrow {
	background: var(--accent-purple);
	color: white;
	transform: translateX(3px);
}

.plugin-image-preview {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: var(--bg-tertiary);
	box-shadow: var(--shadow-lg);
	height: 100%;
	min-height: 500px;
	max-height: 740px;
}

.plugin-image-preview img {
	width: 100%;
	height: 100%;
	min-height: 500px;
	max-height: 740px;
	object-fit: cover;
	display: block;
	transition: opacity 0.3s ease;
}

.plugin-image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
	z-index: 10;
}

.plugin-image-overlay .badge {
	font-size: 0.8rem;
	padding: 0.4rem 0.9rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.plugin-image-overlay h5 {
	font-size: 1.3rem;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	margin: 0;
}

/* Show All Plugins link styling */
.plugin-link-all {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(139, 92, 246, 0.1));
	border-color: rgba(79, 70, 229, 0.3);
}

.plugin-link-all:hover,
.plugin-link-all.active {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(139, 92, 246, 0.2));
	border-color: var(--accent-purple);
}

.plugin-link-all .plugin-link-icon {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.plugin-link {
		padding: 1rem;
	}
	
	.plugin-link-icon {
		width: 42px;
		height: 42px;
		font-size: 1.1rem;
	}
	
	.plugin-link-text h5 {
		font-size: 0.95rem;
	}
	
	.plugin-link-text p {
		font-size: 0.8rem;
	}
	
	.plugin-image-preview {
		min-height: 350px;
		margin-top: 2rem;
	}
	
	.plugin-image-preview img {
		min-height: 350px;
	}
}

@media (max-width: 767px) {
	.plugins-list {
		gap: 0.5rem;
	}
	
	.plugin-link {
		min-height: 70px;
	}
	
	.plugin-image-preview {
		min-height: 250px;
	}
	
	.plugin-image-preview img {
		min-height: 250px;
	}
}

/* Light mode compatibility */
body.light-theme .plugin-link {
	background: rgba(255, 255, 255, 0.8);
}

body.light-theme .plugin-link:hover,
body.light-theme .plugin-link.active {
	background: rgba(255, 255, 255, 0.95);
}

/* ========================================
   New & Updated Tools Section
   ======================================== */

.new-tools-section {
	background: transparent;
	position: relative;
}

.new-tools-box {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 24px;
	padding: 2rem;
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden;
}

.new-tools-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.03), rgba(139, 92, 246, 0.03));
	pointer-events: none;
	z-index: 0;
}

.new-tools-box > * {
	position: relative;
	z-index: 1;
}

.bg-gradient-purple {
	background: linear-gradient(135deg, var(--gradient-middle), var(--gradient-end));
	color: white;
	font-size: 0.7rem;
	padding: 0.3rem 0.7rem;
	border-radius: 6px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.badge-sm {
	font-size: 0.65rem;
	padding: 0.25rem 0.6rem;
	font-weight: 600;
}

.new-tool-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	background: var(--bg-card);
	border: 2px solid transparent;
	border-radius: 16px;
	text-decoration: none;
	color: var(--text-primary);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: 100%;
	min-height: 140px;
}

.new-tool-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
}

.new-tool-card:hover {
	border-color: var(--accent-purple);
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	color: var(--text-primary);
}

.new-tool-card:hover::before {
	opacity: 0.05;
}

.new-tool-icon {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.tool-icon-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 12px;
}

.new-tool-content {
	flex: 1;
	position: relative;
	z-index: 1;
}

/* New badge styling - compact and integrated */
.new-tool-content .badge {
	position: absolute;
	top: -8px;
	right: 0;
	font-size: 0.65rem;
	font-weight: 700;
	padding: 0.25rem 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)) !important;
	border: none;
	box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.new-tool-content h5 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
	padding-right: 50px; /* Space for badge */
}

.new-tool-description {
	font-size: 0.85rem;
	color: var(--text-light-gray);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.new-tool-arrow {
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.new-tool-card:hover .new-tool-arrow {
	background: var(--accent-purple);
	color: white;
	transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.new-tool-card {
		padding: 1rem;
		min-height: 130px;
	}
	
	.new-tool-icon {
		width: 50px;
		height: 50px;
	}
	
	.new-tool-content h5 {
		font-size: 0.95rem;
		padding-right: 45px; /* Adjust for smaller badge */
	}
	
	.new-tool-content .badge {
		font-size: 0.6rem;
		padding: 0.2rem 0.4rem;
	}
	
	.new-tool-description {
		font-size: 0.8rem;
	}
}

@media (max-width: 767px) {
	.new-tool-card {
		flex-direction: row;
		text-align: left;
		min-height: 120px;
	}
	
	.new-tool-icon {
		width: 45px;
		height: 45px;
	}
	
	.new-tool-content .badge {
		font-size: 0.55rem;
		padding: 0.15rem 0.35rem;
		top: -6px;
	}
	
	.new-tool-content h5 {
		padding-right: 40px;
	}
}

/* Light mode compatibility */
body.light-theme .new-tool-card {
	background: rgba(255, 255, 255, 0.8);
	border-color: var(--border-color);
}

body.light-theme .new-tool-card:hover {
	background: rgba(255, 255, 255, 0.95);
	border-color: var(--accent-purple);
}

body.light-theme .new-tool-description {
	color: var(--text-secondary);
}

/* Invert music library partner logos in light mode */
body.light-theme .library-partner-logo {
	filter: invert(1);
}

/* ========================================
   Audio Processing Tools Section
   ======================================== */

.audio-tools-section {
	background: var(--bg-secondary);
	position: relative;
}

.audio-tabs {
	background: var(--bg-card);
	border-radius: 16px;
	padding: 0.5rem;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	margin: 0 auto 3rem auto;
}

.audio-tabs .nav-item {
	flex: 1;
	min-width: 0;
}

.audio-tabs .nav-link {
	background: transparent;
	border: none;
	border-radius: 12px;
	padding: 1rem 0.75rem;
	color: var(--text-muted);
	font-weight: 500;
	transition: all 0.3s ease;
	text-align: center;
	position: relative;
	overflow: hidden;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.audio-tabs .nav-link i {
	font-size: 1.5rem;
	display: block;
	transition: all 0.3s ease;
}

.audio-tabs .nav-link span {
	font-size: 0.9rem;
	font-weight: 600;
}

.audio-tabs .nav-link:hover {
	background: var(--bg-tertiary);
	color: var(--text-primary);
}

.audio-tabs .nav-link.active {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	color: white;
	box-shadow: var(--shadow-md);
}

.audio-tabs .nav-link.active i {
	transform: scale(1.1);
}

.audio-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2.5rem;
	box-shadow: var(--shadow-lg);
	margin-bottom: 1.5rem;
}

.audio-preview-wrapper {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: none;
	background: transparent;
}

.audio-preview-wrapper img {
	transition: transform 0.3s ease;
	border-radius: 16px;
	box-shadow: var(--shadow-lg);
}

.audio-preview-wrapper:hover img {
	transform: scale(1.05);
	box-shadow: var(--shadow-xl);
}

/* Responsive */
@media (max-width: 991px) {
	.audio-tabs .nav-link {
		padding: 0.75rem 0.5rem;
		min-height: 100px;
	}
	
	.audio-tabs .nav-link i {
		font-size: 1.25rem;
	}
	
	.audio-tabs .nav-link span {
		font-size: 0.8rem;
	}
	
	.audio-icon {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.audio-tabs {
		padding: 0.25rem;
		margin-bottom: 2rem;
	}
	
	.audio-tabs .nav-link {
		padding: 0.5rem 0.25rem;
		min-height: 90px;
	}
	
	.audio-tabs .nav-link span {
		font-size: 0.7rem;
	}
}

/* ========================================
   Native macOS Apps Section
   ======================================== */

.macos-apps-section {
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}

.macos-apps-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.macos-app-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	background: var(--bg-card);
	border: 2px solid transparent;
	border-radius: 16px;
	color: var(--text-primary);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	min-height: 80px;
}

.macos-app-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
}

.macos-app-link:hover,
.macos-app-link.active {
	border-color: var(--accent-purple);
	transform: translateX(5px);
	box-shadow: var(--shadow-md);
	color: var(--text-primary);
}

.macos-app-link.active::before {
	opacity: 0.1;
}

.macos-app-link-content {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
	position: relative;
	z-index: 1;
}

.macos-app-link-icon {
	width: 50px;
	height: 50px;
	background: var(--bg-tertiary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-primary);
	font-size: 1.3rem;
	flex-shrink: 0;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
}

.macos-app-link-text h5 {
	margin: 0 0 0.25rem 0;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text-primary);
}

.macos-app-link-text p {
	margin: 0;
	font-size: 0.85rem;
	color: var(--text-light-gray);
	line-height: 1.3;
}

.macos-app-link-arrow {
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-primary);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.macos-app-link:hover .macos-app-link-arrow {
	background: var(--accent-purple);
	color: white;
	transform: translateX(3px);
}

.macos-image-preview {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: var(--bg-tertiary);
	box-shadow: var(--shadow-lg);
	height: 100%;
	min-height: 500px;
	max-height: 620px;
}

.macos-image-preview img {
	width: 100%;
	height: 100%;
	min-height: 500px;
	max-height: 620px;
	object-fit: cover;
	display: block;
	transition: opacity 0.3s ease;
}

.macos-image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
	z-index: 10;
}

.macos-image-overlay .badge {
	font-size: 0.8rem;
	padding: 0.4rem 0.9rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.macos-image-overlay h5 {
	font-size: 1.3rem;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	margin: 0;
}

.macos-app-link-all {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(139, 92, 246, 0.1));
	border-color: rgba(79, 70, 229, 0.3);
}

.macos-app-link-all:hover,
.macos-app-link-all.active {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(139, 92, 246, 0.2));
	border-color: var(--accent-purple);
}

.macos-app-link-all .macos-app-link-icon {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
}

/* Responsive */
@media (max-width: 991px) {
	.macos-app-link {
		padding: 1rem;
	}
	
	.macos-app-link-icon {
		width: 42px;
		height: 42px;
		font-size: 1.1rem;
	}
	
	.macos-app-link-text h5 {
		font-size: 0.95rem;
	}
	
	.macos-app-link-text p {
		font-size: 0.8rem;
	}
	
	.macos-image-preview {
		min-height: 350px;
		margin-top: 2rem;
	}
	
	.macos-image-preview img {
		min-height: 350px;
	}
}

@media (max-width: 767px) {
	.macos-apps-list {
		gap: 0.5rem;
	}
	
	.macos-app-link {
		min-height: 70px;
	}
	
	.macos-image-preview {
		min-height: 250px;
	}
	
	.macos-image-preview img {
		min-height: 250px;
	}
}

/* Light mode compatibility */
body.light-theme .macos-app-link {
	background: rgba(255, 255, 255, 0.8);
}

body.light-theme .macos-app-link:hover,
body.light-theme .macos-app-link.active {
	background: rgba(255, 255, 255, 0.95);
}

/* ========================================
   Software Solutions Section
   ======================================== */

.software-solutions-section {
	background: var(--bg-primary);
	position: relative;
}

.software-icon-wrapper {
	display: inline-block;
}

.software-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2.5rem;
	box-shadow: var(--shadow-lg);
}

.software-preview-wrapper {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	background: transparent;
}

.software-preview-wrapper img {
	transition: transform 0.3s ease;
	border-radius: 16px;
}

.software-preview-wrapper:hover img {
	transform: scale(1.05);
}

@media (max-width: 991px) {
	.software-icon {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}
}

/* ========================================
   Pro Membership Badge - Gold Color
   ======================================== */

/* Pro badge/icon gold color */
.pro-badge,
.pro-membership-badge,
.nav-link.pro-link,
a[href*="pro"].badge,
a[href*="membership"].badge,
.btn-pro,
.upgrade-pro {
	background: #EFCF60 !important;
	border-color: #EFCF60 !important;
	color: #1a1a1a !important;
}

.pro-badge:hover,
.pro-membership-badge:hover,
.nav-link.pro-link:hover,
.btn-pro:hover {
	background: #f5d97d !important;
	border-color: #f5d97d !important;
}

/* Pro icon specifically */
.pro-icon {
	background: #EFCF60 !important;
	color: #1a1a1a !important;
}

/* Pro badge with border */
.badge-pro,
.badge.pro,
span.pro,
.pro-label {
	background: transparent !important;
	border: 2px solid #EFCF60 !important;
	color: #EFCF60 !important;
	font-weight: 700;
}

/* Dark text for filled version */
.badge-pro-filled {
	background: #EFCF60 !important;
	color: #1a1a1a !important;
	border: 2px solid #EFCF60 !important;
}

/* ========================================
   Navbar Login/Sign Up Responsive
   ======================================== */

/* Hide login/signup buttons on screens smaller than 1300px */
@media (max-width: 1299px) {
	.navbar .btn-login,
	.navbar .btn-signup,
	.navbar a[href*="login"],
	.navbar a[href*="signup"],
	.navbar-nav .nav-item a[href*="login"],
	.navbar-nav .nav-item a[href*="signup"],
	.nav-link[href*="login"]:not(.dropdown-item),
	.nav-link[href*="signup"]:not(.dropdown-item),
	.modern-navbar .nav-link[href*="login"]:not(.dropdown-item),
	.modern-navbar .nav-link[href*="signup"]:not(.dropdown-item) {
		display: none !important;
	}
	
	/* Show them in dropdown menu */
	.dropdown-menu .nav-link[href*="login"],
	.dropdown-menu .nav-link[href*="signup"],
	.dropdown-menu a[href*="login"],
	.dropdown-menu a[href*="signup"],
	.dropdown-item[href*="login"],
	.dropdown-item[href*="signup"] {
		display: block !important;
	}
}

/* ========================================
   Modal Close Button - Enhanced Visibility
   ======================================== */

/* Ensure close button is always visible */
.modal .btn-close {
	opacity: 1;
	width: 1em;
	height: 1em;
	background-size: 1em;
}

/* Dark mode - white close button */
body:not(.light-theme) .modal .btn-close,
body:not(.light-theme) .modal-content .btn-close {
	filter: invert(1) brightness(2);
	opacity: 1;
}

/* Light mode - black close button */
body.light-theme .modal .btn-close,
body.light-theme .modal-content .btn-close,
body.light-theme .modal-header .btn-close {
	filter: invert(1) brightness(0) !important;
	opacity: 1 !important;
	background-color: transparent !important;
}

body.light-theme .modal .btn-close:hover,
body.light-theme .modal-content .btn-close:hover {
	opacity: 0.7 !important;
	transform: scale(1.1);
}

/* Ensure close button is on top */
.modal-header .btn-close {
	z-index: 1050;
	position: relative;
}

/* New Tools Box - Responsive */
@media (max-width: 991px) {
	.new-tools-box {
		padding: 1.5rem;
		border-radius: 20px;
	}
}

@media (max-width: 767px) {
	.new-tools-box {
		padding: 1.25rem;
		border-radius: 16px;
	}
}

/* Light mode styling */
body.light-theme .new-tools-box {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.light-theme .new-tools-box::before {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.02), rgba(139, 92, 246, 0.02));
}


/* ========================================
   Dropdown Menu - Mobile Fix
   ======================================== */

/* On small screens, ignore dropdown-menu-end to prevent off-screen issues */
@media (max-width: 991px) {
	/* Remove right alignment on mobile - let dropdowns align naturally */
	.dropdown-menu-end {
		right: auto !important;
		left: 0 !important;
	}
	
	/* Account dropdown - full width on mobile */
	.account-dropdown-menu {
		right: auto !important;
		left: 0 !important;
		min-width: 100% !important;
		max-width: 100% !important;
	}
	
	/* 3-dot menu - align left on mobile */
	#menuDropdown + .dropdown-menu {
		right: auto !important;
		left: 0 !important;
		min-width: 250px;
		max-width: 100%;
	}
	
	/* Ensure all dropdowns fit within viewport */
	.dropdown-menu {
		max-width: calc(100vw - 30px);
	}
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 991px) {
	.account-dropdown-menu {
		min-width: 400px !important;
		max-width: 500px !important;
	}
}

/* ========================================
   No AI/LLM Section
   ======================================== */

.no-ai-section {
	background: var(--bg-secondary);
	position: relative;
}

.no-ai-badge {
	display: inline-block;
}

.badge-no-ai {
	font-size: 0.9rem;
	font-weight: 700;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, #10b981, #059669);
	color: white;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
	border: 2px solid rgba(16, 185, 129, 0.5);
}

.no-ai-features {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.no-ai-features .feature-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.no-ai-features .feature-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.3rem;
	flex-shrink: 0;
	box-shadow: var(--shadow-md);
}

.no-ai-features .feature-text {
	flex: 1;
}

.no-ai-features .feature-text h5 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.no-ai-features .feature-text p {
	font-size: 0.95rem;
	color: var(--text-light-gray);
	margin: 0;
	line-height: 1.5;
}

.alert-info-custom {
	background: rgba(79, 70, 229, 0.1);
	border: 1px solid rgba(79, 70, 229, 0.3);
	border-radius: 12px;
	padding: 1rem 1.25rem;
	color: var(--text-primary);
	font-size: 0.9rem;
}

.alert-info-custom i {
	color: var(--accent-purple);
}

/* Comparison Box */
.comparison-box {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.comparison-item {
	background: var(--bg-card);
	border-radius: 16px;
	padding: 1.5rem;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.comparison-item.no-llm {
	border-color: rgba(16, 185, 129, 0.3);
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
}

.comparison-item.with-llm {
	border-color: rgba(239, 68, 68, 0.3);
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.05));
}

.comparison-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.comparison-header i {
	font-size: 1.5rem;
}

.comparison-item.no-llm .comparison-header i {
	color: #10b981;
}

.comparison-item.with-llm .comparison-header i {
	color: #ef4444;
}

.comparison-header h4 {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0;
	color: var(--text-primary);
}

.comparison-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.comparison-list li {
	display: flex;
	align-items: center;
	font-size: 0.95rem;
	color: var(--text-light-gray);
}

.comparison-list i {
	font-size: 1rem;
}

/* Light mode */
body.light-theme .alert-info-custom {
	background: rgba(79, 70, 229, 0.08);
	border-color: rgba(79, 70, 229, 0.25);
}

body.light-theme .comparison-item {
	background: rgba(255, 255, 255, 0.8);
}

body.light-theme .comparison-item.no-llm {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.08));
}

body.light-theme .comparison-item.with-llm {
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(220, 38, 38, 0.08));
}

/* Responsive */
@media (max-width: 991px) {
	.no-ai-features .feature-icon {
		width: 45px;
		height: 45px;
		font-size: 1.1rem;
	}
	
	.no-ai-features .feature-text h5 {
		font-size: 1rem;
	}
	
	.no-ai-features .feature-text p {
		font-size: 0.9rem;
	}
	
	.comparison-box {
		margin-top: 2rem;
	}
}

@media (max-width: 767px) {
	.badge-no-ai {
		font-size: 0.8rem;
		padding: 0.6rem 1.2rem;
	}
	
	.no-ai-features {
		gap: 1.25rem;
	}
	
	.no-ai-features .feature-item {
		gap: 0.75rem;
	}
	
	.comparison-item {
		padding: 1.25rem;
	}
}

/* ========================================
/* ========================================
   Spreadsheet & List Tools Section - Compact
   ======================================== */

.spreadsheet-tools-section {
	background: var(--bg-primary);
}

.spreadsheet-tool-card {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 1.25rem;
	text-decoration: none;
	transition: all 0.3s ease;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.spreadsheet-tool-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.03), rgba(139, 92, 246, 0.03));
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.spreadsheet-tool-card:hover {
	border-color: var(--accent-purple);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.spreadsheet-tool-card:hover::before {
	opacity: 1;
}

.spreadsheet-tool-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	margin-bottom: 1rem;
	flex-shrink: 0;
	box-shadow: 0 3px 10px rgba(79, 70, 229, 0.25);
}

.spreadsheet-tool-content {
	flex: 1;
}

.spreadsheet-tool-content h5 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.spreadsheet-tool-content p {
	font-size: 0.88rem;
	color: var(--text-light-gray);
	line-height: 1.5;
	margin: 0;
}

.spreadsheet-tool-arrow {
	width: 36px;
	height: 36px;
	background: var(--bg-tertiary);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	margin-top: 1rem;
	transition: all 0.3s ease;
	align-self: flex-start;
}

.spreadsheet-tool-card:hover .spreadsheet-tool-arrow {
	background: var(--accent-purple);
	color: white;
	transform: translateX(4px);
}

/* Light mode */
body.light-theme .spreadsheet-tool-card {
	background: rgba(255, 255, 255, 0.8);
	border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .spreadsheet-tool-card:hover {
	background: white;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 991px) {
	.spreadsheet-tool-card {
		padding: 1.15rem;
	}
	
	.spreadsheet-tool-icon {
		width: 46px;
		height: 46px;
		font-size: 1.1rem;
	}
	
	.spreadsheet-tool-content h5 {
		font-size: 1rem;
	}
}

@media (max-width: 767px) {
	.spreadsheet-tool-card {
		padding: 1.25rem;
	}
	
	.spreadsheet-tool-icon {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
		margin-bottom: 1rem;
	}
	
	.spreadsheet-tool-content h4 {
		font-size: 1.1rem;
	}
	
	.spreadsheet-tool-content p {
		font-size: 0.9rem;
	}
	
	.spreadsheet-tool-content .tool-features li {
		font-size: 0.85rem;
	}
}

/* ========================================
   Account Dropdown Menu
   ======================================== */

.account-dropdown-menu {
	min-width: 1100px;
	max-width: 1200px;
	padding: 0;
}

/* Account Info Header */
.account-info-header {
	padding: 1rem 1.25rem;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(139, 92, 246, 0.1));
	border-radius: 0.5rem 0.5rem 0 0;
}

.account-email {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-primary);
	max-width: 300px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.account-credits {
	font-size: 0.95rem;
	color: var(--text-primary);
	background: rgba(0, 0, 0, 0.2);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	white-space: nowrap;
}

.account-credits .fa-star {
	font-size: 0.85rem;
}

/* Two Column Layout */
.account-dropdown-columns {
	padding: 0;
}

.account-dropdown-columns .row {
	margin: 0;
}

.dropdown-column {
	padding: 0.5rem 0;
}

.dropdown-column .dropdown-header {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-light-gray);
	padding: 0.5rem 1rem;
	margin-bottom: 0.25rem;
}

.dropdown-column .dropdown-item {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	transition: all 0.2s ease;
}

.dropdown-column .dropdown-item i {
	width: 20px;
	font-size: 0.85rem;
	opacity: 0.8;
}

.dropdown-column .dropdown-item:hover {
	background: rgba(79, 70, 229, 0.15);
	padding-left: 1.25rem;
}

/* Divider between columns on desktop */
@media (min-width: 1200px) {
	.account-dropdown-columns .col-xl-6:first-child .dropdown-column {
		border-right: 1px solid rgba(255, 255, 255, 0.1);
		padding-right: 0.75rem;
	}
	
	.account-dropdown-columns .col-xl-6:last-child .dropdown-column {
		padding-left: 0.75rem;
	}
}

/* Light mode */
body.light-theme .account-info-header {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(139, 92, 246, 0.08));
}

body.light-theme .account-credits {
	background: rgba(0, 0, 0, 0.05);
}

body.light-theme .dropdown-column .dropdown-item:hover {
	background: rgba(79, 70, 229, 0.1);
}

body.light-theme .account-dropdown-columns .col-xl-6:first-child .dropdown-column {
	border-right-color: rgba(0, 0, 0, 0.1);
}

/* Mobile - Stack columns */
@media (max-width: 1199px) {
	.account-dropdown-menu {
		min-width: 300px !important;
		max-width: 350px !important;
		right: 0 !important;
		left: auto !important;
		position: absolute !important;
	}
	
	.account-email {
		font-size: 0.85rem;
		max-width: 180px;
	}
	
	.account-credits {
		font-size: 0.85rem;
		padding: 0.2rem 0.6rem;
	}
	
	.dropdown-column .dropdown-header {
		font-size: 0.7rem;
	}
	
	.dropdown-column .dropdown-item {
		font-size: 0.85rem;
		padding: 0.4rem 1rem;
	}
}

/* Extra small screens */
@media (max-width: 575px) {
	.account-dropdown-menu {
		min-width: 280px !important;
		max-width: calc(100vw - 30px) !important;
		right: 0 !important;
		left: auto !important;
		position: absolute !important;
	}
}

/* ========================================
   Light Theme - Text Readability Fix
   ======================================== */

/* Make text-light readable in light theme */
body.light-theme .text-light {
	color: #374151 !important; /* Dark gray for readability */
}

body.light-theme .text-light-gray {
	color: #6b7280 !important; /* Medium gray */
}

body.light-theme .text-muted {
	color: #9ca3af !important; /* Lighter gray */
}

/* Specific fixes for common elements */
body.light-theme .feature-list .text-light {
	color: #374151 !important;
}

body.light-theme .dropdown-column .dropdown-header {
	color: #6b7280 !important;
}

/* Mobile - Remove hero content padding */
@media (max-width: 767px) {
	.hero-content {
		padding-left: 0;
		padding-right: 0;
	}
}

/* Extra small screens (iPhone SE, etc) */
@media (max-width: 575px) {
	.hero-content {
		padding-left: 0;
		padding-right: 0;
	}
}

/* ========================================
   Light Theme - Form Input Fix
   ======================================== */

/* Make form inputs readable in light mode */
body.light-theme input[type="text"],
body.light-theme input[type="email"],
body.light-theme input[type="password"],
body.light-theme input[type="number"],
body.light-theme input[type="tel"],
body.light-theme input[type="url"],
body.light-theme input[type="search"],
body.light-theme input[type="date"],
body.light-theme input[type="time"],
body.light-theme textarea,
body.light-theme select,
body.light-theme .form-control,
body.light-theme .form-select {
	background-color: #ffffff !important;
	color: #111827 !important;
	border: 1px solid #d1d5db !important;
}

body.light-theme input[type="text"]:focus,
body.light-theme input[type="email"]:focus,
body.light-theme input[type="password"]:focus,
body.light-theme input[type="number"]:focus,
body.light-theme input[type="tel"]:focus,
body.light-theme input[type="url"]:focus,
body.light-theme input[type="search"]:focus,
body.light-theme input[type="date"]:focus,
body.light-theme input[type="time"]:focus,
body.light-theme textarea:focus,
body.light-theme select:focus,
body.light-theme .form-control:focus,
body.light-theme .form-select:focus {
	background-color: #ffffff !important;
	color: #111827 !important;
	border-color: var(--accent-purple) !important;
	box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.15) !important;
}

/* Placeholder text */
body.light-theme input::placeholder,
body.light-theme textarea::placeholder,
body.light-theme .form-control::placeholder {
	color: #9ca3af !important;
	opacity: 1 !important;
}

/* Disabled state */
body.light-theme input:disabled,
body.light-theme textarea:disabled,
body.light-theme select:disabled,
body.light-theme .form-control:disabled,
body.light-theme .form-select:disabled {
	background-color: #f3f4f6 !important;
	color: #6b7280 !important;
	opacity: 0.6 !important;
}

/* Read-only state */
body.light-theme input:read-only,
body.light-theme textarea:read-only,
body.light-theme .form-control:read-only {
	background-color: #f9fafb !important;
	color: #374151 !important;
}

/* Form labels */
body.light-theme label,
body.light-theme .form-label {
	color: #374151 !important;
	font-weight: 500;
}

/* Help text */
body.light-theme .form-text,
body.light-theme .text-muted {
	color: #6b7280 !important;
}

/* Invalid/Error state */
body.light-theme .form-control.is-invalid,
body.light-theme .was-validated .form-control:invalid {
	border-color: #dc2626 !important;
	background-color: #ffffff !important;
}

body.light-theme .form-control.is-invalid:focus,
body.light-theme .was-validated .form-control:invalid:focus {
	border-color: #dc2626 !important;
	box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.15) !important;
}

/* Valid/Success state */
body.light-theme .form-control.is-valid,
body.light-theme .was-validated .form-control:valid {
	border-color: #16a34a !important;
	background-color: #ffffff !important;
}

body.light-theme .form-control.is-valid:focus,
body.light-theme .was-validated .form-control:valid:focus {
	border-color: #16a34a !important;
	box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.15) !important;
}

/* ========================================
   Tags Page Styles
   ======================================== */

/* Tags Hero Section */
.tags-hero-section {
	background: var(--bg-secondary);
	position: relative;
}

.tags-hero-badge {
	display: inline-block;
}

.badge-tags {
	font-size: 0.9rem;
	font-weight: 700;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
	color: white;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* Tag Categories Section */
.tags-categories-section {
	background: var(--bg-primary);
}

.tag-category-group {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
}

.tag-category-group:hover {
	border-color: var(--accent-purple);
	box-shadow: var(--shadow-md);
}

/* Tags Grid */
.tags-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.tag-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: var(--bg-tertiary);
	border: 1px solid var(--border-color);
	border-radius: 50px;
	color: var(--text-primary);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.tag-pill i {
	font-size: 0.8rem;
	opacity: 0.7;
}

.tag-pill:hover {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(139, 92, 246, 0.1));
	border-color: var(--accent-purple);
	color: var(--accent-purple);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

/* Tag Detail Hero */
.tag-detail-hero-section {
	background: var(--bg-secondary);
}

.tag-detail-icon {
	flex-shrink: 0;
}

.tag-logo {
	float: none !important;
	padding: 0 !important;
	display: block;
	border-radius: 12px;
	box-shadow: var(--shadow-md);
}

.badge-tag-category {
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.5rem 1rem;
	background: var(--bg-tertiary);
	color: var(--text-primary);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.bg-gradient-purple {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)) !important;
}

.tool-count-badge .badge {
	font-size: 0.95rem;
	padding: 0.65rem 1.25rem;
	border-radius: 50px;
}

.tag-description {
	font-size: 1rem;
	line-height: 1.7;
}

.tag-description strong {
	color: var(--text-primary);
	font-weight: 600;
}

.code-tag {
	background: var(--bg-tertiary);
	color: var(--accent-purple);
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	font-family: 'Courier New', monospace;
	font-size: 0.9em;
	border: 1px solid var(--border-color);
}

/* Tool Cards */
.tag-tools-section {
	background: var(--bg-primary);
}

.tool-category-section {
	margin-bottom: 3rem;
}

.tool-card {
	display: block;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.3s ease;
	height: 100%;
}

.tool-card:hover {
	border-color: var(--accent-purple);
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.tool-card-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/9;
	background: var(--bg-tertiary);
}

.tool-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	border: 1px solid var(--border-color);
}

.tool-card:hover .tool-card-image img {
	transform: scale(1.05);
}

.tool-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.9), rgba(139, 92, 246, 0.9));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.tool-card:hover .tool-card-overlay {
	opacity: 1;
}

.tool-card-overlay i {
	font-size: 2rem;
	color: white;
}

.tool-card-content {
	padding: 1.5rem;
}

.tool-card-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.tool-card-description {
	font-size: 0.9rem;
	color: var(--text-light-gray);
	line-height: 1.5;
	margin-bottom: 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tool-card-arrow {
	display: flex;
	align-items: center;
	color: var(--text-muted);
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.tool-card:hover .tool-card-arrow {
	color: var(--accent-purple);
}

.tool-card:hover .tool-card-arrow i {
	transform: translateX(5px);
}

.tool-card-arrow i {
	transition: transform 0.3s ease;
}

/* Related Tags Section */
.related-tags-section {
	background: var(--bg-secondary);
}

.tag-group-section {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
}

/* Light Mode */
body.light-theme .tags-hero-section,
body.light-theme .tag-detail-hero-section,
body.light-theme .related-tags-section {
	background: var(--bg-secondary);
}

body.light-theme .tag-category-group,
body.light-theme .tag-group-section,
body.light-theme .tool-card {
	background: rgba(255, 255, 255, 0.8);
	border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .tag-category-group:hover,
body.light-theme .tool-card:hover {
	background: white;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

body.light-theme .tag-pill {
	background: rgba(0, 0, 0, 0.04);
	border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .tag-pill:hover {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(139, 92, 246, 0.08));
}

body.light-theme .code-tag {
	background: rgba(0, 0, 0, 0.05);
	border-color: rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
	.tag-detail-icon {
		display: none;
	}
	
	.tag-category-group {
		padding: 1.5rem;
	}
	
	.tool-card-content {
		padding: 1.25rem;
	}
}

@media (max-width: 767px) {
	.tags-hero-section,
	.tag-detail-hero-section {
		padding: 2rem 0;
	}
	
	.tag-category-group,
	.tag-group-section {
		padding: 1.25rem;
	}
	
	.tag-pill {
		font-size: 0.85rem;
		padding: 0.4rem 0.85rem;
	}
	
	.badge-tags {
		font-size: 0.8rem;
		padding: 0.6rem 1.2rem;
	}
	
	.tool-card-content {
		padding: 1rem;
	}
	
	.tool-card-title {
		font-size: 1rem;
	}
	
	.tool-card-description {
		font-size: 0.85rem;
	}
}

/* ========================================
   Pricing Page Styles
   ======================================== */

/* Pricing Hero */
.pricing-hero-section {
	background: var(--bg-secondary);
}

/* Free Membership Card */
.free-membership-section {
	background: var(--bg-primary);
}

.pricing-card-free {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 16px;
	padding: 2.5rem;
	transition: all 0.3s ease;
}

.pricing-card-free:hover {
	border-color: #10b981;
	box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.bg-gradient-green {
	background: linear-gradient(135deg, #10b981, #059669) !important;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
}

/* PRO Membership Section */
.pro-membership-section {
	background: var(--bg-secondary);
}

.text-pro {
	background: linear-gradient(135deg, #EFCF60, #E8B94E);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Pricing Toggle */
.pricing-toggle-wrapper {
	background: var(--bg-tertiary);
	padding: 0.5rem;
	border-radius: 50px;
	border: 1px solid var(--border-color);
}

.toggle-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-muted);
	transition: color 0.3s ease;
	padding: 0.25rem 0.5rem;
}

.toggle-label.active {
	color: var(--text-primary);
}

.btn-toggle {
	position: relative;
	width: 50px;
	height: 26px;
	background: var(--bg-primary);
	border: 2px solid var(--border-color);
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.btn-toggle:hover {
	border-color: var(--accent-purple);
}

.toggle-slider {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 18px;
	height: 18px;
	background: linear-gradient(135deg, #EFCF60, #E8B94E);
	border-radius: 50%;
	transition: transform 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

[data-value-active="yearly"] .toggle-slider {
	transform: translateX(24px);
}

/* Pricing Cards */
.pricing-cards-container {
	margin-top: 2rem;
}

.pricing-card-pro {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.pricing-card-pro::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(239, 207, 96, 0.03), rgba(232, 185, 78, 0.03));
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.pricing-card-pro:hover {
	border-color: #EFCF60;
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(239, 207, 96, 0.2);
}

.pricing-card-pro:hover::before {
	opacity: 1;
}

/* Featured Card */
.pricing-card-featured {
	border-color: #EFCF60;
	box-shadow: 0 8px 24px rgba(239, 207, 96, 0.15);
}

.featured-badge {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #EFCF60, #E8B94E);
	color: #1a1a1a;
	padding: 0.5rem 1.5rem;
	border-radius: 0 0 12px 12px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pricing-tier-badge .badge-pro {
	background: linear-gradient(135deg, rgba(239, 207, 96, 0.2), rgba(232, 185, 78, 0.2));
	color: #EFCF60;
	border: 1px solid rgba(239, 207, 96, 0.3);
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Savings Badge */
.savings-badge {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: #10b981;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	display: inline-block;
}

/* Pricing Amount */
.pricing-amount {
	margin: 1.5rem 0;
}

.price-value {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1;
	display: inline-block;
}

.price-period {
	font-size: 0.9rem;
}

/* Upgrade Button */
.btn-pro {
	background: linear-gradient(135deg, #EFCF60, #E8B94E);
	color: #1a1a1a;
	border: none;
	font-weight: 700;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-pro:hover {
	background: linear-gradient(135deg, #E8B94E, #EFCF60);
	color: #000;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(239, 207, 96, 0.3);
}

/* PRO Features Section */
.pro-features-section {
	background: var(--bg-primary);
}

.feature-card-pro {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 1.5rem;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 768px) {
	.feature-card-pro {
		flex-direction: row;
	}
}

.feature-card-pro:hover {
	border-color: var(--accent-purple);
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}

.feature-icon-pro {
	flex-shrink: 0;
	margin-top: 0.5rem;
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.feature-icon-pro {
		margin-bottom: 1rem;
	}
}

/* AI Credits Section */
.ai-credits-section {
	background: var(--bg-secondary);
}

.bg-gradient-purple {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)) !important;
}

.ai-credits-card {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 16px;
	padding: 2.5rem;
}

.ai-credit-amount .price-value {
	font-size: 2rem;
	color: var(--accent-purple);
}

/* FAQ Section */
.faq-section {
	background: var(--bg-primary);
}

.pricing-accordion .accordion-item {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	margin-bottom: 1rem;
}

.pricing-accordion .accordion-button {
	background: transparent;
	color: var(--text-primary);
	font-weight: 600;
	border: none;
	padding: 1.25rem 1.5rem;
}

.pricing-accordion .accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(139, 92, 246, 0.05));
	color: var(--accent-purple);
	box-shadow: none;
}

.pricing-accordion .accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f46e5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.pricing-accordion .accordion-body {
	padding: 0 1.5rem 1.5rem 1.5rem;
	color: var(--text-light-gray);
}

/* Footnotes */
.footnotes-section {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border-color);
}

/* Light Mode */
body.light-theme .pricing-card-free,
body.light-theme .pricing-card-pro,
body.light-theme .ai-credits-card,
body.light-theme .feature-card-pro {
	background: rgba(255, 255, 255, 0.8);
	border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .pricing-card-free:hover,
body.light-theme .pricing-card-pro:hover,
body.light-theme .feature-card-pro:hover {
	background: white;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

body.light-theme .pricing-toggle-wrapper {
	background: rgba(0, 0, 0, 0.05);
	border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .btn-toggle {
	background: white;
	border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .pricing-accordion .accordion-item {
	background: rgba(255, 255, 255, 0.8);
	border-color: rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
	.pricing-card-pro {
		padding: 2rem 1.5rem;
	}
	
	.featured-badge {
		font-size: 0.75rem;
		padding: 0.4rem 1.2rem;
	}
	
	.price-value {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.pricing-hero-section,
	.pro-membership-section,
	.pro-features-section,
	.ai-credits-section,
	.faq-section {
		padding: 2rem 0;
	}
	
	.pricing-card-free,
	.pricing-card-pro,
	.ai-credits-card {
		padding: 1.5rem;
	}
	
	.pricing-toggle-wrapper {
		padding: 0.4rem;
	}
	
	.toggle-label {
		font-size: 0.8rem;
	}
	
	.price-value {
		font-size: 1.75rem;
	}
	
	.feature-card-pro {
		flex-direction: column;
		text-align: center;
	}
	
	.feature-icon {
		margin: 0 auto 1rem;
	}
}

.feature-content {
	flex: 1;
}

/* Other Upgrade Options Section */
.other-options-section {
	background: var(--bg-secondary);
}

/* Responsive - Feature cards stack on mobile */
@media (max-width: 767px) {
	.feature-card-pro {
		flex-direction: column;
		text-align: center;
	}
	
	.feature-icon-pro {
		margin: 0 auto 1rem;
	}
}

/* ========================================
   Hero Badge - 6 Years Bookmark
   ======================================== */

.hero-badge-bookmark {
	position: absolute;
	top: 0;
	right: 5%;
	z-index: 10;
	width: 80px;
	height: 110px;
}

.badge-bookmark-content {
	position: relative;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #EFCF60, #E8B94E);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1rem 0.5rem;
	box-shadow: 0 4px 20px rgba(239, 207, 96, 0.4);
	clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.badge-bookmark-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
	clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
	pointer-events: none;
}

.badge-year {
	font-size: 2rem;
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 1;
}

.badge-text {
	font-size: 0.9rem;
	font-weight: 700;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 0.25rem;
	position: relative;
	z-index: 1;
}

/* Animation */
@keyframes badgePulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.hero-badge-bookmark:hover .badge-bookmark-content {
	animation: badgePulse 1s ease-in-out;
}

/* Responsive - hide on tablets and mobile */
@media (max-width: 991px) {
	.hero-badge-bookmark {
		display: none !important;
	}
}

/* Extra large screens - adjust position */
@media (min-width: 1400px) {
	.hero-badge-bookmark {
		right: 8%;
	}
}

/* ========================================
   Error Page Styles
   ======================================== */

/* Error Hero Section */
.error-hero-section {
	background: var(--bg-secondary);
	min-height: 50vh;
	display: flex;
	align-items: center;
}

/* Error Code Circle */
.error-code-wrapper {
	display: inline-block;
}

.error-code-circle {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(139, 92, 246, 0.1));
	border: 3px solid var(--accent-purple);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	box-shadow: 0 8px 24px rgba(79, 70, 229, 0.2);
	animation: errorPulse 2s ease-in-out infinite;
}

@keyframes errorPulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 8px 24px rgba(79, 70, 229, 0.2);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 12px 32px rgba(79, 70, 229, 0.3);
	}
}

.error-code {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Error Icon */
.error-icon {
	font-size: 4rem;
	color: var(--accent-purple);
	opacity: 0.8;
}

.error-icon i {
	animation: errorIconFloat 3s ease-in-out infinite;
}

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

/* Error Title */
.error-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
}

/* Error Message */
.error-message {
	max-width: 600px;
	margin: 0 auto;
}

/* Error Actions */
.error-actions .btn {
	min-width: 180px;
}

/* Error Details Section */
.error-details-section {
	background: var(--bg-primary);
}

.error-details-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	overflow: hidden;
}

.error-details-header {
	background: linear-gradient(135deg, rgba(239, 67, 67, 0.1), rgba(220, 38, 38, 0.1));
	border-bottom: 1px solid rgba(239, 67, 67, 0.2);
	padding: 1.5rem 2rem;
	display: flex;
	align-items: center;
	color: #ef4444;
}

.error-details-header i {
	font-size: 1.5rem;
}

.error-details-content {
	padding: 2rem;
}

/* Info Boxes */
.info-box {
	background: var(--bg-tertiary);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 1.5rem;
	height: 100%;
}

.info-box-header {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	color: var(--accent-purple);
}

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

.info-list li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: var(--text-light-gray);
}

.info-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent-purple);
	font-weight: 700;
}

/* Suggestions Section */
.error-suggestions-section {
	background: var(--bg-secondary);
}

.suggestion-card {
	display: block;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 2rem 1.5rem;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	height: 100%;
}

.suggestion-card:hover {
	border-color: var(--accent-purple);
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.suggestion-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 1.5rem;
	box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.suggestion-card h4 {
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.suggestion-card:hover h4 {
	color: var(--accent-purple);
}

/* Error Search Section */
.error-search-section {
	background: var(--bg-primary);
}

.error-search-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2.5rem 2rem;
}

.search-icon-large {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(139, 92, 246, 0.1));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	color: var(--accent-purple);
	font-size: 2rem;
}

.error-search-wrapper {
	position: relative;
	max-width: 500px;
	margin: 0 auto;
}

/* Error Help Section */
.error-help-section {
	background: var(--bg-secondary);
}

.help-cta-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2.5rem 2rem;
}

.help-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	color: white;
	font-size: 2rem;
	box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}

/* Alert styling in error page */
.error-details-section .alert-info {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
	border: 1px solid rgba(59, 130, 246, 0.3);
	color: var(--text-primary);
	border-radius: 12px;
	padding: 1rem 1.5rem;
}

/* Light Mode */
body.light-theme .error-code-circle {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(139, 92, 246, 0.08));
}

body.light-theme .error-details-card,
body.light-theme .error-search-card,
body.light-theme .help-cta-card,
body.light-theme .suggestion-card,
body.light-theme .info-box {
	background: rgba(255, 255, 255, 0.8);
	border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .error-details-header {
	background: linear-gradient(135deg, rgba(239, 67, 67, 0.08), rgba(220, 38, 38, 0.08));
	border-bottom-color: rgba(239, 67, 67, 0.15);
}

body.light-theme .search-icon-large {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(139, 92, 246, 0.08));
}

/* Responsive */
@media (max-width: 767px) {
	.error-hero-section {
		min-height: 60vh;
		padding: 3rem 0;
	}
	
	.error-code-circle {
		width: 100px;
		height: 100px;
	}
	
	.error-code {
		font-size: 2rem;
	}
	
	.error-icon {
		font-size: 3rem;
	}
	
	.error-title {
		font-size: 1.75rem;
	}
	
	.error-actions {
		flex-direction: column;
		align-items: stretch;
	}
	
	.error-actions .btn {
		width: 100%;
	}
	
	.error-details-content,
	.error-search-card,
	.help-cta-card {
		padding: 1.5rem;
	}
	
	.suggestion-card {
		padding: 1.5rem 1rem;
	}
}

/* ========================================
   Plugin Page Styles (Listify, etc.)
   ======================================== */

/* Plugin Hero Section - Half height of main hero */
.plugin-hero-section {
	background: var(--bg-primary);
	position: relative;
}

.plugin-hero-gradient-box {
	position: relative;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(139, 92, 246, 0.05));
	border-radius: 0;
	overflow: hidden;
}

.plugin-hero-background-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.15;
	filter: blur(2px);
}

.plugin-hero-content-row {
	min-height: 35vh; /* Half of main hero */
	padding: 3rem 0;
}

.plugin-hero-content {
	position: relative;
	z-index: 2;
}

/* Plugin Icon */
.plugin-icon-wrapper {
	display: inline-block;
}

.plugin-icon {
	height: 40px;
	width: auto;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Plugin Hero Title */
.plugin-hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Plugin Category Badge */
.plugin-category-badge .badge {
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Plugin Hero Description */
.plugin-hero-description {
	max-width: 700px;
	margin: 0 auto;
	color: var(--text-light-gray);
}

/* Plugin Content Section */
.plugin-content-section {
	background: var(--bg-secondary);
}

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

.feature-list li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: var(--text-light-gray);
}

.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent-purple);
	font-weight: 700;
	font-size: 1.2rem;
}

/* Plugin Functions Section */
.plugin-functions-section {
	background: var(--bg-primary);
}

/* Plugin Pricing Section */
.plugin-pricing-section {
	background: var(--bg-secondary);
}

.pricing-card-plugin {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
}

.pricing-card-plugin:hover {
	border-color: var(--accent-purple);
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.pricing-tier-badge {
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 0.5rem 1rem;
	background: var(--bg-tertiary);
	border-radius: 8px;
	border: 1px solid var(--border-color);
}

.pricing-amount {
	margin: 1.5rem 0;
}

.pricing-amount .price-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1;
}

.pricing-note-card {
	background: var(--bg-tertiary);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 1rem;
}

.pricing-info-notes p {
	margin-bottom: 0.5rem;
}

.pricing-info-notes p:last-child {
	margin-bottom: 0;
}

/* Demo Section */
.demo-section {
	background: var(--bg-primary);
}

.demo-card {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 16px;
	padding: 3rem 2rem;
}

/* FAQ & Support Section */
.faq-support-section {
	background: var(--bg-secondary);
}

.support-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	height: 100%;
}

.faq-support-section .accordion-item {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	overflow: hidden;
}

.faq-support-section .accordion-button {
	background: transparent;
	color: var(--text-primary);
	font-weight: 600;
	border: none;
	padding: 1.25rem 1.5rem;
}

.faq-support-section .accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(139, 92, 246, 0.05));
	color: var(--accent-purple);
	box-shadow: none;
}

.faq-support-section .accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f46e5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-support-section .accordion-body {
	padding: 0 1.5rem 1.5rem 1.5rem;
	color: var(--text-light-gray);
}

/* Light Mode */
body.light-theme .plugin-hero-gradient-box {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.03), rgba(139, 92, 246, 0.03));
}

body.light-theme .plugin-hero-background-image {
	opacity: 0.1;
}

body.light-theme .pricing-card-plugin,
body.light-theme .demo-card,
body.light-theme .support-card,
body.light-theme .pricing-note-card {
	background: rgba(255, 255, 255, 0.8);
	border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .pricing-card-plugin:hover {
	background: white;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

body.light-theme .pricing-tier-badge {
	background: rgba(0, 0, 0, 0.05);
	border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .faq-support-section .accordion-item {
	background: rgba(255, 255, 255, 0.8);
	border-color: rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
	.plugin-hero-title {
		font-size: 2rem;
	}
	
	.plugin-hero-content-row {
		min-height: 40vh;
		padding: 2rem 0;
	}
}

@media (max-width: 767px) {
	.plugin-hero-title {
		font-size: 1.75rem;
	}
	
	.plugin-hero-content-row {
		min-height: auto;
		padding: 2rem 0;
	}
	
	.plugin-hero-description {
		font-size: 1rem;
	}
	
	.pricing-card-plugin,
	.demo-card,
	.support-card {
		padding: 1.5rem;
	}
	
	.pricing-amount .price-value {
		font-size: 1.75rem;
	}
}
