/**
 * ThalNexus Store — Main Styles
 */

/* ========== CSS Variables ========== */
:root {
	--color-primary: #6366F1;
	--color-primary-dark: #4F46E5;
	--color-primary-light: #818CF8;
	--color-accent: #8B5CF6;
	--color-success: #22C55E;
	--color-danger: #EF4444;
	--color-warning: #F59E0B;

	--color-bg: #FFFFFF;
	--color-bg-alt: #F8FAFC;
	--color-bg-dark: #0F172A;
	--color-surface: #FFFFFF;
	--color-border: #E2E8F0;
	--color-text: #1E293B;
	--color-text-muted: #64748B;
	--color-text-light: #94A3B8;

	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-display: 'Plus Jakarta Sans', var(--font-sans);

	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;

	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	--shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);

	--header-height: 72px;
	--container-max: 1200px;
	--section-padding: 100px;
}

/* ========== Reset & Base ========== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-height);
}

body {
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.2s;
}

ul {
	list-style: none;
}

.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: var(--section-padding) 0;
}

.section-header {
	margin-bottom: 60px;
}

.section-header.center {
	text-align: center;
}

.section-header h2 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-text);
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.section-desc {
	font-size: 1.125rem;
	color: var(--color-text-muted);
	max-width: 600px;
	margin: 0 auto;
}

.section-tag {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-primary);
	background: rgba(99, 102, 241, 0.1);
	padding: 6px 14px;
	border-radius: var(--radius-full);
	margin-bottom: 16px;
}

.gradient-text {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ========== Buttons ========== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-sans);
	font-size: 0.9375rem;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: var(--radius-md);
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	white-space: nowrap;
}

.btn-primary {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
	color: #fff;
	box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
	color: #fff;
}

.btn-ghost {
	background: transparent;
	color: var(--color-text);
	border: 1px solid var(--color-border);
}

.btn-ghost:hover {
	background: var(--color-bg-alt);
	color: var(--color-text);
}

.btn-white {
	background: #fff;
	color: var(--color-primary);
	box-shadow: var(--shadow-lg);
}

.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl);
	color: var(--color-primary-dark);
}

.btn-lg {
	padding: 16px 32px;
	font-size: 1rem;
}

.btn-block {
	width: 100%;
}

.btn-header {
	padding: 10px 20px;
	font-size: 0.875rem;
}

/* ========== Header ========== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

.site-header.scrolled {
	border-bottom-color: var(--color-border);
	box-shadow: var(--shadow-sm);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--color-text);
}

.logo-text {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.site-nav .nav-list {
	display: flex;
	align-items: center;
	gap: 32px;
}

.site-nav a {
	color: var(--color-text-muted);
	font-size: 0.9375rem;
	font-weight: 500;
	transition: color 0.2s;
}

.site-nav a:hover {
	color: var(--color-primary);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.thalnexus-cart-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	color: var(--color-text);
	transition: all 0.2s ease;
}

.thalnexus-cart-link:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
	background: rgba(99, 102, 241, 0.05);
}

.thalnexus-cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	border-radius: var(--radius-full);
}

.thalnexus-cart-count.is-empty {
	display: none;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.mobile-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-text);
	border-radius: 2px;
	transition: all 0.3s;
}

/* ========== Hero ========== */
.hero {
	position: relative;
	padding: calc(var(--header-height) + 80px) 0 100px;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-gradient {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 50% -20%, rgba(99, 102, 241, 0.15) 0%, transparent 70%),
		radial-gradient(ellipse 60% 50% at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-primary);
	background: rgba(99, 102, 241, 0.08);
	border: 1px solid rgba(99, 102, 241, 0.15);
	padding: 8px 16px;
	border-radius: var(--radius-full);
	margin-bottom: 24px;
}

.badge-dot {
	width: 8px;
	height: 8px;
	background: var(--color-success);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 24px;
}

.hero-subtitle {
	font-size: 1.1875rem;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 520px;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 40px;
}

.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

.trust-item svg {
	color: var(--color-primary);
	flex-shrink: 0;
}

/* Dashboard Mockup */
.hero-visual {
	position: relative;
}

.dashboard-mockup {
	background: var(--color-surface);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl), var(--shadow-glow);
	border: 1px solid var(--color-border);
	overflow: hidden;
}

.mockup-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	background: var(--color-bg-alt);
	border-bottom: 1px solid var(--color-border);
}

.mockup-dots {
	display: flex;
	gap: 6px;
}

.mockup-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-border);
}

.mockup-dots span:first-child { background: #EF4444; }
.mockup-dots span:nth-child(2) { background: #F59E0B; }
.mockup-dots span:nth-child(3) { background: #22C55E; }

.mockup-title {
	font-size: 0.75rem;
	color: var(--color-text-muted);
	font-weight: 500;
}

.mockup-body {
	display: flex;
	min-height: 280px;
}

.mockup-sidebar {
	width: 60px;
	background: var(--color-bg-alt);
	border-right: 1px solid var(--color-border);
	padding: 16px 12px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mockup-nav-item {
	height: 32px;
	border-radius: var(--radius-sm);
	background: var(--color-border);
}

.mockup-nav-item.active {
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.mockup-content {
	flex: 1;
	padding: 20px;
}

.mockup-stat-row {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
}

.mockup-stat {
	flex: 1;
	background: var(--color-bg-alt);
	border-radius: var(--radius-sm);
	padding: 12px;
	text-align: center;
}

.stat-num {
	display: block;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--color-primary);
}

.stat-label {
	font-size: 0.6875rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.mockup-post-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mockup-post {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	background: var(--color-bg-alt);
	border-radius: var(--radius-sm);
}

.post-icon {
	width: 32px;
	height: 32px;
	border-radius: var(--radius-sm);
	flex-shrink: 0;
}

.post-icon-offer { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.post-icon-update { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.post-icon-event { background: linear-gradient(135deg, #22C55E, #14B8A6); }

.post-info {
	flex: 1;
	min-width: 0;
}

.post-title {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.post-meta {
	font-size: 0.6875rem;
	color: var(--color-text-light);
}

.post-status {
	font-size: 0.625rem;
	font-weight: 600;
	padding: 4px 8px;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	flex-shrink: 0;
}

.status-scheduled {
	background: rgba(99, 102, 241, 0.1);
	color: var(--color-primary);
}

.status-published {
	background: rgba(34, 197, 94, 0.1);
	color: var(--color-success);
}

.hero-float-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	padding: 12px 16px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	font-size: 0.8125rem;
	font-weight: 600;
	animation: float 3s ease-in-out infinite;
}

.card-1 {
	top: 20px;
	right: -20px;
	animation-delay: 0s;
}

.card-2 {
	bottom: 40px;
	left: -30px;
	animation-delay: 1.5s;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* ========== Social Proof ========== */
.social-proof {
	padding: 60px 0;
	background: var(--color-bg-alt);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.social-proof-label {
	text-align: center;
	font-size: 0.875rem;
	color: var(--color-text-muted);
	margin-bottom: 32px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 500;
}

.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.stat-value {
	display: block;
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--color-text);
	letter-spacing: -0.02em;
}

.stat-desc {
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

/* ========== Problem / Solution ========== */
.problem-solution {
	background: var(--color-bg);
}

.ps-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.ps-card {
	padding: 40px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
}

.ps-problem {
	background: #FEF2F2;
	border-color: #FECACA;
}

.ps-solution {
	background: #F0FDF4;
	border-color: #BBF7D0;
}

.ps-icon {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.ps-icon-red {
	background: rgba(239, 68, 68, 0.1);
	color: var(--color-danger);
}

.ps-icon-green {
	background: rgba(34, 197, 94, 0.1);
	color: var(--color-success);
}

.ps-card h3 {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 16px;
}

.ps-card ul li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.5;
}

.ps-card ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.ps-problem ul li::before { background: var(--color-danger); }
.ps-solution ul li::before { background: var(--color-success); }

/* ========== Features ========== */
.features {
	background: var(--color-bg-alt);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.feature-card {
	background: var(--color-surface);
	padding: 32px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: rgba(99, 102, 241, 0.2);
}

.feature-icon {
	width: 56px;
	height: 56px;
	background: rgba(99, 102, 241, 0.1);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	margin-bottom: 20px;
}

.feature-card h3 {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.feature-card p {
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.6;
}

/* ========== How It Works ========== */
.steps-grid {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
}

.step-card {
	flex: 1;
	max-width: 320px;
	text-align: center;
	padding: 0 24px;
}

.step-number {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 16px;
	line-height: 1;
}

.step-content h3 {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.step-content p {
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.6;
}

.step-connector {
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
	margin-top: 48px;
	flex-shrink: 0;
	opacity: 0.3;
}

/* ========== Demo Section ========== */
.demo-section {
	background: var(--color-bg);
}

.demo-showcase {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	align-items: center;
}

.demo-panel {
	background: var(--color-surface);
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.demo-panel-header {
	display: flex;
	gap: 4px;
	padding: 12px 16px;
	background: var(--color-bg-alt);
	border-bottom: 1px solid var(--color-border);
}

.demo-tab {
	font-size: 0.8125rem;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: var(--radius-sm);
	color: var(--color-text-muted);
	cursor: default;
}

.demo-tab.active {
	background: #fff;
	color: var(--color-primary);
	font-weight: 600;
	box-shadow: var(--shadow-sm);
}

.demo-panel-body {
	padding: 24px;
}

.demo-field {
	margin-bottom: 16px;
}

.demo-field label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-text-muted);
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.demo-input,
.demo-select,
.demo-textarea {
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	padding: 10px 14px;
	font-size: 0.875rem;
	color: var(--color-text);
}

.demo-textarea {
	min-height: 60px;
}

.demo-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.demo-actions {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.demo-btn-primary {
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	color: #fff;
	padding: 10px 20px;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	font-weight: 600;
}

.demo-btn-secondary {
	background: var(--color-bg-alt);
	color: var(--color-text-muted);
	padding: 10px 20px;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	font-weight: 500;
	border: 1px solid var(--color-border);
}

.demo-features-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.demo-feature-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.demo-feature-icon {
	font-size: 1.75rem;
	flex-shrink: 0;
}

.demo-feature-item h4 {
	font-family: var(--font-display);
	font-size: 1.0625rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.demo-feature-item p {
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.5;
}

/* ========== Benefits ========== */
.benefits-section {
	background: var(--color-bg-alt);
}

.benefits-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.benefits-content h2 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 32px;
	letter-spacing: -0.02em;
}

.benefit-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.benefit-item {
	display: flex;
	gap: 16px;
}

.benefit-check {
	width: 40px;
	height: 40px;
	background: rgba(34, 197, 94, 0.1);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-success);
	flex-shrink: 0;
}

.benefit-item h4 {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 4px;
}

.benefit-item p {
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.5;
}

.benefits-chart {
	background: var(--color-surface);
	padding: 32px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-md);
}

.benefits-chart h4 {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 24px;
	text-align: center;
}

.chart-bars {
	display: flex;
	justify-content: center;
	gap: 48px;
	align-items: flex-end;
	height: 200px;
	padding-bottom: 32px;
	position: relative;
}

.chart-bar {
	width: 80px;
	height: var(--height);
	background: var(--color-border);
	border-radius: var(--radius-sm) var(--radius-sm) 0 0;
	position: relative;
	transition: height 1s ease;
}

.chart-bar-highlight {
	background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
}

.bar-label {
	position: absolute;
	bottom: -28px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-text-muted);
	white-space: nowrap;
}

.bar-value {
	position: absolute;
	top: -28px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 800;
	color: var(--color-text);
}

.chart-note {
	text-align: center;
	font-size: 0.75rem;
	color: var(--color-text-light);
	margin-top: 16px;
}

/* ========== Testimonials ========== */
.testimonials {
	background: var(--color-bg);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.testimonial-card {
	background: var(--color-surface);
	padding: 32px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	transition: box-shadow 0.3s;
}

.testimonial-card:hover {
	box-shadow: var(--shadow-lg);
}

.testimonial-stars {
	color: #F59E0B;
	font-size: 1rem;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.testimonial-text {
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: 24px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
	flex-shrink: 0;
}

.testimonial-author strong {
	display: block;
	font-size: 0.9375rem;
	color: var(--color-text);
}

.testimonial-author span {
	font-size: 0.8125rem;
	color: var(--color-text-light);
}

/* ========== Pricing ========== */
.pricing {
	background: var(--color-bg-alt);
}

.pricing-card-wrapper {
	display: flex;
	justify-content: center;
}

.pricing-card {
	background: var(--color-surface);
	border-radius: var(--radius-xl);
	border: 1px solid var(--color-border);
	padding: 48px;
	max-width: 480px;
	width: 100%;
	text-align: center;
	position: relative;
}

.pricing-card.featured {
	border-color: var(--color-primary);
	box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.pricing-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 6px 20px;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.pricing-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.pricing-subtitle {
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	margin-bottom: 32px;
}

.pricing-amount {
	margin-bottom: 32px;
}

.pricing-amount .price {
	font-family: var(--font-display);
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--color-text);
	letter-spacing: -0.03em;
}

.pricing-amount .price .woocommerce-Price-amount {
	font-size: inherit;
}

.price-note {
	display: block;
	font-size: 0.875rem;
	color: var(--color-text-muted);
	margin-top: 4px;
}

.pricing-features {
	text-align: left;
	margin-bottom: 32px;
}

.pricing-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	font-size: 0.9375rem;
	color: var(--color-text);
	border-bottom: 1px solid var(--color-border);
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features svg {
	color: var(--color-success);
	flex-shrink: 0;
}

.pricing-guarantee {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
	font-size: 0.8125rem;
	color: var(--color-text-muted);
}

.pricing-guarantee svg {
	color: var(--color-success);
}

/* ========== FAQ ========== */
.faq {
	background: var(--color-bg);
}

.faq-list {
	max-width: 720px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--color-border);
	padding: 24px 0;
}

.faq-item summary {
	font-family: var(--font-display);
	font-size: 1.0625rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--color-text);
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: '+';
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--color-primary);
	transition: transform 0.2s;
}

.faq-item[open] summary::after {
	content: '−';
}

.faq-item p {
	margin-top: 16px;
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.7;
	padding-right: 32px;
}

/* ========== Final CTA ========== */
.final-cta {
	padding: 80px 0;
}

.cta-box {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
	border-radius: var(--radius-xl);
	padding: 64px 48px;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.cta-box::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-box h2 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	margin-bottom: 16px;
	position: relative;
}

.cta-box p {
	font-size: 1.125rem;
	opacity: 0.9;
	margin-bottom: 32px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.cta-box .btn {
	position: relative;
}

/* ========== Footer ========== */
.site-footer {
	background: var(--color-bg-dark);
	color: #CBD5E1;
	padding: 64px 0 32px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand .site-logo {
	color: #fff;
	margin-bottom: 16px;
}

.footer-tagline {
	font-size: 0.9375rem;
	color: #94A3B8;
	line-height: 1.6;
	max-width: 280px;
}

.footer-links h4 {
	color: #fff;
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 16px;
}

.footer-links ul li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #94A3B8;
	font-size: 0.9375rem;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: #fff;
}

.footer-cta h4 {
	color: #fff;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.4;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
	font-size: 0.8125rem;
	color: #64748B;
}

.footer-trust {
	display: flex;
	gap: 24px;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8125rem;
	color: #94A3B8;
}

.trust-badge svg {
	color: var(--color-primary-light);
}

/* ========== Animations ========== */
.fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-subtitle {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-cta {
		justify-content: center;
	}

	.hero-trust {
		justify-content: center;
	}

	.hero-visual {
		max-width: 520px;
		margin: 0 auto;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.benefits-grid,
	.demo-showcase {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	:root {
		--section-padding: 64px;
	}

	.site-nav {
		display: none;
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--color-border);
		padding: 24px;
		box-shadow: var(--shadow-lg);
	}

	.site-nav.open {
		display: block;
	}

	.site-nav .nav-list {
		flex-direction: column;
		gap: 16px;
	}

	.btn-header {
		display: none;
	}

	.header-actions .btn-header {
		display: none;
	}

	.thalnexus-cart-link {
		margin-right: 8px;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.stats-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.ps-grid {
		grid-template-columns: 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.steps-grid {
		flex-direction: column;
		align-items: center;
	}

	.step-connector {
		width: 2px;
		height: 40px;
		margin: 0;
	}

	.pricing-card {
		padding: 32px 24px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.hero-float-card {
		display: none;
	}

	.cta-box {
		padding: 48px 24px;
	}
}
