/* assets/front/css/style.css */

/* ==========================================================================
   Skilj - UNIFIED CSS (Landing, Auth & Dashboard)
   ========================================================================== */

:root {
	/* Core SaaS Colors */
	--bg-body: #f4f4f5;
	--bg-surface: #ffffff;
	--bg-surface-hover: #fafafa;
	--border-color: #e4e4e7;
	--text-main: #09090b;
	--text-muted: #71717a;
	/* Modern SaaS Indigo */
	--primary: #4f46e5;
	--primary-hover: #4338ca;
	--primary-bg: rgba(79, 70, 229, 0.1);
	--primary-glow: rgba(79, 70, 229, 0.25);
	--success: #10b981;
	--warning: #f59e0b;
	--danger: #ef4444;
	--danger-border: rgba(239, 68, 68, 0.2);
	/* Layout & Utilities */
	--sidebar-width: 260px;
	--radius-lg: 16px;
	--radius-md: 8px;
	--transition: all 0.3s ease;
}

[data-theme="dark"] {
	--bg-body: #09090b;
	--bg-surface: #121214;
	--bg-surface-hover: #18181b;
	--border-color: #27272a;
	--text-main: #fafafa;
	--text-muted: #a1a1aa;
	--primary: #6366f1;
	--primary-bg: rgba(99, 102, 241, 0.15);
	--primary-glow: rgba(99, 102, 241, 0.15);
}

/* ==========================================================================
   1. BASE & RESET
   ========================================================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg-body);
	color: var(--text-main);
	transition: background-color 0.3s ease, color 0.3s ease;
	overflow-x: hidden;
	line-height: 1.5;
	min-height: 100vh;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

ul {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}

/* ==========================================================================
   2. UTILITIES (Layout, Spacing, Typography, Colors)
   ========================================================================== */
/* Layout & Flexbox */
.w-100 {
	width: 100%;
}

.w-90 {
	width: 90%;
}

.w-80 {
	width: 80%;
}

.w-50 {
	width: 50%;
}

.h-full {
	height: 100%;
}

.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.items-start {
	align-items: flex-start;
}

.items-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.justify-end {
	justify-content: flex-end;
}

.justify-between {
	justify-content: space-between;
}

.flex-wrap {
	flex-wrap: wrap;
}

.gap-8 {
	gap: 8px;
}

.gap-12 {
	gap: 12px;
}

.gap-16 {
	gap: 16px;
}

.gap-24 {
	gap: 24px;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.relative {
	position: relative;
}

.z-10 {
	z-index: 10;
}

.cursor-pointer {
	cursor: pointer;
}

/* Spacing */
.m-0 {
	margin: 0 !important;
}

.mb-4 {
	margin-bottom: 4px;
}

.mb-8 {
	margin-bottom: 8px;
}

.mb-12 {
	margin-bottom: 12px;
}

.mb-16 {
	margin-bottom: 16px;
}

.mb-24 {
	margin-bottom: 24px;
}

.mb-32 {
	margin-bottom: 32px;
}

.mt-6 {
	margin-top: 6px;
}

.mt-8 {
	margin-top: 8px;
}

.mt-16 {
	margin-top: 16px;
}

.mt-24 {
	margin-top: 24px;
}

.mt-32 {
	margin-top: 32px;
}

.p-20 {
	padding: 20px;
}

.p-32 {
	padding: 32px;
}

.pb-16 {
	padding-bottom: 16px;
}

.pt-24 {
	padding-top: 24px;
}

.border-bottom {
	border-bottom: 1px solid var(--border-color);
}

.border-top {
	border-top: 1px solid var(--border-color);
}

/* Typography */
.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-2xl {
	font-size: 2.5rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.text-xl {
	font-size: 1.5rem;
	letter-spacing: -0.01em;
}

.text-lg {
	font-size: 1.25rem;
}

.text-md {
	font-size: 1.1rem;
}

.text-base {
	font-size: 1rem;
}

.text-sm {
	font-size: 0.9rem;
}

.text-xs {
	font-size: 0.85rem;
}

.text-xxs {
	font-size: 0.8rem;
}

.text-tiny {
	font-size: 0.75rem;
}

.font-bold {
	font-weight: 700;
}

.font-semibold {
	font-weight: 600;
}

.font-medium {
	font-weight: 500;
}

.font-regular {
	font-weight: 400;
}

.tracking-wide {
	letter-spacing: 0.05em;
}

.tracking-widest {
	letter-spacing: 0.15em;
}

.line-height-relaxed {
	line-height: 1.6;
}

/* Colors */
.text-main {
	color: var(--text-main);
}

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

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

.text-white {
	color: #ffffff !important;
}

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

.bg-primary {
	background-color: var(--primary) !important;
}

.bg-surface {
	background-color: var(--bg-surface);
}

.text-gradient {
	background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

/* Grids */
.grid {
	display: grid;
	gap: 20px;
}

.grid-cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

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

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

.container-sm {
	max-width: 800px;
}

.section {
	padding: 100px 0;
}


/* ==========================================================================
   3. SHARED COMPONENTS (Buttons, Cards, Inputs, Checkboxes, Modals)
   ========================================================================== */

/* Cards */
.card {
	background-color: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
}

	.card:hover {
		box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
		border-color: var(--primary);
	}

[data-theme="dark"] .card:hover {
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
	border-color: #4f46e5;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: var(--radius-md);
	font-size: 0.95rem;
	font-weight: 600;
	transition: var(--transition);
	border: 1px solid transparent;
	white-space: nowrap;
}

.btn-sm {
	padding: 8px 16px;
	font-size: 0.85rem;
}

.btn-medium {
	padding: 6px 12px;
	font-size: 0.85rem;
}

.btn-large {
	padding: 14px 28px;
	font-size: 1rem;
	border-radius: var(--radius-lg);
}

.btn-block {
	width: 100%;
	flex: 1;
}

.btn-primary {
	background-color: var(--primary);
	color: #ffffff;
}

/* Add this to your style.css */
.btn-success {
	background-color: var(--success);
	color: #ffffff !important;
	border: 1px solid var(--success);
}

	.btn-success:hover {
		background-color: #059669; /* A slightly darker green for hover */
		transform: translateY(-2px);
		box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
		color: #ffffff !important;
	}

	.btn-primary:hover {
		background-color: var(--primary-hover);
		transform: translateY(-2px);
		box-shadow: 0 8px 20px var(--primary-glow);
	}

.btn-secondary {
	background-color: var(--bg-surface);
	border-color: var(--border-color);
	color: var(--text-main);
}

	.btn-secondary:hover {
		background-color: var(--bg-surface-hover);
		transform: translateY(-2px);
	}

.btn-light {
	background-color: transparent;
	border-color: transparent;
	color: var(--text-muted);
}

	.btn-light:hover {
		background-color: var(--bg-surface-hover);
		color: var(--text-main);
	}

.btn-danger {
	background-color: var(--danger);
	color: #fff;
}

	.btn-danger:hover {
		background-color: #d92626;
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
	}

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

/* Landing specific buttons */
.btn-white {
	background-color: #ffffff !important;
	color: var(--primary) !important;
	border-color: transparent !important;
}

	.btn-white:hover {
		background-color: #f8fafc !important;
	}

.btn-outline-light {
	border: 1px solid rgba(255, 255, 255, 0.4) !important;
	color: white !important;
	background: transparent;
}

	.btn-outline-light:hover {
		background: rgba(255, 255, 255, 0.1) !important;
		transform: translateY(-2px);
	}

.hover-lift:hover {
	transform: translateY(-3px);
}

.shadow-lg {
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.glow-btn {
	box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
	animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
	0% {
		box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
	}
}

/* Forms & Inputs */
.form-group {
	margin-bottom: 16px;
}

.form-label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 0.9rem;
}

.form-control {
	width: 100%;
	height: 44px;
	padding: 10px 14px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-color);
	background-color: var(--bg-body);
	color: var(--text-main);
	font-size: 0.95rem;
	transition: var(--transition);
	outline: none;
}

	.form-control:focus {
		border-color: var(--primary);
		box-shadow: 0 0 0 3px var(--primary-bg);
	}

.hidden-input {
	display: none;
}

.input-group-relative {
	position: relative;
}

.input-group-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: none;
	color: var(--text-muted);
}

.textarea-auto {
	height: auto;
	resize: vertical;
}

/* Custom Checkbox */
.custom-checkbox-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	color: var(--text-muted);
}

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

.custom-checkbox {
	width: 20px;
	height: 20px;
	border: 2px solid var(--border-color);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	background-color: var(--bg-surface);
	flex-shrink: 0;
}

	.custom-checkbox::after {
		content: "\eb7b";
		font-family: 'boxicons';
		color: white;
		font-size: 14px;
		display: none;
	}

.custom-checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox {
	background-color: var(--primary);
	border-color: var(--primary);
}

	.custom-checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox::after {
		display: block;
	}

.custom-checkbox-wrapper:hover .custom-checkbox {
	border-color: var(--primary);
}

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

/* Modals */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

	.modal-overlay.active {
		opacity: 1;
		visibility: visible;
	}

.modal-dialog {
	background-color: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	width: 90%;
	max-width: 500px;
	padding: 32px;
	position: relative;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: scale(0.95) translateY(10px);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-dialog {
	transform: scale(1) translateY(0);
}

[data-theme="dark"] .modal-dialog {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 1.5rem;
	color: var(--text-muted);
	background: transparent;
	border: none;
	cursor: pointer;
	transition: var(--transition);
}

	.modal-close:hover {
		color: var(--text-main);
	}

.modal-header {
	margin-bottom: 24px;
}

.modal-body {
	margin-bottom: 32px;
}

.modal-footer {
	/*display: flex;*/
	justify-content: flex-end;
	gap: 12px;
}

/* Animations */
.animate-fade-in-up,
.reveal-up {
	opacity: 0;
	transform: translateY(15px);
	animation: fadeInUp 0.4s ease forwards;
}

.reveal-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

	.reveal-scroll.active {
		opacity: 1;
		transform: translateY(0);
	}

.delay-1 {
	animation-delay: 0.1s;
}

.delay-2 {
	animation-delay: 0.2s;
}

.delay-3 {
	animation-delay: 0.3s;
}

.delay-4 {
	animation-delay: 0.6s;
}

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

/* Skeleton Loaders */
.skeleton {
	background: linear-gradient(90deg, var(--bg-surface-hover) 25%, var(--border-color) 50%, var(--bg-surface-hover) 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
	border-radius: 4px;
}

.skeleton-text {
	height: 14px;
	width: 80%;
	margin-bottom: 8px;
}

.skeleton-title {
	height: 20px;
	width: 100%;
	margin-bottom: 12px;
}

.skeleton-logo {
	width: 48px;
	height: 48px;
	border-radius: 8px;
}

@keyframes loading {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}


/* ==========================================================================
   4. LANDING PAGE SPECIFIC
   ========================================================================== */
.landing-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: rgba(var(--bg-body), 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 1000;
	border-bottom: 1px solid transparent;
	transition: background 0.3s, border 0.3s;
}

	.landing-nav.scrolled {
		background: var(--bg-surface);
		border-bottom: 1px solid var(--border-color);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

	.logo i {
		font-size: 2rem;
	}

.nav-links {
	display: flex;
	gap: 32px;
}

	.nav-links a {
		font-weight: 500;
		font-size: 0.95rem;
		color: var(--text-muted);
	}

		.nav-links a:hover {
			color: var(--primary);
		}

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

.theme-toggle-btn {
	font-size: 1.25rem;
	color: var(--text-muted);
	transition: color 0.2s;
}

	.theme-toggle-btn:hover {
		color: var(--primary);
	}

.mobile-menu-btn {
	display: none;
	font-size: 2rem;
	color: var(--text-main);
}

.hero-section {
	padding: 180px 0 60px;
	position: relative;
	overflow: hidden;
}

.hero-glow {
	position: absolute;
	top: -10%;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 500px;
	background: radial-gradient(ellipse at center, var(--primary-glow) 0%, transparent 70%);
	z-index: -1;
	pointer-events: none;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: var(--bg-surface);
	color: var(--text-main);
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 24px;
	border: 1px solid var(--border-color);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.badge-dot {
	width: 8px;
	height: 8px;
	background: var(--primary);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--primary);
}

.hero-title {
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin-bottom: 24px;
	max-width: 900px;
	margin-inline: auto;
}

.hero-subtitle {
	font-size: 1.15rem;
	color: var(--text-muted);
	max-width: 650px;
	margin: 0 auto 32px auto;
	line-height: 1.6;
}

.hero-cta {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 80px;
}

/* Landing CSS Mockups */
.hero-mockup {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-color);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.02);
	overflow: hidden;
	text-align: left;
	background: linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box, linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)) border-box;
}

[data-theme="dark"] .hero-mockup {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.browser-header {
	background: var(--bg-surface-hover);
	padding: 12px 16px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 16px;
}

.browser-dots {
	display: flex;
	gap: 6px;
}

	.browser-dots span {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: var(--border-color);
	}

		.browser-dots span:nth-child(1) {
			background: #ff5f56;
		}

		.browser-dots span:nth-child(2) {
			background: #ffbd2e;
		}

		.browser-dots span:nth-child(3) {
			background: #27c93f;
		}

.browser-url {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: 6px;
	padding: 4px 12px;
	font-size: 0.75rem;
	color: var(--text-muted);
	flex: 1;
	max-width: 300px;
	margin: 0 auto;
	text-align: center;
}

.browser-body {
	height: 450px;
}

.mockup-sidebar {
	width: 200px;
	border-right: 1px solid var(--border-color);
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ms-item {
	height: 24px;
	border-radius: 4px;
	background: var(--bg-body);
}

	.ms-item.active {
		background: var(--primary-bg);
	}

.mockup-content {
	flex: 1;
	padding: 24px;
	background: var(--bg-body);
}

.mc-header {
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 16px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}

.mc-title {
	width: 150px;
	height: 24px;
	background: var(--border-color);
	border-radius: 4px;
}

.mc-btn {
	width: 80px;
	height: 24px;
	background: var(--primary);
	border-radius: 4px;
}

.mc-grid {
	display: flex;
	gap: 12px;
}

.mc-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 16px;
	flex: 1;
}

.mc-logo {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: var(--border-color);
	margin-bottom: 12px;
}

.mc-line {
	height: 12px;
	background: var(--border-color);
	border-radius: 4px;
	margin-bottom: 8px;
}

.mc-tags {
	display: flex;
	gap: 8px;
	margin-top: 16px;
}

.mc-tag {
	width: 40px;
	height: 16px;
	background: var(--primary-bg);
	border-radius: 12px;
}

/* Trusted By */
.trusted-by {
	padding: 40px 0;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.logo-cloud {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 48px;
	align-items: center;
}

.t-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-muted);
	opacity: 0.6;
	transition: opacity 0.3s;
}

	.t-logo i {
		font-size: 2rem;
	}

	.t-logo:hover {
		opacity: 1;
		color: var(--text-main);
	}

/* Steps & Features */
.section-header {
	margin-bottom: 64px;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.section-subtitle {
	font-size: 1.1rem;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.steps-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	padding-top: 64px;
}

.steps-connecting-line {
	position: absolute;
	top: calc(48px / 2);
	left: 16%;
	right: 16%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--primary) 15%, var(--primary) 85%, transparent);
	opacity: 0.25;
	z-index: 0;
}

.step-card {
	padding: 40px 32px;
	position: relative;
	text-align: center;
	z-index: 1;
	border-radius: var(--radius-lg);
}

.step-number {
	position: absolute;
	top: -64px;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 48px;
	background: var(--primary-bg);
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.25rem;
	border: 6px solid var(--bg-body);
	z-index: 2;
}

.step-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 24px auto;
	background: var(--primary-bg);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--primary);
}

.step-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.features-grid {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.feature-row {
	display: flex;
	align-items: center;
	gap: 64px;
}

	.feature-row.reverse {
		flex-direction: row-reverse;
	}

.feature-text {
	flex: 1;
}

.f-icon {
	width: 56px;
	height: 56px;
	background: var(--primary-bg);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	margin-bottom: 24px;
}

.feature-mockup {
	flex: 1;
}

.ui-card {
	background: var(--bg-body);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 40px;
	height: 350px;
	box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
	overflow: hidden;
}

/* Mini UI Mockups */
.mini-job-card {
	background: var(--bg-surface);
	padding: 24px;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
	width: 100%;
	max-width: 320px;
	transform: scale(1.1);
}

.mj-logo {
	width: 48px;
	height: 48px;
	border-radius: 8px;
}

.mj-title {
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 4px;
}

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

.mj-tag {
	background: var(--bg-body);
	border: 1px solid var(--border-color);
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
}

.mj-btn {
	background: var(--primary);
	color: white;
	text-align: center;
	padding: 10px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	margin-top: 24px;
}

.mini-excel {
	background: var(--bg-surface);
	border-radius: 8px;
	border: 1px solid var(--border-color);
	width: 100%;
	max-width: 400px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transform: scale(1.05);
}

.me-header {
	background: var(--bg-body);
	padding: 8px 12px 0 12px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	gap: 12px;
}

.me-tab {
	padding: 8px 16px;
	font-size: 0.75rem;
	color: var(--text-muted);
	border-radius: 6px 6px 0 0;
}

	.me-tab.active {
		background: var(--bg-surface);
		color: var(--primary);
		font-weight: 600;
		border: 1px solid var(--border-color);
		border-bottom: none;
	}

.me-body {
	padding: 0;
}

.me-row {
	display: grid;
	grid-template-columns: 1fr 1.5fr 1fr;
	border-bottom: 1px solid var(--border-color);
}

	.me-row:last-child {
		border-bottom: none;
	}

	.me-row.header {
		background: var(--bg-surface-hover);
		font-weight: 600;
		font-size: 0.75rem;
		color: var(--text-muted);
	}

.me-cell {
	padding: 10px 12px;
	font-size: 0.8rem;
	border-right: 1px solid var(--border-color);
}

	.me-cell:last-child {
		border-right: none;
	}

.status {
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 0.7rem;
	font-weight: 600;
}

	.status.applied {
		background: var(--primary-bg);
		color: var(--primary);
	}

	.status.interview {
		background: rgba(245, 158, 11, 0.15);
		color: var(--warning);
	}

	.status.saved {
		background: var(--bg-body);
		color: var(--text-muted);
	}

/* Pricing & Testimonials */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.t-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	align-items: center;
	margin-top: 40px;
}

.pricing-card {
	padding: 48px 32px;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform 0.4s;
}

	.pricing-card.featured {
		border: 2px solid var(--primary);
		box-shadow: 0 20px 40px var(--primary-glow);
		transform: scale(1.05);
		z-index: 10;
	}

.popular-badge {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--primary);
	color: white;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pc-header {
	margin-bottom: 32px;
}

.pc-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 16px;
}

.pc-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 12px;
	position: relative;
}

	.pc-price .amount {
		font-size: 3rem;
		font-weight: 800;
		color: var(--text-main);
	}

	.pc-price .currency,
	.pc-price .period {
		font-size: 1.25rem;
		font-weight: 600;
		color: var(--text-muted);
	}

.reg-price {
	position: absolute;
	top: -20px;
	left: 0;
	font-size: 0.9rem;
	color: var(--text-muted);
	text-decoration: line-through;
	font-weight: 500;
}

.pc-desc {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.5;
}

.pc-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
	flex-grow: 1;
}

	.pc-features li {
		display: flex;
		align-items: center;
		gap: 12px;
		font-size: 0.95rem;
		font-weight: 500;
	}

		.pc-features li i {
			font-size: 1.25rem;
			color: var(--success);
		}

		.pc-features li.disabled {
			opacity: 0.5;
			font-weight: 400;
		}

			.pc-features li.disabled i {
				color: var(--text-muted);
			}

/* FAQ */
.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	overflow: hidden;
	border-radius: var(--radius-md);
	transition: var(--transition);
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text-main);
	transition: background 0.2s;
}

	.faq-question:hover {
		background: var(--bg-surface-hover);
		color: var(--primary);
	}

	.faq-question i {
		font-size: 1.5rem;
		transition: transform 0.3s;
	}

.faq-answer {
	padding: 0 24px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
	color: var(--text-muted);
	line-height: 1.6;
	font-size: 0.95rem;
}

.faq-item.active {
	border-color: var(--primary);
	box-shadow: 0 4px 15px var(--primary-bg);
}

	.faq-item.active .faq-question {
		color: var(--primary);
		background: transparent;
	}

		.faq-item.active .faq-question i {
			transform: rotate(180deg);
		}

	.faq-item.active .faq-answer {
		padding: 0 24px 20px 24px;
		max-height: 200px;
	}

/* Landing Footer & CTA */
.cta-banner {
	background: linear-gradient(135deg, var(--primary) 0%, #3730a3 100%);
	border: none;
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: 0 20px 40px var(--primary-bg);
	padding: 60px 40px;
}

.cta-bg-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.1;
	background-image: radial-gradient(#ffffff 2px, transparent 2px);
	background-size: 30px 30px;
}

.footer-simple {
	padding: 80px 0 60px;
	background-color: var(--bg-body);
}

.footer-socials a {
	font-size: 1.6rem;
	color: var(--text-muted);
	margin: 0 16px;
	display: inline-block;
	transition: transform 0.3s ease, color 0.3s ease;
}

	.footer-socials a:hover {
		color: var(--primary);
		transform: translateY(-4px);
	}

.footer-legal-links a {
	transition: color 0.2s ease;
}

	.footer-legal-links a:hover {
		color: var(--primary);
	}

.float-anim {
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-12px);
	}

	100% {
		transform: translateY(0px);
	}
}


/* ==========================================================================
   5. AUTHENTICATION PAGES (Login / Signup)
   ========================================================================== */
.auth-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	min-height: 100vh;
	background-color: var(--bg-surface);
}

.auth-form-side {
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
	background-size: 30px 30px;
}

.auth-container {
	max-width: 420px; /* Reduced for a tighter look */
	width: 100%;
	margin: 0 auto;
	text-align: center; /* Centers the logo and header text */
}

/* --- Refined Logo (Inside Container) --- */
.auth-logo {
	position: static; /* Removed absolute positioning */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 10px; /* Space between logo and "Welcome Back" */
	color: var(--text-main);
}

/* --- Tighter Header --- */
.auth-header h1 {
	font-size: 2.5rem; /* Reduced from 3.5rem */
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 8px;
}

.auth-header p {
	color: var(--text-muted);
	margin-bottom: 32px; /* Reduced spacing */
	font-size: 0.95rem;
}

.auth-label {
	display: block;
	font-size: 0.7rem; /* Slightly smaller labels */
	font-weight: 800;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
	text-align: left; /* Keep labels left-aligned */
}

	.auth-label span {
		color: var(--text-muted);
		margin-right: 4px;
	}

.auth-input-group {
	margin-bottom: 32px;
}

.auth-input {
	width: 100%;
	background-color: var(--primary-bg);
	border: 1px solid transparent;
	padding: 12px 16px; /* Reduced from 16px 20px */
	border-radius: 8px;
	font-size: 0.95rem;
	color: var(--text-main);
	transition: var(--transition);
}

	.auth-input:focus {
		background-color: var(--bg-surface);
		border-color: var(--primary);
		outline: none;
		box-shadow: 0 0 0 4px var(--primary-glow);
	}

.auth-footer-text {
	text-align: center;
	margin-top: 32px;
	font-size: 0.9rem;
	color: var(--text-muted);
}

	.auth-footer-text a {
		color: var(--primary);
		font-weight: 700;
	}

.auth-copyright {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.65rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	white-space: nowrap;
}

.auth-visual-side {
	position: relative;
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069&auto=format&fit=crop');
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 80px;
	overflow: hidden;
}

.auth-mockup {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 40px;
	margin-bottom: 60px;
	width: 100%;
	max-width: 500px;
}

.mockup-line {
	height: 10px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	margin-bottom: 12px;
}

.visual-content h2 {
	color: white;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 16px;
	max-width: 500px;
}

.visual-content p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.1rem;
	max-width: 450px;
}

/* Social Auth Buttons & Divider */
.btn-social {
	background-color: var(--bg-surface);
	border: 1px solid var(--border-color);
	color: var(--text-main);
	font-weight: 600;
	margin-bottom: 24px;
}

	.btn-social:hover {
		background-color: var(--bg-surface-hover);
		border-color: var(--primary);
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	}

	.btn-social i {
		color: #DB4437; /* Google Red/Orange for slight pop */
		font-size: 1.25rem;
	}

.auth-divider {
	display: flex;
	align-items: center;
	text-align: center;
	margin-bottom: 24px;
	color: var(--text-muted);
	font-size: 0.75rem;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.1em;
}

	.auth-divider::before,
	.auth-divider::after {
		content: '';
		flex: 1;
		border-bottom: 1px solid var(--border-color);
	}

	.auth-divider span {
		padding: 0 16px;
	}

/* ==========================================================================
   6. DASHBOARD LAYOUT (Sidebar & Main Header)
   ========================================================================== */
.sidebar {
	width: var(--sidebar-width);
	background-color: var(--bg-surface);
	border-right: 1px solid var(--border-color);
	height: 100vh;
	position: fixed;
	display: flex;
	flex-direction: column;
	transition: var(--transition);
	z-index: 50;
}

.sidebar-header {
	height: 70px;
	display: flex;
	align-items: center;
	padding: 0 24px;
	gap: 12px;
	border-bottom: 1px solid var(--border-color);
}

.logo-icon {
	color: var(--primary);
	font-size: 1.75rem;
}

.logo-text {
	font-weight: 800;
	font-size: 1.2rem;
	letter-spacing: -0.02em;
}

/* --- Logo Theme Toggling --- */

/* Default (Light Theme): Show dark logo, hide light logo */
.logo-light-theme {
	display: block;
}

.logo-dark-theme {
	display: none;
}

/* Dark Theme: Show light logo, hide dark logo */
[data-theme="dark"] .logo-light-theme {
	display: none;
}

[data-theme="dark"] .logo-dark-theme {
	display: block;
}

.sidebar-nav {
	flex: 1;
	padding: 24px 16px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-radius: var(--radius-md);
	color: var(--text-muted);
	font-size: 0.9rem;
	font-weight: 500;
	transition: var(--transition);
}

	.nav-item i {
		font-size: 1.25rem;
	}

	.nav-item:hover {
		background-color: var(--bg-surface-hover);
		color: var(--text-main);
	}

	.nav-item.active {
		background-color: var(--primary-bg);
		color: var(--primary);
		font-weight: 600;
	}

.sidebar-credits {
	margin: 0 16px 20px;
	padding: 16px;
	background: var(--bg-surface-hover);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
}

.credits-header {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text-main);
}

.progress-bar {
	width: 100%;
	height: 6px;
	background-color: var(--border-color);
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 12px;
}

.progress-fill {
	height: 100%;
	background-color: var(--primary);
	border-radius: 4px;
	transition: width 0.3s ease;
}

.upgrade-link {
	font-size: 0.75rem;
	color: var(--primary);
	font-weight: 600;
	display: inline-block;
}

	.upgrade-link:hover {
		text-decoration: underline;
	}

.sidebar-profile {
	padding: 20px;
	border-top: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	cursor: pointer;
	transition: var(--transition);
}

	.sidebar-profile:hover {
		background-color: var(--bg-surface-hover);
	}

.profile-img {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--border-color);
}

.profile-info {
	flex: 1;
	overflow: hidden;
}

.profile-name {
	font-size: 0.85rem;
	font-weight: 600;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.profile-role {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.chevron-icon {
	font-size: 1.2rem;
}

.profile-dropdown-menu {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 16px;
	right: 16px;
	background-color: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 8px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--transition);
	z-index: 100;
}

[data-theme="dark"] .profile-dropdown-menu {
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

.sidebar-profile:hover .profile-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	color: var(--text-muted);
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 6px;
	transition: var(--transition);
}

	.dropdown-item:hover {
		background-color: var(--bg-surface-hover);
		color: var(--text-main);
	}

.dropdown-divider {
	height: 1px;
	background-color: var(--border-color);
	margin: 4px 0;
}

.main-content {
	flex: 1;
	margin-left: var(--sidebar-width);
	padding: 40px;
	max-width: 1400px;
	width: calc(100% - var(--sidebar-width));
}

.page-header {
	margin-bottom: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.page-title-text h1 {
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 4px;
}

.page-title-text p {
	font-size: 0.95rem;
	color: var(--text-muted);
}


/* ==========================================================================
   7. DASHBOARD VIEWS
   ========================================================================== */

/* A. Job Search Page */
.search-container {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 8px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	margin-bottom: 24px;
}

[data-theme="dark"] .search-container {
	box-shadow: none;
}

.search-form {
	display: flex;
	align-items: center;
	width: 100%;
}

.search-input-group {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	padding: 0px 16px;
	color: var(--text-muted);
}

	.search-input-group i {
		font-size: 1.25rem;
	}

	.search-input-group input {
		border: none;
		background: transparent;
		width: 100%;
		font-size: 0.95rem;
		color: var(--text-main);
		outline: none;
	}

.search-divider {
	width: 1px;
	height: 32px;
	background-color: var(--border-color);
}

.search-btn {
	padding: 12px 24px !important;
	border-radius: 6px;
}

.analytics-pills {
	display: flex;
	gap: 12px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.stat-pill {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-main);
	font-weight: 500;
}

	.stat-pill i {
		font-size: 1.1rem;
	}

.stat-pill-primary {
	margin-left: auto;
	background: var(--primary-bg);
	color: var(--primary);
}

.action-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	padding: 0 4px;
}

.job-card {
	padding: 20px;
	gap: 16px;
	height: 100%;
}

.jc-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.company-logo {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	object-fit: cover;
	border: 1px solid var(--border-color);
	background: var(--bg-surface-hover);
}

.jc-body {
	flex: 1;
}

.job-title {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.job-company {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.job-time {
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-bottom: 12px;
}

.job-tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.tag-pill {
	background: var(--bg-surface-hover);
	border: 1px solid var(--border-color);
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--text-main);
}

.jc-footer {
	display: flex;
	gap: 8px;
	border-top: 1px solid var(--border-color);
	padding-top: 16px;
	margin-top: auto;
}

/* B. Tracker / Kanban Board */
.tracker-main {
	display: flex;
	flex-direction: column;
	height: 100vh;
	padding-bottom: 0;
}

.kanban-board {
	display: flex;
	gap: 20px;
	height: calc(100vh - 160px);
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 20px;
	scrollbar-width: thin;
}

	.kanban-board::-webkit-scrollbar {
		height: 8px;
	}

	.kanban-board::-webkit-scrollbar-track {
		background: var(--border-color);
		border-radius: 4px;
	}

	.kanban-board::-webkit-scrollbar-thumb {
		background: var(--text-muted);
		border-radius: 4px;
	}

.kanban-column {
	background-color: var(--bg-surface-hover);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	width: 320px;
	min-width: 320px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

[data-theme="dark"] .kanban-column {
	background-color: #121214;
}

.kanban-header {
	padding: 16px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.kanban-title {
	font-size: 0.95rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.status-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: inline-block;
}

.dot-muted {
	background: var(--text-muted);
}

.dot-primary {
	background: var(--primary);
}

.dot-warning {
	background: var(--warning);
}

.dot-success {
	background: var(--success);
}

.dot-danger {
	background: var(--danger);
}

.kanban-count {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	color: var(--text-muted);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 12px;
}

.kanban-cards-container {
	flex: 1;
	padding: 12px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: background-color 0.2s ease;
}

	.kanban-cards-container.drag-over {
		background-color: rgba(79, 70, 229, 0.05);
		box-shadow: inset 0 0 0 2px var(--primary);
		border-radius: 6px;
	}

.kanban-card {
	padding: 16px;
	cursor: grab;
	user-select: none;
}

	.kanban-card:active {
		cursor: grabbing;
	}

	.kanban-card.dragging {
		opacity: 0.5;
		transform: scale(0.98);
		border-color: var(--primary);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

.kb-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 12px;
}

.kb-logo {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	border: 1px solid var(--border-color);
	background: var(--bg-surface);
	object-fit: cover;
}

.kb-date {
	font-size: 0.7rem;
	color: var(--text-muted);
	font-weight: 500;
}

.kb-job-title {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 4px;
	line-height: 1.3;
}

.kb-company {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-bottom: 16px;
}

.kb-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--border-color);
	padding-top: 12px;
}

.btn-note {
	font-size: 0.75rem;
	padding: 4px 8px;
}

	.btn-note.has-note {
		color: var(--text-main);
		font-weight: 600;
	}

/* C. Settings & Profile */
.settings-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 24px;
	align-items: start;
}

.settings-nav {
	padding: 16px;
}

.settings-tabs {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tab-link {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-radius: var(--radius-md);
	color: var(--text-muted);
	font-size: 0.9rem;
	font-weight: 500;
	transition: var(--transition);
	text-align: left;
}

	.tab-link i {
		font-size: 1.25rem;
	}

	.tab-link:hover {
		background-color: var(--bg-surface-hover);
		color: var(--text-main);
	}

	.tab-link.active {
		background-color: var(--primary-bg);
		color: var(--primary);
		font-weight: 600;
	}

.tab-pane {
	display: none;
	animation: fadeInUp 0.3s ease forwards;
}

	.tab-pane.active {
		display: block;
	}

.avatar-upload-section {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border-color);
}

.avatar-preview {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--bg-body);
	box-shadow: 0 0 0 1px var(--border-color);
}

.avatar-actions h4 {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 4px;
}

/* D. Export Page */
.export-icon-box {
	width: 64px;
	height: 64px;
	background-color: var(--primary-bg);
	color: var(--primary);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 20px auto;
}

.export-history-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.history-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	transition: var(--transition);
}

	.history-item:hover {
		background-color: var(--bg-surface-hover);
		border-color: var(--primary);
	}

.hi-icon {
	width: 40px;
	height: 40px;
	background-color: var(--bg-body);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--text-muted);
}

.hi-details {
	flex: 1;
}

	.hi-details h4 {
		font-size: 0.9rem;
		font-weight: 600;
		color: var(--text-main);
		margin-bottom: 4px;
	}

	.hi-details p {
		font-size: 0.75rem;
		color: var(--text-muted);
	}

/* E. Billing & Plan Page */
.billing-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 24px;
	align-items: start;
}

.billing-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

	.billing-table th {
		text-align: left;
		font-size: 0.8rem;
		color: var(--text-muted);
		font-weight: 600;
		padding-bottom: 12px;
		border-bottom: 1px solid var(--border-color);
		text-transform: uppercase;
		letter-spacing: 0.05em;
	}

	.billing-table td {
		padding: 16px 0;
		border-bottom: 1px solid var(--border-color);
		vertical-align: middle;
	}

	.billing-table tbody tr:last-child td {
		border-bottom: none;
	}

	.billing-table td:last-child {
		text-align: right;
	}

.invoice-date {
	font-weight: 500;
	color: var(--text-main);
	margin-bottom: 2px;
}

.invoice-desc {
	font-size: 0.8rem;
	color: var(--text-muted);
}

.payment-method-display {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background-color: var(--bg-body);
	border-radius: var(--radius-md);
}

.cc-logo {
	width: 48px;
	height: auto;
}

.cc-details {
	display: flex;
	flex-direction: column;
}

.cc-type {
	font-weight: 500;
	font-size: 0.9rem;
	color: var(--text-main);
}

.cc-expiry {
	font-size: 0.8rem;
	color: var(--text-muted);
}

.danger-zone {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 24px;
	background-color: rgba(239, 68, 68, 0.05);
	border: 1px solid rgba(239, 68, 68, 0.2);
	border-radius: var(--radius-md);
	gap: 24px;
}

.dz-content {
	flex: 1;
	text-align: left; /* Force left alignment */
}

[data-theme="dark"] .danger-zone {
	background-color: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.dz-header {
	flex: 1;
	min-width: 250px;
}

.dz-title {
	color: var(--danger);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.dz-text {
	color: var(--text-muted);
	font-size: 0.85rem;
	margin: 0;
	line-height: 1.5;
}

.dz-action {
	flex-shrink: 0;
}

.dz-btn {
	white-space: nowrap;
}

[data-theme="dark"] .danger-zone {
	background-color: rgba(239, 68, 68, 0.08);
	border-color: rgba(239, 68, 68, 0.25);
}

.plan-card {
	background: var(--primary-bg);
	border: 1px solid var(--primary);
	border-radius: var(--radius-md);
	padding: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.upgrade-card {
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* F. Pricing Plan Modal */
.modal-dialog-pricing {
	max-width: 1050px;
	width: 95%;
}

.pricing-plans-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

.pricing-plan-card {
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	text-align: left;
	transition: var(--transition);
	border-width: 2px;
	position: relative;
	overflow: hidden;
}

	.pricing-plan-card.recommended {
		border-color: var(--primary);
		transform: translateY(-8px);
	}

.plan-badge {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--primary);
	color: #fff;
	padding: 6px 16px;
	border-radius: 0 0 var(--radius-md) var(--radius-md);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.plan-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 24px;
}

.plan-price {
	margin-bottom: 8px;
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.price-main {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1;
}

.price-old {
	font-size: 1rem;
	color: var(--text-muted);
	font-weight: 500;
	text-decoration: line-through;
}

.price-period {
	font-size: 0.9rem;
	color: var(--text-muted);
	font-weight: 500;
}

.plan-description {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 24px;
	min-height: 40px;
}

.feature-list {
	list-style: none;
	padding: 24px 0;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

	.feature-list li {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 0.9rem;
		font-weight: 500;
	}

	.feature-list i {
		font-size: 1.25rem;
		color: var(--success);
	}

		.feature-list i.bx-x {
			color: var(--danger);
		}

.plan-footer {
	margin-top: auto;
	padding-top: 24px;
}


/* ==========================================================================
   8. RESPONSIVE QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
	.grid-cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.billing-layout {
		grid-template-columns: 1fr;
	}

	.auth-wrapper {
		grid-template-columns: 1fr;
	}

	.auth-visual-side {
		display: none;
	}

	.auth-form-side {
		padding: 40px 24px;
	}

	.auth-logo {
		left: 24px;
	}
}

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

	.settings-tabs {
		flex-direction: row;
		overflow-x: auto;
		padding-bottom: 8px;
	}

	.tab-link {
		white-space: nowrap;
		justify-content: center;
	}

	.pricing-plans-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.pricing-plan-card.recommended {
		transform: none;
	}

	.grid-cols-2 {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 768px) {

	/* Landing Responsive */
	.nav-links,
	.nav-login {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.hero-section {
		padding: 140px 0 40px;
	}

	.hero-title {
		font-size: 2.8rem;
	}

	.hero-cta {
		flex-direction: column;
		padding: 0 24px;
	}

	.steps-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.steps-connecting-line {
		display: none;
	}

	.step-number {
		top: -24px;
		border-width: 4px;
		border-color: var(--bg-surface);
	}

	.feature-row,
	.feature-row.reverse {
		flex-direction: column;
		gap: 32px;
		text-align: center;
	}

	.f-icon {
		margin: 0 auto 24px;
	}

	.cta-buttons-wrapper {
		flex-direction: column;
	}

	.mc-grid {
		flex-direction: column;
	}

	.me-row {
		grid-template-columns: 1fr 1fr 1fr;
	}

	/* Dashboard Responsive */
	.sidebar {
		transform: translateX(-100%);
	}

	.main-content {
		margin-left: 0;
		padding: 20px;
		width: 100%;
	}

	.grid-cols-3,
	.grid-cols-2 {
		grid-template-columns: 1fr !important;
	}

	.search-form {
		flex-direction: column;
	}

	.search-divider {
		display: none;
	}

	.search-input-group {
		width: 100%;
		border-bottom: 1px solid var(--border-color);
	}

	.search-btn {
		width: 100%;
		border-radius: 0 0 8px 8px;
	}

	.page-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
}


/* ==========================================================================
   9. ALERTS, MESSAGES & UTILITIES
   ========================================================================== */

/* Alerts */
.alert {
	padding: 16px;
	border-radius: var(--radius-md);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.4;
	animation: fadeInUp 0.3s ease forwards;
}

	.alert i {
		font-size: 1.25rem;
		flex-shrink: 0;
	}

.alert-danger, .alert-error {
	background-color: rgba(239, 68, 68, 0.1);
	color: var(--danger);
	border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-success {
	background-color: rgba(16, 185, 129, 0.1);
	color: var(--success);
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-warning {
	background-color: rgba(245, 158, 11, 0.1);
	color: var(--warning);
	border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Utilities used by AJAX (home.js) */
.d-none {
	display: none !important;
}

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

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


/* Password Toggle Styling */
.input-group-relative {
	position: relative;
	width: 100%;
}

.toggle-password {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--text-muted);
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	z-index: 10;
}

	.toggle-password:hover {
		color: var(--primary);
	}

/* Ensure text doesn't overlap the icon */
.auth-input {
	padding-right: 45px !important;
}

#show-message {
	text-align: left !important;
}


/* =========================================================
   TOASTER NOTIFICATIONS
   ========================================================= */
.toast-container {
	position: fixed;
	bottom: 24px;
	right: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 9999;
	pointer-events: none; /* Let clicks pass through empty space */
}

.toast {
	min-width: 300px;
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: flex-start;
	gap: 12px;
	transform: translateX(120%);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
	pointer-events: auto;
}

[data-theme="dark"] .toast {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.toast.show {
	transform: translateX(0);
	opacity: 1;
}

.toast-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.toast.success .toast-icon {
	color: var(--success);
}

.toast.warning .toast-icon {
	color: var(--warning);
}

.toast.error .toast-icon {
	color: var(--danger);
}

.toast-content {
	flex: 1;
}

.toast-title {
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 2px;
	color: var(--text-main);
}

.toast-message {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.4;
}

.toast-close {
	background: none;
	border: none;
	color: var(--text-muted);
	cursor: pointer;
	font-size: 1.2rem;
}

	.toast-close:hover {
		color: var(--text-main);
	}

/* =========================================================
   FIX FOR JOB CARD BUTTONS
   ========================================================= */
.action-btn-save, .action-btn-apply {
	transition: all 0.2s ease !important;
	display: inline-flex !important; /* Force flex display to prevent hiding */
	align-items: center;
	justify-content: center;
}
	/* Ensure the text color stays readable when toggling */
	.action-btn-save.btn-primary {
		background-color: var(--primary);
		color: white;
		border-color: var(--primary);
	}

	.action-btn-apply.btn-success {
		background-color: var(--success);
		color: white;
		border-color: var(--success);
	}


@media (max-width: 768px) {
	.danger-zone {
		flex-direction: column;
		align-items: flex-start;
	}

	.dz-action, .dz-btn {
		width: 100%;
		display: block;
		text-align: center;
	}
}


/* ==========================================================================
   LINKEDIN RAW HTML OVERRIDES & MODAL UTILITIES
   ========================================================================== */

/* Override LinkedIn's "Read More" clamp */
.show-more-less-html__markup {
	max-height: none !important;
	overflow: visible !important;
	-webkit-line-clamp: unset !important;
	display: block !important;
}

/* Format the rich text container */
.description__text--rich {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--text-main);
}

	/* Fix Massive Gaps & Empty Paragraphs */
	.description__text--rich p {
		margin-bottom: 14px;
	}

		.description__text--rich p:empty,
		.description__text--rich p > br:only-child {
			display: none !important;
		}

	.description__text--rich br {
		display: block;
		content: "";
		margin-top: 6px;
	}

	/* Restore Lists */
	.description__text--rich ul {
		list-style-type: disc;
		margin-left: 24px;
		margin-bottom: 20px;
	}

	.description__text--rich ol {
		list-style-type: decimal;
		margin-left: 24px;
		margin-bottom: 20px;
	}

	.description__text--rich li {
		margin-bottom: 8px;
		line-height: 1.6;
	}

	/* Typography pop */
	.description__text--rich strong,
	.description__text--rich b {
		font-weight: 700;
		color: var(--text-main);
	}

/* Modal UI Utilities */
.w-14 {
	width: 56px;
}

.h-14 {
	height: 56px;
}

.object-cover {
	object-fit: cover;
}

.pr-32 {
	padding-right: 32px;
}

.leading-tight {
	line-height: 1.3;
}

/* Elegant Pill Badges */
.meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 20px;
	border: 1px solid var(--border-color);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-main);
	background: var(--bg-surface);
}

	.meta-pill i {
		color: var(--text-muted);
		font-size: 1rem;
	}

.meta-pill-salary {
	border-color: var(--success);
	background: rgba(16, 185, 129, 0.05);
	color: var(--success);
}



/* ==========================================================================
   AUTOCOMPLETE SUGGESTIONS
   ========================================================================== */
.autocomplete-suggestions {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	max-height: 250px;
	overflow-y: auto;
	display: none;
}

.suggestion-item {
	padding: 10px 16px;
	cursor: pointer;
	font-size: 0.9rem;
	color: var(--text-main);
	transition: background-color 0.2s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

	.suggestion-item:hover, .suggestion-item.active {
		background-color: var(--bg-surface-hover);
		color: var(--primary);
	}

	.suggestion-item i {
		color: var(--text-muted);
	}


.search-bar-wrapper {
	position: relative;
	z-index: 1; /* Must be higher than sibling elements */
}


/* ==========================================================================
   ADVANCED FILTER PANEL
   ========================================================================== */
.filter-panel {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.filter-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 16px;
	margin-bottom: 16px;
}

.filter-section .filter-title {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--text-muted);
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.filter-options-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

	.filter-options-col label, .filter-options label {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 0.9rem;
		cursor: pointer;
	}

.filter-footer {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
}

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

@media (max-width: 600px) {
	.filter-grid {
		grid-template-columns: 1fr;
	}
}


/* Style for the inline filter button */
#btnToggleFilters {
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    background: transparent;
}

#btnToggleFilters:hover {
    background-color: var(--bg-surface-hover);
    color: var(--primary) !important;
}


/* Mobile responsiveness: Hide the word 'Filters' on very small screens to save space */
@media (max-width: 480px) {
    #btnToggleFilters span {
        display: none;
    }
    #btnToggleFilters {
        padding: 0 12px;
    }
}


/* ==========================================================================
   MARKET INSIGHTS & PAYWALL
   ========================================================================== */
.insights-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-bottom: 24px;
}

.chart-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 24px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.top-company-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color);
}

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

/* Paywall Overlay */
.paywall-wrapper {
	position: relative;
}

.paywall-content {
	filter: blur(6px);
	opacity: 0.6;
	pointer-events: none;
	user-select: none;
}

.paywall-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 10;
	background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.9) 40%);
}

[data-theme="dark"] .paywall-overlay {
	background: linear-gradient(to bottom, rgba(18,18,20,0.1), rgba(18,18,20,0.9) 40%);
}

.paywall-box {
	background: var(--bg-surface);
	border: 1px solid var(--primary);
	padding: 40px;
	border-radius: var(--radius-lg);
	text-align: center;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	max-width: 450px;
}

.paywall-icon {
	font-size: 3rem;
	color: var(--warning);
	margin-bottom: 16px;
}

/* ==========================================================================
   COMPANIES DIRECTORY PAGE
   ========================================================================== */

/* 4 Column Grid Utility */
.grid-cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* Elegant Company Card */
.company-card {
	padding: 32px 24px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 100%;
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	transition: all 0.3s ease;
}

	.company-card:hover {
		transform: translateY(-5px);
		border-color: var(--primary);
		box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
	}

[data-theme="dark"] .company-card:hover {
	box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.company-logo-wrapper {
	width: 80px;
	height: 80px;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	padding: 6px;
	background: #ffffff; /* Always white so logos look clean */
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.company-logo-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain; /* Prevents stretching */
	border-radius: 10px;
}

.company-name {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.3;
	color: var(--text-main);
	/* Truncate to 2 lines max */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.company-followers {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-bottom: 24px;
	font-weight: 500;
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
	.grid-cols-4 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.grid-cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.grid-cols-4 {
		grid-template-columns: 1fr;
	}
}



/* Refined FOMO Box */
.fomo-box {
	background: rgba(239, 68, 68, 0.06);
	border: 1px dashed rgba(239, 68, 68, 0.3);
	border-radius: 12px;
	padding: 16px;
	text-align: center;
}

[data-theme="dark"] .fomo-box {
	background: rgba(239, 68, 68, 0.1);
}

/* Big Button Styling */
.gumroad-button {
	background: var(--primary) !important;
	color: white !important;
	font-weight: 800 !important;
	transition: all 0.3s ease !important;
}

	.gumroad-button:hover {
		filter: brightness(1.1);
		transform: translateY(-2px);
		box-shadow: 0 10px 25px var(--primary-glow) !important;
	}

/* Ensure feature list text aligns with icons */
.feature-list li {
	display: flex;
	align-items: flex-start !important; /* Fixes multi-line feature alignment */
	gap: 12px;
}

/* Text Gradient for Hero */
.text-gradient {
	background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}


/* Force Gumroad Button Visibility */
.gumroad-button,
.gumroad-button:visited,
.gumroad-button:active {
	background-color: #4f46e5 !important; /* Force the indigo color */
	color: #ffffff !important; /* Force white text */
	opacity: 1 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

/* Fix the Testimonial Card for Light Mode */
.testimonial-card {
	background: var(--bg-surface-hover) !important;
	border: 2px dashed var(--border-color) !important;
	border-radius: 12px;
}

[data-theme="dark"] .testimonial-card {
	border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Ensure the Gumroad SVG/Icon is white */
.gumroad-button i,
.gumroad-button svg {
	color: #ffffff !important;
	fill: #ffffff !important;
}
