:root {
	--bg: #f6f7fb;
	--surface: #ffffff;
	--surface-2: #f3f5ff;
	--surface-3: rgba(36, 46, 66, 0.05);
	--text: #1a2233;
	--text-muted: #556078;
	--brand: #4f46e5;
	--brand-alt: #2ec5ce;
	--accent: #ffb454;
	--radius-lg: 28px;
	--radius-md: 20px;
	--radius-sm: 12px;
	--shadow-lg: 0 40px 95px -45px rgba(15, 23, 42, 0.35);
	--shadow-md: 0 24px 60px -32px rgba(15, 23, 42, 0.28);
	--shadow-sm: 0 18px 40px -28px rgba(15, 23, 42, 0.2);
	font-size: 62.5%;
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	line-height: 1.6;
	font-size: 1.6rem;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0 0 1.6rem;
	color: var(--text-muted);
}

button {
	font: inherit;
	cursor: pointer;
}

.container {
	width: min(1220px, calc(100% - 3.2rem));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(22px);
	background: rgba(246, 247, 251, 0.88);
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2.4rem 0;
	gap: 2rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	font-weight: 700;
	font-size: clamp(2rem, 2vw, 2.4rem);
}

.brand-logo {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	display: inline-block;
	object-fit: contain;
	transition: transform 0.3s ease;
	will-change: transform, opacity;
}

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

.nav {
	display: flex;
	align-items: center;
	gap: 2.4rem;
}

.nav a {
	color: var(--text-muted);
	font-weight: 500;
	position: relative;
}

.nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -0.6rem;
	width: 0;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--brand), var(--brand-alt));
	transition: width 0.25s ease;
}

.nav a:focus-visible,
.nav a:hover {
	color: var(--text);
}

.nav a:hover::after,
.nav a:focus-visible::after {
	width: 100%;
}

.header-cta {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.welcome-text {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	color: var(--text-muted);
	font-weight: 500;
	font-size: 1.4rem;
	white-space: nowrap;
}

.welcome-text i {
	font-size: 1.6rem;
	color: var(--brand);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	padding: 1.2rem 2.2rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 600;
	font-size: 1.45rem;
	background: transparent;
	color: var(--text);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn.solid {
	background: linear-gradient(135deg, var(--brand), var(--brand-alt));
	color: #f6f7fb;
	box-shadow: var(--shadow-md);
}

.btn.solid:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn.outline {
	border-color: rgba(79, 70, 229, 0.22);
}

.btn.outline:hover {
	border-color: transparent;
	background: rgba(79, 70, 229, 0.12);
}

.menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	border: 1px solid rgba(79, 70, 229, 0.2);
	background: rgba(79, 70, 229, 0.08);
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-direction: column;
}

.menu-toggle span {
	width: 22px;
	height: 2px;
	border-radius: 999px;
	background: var(--text);
	display: block;
}

.hero {
	position: relative;
	padding: clamp(8rem, 10vw, 14rem) 0 clamp(6rem, 8vw, 10rem);
}

.hero-inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(3rem, 5vw, 6rem);
	align-items: center;
}

.hero-copy h1 {
	margin: 0 0 2.4rem;
	font-size: clamp(3.2rem, 5vw, 5.4rem);
	line-height: 1.08;
}

.hero-copy h1 span {
	background: linear-gradient(135deg, var(--brand), var(--brand-alt));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-copy p {
	font-size: 1.8rem;
	max-width: 52rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	margin-top: 2.8rem;
}

.hero-media {
	position: relative;
}

.hero-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: clamp(2.4rem, 4vw, 3.6rem);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
	isolation: isolate;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.hero-card::before {
	content: '';
	position: absolute;
	inset: -40%;
	background: radial-gradient(circle, rgba(79, 70, 229, 0.18), transparent 60%);
	z-index: -1;
	filter: blur(60px);
}

.hero-card h3 {
	margin: 0 0 1.6rem;
	font-size: 2.2rem;
}

.auth-section {
	padding: clamp(6rem, 8vw, 10rem) 0;
	position: relative;
}

.auth-grid {
	display: grid;
	grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
	gap: clamp(3rem, 5vw, 5.6rem);
	align-items: stretch;
}

.auth-aside {
	background: linear-gradient(140deg, rgba(79, 70, 229, 0.95), rgba(46, 197, 206, 0.9));
	color: #ffffff;
	padding: clamp(2.8rem, 5vw, 3.6rem);
	border-radius: var(--radius-lg);
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	display: grid;
	gap: 1.8rem;
}

.auth-aside::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 60%);
	mix-blend-mode: screen;
	opacity: 0.6;
}

.auth-aside>* {
	position: relative;
	z-index: 1;
}

.auth-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 1.6rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	font-weight: 600;
	font-size: 1.35rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.auth-title {
	margin: 0;
	font-size: clamp(2.6rem, 4vw, 3.4rem);
	line-height: 1.15;
}

.auth-subtitle {
	margin: 0;
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 38rem;
}

.auth-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: clamp(3rem, 4vw, 3.8rem);
	box-shadow: var(--shadow-md);
	border: 1px solid rgba(79, 70, 229, 0.12);
	display: grid;
	gap: 2rem;
}

.auth-card-header h2 {
	margin: 0 0 0.6rem;
	font-size: clamp(2.2rem, 3vw, 2.8rem);
	color: var(--text);
}

.auth-card-header p {
	margin: 0;
	color: var(--text-muted);
	font-size: 1.45rem;
}

.auth-alert {
	padding: 1.4rem 1.8rem;
	border-radius: var(--radius-md);
	border: 1px solid;
	font-size: 1.4rem;
	line-height: 1.5;
}

.auth-alert--error {
	border-color: rgba(217, 45, 32, 0.25);
	background: rgba(217, 45, 32, 0.08);
	color: #a61d1d;
}

.auth-alert ul {
	margin: 0.6rem 0 0;
	padding-left: 1.4rem;
}

.auth-form {
	display: grid;
	gap: 1.6rem;
}

.form-grid {
	display: grid;
	gap: 1.6rem;
}

.form-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.6rem;
}

.form-field {
	display: grid;
	gap: 0.6rem;
}

.form-field span {
	font-weight: 600;
	color: var(--text);
	font-size: 1.45rem;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(79, 70, 229, 0.16);
	background: rgba(15, 23, 42, 0.02);
	color: var(--text);
	padding: 1.1rem 1.3rem;
	font-size: 1.45rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: rgba(79, 70, 229, 0.65);
	box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
}

.form-field small {
	color: var(--text-muted);
	font-size: 1.3rem;
}

.auth-meta,
.auth-switch {
	margin: 0;
	text-align: center;
	font-size: 1.35rem;
	color: var(--text-muted);
}

.auth-switch a,
.auth-meta a {
	color: var(--brand);
	font-weight: 600;
}

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

	.auth-aside {
		order: 2;
	}

	.auth-card {
		order: 1;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--surface);
		padding: 2rem;
		flex-direction: column;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		box-shadow: var(--shadow-lg);
	}

	.nav.active {
		display: flex;
	}

	.header-cta {
		gap: 1rem;
	}

	.header-cta .btn {
		display: none;
		/* Hide buttons on mobile header to save space, rely on mobile menu or keep login? */
	}

	/* Keep Login button visible or maybe just icon? */
	.header-cta .btn.outline {
		display: flex;
		padding: 0.8rem 1.4rem;
		font-size: 1.2rem;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-copy h1 {
		font-size: 3.2rem;
	}

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

	.mobile-hidden {
		display: none !important;
	}
}


.hero-highlight-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.4rem;
	margin-top: 2.4rem;
}

.metric-chip {
	background: rgba(79, 70, 229, 0.08);
	border-radius: var(--radius-md);
	padding: 1.6rem;
	display: grid;
	gap: 0.4rem;
}

.metric-chip strong {
	font-size: 2rem;
}

.section {
	padding: clamp(6rem, 8vw, 10rem) 0;
}

.section-heading {
	margin: 0 auto;
	max-width: 700px;
	text-align: center;
}

.section-heading h2 {
	margin: 0 0 1.2rem;
	font-size: clamp(2.6rem, 3.5vw, 3.8rem);
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 1.4rem;
	border-radius: 999px;
	background: rgba(108, 95, 252, 0.16);
	color: var(--brand-alt);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 1.3rem;
	margin-bottom: 1.2rem;
}

.deals-grid {
	margin-top: clamp(3.2rem, 4vw, 5.4rem);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
}

.deal-card {
	background: var(--surface-2);
	border-radius: var(--radius-md);
	padding: 1.8rem;
	display: grid;
	gap: 1.4rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deal-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
}

.deal-thumb {
	border-radius: var(--radius-sm);
	overflow: hidden;
	aspect-ratio: 16 / 11;
	background: linear-gradient(135deg, rgba(108, 95, 252, 0.45), rgba(69, 210, 255, 0.35));
}

.deal-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1.35rem;
}

.deal-meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.why-grid {
	margin-top: clamp(3rem, 4vw, 5rem);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
}

.why-card {
	background: var(--surface);
	border-radius: var(--radius-md);
	padding: 2.4rem;
	border: 1px solid rgba(79, 70, 229, 0.12);
	display: grid;
	gap: 1.2rem;
}

.why-card h3 {
	margin: 0;
}

.plans {
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(46, 197, 206, 0.2));
	border-radius: var(--radius-lg);
	padding: clamp(3rem, 5vw, 4rem);
	margin-top: clamp(3rem, 4vw, 5rem);
	box-shadow: var(--shadow-md);
}

.plan-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2.4rem;
}

.plan-card {
	background: var(--surface);
	border-radius: var(--radius-md);
	padding: 2.6rem;
	display: grid;
	gap: 1.6rem;
	border: 1px solid rgba(79, 70, 229, 0.12);
}

.plan-card.featured {
	border: 1px solid rgba(79, 70, 229, 0.28);
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden;
}

.plan-card.featured::after {
	content: 'Most loved';
	position: absolute;
	top: 1.6rem;
	right: 1.6rem;
	background: linear-gradient(135deg, var(--accent), #ff7d6a);
	color: #ffffff;
	padding: 0.4rem 1.1rem;
	border-radius: 999px;
	font-size: 1.2rem;
	font-weight: 700;
}

.plan-price {
	display: grid;
	gap: 0.4rem;
}

.plan-price strong {
	font-size: 3.2rem;
}

.plan-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.8rem;
}

.plan-features li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	color: var(--text-muted);
}

.plan-features li::before {
	content: '✔';
	color: var(--brand);
	font-size: 1.4rem;
}

.global-section {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2.4rem, 4vw, 3.6rem);
	margin-top: clamp(3rem, 4vw, 4.8rem);
}

.flag-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1rem;
}

.flag-pill {
	background: rgba(15, 23, 42, 0.06);
	border-radius: 999px;
	padding: 0.8rem 1.2rem;
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
}

.flag-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

/* Moving Ticker Bar */
.ticker-container {
	width: 100%;
	overflow: hidden;
	background: rgba(15, 23, 42, 0.04);
	border-radius: var(--radius-sm);
	padding: 1.2rem 0;
	margin-top: 2rem;
	position: relative;
}

.ticker-wrapper {
	display: flex;
	white-space: nowrap;
	will-change: transform;
}

.ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 1.2rem;
	padding: 0 2rem;
	color: var(--text);
	font-weight: 500;
	font-size: 1.4rem;
	border-right: 1px solid rgba(15, 23, 42, 0.1);
	flex-shrink: 0;
}

.ticker-item:last-child {
	border-right: none;
}

.ticker-store {
	font-weight: 700;
	color: var(--text);
}

.ticker-currency {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.ticker-price {
	color: var(--accent);
	font-weight: 600;
}

.ticker-change {
	color: #10b981;
	font-size: 1.2rem;
}

.ticker-change.negative {
	color: #ef4444;
}

.reviews-carousel {
	margin-top: clamp(3rem, 4vw, 4.8rem);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.review-card {
	background: var(--surface);
	border-radius: var(--radius-md);
	padding: 2.4rem;
	border: 1px solid rgba(79, 70, 229, 0.12);
	display: grid;
	gap: 1.6rem;
}

.review-meta {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.review-meta img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.support-grid {
	margin-top: clamp(3rem, 4vw, 5rem);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
}

.support-card {
	background: var(--surface);
	border-radius: var(--radius-md);
	padding: 2.6rem;
	display: grid;
	gap: 1.4rem;
	border: 1px solid rgba(79, 70, 229, 0.12);
}

.faq-list {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.2rem;
}

.faq-item {
	background: rgba(79, 70, 229, 0.08);
	border-radius: var(--radius-sm);
	padding: 1.6rem;
}

.site-footer {
	margin-top: clamp(6rem, 8vw, 10rem);
	background: rgba(255, 255, 255, 0.9);
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	padding: clamp(3rem, 4vw, 4rem) 0;
}

.footer-top h4 {
	margin: 0 0 1.2rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.8rem;
}

.footer-links a {
	color: var(--text-muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
	color: var(--brand);
}

.footer-bottom {
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	padding: 2rem 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1.6rem;
	align-items: center;
	justify-content: space-between;
	font-size: 1.4rem;
	color: rgba(26, 34, 51, 0.6);
}

.footer-bottom a {
	color: inherit;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(79, 70, 229, 0.12);
	padding: 0.6rem 1.4rem;
	border-radius: 999px;
	font-weight: 600;
	color: var(--brand);
	font-size: 1.3rem;
}

.support-widget {
	position: fixed;
	bottom: 2.4rem;
	right: 2.4rem;
	z-index: 80;
}

.support-toggle {
	border-radius: 999px;
	padding: 1.4rem 2.2rem;
	background: linear-gradient(135deg, var(--brand), var(--brand-alt));
	color: #ffffff;
	border: none;
	box-shadow: var(--shadow-md);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
}

.support-panel {
	position: absolute;
	bottom: 5.5rem;
	right: 0;
	background: var(--surface);
	border-radius: var(--radius-md);
	width: min(320px, 85vw);
	box-shadow: var(--shadow-lg);
	padding: 2rem;
	display: none;
}

.support-panel.open {
	display: grid;
	gap: 1.6rem;
}

.support-panel form {
	display: grid;
	gap: 1.2rem;
}

.support-panel input,
.support-panel textarea {
	width: 100%;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(79, 70, 229, 0.18);
	background: rgba(79, 70, 229, 0.04);
	color: var(--text);
	padding: 1rem 1.2rem;
	font: inherit;
}

.support-panel textarea {
	min-height: 120px;
	resize: vertical;
}

.support-panel button[type="submit"] {
	justify-content: center;
}

@media (max-width: 960px) {
	.nav {
		position: fixed;
		inset: 0 0 auto 0;
		top: 88px;
		background: rgba(246, 247, 251, 0.98);
		backdrop-filter: blur(10px);
		padding: 2.4rem 1.6rem;
		flex-direction: column;
		gap: 1.6rem;
		transform: translateY(-20px);
		opacity: 0;
		pointer-events: none;
		border-bottom: 1px solid rgba(15, 23, 42, 0.1);
		transition: opacity 0.3s ease, transform 0.3s ease;
		z-index: 999;
		max-height: calc(100vh - 88px);
		overflow-y: auto;
	}

	.nav a {
		padding: 1rem 0;
		font-size: 1.6rem;
		font-weight: 600;
		border-bottom: 1px solid rgba(15, 23, 42, 0.05);
	}

	.nav.open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}

	.menu-toggle span {
		transition: transform 0.3s ease, opacity 0.3s ease;
	}

	.hero-inner {
		grid-template-columns: 1fr;
	}

	.hero-card {
		margin-top: 1.6rem;
	}

	.global-section {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.container {
		width: calc(100% - 2.4rem);
		padding: 0 1.2rem;
	}

	.header-inner {
		padding: 1.2rem 0;
		flex-wrap: wrap;
		gap: 1rem;
	}

	.brand {
		font-size: 1.8rem;
	}

	.brand-logo {
		width: 40px;
		height: 40px;
	}

	.header-cta {
		flex-wrap: wrap;
		gap: 0.6rem;
		width: 100%;
		justify-content: flex-end;
	}

	.welcome-text {
		width: 100%;
		font-size: 1.2rem;
		padding: 0.4rem 0;
		order: -1;
	}

	.header-cta .btn {
		font-size: 1.3rem;
		padding: 1rem 1.6rem;
		flex: 1;
		min-width: 120px;
	}

	.menu-toggle {
		width: 40px;
		height: 40px;
	}

	.hero {
		padding: 4rem 0 3rem;
	}

	.hero-inner {
		gap: 2rem;
	}

	.hero-copy h1 {
		font-size: 2.4rem;
		line-height: 1.2;
		margin-bottom: 1.6rem;
	}

	.hero-copy p {
		font-size: 1.5rem;
		line-height: 1.6;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		margin-top: 2rem;
		width: 100%;
	}

	.hero-actions .btn {
		width: 100%;
		justify-content: center;
		padding: 1.4rem 2rem;
		font-size: 1.5rem;
	}

	.hero-card {
		padding: 2rem;
		margin-top: 2rem;
	}

	.hero-card h3 {
		font-size: 1.8rem;
	}

	.hero-highlight-grid {
		grid-template-columns: 1fr;
		gap: 1.2rem;
		margin-top: 1.6rem;
	}

	.metric-chip {
		padding: 1.4rem;
	}

	.metric-chip strong {
		font-size: 1.8rem;
	}

	.section {
		padding: 4rem 0;
	}

	.section-heading {
		text-align: left !important;
		max-width: 100% !important;
	}

	.section-heading h2 {
		font-size: 2.2rem;
		line-height: 1.3;
	}

	.section-heading p {
		font-size: 1.4rem;
	}

	.why-grid {
		grid-template-columns: 1fr;
		gap: 1.6rem;
	}

	.why-card {
		padding: 2rem;
	}

	.plans {
		padding: 2rem;
	}

	.plan-grid {
		grid-template-columns: 1fr;
		gap: 1.6rem;
	}

	.plan-card {
		padding: 2rem;
	}

	.global-section {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.flag-strip {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.8rem;
		margin-top: 1.6rem;
	}

	.reviews-carousel {
		grid-template-columns: 1fr;
		gap: 1.6rem;
	}

	.review-card {
		padding: 2rem;
	}

	.support-grid {
		grid-template-columns: 1fr;
		gap: 1.6rem;
	}

	.support-card {
		padding: 2rem;
	}

	.btn {
		width: 100%;
		justify-content: center;
		font-size: 1.4rem;
		padding: 1.2rem 2rem;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 3rem 0;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
		padding: 1.6rem 0;
	}

	.support-widget {
		right: 1.2rem;
		bottom: 1.2rem;
	}

	.support-toggle {
		padding: 1.2rem 1.8rem;
		font-size: 1.3rem;
	}
}

@media (max-width: 400px) {
	.hero-copy h1 {
		font-size: 2rem;
	}

	.hero-copy p {
		font-size: 1.4rem;
	}

	.section-heading h2 {
		font-size: 1.9rem;
	}

	.flag-strip {
		grid-template-columns: 1fr;
	}

	.header-cta .btn {
		font-size: 1.2rem;
		padding: 0.9rem 1.4rem;
	}
}

/* ============================================
   DASHBOARD STYLES
   ============================================ */

.dashboard-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
	margin-bottom: 4rem;
	flex-wrap: wrap;
}

.dashboard-header h2 {
	margin: 1.2rem 0 0.8rem;
	font-size: clamp(2.4rem, 3vw, 3.2rem);
}

.dashboard-actions {
	display: flex;
	gap: 1.2rem;
	align-items: center;
}

.deals-section {
	margin-top: 4rem;
}

.deals-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2.4rem;
	flex-wrap: wrap;
	gap: 1.2rem;
}

.deals-header h3 {
	margin: 0;
	font-size: 2.2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--text);
}

.deals-count {
	background: rgba(79, 70, 229, 0.1);
	color: var(--brand);
	padding: 0.6rem 1.4rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 1.4rem;
}

.deals-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2.4rem;
}

.deal-card {
	background: var(--surface);
	border: 2px solid rgba(79, 70, 229, 0.1);
	border-radius: var(--radius-md);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	position: relative;
}

.deal-card:hover {
	border-color: var(--brand);
	box-shadow: var(--shadow-lg);
	transform: translateY(-6px);
}

.deal-card-image {
	position: relative;
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(46, 197, 206, 0.1));
}

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

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

.deal-card-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.7);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

.deal-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, var(--brand), var(--brand-alt));
	color: #ffffff;
	border-radius: 999px;
	font-weight: 600;
	font-size: 1.4rem;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.deal-card-link:hover {
	transform: scale(1.05);
}

.deal-card-score {
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	background: linear-gradient(135deg, var(--brand), var(--brand-alt));
	color: #ffffff;
	padding: 0.6rem 1.2rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1.3rem;
	box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
	z-index: 2;
}

.deal-card-content {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	flex: 1;
}

.deal-card-header {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.deal-card-header h4 {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--text);
	line-height: 1.3;
}

.deal-card-meta {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.deal-card-actions {
	display: flex;
	gap: 1rem;
	margin-top: auto;
}

.btn-sm {
	padding: 0.8rem 1.6rem;
	font-size: 1.3rem;
	flex: 1;
}

.deal-item-tags {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.deal-category {
	display: inline-flex;
	align-items: center;
	background: rgba(79, 70, 229, 0.1);
	color: var(--brand);
	padding: 0.5rem 1.2rem;
	border-radius: 999px;
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.deal-markets {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-muted);
	font-size: 1.3rem;
	font-weight: 500;
}

.deal-markets i {
	color: var(--brand-alt);
	font-size: 1.2rem;
}

.deal-item-meta {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin-top: 0.8rem;
}

.deal-rating {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.rating-stars-small {
	display: flex;
	gap: 0.2rem;
	color: #ffb454;
	font-size: 1.2rem;
}

.rating-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text);
}

.reviews-count {
	color: var(--text-muted);
	font-size: 1.3rem;
	font-weight: 500;
}

.deal-score {
	display: flex;
	align-items: center;
}

.score-badge {
	background: linear-gradient(135deg, var(--brand), var(--brand-alt));
	color: #ffffff;
	padding: 0.8rem 1.6rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1.4rem;
	box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
	white-space: nowrap;
}

.deal-item-arrow {
	color: var(--text-muted);
	font-size: 1.6rem;
	transition: transform 0.2s ease, color 0.2s ease;
}

.deal-item:hover .deal-item-arrow {
	transform: translateX(4px);
	color: var(--brand);
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(8px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	overflow-y: auto;
}

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

.modal-container {
	position: relative;
	background: var(--surface);
	border-radius: var(--radius-lg);
	width: 100%;
	max-width: 720px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: var(--shadow-lg);
	transform: scale(0.95);
	transition: transform 0.3s ease;
	margin: auto;
}

.modal-overlay.active .modal-container {
	transform: scale(1);
}

.modal-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(79, 70, 229, 0.1);
	border: none;
	color: var(--text);
	font-size: 1.8rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.2s ease;
}

.modal-close:hover {
	background: rgba(79, 70, 229, 0.2);
	transform: rotate(90deg);
}

.modal-content {
	padding: 3.2rem;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
	margin-bottom: 2.4rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(79, 70, 229, 0.12);
}

.modal-header h2 {
	margin: 0.8rem 0 0;
	font-size: clamp(2.2rem, 3vw, 2.8rem);
	color: var(--text);
	line-height: 1.2;
}

.modal-category {
	display: inline-block;
	background: rgba(79, 70, 229, 0.1);
	color: var(--brand);
	padding: 0.5rem 1.2rem;
	border-radius: 999px;
	font-size: 1.3rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.modal-score-large {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--brand), var(--brand-alt));
	color: #ffffff;
	padding: 1.6rem 2rem;
	border-radius: var(--radius-md);
	min-width: 100px;
}

.score-value {
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1;
}

.score-label {
	font-size: 1.2rem;
	font-weight: 600;
	opacity: 0.9;
	margin-top: 0.4rem;
}

.modal-body {
	display: grid;
	gap: 2.4rem;
}

.modal-image {
	width: 100%;
	height: 300px;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(46, 197, 206, 0.1));
}

.modal-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal-price-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.6rem;
	padding: 2rem;
	background: rgba(79, 70, 229, 0.04);
	border-radius: var(--radius-md);
}

.modal-price-main {
	display: flex;
	align-items: baseline;
	gap: 1.2rem;
}

.modal-price-current {
	font-size: 3.2rem;
	font-weight: 800;
	color: var(--brand);
}

.modal-price-original {
	font-size: 1.8rem;
	color: var(--text-muted);
	text-decoration: line-through;
}

.modal-rating {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.rating-stars {
	display: flex;
	gap: 0.4rem;
	color: #ffb454;
	font-size: 1.6rem;
}

.rating-value {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text);
}

.rating-count {
	font-size: 1.4rem;
	color: var(--text-muted);
}

.modal-description h3 {
	margin: 0 0 1.2rem;
	font-size: 1.8rem;
	color: var(--text);
}

.modal-description p {
	font-size: 1.6rem;
	line-height: 1.7;
	color: var(--text-muted);
	margin: 0;
}

.modal-details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.6rem;
}

.modal-detail-item {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	padding: 1.6rem;
	background: rgba(79, 70, 229, 0.04);
	border-radius: var(--radius-sm);
}

.modal-detail-item i {
	font-size: 2rem;
	color: var(--brand);
	width: 32px;
	text-align: center;
}

.modal-detail-item div {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.detail-label {
	font-size: 1.2rem;
	color: var(--text-muted);
	font-weight: 500;
}

.detail-value {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--text);
}

.modal-actions {
	display: flex;
	gap: 1.2rem;
	flex-wrap: wrap;
	padding-top: 1.6rem;
	border-top: 1px solid rgba(79, 70, 229, 0.12);
}

.modal-cta {
	flex: 1;
	min-width: 200px;
}

.modal-close-btn {
	flex: 0 0 auto;
}

/* Modal Responsive */
@media (max-width: 640px) {
	.modal-overlay {
		padding: 1rem;
	}

	.modal-container {
		max-height: 95vh;
		border-radius: var(--radius-md);
	}

	.modal-content {
		padding: 2rem 1.6rem;
	}

	.modal-close {
		top: 1.2rem;
		right: 1.2rem;
		width: 36px;
		height: 36px;
	}

	.modal-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.modal-score-large {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
		padding: 1.2rem 1.6rem;
	}

	.modal-price-section {
		flex-direction: column;
		align-items: flex-start;
	}

	.modal-price-main {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.6rem;
	}

	.modal-price-current {
		font-size: 2.4rem;
	}

	.modal-details-grid {
		grid-template-columns: 1fr;
	}

	.modal-actions {
		flex-direction: column;
	}

	.modal-cta,
	.modal-close-btn {
		width: 100%;
	}
}

@media (max-width: 960px) {
	.dashboard-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.deals-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.deals-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 1.8rem;
	}

	.deal-card-content {
		padding: 1.6rem;
	}

	.deal-card-header h4 {
		font-size: 1.6rem;
	}

	.deal-card-actions {
		flex-direction: column;
	}

	.btn-sm {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.deals-grid {
		grid-template-columns: 1fr;
		gap: 1.6rem;
	}

	.deal-card-image {
		height: 200px;
	}

	.deal-card-content {
		padding: 1.4rem;
	}

	.deal-card-header h4 {
		font-size: 1.5rem;
	}

	.deal-card-meta {
		gap: 0.8rem;
	}

	.deal-rating {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.6rem;
	}

	.modal-image {
		height: 200px;
	}
}

/* --- Dashboard Layout --- */
.dashboard-layout {
	display: flex;
	min-height: 100vh;
}

.sidebar {
	width: 280px;
	background: var(--surface);
	border-right: 1px solid rgba(79, 70, 229, 0.12);
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 50;
	transition: transform 0.3s ease;
}

.sidebar-header {
	padding: 2.4rem;
	border-bottom: 1px solid rgba(79, 70, 229, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sidebar-nav {
	flex: 1;
	padding: 2rem 1.6rem;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	overflow-y: auto;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	padding: 1.2rem 1.6rem;
	border-radius: var(--radius-sm);
	color: var(--text-muted);
	font-weight: 500;
	transition: all 0.2s ease;
}

.nav-item:hover,
.nav-item.active {
	background: rgba(79, 70, 229, 0.08);
	color: var(--brand);
}

.nav-item i {
	font-size: 1.8rem;
	width: 24px;
	text-align: center;
}

.sidebar-footer {
	padding: 2rem 1.6rem;
	border-top: 1px solid rgba(79, 70, 229, 0.08);
}

.user-mini-profile {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	padding: 1.2rem;
	border-radius: var(--radius-sm);
	background: rgba(15, 23, 42, 0.03);
	cursor: pointer;
	transition: background 0.2s ease;
}

.user-mini-profile:hover {
	background: rgba(15, 23, 42, 0.06);
}

.user-avatar-small {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--brand), var(--brand-alt));
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.4rem;
}

.user-info-small {
	flex: 1;
	min-width: 0;
}

.user-name-small {
	display: block;
	font-weight: 600;
	font-size: 1.4rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.user-role-small {
	display: block;
	font-size: 1.2rem;
	color: var(--text-muted);
}

.dashboard-main {
	flex: 1;
	margin-left: 280px;
	min-width: 0;
	background: var(--bg);
}

.top-bar {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(246, 247, 251, 0.9);
	backdrop-filter: blur(12px);
	padding: 1.6rem 2.4rem;
	display: none;
	/* Hidden on desktop by default */
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(79, 70, 229, 0.08);
}

.mobile-menu-toggle {
	background: transparent;
	border: none;
	font-size: 2rem;
	color: var(--text);
	padding: 0.8rem;
	cursor: pointer;
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
	.sidebar {
		transform: translateX(-100%);
		box-shadow: var(--shadow-lg);
	}

	.sidebar.active {
		transform: translateX(0);
	}

	.dashboard-main {
		margin-left: 0;
	}

	.top-bar {
		display: flex;
	}

	.sidebar-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 45;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		backdrop-filter: blur(4px);
	}

	/* --- Modern Welcome Section --- */
	.welcome-card {
		background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
		border-radius: var(--radius-md);
		padding: 3rem;
		color: white;
		margin-bottom: 2.4rem;
		position: relative;
		overflow: hidden;
		box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
	}

	.welcome-card::before {
		content: '';
		position: absolute;
		top: -50%;
		right: -10%;
		width: 300px;
		height: 300px;
		background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
		border-radius: 50%;
	}

	.welcome-card h2 {
		font-size: 2.8rem;
		margin: 0 0 0.8rem;
		font-weight: 700;
	}

	.welcome-card p {
		font-size: 1.6rem;
		opacity: 0.9;
		margin: 0;
		max-width: 600px;
	}

	/* --- Category Navigation --- */
	.category-nav {
		display: flex;
		gap: 1.2rem;
		overflow-x: auto;
		padding-bottom: 0.8rem;
		margin-bottom: 2.4rem;
		scrollbar-width: none;
		/* Firefox */
		-ms-overflow-style: none;
		/* IE/Edge */
	}

	.category-nav::-webkit-scrollbar {
		display: none;
		/* Chrome/Safari */
	}

	.category-pill {
		background: white;
		border: 1px solid rgba(79, 70, 229, 0.1);
		padding: 0.8rem 2rem;
		border-radius: 999px;
		font-weight: 500;
		color: var(--text-muted);
		white-space: nowrap;
		transition: all 0.2s ease;
		cursor: pointer;
		text-decoration: none;
		display: flex;
		align-items: center;
		gap: 0.8rem;
	}

	.category-pill:hover {
		background: #f8fafc;
		color: var(--brand);
		transform: translateY(-2px);
	}

	.category-pill.active {
		background: var(--brand);
		color: white;
		border-color: var(--brand);
		box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
	}

	/* --- Promo Marquee --- */
	.promo-bar {
		background: linear-gradient(90deg, #10b981, #059669);
		color: white;
		padding: 1rem 0;
		margin-bottom: 2.4rem;
		border-radius: var(--radius-sm);
		overflow: hidden;
		position: relative;
		display: flex;
		align-items: center;
	}

	.promo-content {
		display: flex;
		white-space: nowrap;
		animation: marquee 20s linear infinite;
	}

	.promo-item {
		padding: 0 2rem;
		font-weight: 600;
		font-size: 1.4rem;
		display: flex;
		align-items: center;
		gap: 1rem;
	}

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

		100% {
			transform: translateX(-100%);
		}
	}

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



/* Product Grid - Responsive */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.5rem;
}

@media (max-width: 640px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		/* Force 2 columns on mobile */
		gap: 1rem;
	}

	.product-card .btn {
		padding: 0.5rem !important;
		/* Smaller buttons on mobile */
	}

	/* Mobile Typography Refinement */
	body {
		font-size: 1.5rem;
		/* Slight reduction for better information density */
	}

	h1,
	.hero-copy h1 {
		font-size: 2.8rem !important;
		/* Punchy but not overwhelming */
		line-height: 1.1;
	}

	h2,
	.section-heading h2 {
		font-size: 2.2rem !important;
	}

	h3,
	.hero-card h3 {
		font-size: 1.8rem !important;
	}

	/* Header/Nav Brand */
	.brand {
		font-size: 1.8rem;
		/* Cleaner proportional size */
	}

	.brand-logo {
		width: 36px;
		height: 36px;
	}

	.footer-cta h2 {
		font-size: 2.4rem;
	}

	.footer-main .brand {
		font-size: 1.8rem;
	}
}

/* Mobile Polish */
@media (max-width: 768px) {

	/* Better Mobile Navigation */
	.nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 80%;
		max-width: 320px;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(20px);
		padding: 8rem 2rem 2rem;
		flex-direction: column;
		align-items: flex-start;
		transform: translateX(100%);
		transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		z-index: 999;
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
	}

	.nav.open {
		transform: translateX(0);
	}

	/* Prevent Zoom on Inputs */
	input,
	select,
	textarea {
		font-size: 16px !important;
	}

	/* Adjust Footer for Mobile */
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.footer-nav-cols {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.floating-avatar {
		display: none;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1.5rem;
	}
}

/* Footer Styles - Light Clean (WorkScale Clone) */
.site-footer {
	background: #ffffff;
	padding: 0 0 2rem;
	margin-top: auto;
	color: #475569;
	font-family: 'Inter', sans-serif;
	border-top: none;
	position: relative;
	overflow: hidden;
}

/* CTA Section */
.footer-cta {
	text-align: center;
	padding: 8rem 0 6rem;
	position: relative;
	background: radial-gradient(circle at center, rgba(79, 70, 229, 0.03) 0%, transparent 70%);
}

.cta-icon {
	width: 48px;
	height: 48px;
	background: #0f172a;
	color: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin: 0 auto 2rem;
}

.footer-cta h2 {
	font-size: 3.6rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.footer-cta p {
	font-size: 1.6rem;
	color: #64748b;
	margin-bottom: 3rem;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

.btn.solid-dark {
	background: #0f172a;
	color: white;
	padding: 1.2rem 2.4rem;
	border-radius: 8px;
	font-weight: 600;
}

.btn.outline-light {
	background: white;
	color: #0f172a;
	border: 1px solid #e2e8f0;
	padding: 1.2rem 2.4rem;
	border-radius: 8px;
	font-weight: 600;
}

/* Floating Avatars */
.floating-avatar {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: white;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	border: 1px solid #f1f5f9;
	font-weight: 600;
	font-size: 0.85rem;
	color: #0f172a;
	animation: float 6s ease-in-out infinite;
}

.floating-avatar img {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

@keyframes float {

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

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

/* Logo Grid */
.logo-grid {
	display: flex;
	justify-content: center;
	gap: 4rem;
	flex-wrap: wrap;
	color: #94a3b8;
	padding-bottom: 6rem;
	opacity: 0.6;
}

.logo-grid i {
	transition: color 0.3s;
}

.logo-grid i:hover {
	color: #0f172a;
}

.footer-divider {
	height: 1px;
	background: #e2e8f0;
	/* Very light subtle line */
	margin: 0 auto 6rem;
	width: 100%;
}

/* Main Footer */
.footer-main {
	display: grid;
	grid-template-columns: 1.5fr 3fr;
	gap: 4rem;
	margin-bottom: 6rem;
}

.footer-brand-col .brand {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-weight: 700;
	font-size: 1.8rem;
	color: #0f172a;
	margin-bottom: 1.5rem;
}

.footer-brand-col p {
	font-size: 1.4rem;
	color: #64748b;
	max-width: 280px;
	line-height: 1.6;
}

.footer-nav-cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.footer-nav-col h4 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 2rem;
}

.footer-nav-col a {
	display: block;
	font-size: 1.4rem;
	color: #64748b;
	margin-bottom: 1.2rem;
	transition: color 0.2s;
}

.footer-nav-col a:hover {
	color: var(--brand);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	padding-bottom: 2rem;
	font-size: 1.3rem;
	color: #94a3b8;
}

.social-icons {
	display: flex;
	gap: 1.5rem;
	font-size: 1.4rem;
}

.social-icons a {
	color: #94a3b8;
	transition: color 0.2s;
}

.social-icons a:hover {
	color: #0f172a;
}

@media (max-width: 1024px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

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

@media (max-width: 640px) {
	.footer-cta h2 {
		font-size: 2.8rem;
	}

	.footer-nav-cols {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1.5rem;
	}

	.floating-avatar {
		display: none;
	}
}

/* Password Toggle Global */
.password-wrapper {
	position: relative;
	width: 100%;
}

.password-wrapper input {
	padding-right: 42px !important;
}

.toggle-password {
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: #64748b;
	/* Stronger grey */
	cursor: pointer;
	padding: 8px;
	/* Larger touch target */
	font-size: 1.6rem;
	/* Larger icon */
	z-index: 100;
	/* Ensure top layer */
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.toggle-password:hover {
	color: var(--brand);
	background: rgba(79, 70, 229, 0.1);
}

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