﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
:root { --bg: #0f1733; --surface: #1a274d; --surface-2: #24345f; --text: #f8f6f1; --muted:#ccd5ea; --primary:#f2c66d; --primary-rgb: 242, 198, 109; --accent-pink:#ff5fbf; --accent-pink-rgb: 255, 95, 191; --accent-purple:#8a63ff; --accent-purple-rgb: 138, 99, 255; --card:#1d2c6b; --shadow-soft: 0 14px 30px rgba(7, 10, 24, 0.18); --shadow-medium: 0 20px 42px rgba(7, 10, 24, 0.26); --ease-out: cubic-bezier(.22,.61,.36,1); }
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 4px;
	width: 0%;
	z-index: 1000;
	background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink) 50%, var(--primary));
	box-shadow: 0 0 14px rgba(var(--primary-rgb), 0.65);
}
.sticky-offer {
	position: fixed;
	top: 10px;
	left: 50%;
	transform: translateX(-50%) translateY(-120%);
	width: min(960px, calc(100% - 1.2rem));
	padding: 0.52rem 0.62rem 0.52rem 0.9rem;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(138,99,255,0.92), rgba(255,95,191,0.9));
	border: 1px solid rgba(255,255,255,0.24);
	box-shadow: 0 16px 34px rgba(15, 8, 38, 0.44);
	display: flex;
	align-items: center;
	gap: 0.58rem;
	z-index: 1100;
	transition: transform .32s var(--ease-out), opacity .24s ease;
	opacity: 0;
}
.sticky-offer.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.sticky-offer p { margin: 0; font-size: 0.82rem; line-height: 1.4; color: #fff4ff; flex: 1; }
.sticky-offer .btn { margin-right: 0; padding: 0.45rem 0.74rem; border-radius: 999px; font-size: 0.75rem; flex-shrink: 0; }
.sticky-offer-close {
	border: 0;
	background: rgba(255,255,255,0.18);
	color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1;
	flex-shrink: 0;
}
@media (max-width: 520px) {
	.sticky-offer {
		flex-wrap: wrap;
		padding: 0.65rem 0.65rem 0.55rem;
		bottom: 12px;
		top: auto;
		transform: translateX(-50%) translateY(120%);
		border-radius: 16px;
		width: calc(100% - 1.2rem);
	}
	.sticky-offer.show { transform: translateX(-50%) translateY(0); }
	.sticky-offer p { font-size: 0.8rem; width: 100%; }
	.sticky-offer .btn { font-size: 0.8rem; padding: 0.48rem 0.9rem; }
}
body { font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #1a1036; background-image: linear-gradient(rgba(28, 10, 48, 0.56), rgba(22, 8, 40, 0.66)), url('img/site-background.jpeg'); background-position: center top; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; color: var(--text); min-height: 100vh; padding: 1rem; transition: background .25s ease, color .25s ease; overflow-x: hidden; line-height: 1.55; letter-spacing: 0.01em; }
body::before { content: ''; position: fixed; inset: 0; background: radial-gradient(circle at 10% 15%, rgba(255,255,255,0.15), transparent 35%), radial-gradient(circle at 90% 70%, rgba(255,190,0,0.08), transparent 30%); pointer-events: none; z-index: -1; opacity: .9; animation: pulse 7s infinite alternate ease-in-out; }
body::after { content: ''; position: fixed; inset: 0; background: radial-gradient(circle at 20% 80%, rgba(var(--accent-pink-rgb), 0.2), transparent 42%), radial-gradient(circle at 85% 20%, rgba(var(--accent-purple-rgb), 0.16), transparent 33%); filter: blur(2px); pointer-events: none; z-index: -1; animation: ambientShift 9s ease-in-out infinite alternate; }
@keyframes pulse { from { opacity: 0.65; } to { opacity: 1; } }
@keyframes ambientShift { from { transform: translateY(0px) scale(1); opacity: 0.8; } to { transform: translateY(-10px) scale(1.03); opacity: 1; } }
body.light-theme { background-color: #fff3fc; background-image: linear-gradient(rgba(255, 243, 252, 0.62), rgba(246, 234, 255, 0.74)), url('img/site-background.jpeg'); background-position: center top; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; color: #4d2c73; }
body.light-theme .page { background: rgba(255,250,255,0.95); color: #4d2c73; }
.page { animation: fadeInUp .6s ease both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }
.section-heading, .hero, .card { animation: fadeInUp .5s ease both; }
body.light-theme .logo-title, body.light-theme .logo-tag, body.light-theme .topbar nav a { color: #5b2f86; }
body.light-theme .hero { background: #ffffff00; }
.page { width: min(1080px, 100%); margin: auto; background: linear-gradient(160deg, rgba(41, 18, 78, 0.88), rgba(29, 12, 60, 0.88)); border-radius: 28px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 26px 64px rgba(0,0,0,0.42); padding: 1.5rem; backdrop-filter: blur(7px); transition: all .25s var(--ease-out); }
.topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.15rem; gap: 0.8rem; padding-bottom: 0.2rem; }
.topbar { position: relative; }
.topbar-actions {
	display: flex;
	align-items: center;
	gap: 0.42rem;
	margin-left: auto;
	z-index: 2;
}
.logo-wrap { display: flex; align-items: center; gap: 0.6rem; }
.home-link { text-decoration: none; color: inherit; }
.logo-mark { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #2b1746; font-weight: 800; background: var(--primary); font-size: 0.92rem; }
.logo-img { width: 74px; height: 74px; border-radius: 16px; object-fit: cover; border: 1px solid rgba(255,255,255,0.36); box-shadow: 0 14px 28px rgba(0,0,0,0.25); transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s var(--ease-out); }
.home-link:hover .logo-img { transform: translateY(-1px) scale(1.03); box-shadow: 0 14px 24px rgba(var(--accent-pink-rgb), 0.24); }
.logo-title { margin: 0; font-size: 1.12rem; font-weight: 800; color: var(--text); letter-spacing: 0.04em; }
.logo-tag { margin: 0; font-size: 0.76rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.main-nav { display: flex; gap: 0.45rem; position: absolute; left: 50%; transform: translateX(-50%); }
.main-nav a { color: var(--text); text-decoration: none; font-size: 0.83rem; font-weight: 700; letter-spacing: 0.03em; border: 1px solid rgba(255,255,255,0.2); padding: 0.42rem 0.86rem; border-radius: 999px; transition: background 0.25s ease, color 0.25s ease, transform 0.38s cubic-bezier(0.34,1.56,0.64,1), border-color 0.25s ease, box-shadow 0.3s ease, letter-spacing 0.25s ease; background: rgba(255,255,255,0.055); backdrop-filter: blur(8px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 8px rgba(0,0,0,0.18); position: relative; overflow: hidden; }
.main-nav a::before {
	content: '';
	position: absolute;
	top: -10%;
	left: -140%;
	width: 65%;
	height: 120%;
	background: linear-gradient(110deg, transparent 15%, rgba(255,255,255,0.38) 50%, transparent 85%);
	transition: left 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
	pointer-events: none;
	border-radius: 999px;
}
.hero-avatar { width: 280px; height: 360px; border-radius: 14px; background: linear-gradient(145deg, rgba(var(--accent-purple-rgb), 0.3), rgba(var(--accent-pink-rgb), 0.24)); display: grid; place-items: center; font-size: 2rem; font-weight: 800; color: #12243f; box-shadow: 0 18px 36px rgba(0,0,0,0.35); animation: heroPulse 2.6s ease-in-out infinite; border: 1px solid rgba(255,255,255,0.25); justify-self: end; overflow: hidden; padding: 0.45rem; }
.hero-logo { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; border-radius: 10px; background: rgba(31, 11, 52, 0.56); }
.zoom-on-scroll { transform: scale(1); will-change: transform, filter; transition: transform .16s linear, filter .2s ease; }
.main-nav a:hover { border-color: rgba(var(--accent-pink-rgb), 0.72); color: #fff; background: rgba(var(--accent-pink-rgb), 0.2); transform: translateY(-3px) scale(1.07); letter-spacing: 0.055em; box-shadow: 0 0 0 1px rgba(var(--accent-pink-rgb), 0.3), 0 8px 22px rgba(var(--accent-pink-rgb), 0.32), 0 0 30px rgba(var(--accent-pink-rgb), 0.12), inset 0 1px 0 rgba(255,255,255,0.18); }
.main-nav a:hover::before { left: 145%; }
.main-nav a.nav-active { border-color: rgba(var(--accent-pink-rgb), 0.55); background: rgba(var(--accent-pink-rgb), 0.14); color: #fff; box-shadow: 0 0 0 1px rgba(var(--accent-pink-rgb), 0.22), 0 4px 14px rgba(var(--accent-pink-rgb), 0.2), inset 0 1px 0 rgba(255,255,255,0.14); animation: navActivePulse 2.6s ease-in-out infinite; }
@keyframes navActivePulse { 0%,100% { box-shadow: 0 0 0 1px rgba(var(--accent-pink-rgb),0.22), 0 4px 14px rgba(var(--accent-pink-rgb),0.2), inset 0 1px 0 rgba(255,255,255,0.14); } 50% { box-shadow: 0 0 0 1px rgba(var(--accent-pink-rgb),0.45), 0 6px 20px rgba(var(--accent-pink-rgb),0.34), 0 0 22px rgba(var(--accent-pink-rgb),0.14), inset 0 1px 0 rgba(255,255,255,0.18); } }
.theme-btn, .mobile-menu-btn { border: 0; background: rgba(255,255,255,0.08); color: var(--text); border-radius: 10px; padding: 0.42rem 0.68rem; cursor: pointer; font-size: 0.95rem; transition: transform .2s var(--ease-out), background .2s var(--ease-out), box-shadow .2s var(--ease-out); }
.theme-btn { min-width: 52px; font-size: 1rem; }
.contrast-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 1px solid rgba(255,255,255,0.22);
	background: rgba(255,255,255,0.08);
	color: var(--text);
	border-radius: 10px;
	padding: 0.42rem 0.7rem;
	cursor: pointer;
	font-size: 0.86rem;
	font-weight: 800;
	transition: transform .2s var(--ease-out), background .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s ease;
}
.contrast-btn:hover {
	transform: translateY(-1px);
	background: rgba(var(--primary-rgb), 0.22);
	border-color: rgba(var(--primary-rgb), 0.45);
}
.contrast-btn.active {
	background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.28), rgba(var(--accent-pink-rgb), 0.2));
	border-color: rgba(var(--primary-rgb), 0.58);
	box-shadow: 0 6px 14px rgba(0,0,0,0.22);
}
.contrast-btn.contrast-strong {
	background: linear-gradient(135deg, rgba(116,72,168,0.92), rgba(210,108,164,0.86));
	color: #fff;
}
.contrast-btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	filter: grayscale(0.12);
}
.mobile-menu-btn { display: none; }
.hero { display: grid; grid-template-columns: 1fr 0.95fr; gap: 1.4rem; align-items: center; margin-bottom: 1.15rem; animation: heroFloat 4.5s ease-in-out infinite alternate; padding: 1.1rem; border-radius: 22px; background: linear-gradient(135deg, rgba(var(--accent-purple-rgb), 0.14), rgba(var(--accent-pink-rgb), 0.12)); border: 1px solid rgba(255,255,255,0.14); box-shadow: var(--shadow-soft); }
.hero#home {
	background-image: linear-gradient(rgba(43, 14, 70, 0.62), rgba(33, 10, 56, 0.76)), url('img/premium-section-bg.jpg');
	background-size: cover;
	background-position: center 18%;
	background-repeat: no-repeat;
	min-height: clamp(340px, 54vh, 480px);
	grid-template-columns: 1fr;
	align-items: center;
	justify-items: center;
	padding: 1rem;
}
.hero#home .hero-avatar { display: none; }
@keyframes heroFloat { from { transform: translateY(0); } to { transform: translateY(-5px); } }
@keyframes heroPulse { 0%, 100% { box-shadow: 0 7px 20px rgba(0,0,0,0.25); } 50% { box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.42); } }
.hero-left { display: grid; gap: 0.35rem; }
.hero#home .hero-left { min-height: 100%; width: min(100%, 760px); align-content: center; justify-items: center; text-align: center; max-width: 760px; margin: 0 auto; row-gap: 0.82rem; padding-top: 0; }
.hero#home .hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.55rem; }
.hero#home .hero-actions .btn { margin-right: 0; }
.hero#home .hero-pills { justify-content: center; }
.hero-main-title {
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: clamp(1.72rem, 4vw, 2.5rem);
	line-height: 1.12;
	letter-spacing: 0.015em;
	color: #fff;
	text-shadow: 0 8px 22px rgba(var(--accent-pink-rgb), 0.28);
	max-width: 720px;
}
.hero-slogan {
	max-width: 650px;
	font-size: 0.92rem;
	line-height: 1.6;
	color: #efe6ff;
}
.hero-mini-trust {
	font-size: 0.79rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
	color: #f2d587;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.2rem; }
.hero-pills span {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	border-radius: 999px;
	padding: 0.3rem 0.6rem;
	border: 1px solid rgba(255,255,255,0.28);
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(2px);
}
.hero-highlight {
	max-width: 520px;
	margin-top: 0.35rem;
	padding: 0.85rem 0.9rem;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.16);
	background: linear-gradient(145deg, rgba(8, 14, 40, 0.44), rgba(var(--accent-pink-rgb), 0.16));
	box-shadow: 0 12px 26px rgba(0,0,0,0.18);
	backdrop-filter: blur(10px);
}
.hero-highlight strong {
	display: block;
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: 0.95rem;
	color: #ffffff;
	margin-bottom: 0.3rem;
}
.hero-highlight p {
	font-size: 0.82rem;
	line-height: 1.5;
	color: #e6ebff;
}
.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.5rem;
	margin-top: 1.15rem;
	width: min(100%, 760px);
}
.hero-stats article {
	border-radius: 14px;
	padding: 0.72rem 0.6rem;
	border: 1px solid rgba(255,255,255,0.16);
	background: linear-gradient(140deg, rgba(var(--accent-purple-rgb), 0.2), rgba(var(--accent-pink-rgb), 0.16));
	backdrop-filter: blur(10px);
	text-align: center;
}
.hero-stats strong {
	font-size: 1.05rem;
	line-height: 1.05;
	color: #fff;
	display: block;
}
.hero-stats span { font-size: 0.69rem; color: #d4dbff; letter-spacing: 0.03em; }
.hero-trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 0.65rem;
	width: min(100%, 760px);
}
.hero-trust span {
	padding: 0.42rem 0.7rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);
	font-size: 0.74rem;
	font-weight: 700;
	color: #eef2ff;
	letter-spacing: 0.04em;
}
.logo-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 0.35rem;
	width: min(100%, 760px);
}
.logo-strip span {
	padding: 0.36rem 0.64rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.09);
	border: 1px solid rgba(255,255,255,0.17);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #f4edff;
}
.trust-marquee {
	width: min(100%, 760px);
	overflow: hidden;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.16);
	background: rgba(255,255,255,0.06);
	padding: 0.32rem 0;
	margin-top: 0.2rem;
}
.trust-marquee-track {
	display: inline-flex;
	gap: 0.65rem;
	white-space: nowrap;
	padding-left: 0.7rem;
	animation: trustMove 24s linear infinite;
}
.trust-marquee-track span {
	padding: 0.26rem 0.58rem;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	color: #efe3ff;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(255,255,255,0.06);
}
@keyframes trustMove {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.scroll-cue {
	justify-self: center;
	margin-top: 0.2rem;
	text-decoration: none;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.28rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.7);
	animation: cueFloat 1.9s ease-in-out infinite;
	transition: color .2s ease;
}
.scroll-cue:hover { color: #fff; }
.scroll-cue-text { display: block; }
.scroll-cue-arrow {
	display: block;
	width: 22px;
	height: 22px;
	position: relative;
}
.scroll-cue-arrow::before,
.scroll-cue-arrow::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 9px;
	height: 9px;
	border-right: 2.5px solid rgba(255,255,255,0.9);
	border-bottom: 2.5px solid rgba(255,255,255,0.9);
	border-radius: 1px;
}
.scroll-cue-arrow::before { top: 0; animation: arrowFade 1.9s ease-in-out infinite; }
.scroll-cue-arrow::after  { top: 7px; animation: arrowFade 1.9s ease-in-out infinite 0.22s; }
@keyframes arrowFade {
	0%,100% { opacity: 0.18; }
	50%     { opacity: 1; }
}
@keyframes cueFloat {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(7px); }
}
.eyebrow { letter-spacing: 0.08em; font-size: 0.75rem; text-transform: uppercase; opacity: 0.8; color: #c7d1ff; }
.hero-note { max-width: 420px; font-size: 0.88rem; color: #eef2ff; line-height: 1.45; text-shadow: 0 4px 16px rgba(0,0,0,0.22); }
h1 { font-family: 'Space Grotesk', 'Manrope', sans-serif; font-size: clamp(2rem, 6vw, 2.95rem); margin-bottom: 0.2rem; color: #fff; letter-spacing: 0.01em; text-shadow: 0 6px 20px rgba(var(--accent-pink-rgb), 0.32); }
body.light-theme h1 { color: #0f1f46; }
.subtitle { color: #ebddff; max-width: 620px; line-height: 1.45; }
body.light-theme .subtitle { color: #76509f; }
body.light-theme .hero { background: linear-gradient(135deg, rgba(var(--accent-purple-rgb), 0.12), rgba(var(--accent-pink-rgb), 0.1)); border-color: rgba(16,42,93,0.16); }
body.light-theme .hero#home { background-image: linear-gradient(rgba(244, 247, 255, 0.55), rgba(232, 237, 250, 0.75)), url('img/premium-section-bg.jpg'); background-position: center 18%; }
body.light-theme .hero-main-title { color: #602f89; text-shadow: 0 8px 22px rgba(var(--accent-purple-rgb), 0.2); }
body.light-theme .hero-slogan { color: #68418f; }
body.light-theme .hero-mini-trust { color: #a9772d; }
body.light-theme .hero-note { color: #6b4394; }
body.light-theme .hero-pills span { border-color: rgba(116,72,168,0.22); background: rgba(116,72,168,0.08); color: #683d96; }
body.light-theme .hero-highlight { border-color: rgba(116,72,168,0.16); background: linear-gradient(145deg, rgba(255,255,255,0.5), rgba(var(--accent-pink-rgb), 0.14)); }
body.light-theme .hero-highlight strong { color: #5f358d; }
body.light-theme .hero-highlight p { color: #7a57a1; }
body.light-theme .hero-stats article { border-color: rgba(116,72,168,0.2); background: linear-gradient(140deg, rgba(var(--accent-purple-rgb), 0.08), rgba(var(--primary-rgb), 0.12)); }
body.light-theme .hero-stats strong { color: #62388d; }
body.light-theme .hero-stats span { color: #6f4b98; }
body.light-theme .hero-trust span { color: #683d96; border-color: rgba(116,72,168,0.14); background: rgba(255,255,255,0.35); }
body.light-theme .logo-strip span { color: #66388f; border-color: rgba(116,72,168,0.14); background: rgba(255,255,255,0.45); }
body.light-theme .scroll-cue { color: #683d96; border-color: rgba(116,72,168,0.18); background: rgba(255,255,255,0.45); }
body.light-theme .btn.hero-surprise {
	background: linear-gradient(145deg, rgba(255,255,255,0.72), rgba(var(--accent-purple-rgb),0.16));
	border-color: rgba(116,72,168,0.35);
	color: #5c3388;
	box-shadow: 0 8px 22px rgba(116,72,168,0.16);
}
body.light-theme .btn.hero-surprise::after { border-color: rgba(184,134,57,0.52); }
.btn { display: inline-block; text-decoration: none; border: 0; border-radius: 12px; padding: 0.68rem 1rem; font-weight: 700; letter-spacing: 0.02em; cursor: pointer; transition: transform .18s var(--ease-out), background .18s var(--ease-out), box-shadow .22s var(--ease-out), border-color .22s var(--ease-out); margin-right: 0.35rem; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn.primary { background: var(--primary); color: #fff; }
.btn.hero-cta {
	position: relative;
	overflow: hidden;
	padding: 0.85rem 2.2rem;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	border-radius: 999px;
	background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f59e0b 100%);
	background-size: 200% 200%;
	background-position: 0% 50%;
	color: #fff !important;
	border: 0;
	animation: ctaGradientShift 3s ease infinite, ctaPulse 2.2s ease-in-out infinite;
	transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease;
}
.btn.hero-cta::before {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 999px;
	background: linear-gradient(135deg, #a855f7, #ec4899, #f59e0b, #a855f7);
	background-size: 300% 300%;
	animation: ctaGradientShift 3s ease infinite;
	z-index: -1;
	filter: blur(10px);
	opacity: 0.65;
}
.btn.hero-cta::after {
	content: '';
	position: absolute;
	top: 0; left: -110%;
	width: 55%;
	height: 100%;
	background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.38) 50%, transparent 80%);
	animation: ctaSweep 2.6s ease-in-out infinite;
	pointer-events: none;
}
.btn.hero-cta:hover { transform: translateY(-5px) scale(1.07) !important; box-shadow: 0 0 0 5px rgba(168,85,247,0.22), 0 18px 44px rgba(168,85,247,0.55) !important; }
.btn.hero-surprise {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.42rem;
	padding: 0.82rem 1.12rem;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.28);
	background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(var(--accent-purple-rgb), 0.2));
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.03em;
	overflow: hidden;
	backdrop-filter: blur(8px);
	animation: surpriseWobble 2.8s ease-in-out infinite;
	transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), border-color .25s ease, box-shadow .25s ease;
}
.btn.hero-surprise::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,0.34) 50%, transparent 82%);
	transform: translateX(-130%);
	animation: surpriseSweep 2.9s ease-in-out infinite;
	pointer-events: none;
}
.btn.hero-surprise::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border: 1px dashed rgba(255,214,132,0.62);
	opacity: 0.75;
	pointer-events: none;
}
.btn.hero-surprise:hover {
	transform: translateY(-4px) scale(1.05) rotate(-1deg) !important;
	border-color: rgba(255,214,132,0.85);
	box-shadow: 0 10px 30px rgba(var(--accent-pink-rgb),0.28), 0 0 0 4px rgba(255,214,132,0.12);
}
.surprise-icon {
	font-size: 1.05rem;
	animation: giftBounce 1.25s ease-in-out infinite;
	transform-origin: center bottom;
}
.surprise-label { font-size: 0.82rem; }
@keyframes ctaGradientShift {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
@keyframes ctaPulse {
	0%,100% { box-shadow: 0 0 0 0 rgba(168,85,247,0.5), 0 8px 28px rgba(168,85,247,0.38); }
	50%     { box-shadow: 0 0 0 10px rgba(168,85,247,0.0), 0 12px 38px rgba(236,72,153,0.5); }
}
@keyframes ctaSweep {
	0%       { left: -110%; }
	55%,100% { left: 160%; }
}
@keyframes surpriseSweep {
	0% { transform: translateX(-130%); }
	58%,100% { transform: translateX(140%); }
}
@keyframes surpriseWobble {
	0%,100% { transform: translateY(0) rotate(0); }
	20% { transform: translateY(-1px) rotate(-0.8deg); }
	40% { transform: translateY(0) rotate(0.8deg); }
	60% { transform: translateY(-1px) rotate(-0.45deg); }
	80% { transform: translateY(0) rotate(0.45deg); }
}
@keyframes giftBounce {
	0%,100% { transform: translateY(0) rotate(0); }
	50% { transform: translateY(-2px) rotate(-8deg); }
}
.btn.ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.3); }

.card { background: linear-gradient(160deg, rgba(42,23,79,0.9), rgba(33,18,66,0.9)); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 1.08rem; margin-bottom: 0.9rem; }
.section-heading { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.72rem; }
.section-heading h2 { margin: 0; font-family: 'Space Grotesk', 'Manrope', sans-serif; font-size: 1.4rem; letter-spacing: 0.01em; color: var(--text); }
.section-heading span { font-size: 1.1rem; }
.card { transition: transform .24s var(--ease-out), box-shadow .24s var(--ease-out), border-color .24s var(--ease-out); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); }
.card p { color: var(--muted); line-height: 1.65; }
.about {
	position: relative;
	overflow: hidden;
	padding: 1.15rem;
	background:
		linear-gradient(120deg, rgba(25, 8, 42, 0.86), rgba(36, 11, 56, 0.72)),
		url('img/about-section-bg.avif');
	background-size: cover;
	background-position: center 28%;
	border: 1px solid rgba(255,255,255,0.14);
	box-shadow: 0 18px 42px rgba(8, 6, 20, 0.28);
	transition: background-position .28s ease, box-shadow .28s ease;
}
.about::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 18% 22%, rgba(var(--accent-pink-rgb), 0.26), transparent 32%), radial-gradient(circle at 85% 78%, rgba(var(--primary-rgb), 0.18), transparent 28%);
	pointer-events: none;
}
.about::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,0.18), rgba(var(--accent-pink-rgb), 0.14) 16%, transparent 40%);
	opacity: 0;
	transition: opacity .22s ease;
	pointer-events: none;
}
.about.is-interactive::after { opacity: 1; }
.about-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.9fr);
	gap: 1rem;
	align-items: stretch;
	margin-top: 0.55rem;
	transform: translate3d(var(--shift-x), var(--shift-y), 0);
	transition: transform .22s ease;
}
.about-copy {
	display: grid;
	gap: 0.8rem;
	align-content: start;
	opacity: 0;
	transform: translateY(24px);
}
.about-kicker {
	display: inline-flex;
	justify-self: start;
	padding: 0.38rem 0.72rem;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.22);
	background: rgba(255,255,255,0.08);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff1c6;
	backdrop-filter: blur(8px);
}
.about-title {
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: clamp(1.45rem, 2.7vw, 2.1rem);
	line-height: 1.18;
	color: #fff;
	max-width: 580px;
	text-shadow: 0 10px 24px rgba(0,0,0,0.24);
}
.about-copy p {
	max-width: 620px;
	color: #ede7ff;
	font-size: 0.92rem;
	line-height: 1.7;
}
.about-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.6rem;
	margin-top: 0.2rem;
}
.about-metrics article {
	padding: 0.8rem 0.75rem;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.14);
	background: linear-gradient(145deg, rgba(var(--accent-purple-rgb), 0.24), rgba(var(--accent-pink-rgb), 0.12));
	backdrop-filter: blur(10px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}
.about-metrics strong {
	display: block;
	margin-bottom: 0.28rem;
	font-size: 0.92rem;
	color: #ffffff;
}
.about-metrics span {
	display: block;
	font-size: 0.76rem;
	line-height: 1.5;
	color: #dcd1ff;
}
.about-panel {
	padding: 0.95rem;
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,0.16);
	background: linear-gradient(160deg, rgba(14, 10, 28, 0.46), rgba(var(--accent-purple-rgb), 0.18));
	backdrop-filter: blur(12px);
	display: grid;
	gap: 0.8rem;
	align-content: start;
	min-height: 100%;
	opacity: 0;
	transform: translateY(28px) scale(0.98);
}
.about-panel-label {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #f6d58a;
}
.about-badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}
.about-badge-row span {
	padding: 0.38rem 0.6rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.16);
	font-size: 0.72rem;
	font-weight: 700;
	color: #f5eeff;
}
.about-panel-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.55rem;
}
.about-panel-stats article {
	padding: 0.7rem 0.55rem;
	border-radius: 14px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	text-align: center;
	backdrop-filter: blur(6px);
	opacity: 0;
	transform: translateY(18px);
}
.about-panel-stats strong {
	display: block;
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: 1.02rem;
	color: #ffffff;
	margin-bottom: 0.18rem;
}
.about-panel-stats span {
	display: block;
	font-size: 0.71rem;
	line-height: 1.45;
	color: #ddd2ff;
}
.about-feature-card {
	padding: 0.9rem;
	border-radius: 18px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.about-feature-card h4 {
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: 1rem;
	color: #ffffff;
	margin-bottom: 0.65rem;
}
.about-feature-card ul {
	list-style: none;
	display: grid;
	gap: 0.48rem;
	color: #f9f9ff;
}
.about-feature-card li {
	padding: 0.52rem 0.6rem;
	border-radius: 12px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	font-size: 0.82rem;
	line-height: 1.5;
}
.about.active-page .about-copy {
	animation: aboutCopyReveal .65s ease forwards;
}
.about.active-page .about-panel {
	animation: aboutPanelReveal .7s .12s ease forwards;
}
.about.active-page .about-metrics article {
	animation: aboutMetricReveal .55s ease forwards;
}
.about.active-page .about-metrics article:nth-child(1) { animation-delay: 0.12s; }
.about.active-page .about-metrics article:nth-child(2) { animation-delay: 0.2s; }
.about.active-page .about-metrics article:nth-child(3) { animation-delay: 0.28s; }
.about.active-page .about-panel-stats article {
	animation: aboutMetricReveal .55s ease forwards;
}
.about.active-page .about-panel-stats article:nth-child(1) { animation-delay: 0.24s; }
.about.active-page .about-panel-stats article:nth-child(2) { animation-delay: 0.32s; }
.about.active-page .about-panel-stats article:nth-child(3) { animation-delay: 0.4s; }
@keyframes aboutCopyReveal {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes aboutPanelReveal {
	from { opacity: 0; transform: translateY(28px) scale(0.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes aboutMetricReveal {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}
.skills {
	position: relative;
	overflow: hidden;
	background: linear-gradient(145deg, rgba(34, 11, 53, 0.72), rgba(22, 10, 42, 0.82)), url('img/premium-section-bg.jpg');
	background-size: cover;
	background-position: center 26%;
	border-color: rgba(255,255,255,0.14);
}
.skills::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 14% 18%, rgba(var(--accent-pink-rgb), 0.18), transparent 28%), radial-gradient(circle at 86% 76%, rgba(var(--primary-rgb), 0.14), transparent 24%);
	pointer-events: none;
}
.skills > * { position: relative; z-index: 1; }
.services-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) auto;
	gap: 0.8rem;
	align-items: end;
	margin-bottom: 0.95rem;
}
.services-copy {
	display: grid;
	gap: 0.5rem;
}
.services-kicker {
	display: inline-flex;
	justify-self: start;
	padding: 0.38rem 0.72rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.16);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffe39b;
}
.services-title {
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: clamp(1.35rem, 2.4vw, 1.95rem);
	line-height: 1.16;
	color: #ffffff;
	max-width: 640px;
}
.services-copy p {
	max-width: 640px;
	color: #ddd5ff;
	font-size: 0.9rem;
	line-height: 1.68;
}
.services-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45rem;
}
.services-strip span {
	padding: 0.42rem 0.7rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	font-size: 0.72rem;
	font-weight: 700;
	color: #f0e9ff;
}
.services-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
	gap: 0.9rem;
	align-items: stretch;
}
.skills .skill-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.55rem; }
.service-tags {
	align-content: start;
}
.services-left {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
.service-mini-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}
.service-mini-stat {
	padding: 0.72rem 0.55rem;
	border-radius: 14px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.12);
	backdrop-filter: blur(8px);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
	display: grid;
	gap: 0.16rem;
	text-align: center;
	transition: background .2s ease, border-color .2s ease;
}
.service-mini-stat:hover { background: rgba(var(--accent-purple-rgb), 0.14); border-color: rgba(var(--accent-purple-rgb), 0.32); }
.service-mini-stat strong {
	font-size: 1.22rem;
	font-weight: 800;
	color: #ffe39b;
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	letter-spacing: -0.01em;
}
.service-mini-stat span {
	font-size: 0.68rem;
	color: #c4b5e8;
	font-weight: 600;
	letter-spacing: 0.02em;
}
.service-tech-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.38rem;
}
.service-tech-tags span {
	padding: 0.32rem 0.66rem;
	border-radius: 999px;
	background: rgba(var(--accent-purple-rgb), 0.13);
	border: 1px solid rgba(var(--accent-purple-rgb), 0.28);
	font-size: 0.72rem;
	font-weight: 700;
	color: #cdb8ff;
	letter-spacing: 0.03em;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.service-tech-tags span:hover { background: rgba(var(--accent-purple-rgb), 0.26); border-color: rgba(var(--accent-purple-rgb), 0.5); color: #e5d8ff; }
.service-logo-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	padding: 1.2rem 1rem;
	text-align: center;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(var(--accent-purple-rgb), 0.18), rgba(var(--accent-pink-rgb), 0.12));
	border: 1px solid rgba(255,255,255,0.16);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 10px 28px rgba(0,0,0,0.22);
	backdrop-filter: blur(10px);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-logo-card:hover { transform: translateY(-3px) scale(1.015); border-color: rgba(var(--accent-pink-rgb), 0.38); box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 14px 34px rgba(var(--accent-pink-rgb), 0.2); }
.service-logo-info {
	display: grid;
	gap: 0.28rem;
}
.service-logo-info strong {
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: 1.18rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: 0.05em;
}
.service-logo-info > span {
	font-size: 0.74rem;
	font-weight: 700;
	color: #f0ca7f;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.service-logo-info p {
	font-size: 0.78rem;
	color: #c4b5e8;
	line-height: 1.55;
	max-width: 220px;
	margin: 0.1rem auto 0;
}
.service-logo-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.3rem;
	margin-top: 0.3rem;
}
.service-logo-pills span {
	padding: 0.26rem 0.6rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	font-size: 0.68rem;
	font-weight: 700;
	color: #e8e0ff;
	letter-spacing: 0.03em;
}
.service-logo-img {
	width: 100%;
	max-width: 260px;
	height: auto;
	border-radius: 18px;
	object-fit: cover;
	border: 1px solid rgba(255,255,255,0.22);
	box-shadow: 0 8px 24px rgba(0,0,0,0.32);
}
.skill {
	border-radius: 14px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	padding: 0.72rem 0.8rem;
	font-weight: 700;
	color: #f5f1ff;
	backdrop-filter: blur(8px);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.service-tag-item {
	display: flex;
	align-items: center;
	gap: 0.55rem;
}
.service-icon {
	width: 1.6rem;
	height: 1.6rem;
	display: inline-grid;
	place-items: center;
	border-radius: 8px;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.18);
	font-size: 0.88rem;
	flex-shrink: 0;
}
.skill:hover { background: rgba(var(--primary-rgb), 0.18); border-color: rgba(var(--primary-rgb), 0.45); }
.service-package-card {
	padding: 1rem;
	border-radius: 22px;
	background: linear-gradient(150deg, rgba(18, 12, 33, 0.52), rgba(var(--accent-purple-rgb), 0.14));
	border: 1px solid rgba(255,255,255,0.16);
	box-shadow: 0 18px 34px rgba(8, 10, 28, 0.24);
	display: grid;
	gap: 0.72rem;
	align-content: start;
}
.process-timeline {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.6rem;
	margin-top: 0.9rem;
}
.timeline-step {
	padding: 0.72rem 0.72rem 0.82rem;
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(var(--accent-purple-rgb),0.14));
	border: 1px solid rgba(255,255,255,0.12);
	display: grid;
	gap: 0.45rem;
}
.timeline-dot {
	width: fit-content;
	padding: 0.24rem 0.48rem;
	border-radius: 999px;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #ffe4b0;
	border: 1px solid rgba(255,255,255,0.22);
	background: rgba(255,255,255,0.08);
}
.timeline-step h4 { margin: 0; font-size: 0.86rem; color: #f7efff; }
.timeline-step p { margin: 0; font-size: 0.76rem; color: #d6c8f7; line-height: 1.55; }
.service-package-mark {
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #f0ca7f;
}
.service-package-card h4 {
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: 1.16rem;
	line-height: 1.3;
	color: #ffffff;
}
.service-package-card p {
	color: #ddd5ff;
	font-size: 0.88rem;
	line-height: 1.68;
}
.service-steps {
	padding: 0.74rem 0.78rem;
	border-radius: 14px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
}
.service-steps-title {
	font-size: 0.77rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #f2cc84;
	margin-bottom: 0.45rem;
}
.service-steps ol {
	margin: 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 0.38rem;
}
.service-steps li {
	font-size: 0.79rem;
	line-height: 1.52;
	color: #ece4ff;
}
.service-steps li strong { color: #ffffff; }
.service-package-list {
	list-style: none;
	display: grid;
	gap: 0.5rem;
}
.service-package-list li {
	padding: 0.62rem 0.72rem;
	border-radius: 14px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.1);
	font-size: 0.82rem;
	line-height: 1.55;
	color: #f2edff;
}
.service-package-card .btn {
	margin-top: 0.2rem;
	justify-self: start;
}
.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0.5rem; margin-top: 0.6rem; }
.posts-grid { display: grid; gap: 0.75rem; }
.post-card { background: #3a236d; border-radius: 12px; padding: 0.8rem; border: 1px solid rgba(255,255,255,0.08); }
.post-image { width: 100%; height: 170px; object-fit: contain; background: rgba(37, 16, 64, 0.45); border-radius: 10px; margin-bottom: 0.55rem; border: 1px solid rgba(255,255,255,0.18); }
.post-card h3 { margin: 0 0 0.35rem; color: #fff; }
.post-card p { margin: 0; color: #d7dbff; }
.post-card .meta { font-size: 0.8rem; color: #b9c2f0; margin-top: 0.4rem; }

.gallery {
	position: relative;
	overflow: hidden;
	background: linear-gradient(155deg, rgba(32, 12, 62, 0.94), rgba(22, 11, 48, 0.9));
	border-color: rgba(255,255,255,0.12);
}
.gallery::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 12% 18%, rgba(var(--accent-pink-rgb), 0.18), transparent 28%), radial-gradient(circle at 84% 78%, rgba(var(--primary-rgb), 0.12), transparent 24%);
	pointer-events: none;
}
.gallery > * { position: relative; z-index: 1; }
.gallery-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) auto;
	gap: 0.8rem;
	align-items: end;
	margin-bottom: 0.9rem;
}
.gallery-copy {
	display: grid;
	gap: 0.5rem;
}
.gallery-kicker {
	display: inline-flex;
	justify-self: start;
	padding: 0.38rem 0.72rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.16);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffe39b;
}
.gallery-title {
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: clamp(1.35rem, 2.4vw, 1.95rem);
	line-height: 1.16;
	color: #ffffff;
	max-width: 620px;
}
.gallery-copy p {
	max-width: 620px;
	color: #d9ddff;
	font-size: 0.9rem;
	line-height: 1.65;
}
.gallery-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45rem;
}
.gallery-strip span {
	padding: 0.42rem 0.7rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	font-size: 0.72rem;
	font-weight: 700;
	color: #f0e9ff;
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.8rem; margin-top: 0.2rem; }
.gallery-grid.two-items {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-areas:
		"top first"
		"second bottom";
	gap: 1rem 1.1rem;
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}
.gallery-grid.two-items .feature-right { grid-area: first; }
.gallery-grid.two-items .feature-left { grid-area: second; }
.gallery-grid.two-items .note-top { grid-area: top; }
.gallery-grid.two-items .note-bottom { grid-area: bottom; }
.gallery-note {
	align-self: center;
	padding: 0.9rem 0.92rem;
	border-radius: 16px;
	background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(var(--accent-purple-rgb), 0.14));
	border: 1px solid rgba(255,255,255,0.14);
	box-shadow: 0 14px 26px rgba(6, 10, 28, 0.22);
	display: grid;
	gap: 0.35rem;
}
.gallery-note h4 {
	margin: 0;
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: 0.98rem;
	color: #f7f3ff;
	letter-spacing: 0.01em;
}
.gallery-note p {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.62;
	color: #d8cbfa;
}
.gallery-item {
	background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
	border: 1px solid rgba(255,255,255,0.16);
	border-radius: 18px;
	overflow: hidden;
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
	box-shadow: 0 16px 32px rgba(6, 10, 28, 0.24);
}
.gallery-item img { width: 100%; height: 205px; object-fit: cover; background: rgba(37, 16, 64, 0.45); display: block; }
.gallery-item figcaption { padding: 0.85rem 0.85rem 0.95rem; display: grid; gap: 0.34rem; }
.gallery-item figcaption em {
	font-style: normal;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #f0ca7f;
}
.gallery-item figcaption strong { font-family: 'Space Grotesk', 'Manrope', sans-serif; font-size: 0.92rem; color: #f3f6ff; }
.gallery-item figcaption span { font-size: 0.8rem; line-height: 1.58; color: #ced6ff; }
.gallery-item figcaption p { margin: 0; font-size: 0.82rem; line-height: 1.62; color: #ced6ff; }
.gallery-item:hover {
	transform: translateY(-8px) scale(1.01);
	border-color: rgba(255,255,255,0.34);
	box-shadow: 0 20px 36px rgba(5, 11, 34, 0.42);
}

.testimonials {
	position: relative;
	overflow: hidden;
	background: linear-gradient(155deg, rgba(38, 12, 54, 0.94), rgba(24, 10, 44, 0.9));
	border-color: rgba(255,255,255,0.12);
}
.testimonials::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 16% 20%, rgba(var(--primary-rgb), 0.14), transparent 28%), radial-gradient(circle at 84% 76%, rgba(var(--accent-purple-rgb), 0.18), transparent 24%);
	pointer-events: none;
}
.testimonials > * { position: relative; z-index: 1; }
.testimonials-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) auto;
	gap: 0.8rem;
	align-items: end;
	margin-bottom: 0.95rem;
}
.testimonials-copy {
	display: grid;
	gap: 0.5rem;
}
.testimonials-kicker {
	display: inline-flex;
	justify-self: start;
	padding: 0.38rem 0.72rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.16);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffe39b;
}
.testimonials-title {
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: clamp(1.35rem, 2.4vw, 1.95rem);
	line-height: 1.16;
	color: #ffffff;
	max-width: 640px;
}
.testimonials-copy p {
	max-width: 620px;
	color: #ddd5ff;
	font-size: 0.9rem;
	line-height: 1.65;
}
.testimonials-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45rem;
}
.testimonials-strip span {
	padding: 0.42rem 0.7rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	font-size: 0.72rem;
	font-weight: 700;
	color: #f0e9ff;
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.8rem; margin-top: 0.25rem; }
.testimonial-card {
	border-radius: 20px;
	padding: 0.95rem;
	background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.14), rgba(var(--accent-purple-rgb), 0.12) 52%, rgba(255,255,255,0.04));
	border: 1px solid rgba(255,255,255,0.14);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	box-shadow: 0 16px 32px rgba(8, 10, 28, 0.24);
	display: grid;
	gap: 0.8rem;
}
.testimonial-card:hover { transform: translateY(-7px) scale(1.01); box-shadow: 0 18px 34px rgba(var(--primary-rgb), 0.24); border-color: rgba(255,255,255,0.26); }
.testimonial-card:nth-child(1) { animation: popIn .55s ease both; }
.testimonial-card:nth-child(2) { animation: popIn .55s .12s ease both; }
.testimonial-card:nth-child(3) { animation: popIn .55s .24s ease both; }
@keyframes popIn {
	from { opacity: 0; transform: translateY(18px) scale(0.97); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}
.testimonial-mark {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #f0ca7f;
}
.testimonial-card p {
	color: #f9eeff;
	margin-bottom: 0;
	font-size: 0.9rem;
	line-height: 1.7;
	position: relative;
	padding-top: 0.35rem;
}
.testimonial-card p::before {
	content: 'â€œ';
	position: absolute;
	left: -0.02rem;
	top: -0.28rem;
	font-size: 2rem;
	line-height: 1;
	color: rgba(255,255,255,0.18);
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
}
.testimonial-meta {
	display: grid;
	gap: 0.18rem;
	padding-top: 0.2rem;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.testimonial-meta h3 { color: #ffffff; font-size: 0.98rem; margin-bottom: 0; }
.testimonial-meta span { color: #e8cb9a; font-size: 0.82rem; }
.subscribe {
	position: relative;
	overflow: hidden;
	background: linear-gradient(155deg, rgba(34, 12, 58, 0.94), rgba(22, 11, 48, 0.9));
	border-color: rgba(255,255,255,0.12);
}
.subscribe::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 16% 24%, rgba(var(--accent-pink-rgb), 0.18), transparent 28%), radial-gradient(circle at 84% 74%, rgba(var(--primary-rgb), 0.12), transparent 24%);
	pointer-events: none;
}
.subscribe > * { position: relative; z-index: 1; }
.subscribe-offer-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 0.78rem;
}
.offer-pill {
	padding: 0.4rem 0.72rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: 1px solid rgba(255,255,255,0.18);
	background: rgba(255,255,255,0.08);
	color: #f5edff;
}
.offer-pill.hot {
	background: linear-gradient(135deg, rgba(255,110,120,0.28), rgba(255,171,90,0.2));
	border-color: rgba(255,165,140,0.46);
	color: #ffdcb8;
}
.offer-pill.discount {
	background: linear-gradient(135deg, rgba(var(--accent-pink-rgb),0.24), rgba(var(--accent-purple-rgb),0.2));
	border-color: rgba(var(--accent-pink-rgb),0.5);
	color: #ffe8fb;
}
.offer-pill.timer {
	background: rgba(255,255,255,0.07);
	border-color: rgba(255,255,255,0.22);
	color: #ddd1fb;
}
.subscribe-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) auto;
	gap: 0.8rem;
	align-items: end;
	margin-bottom: 0.95rem;
}
.subscribe-copy { display: grid; gap: 0.5rem; }
.subscribe-kicker {
	display: inline-flex;
	justify-self: start;
	padding: 0.38rem 0.72rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.16);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffe39b;
}
.subscribe-title {
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: clamp(1.35rem, 2.4vw, 1.95rem);
	line-height: 1.16;
	color: #ffffff;
	max-width: 640px;
}
.subscribe-copy p {
	max-width: 620px;
	color: #ddd5ff;
	font-size: 0.9rem;
	line-height: 1.65;
}
.subscribe-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45rem;
}
.subscribe-strip span,
.subscribe-benefits span,
.contact-points span {
	padding: 0.42rem 0.7rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	font-size: 0.72rem;
	font-weight: 700;
	color: #f0e9ff;
}
.subscribe-card-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.7rem;
	align-items: center;
	padding: 0.95rem;
	border-radius: 18px;
	background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(var(--accent-purple-rgb), 0.12));
	border: 1px solid rgba(255,255,255,0.12);
	box-shadow: 0 16px 30px rgba(8, 10, 28, 0.2);
}
.subscribe-row { display: flex; gap: 0.4rem; margin-top: 0; }
.subscribe-row.two-col input { width: 100%; }
.subscribe-benefits {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45rem;
}
.subscribe-row input { flex: 1; border-radius: 12px; border: 1px solid rgba(255,255,255,0.2); background: #2f1e5d; color: #fff; padding: 0.72rem 0.8rem; }
.subscribe-row input:focus { outline: none; border-color: var(--primary); }
.subscribe-cta {
	position: relative;
	overflow: hidden;
	padding-inline: 1.2rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	background: linear-gradient(135deg, #ef4f9f 0%, #9f57e7 55%, #f39c34 100%) !important;
	background-size: 200% 200%;
	animation: subscribeCtaShift 2.8s ease infinite;
	box-shadow: 0 10px 24px rgba(239,79,159,0.28);
}
.subscribe-cta::after {
	content: '';
	position: absolute;
	top: 0;
	left: -120%;
	width: 50%;
	height: 100%;
	background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
	animation: subscribeCtaSweep 2.4s ease-in-out infinite;
}
.subscribe-note {
	margin: 0;
	font-size: 0.76rem;
	font-weight: 600;
	color: #f2d9ff;
	letter-spacing: 0.01em;
}
.subscribe-social-proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.55rem;
	margin-top: 0.72rem;
}
.subscribe-social-proof article {
	padding: 0.72rem 0.62rem;
	border-radius: 14px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.14);
	text-align: center;
	display: grid;
	gap: 0.14rem;
}
.subscribe-social-proof strong {
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: 1.15rem;
	font-weight: 800;
	color: #ffe39b;
}
.subscribe-social-proof span {
	font-size: 0.71rem;
	color: #d4c8f7;
	font-weight: 600;
}
@keyframes subscribeCtaShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
@keyframes subscribeCtaSweep {
	0% { left: -120%; }
	60%, 100% { left: 170%; }
}
#subscribeResult, #contactResult { margin-top: 0.6rem; font-weight: 600; }
.contact {
	position: relative;
	overflow: hidden;
	background: linear-gradient(155deg, rgba(33, 12, 54, 0.95), rgba(20, 11, 43, 0.92));
	border-color: rgba(255,255,255,0.12);
}
.contact::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 16% 22%, rgba(var(--accent-purple-rgb), 0.16), transparent 28%), radial-gradient(circle at 82% 78%, rgba(var(--primary-rgb), 0.14), transparent 24%);
	pointer-events: none;
}
.contact > * { position: relative; z-index: 1; }
.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
	gap: 0.9rem;
	align-items: stretch;
}
.contact-copy {
	display: grid;
	gap: 0.55rem;
	align-content: start;
}
.contact-kicker {
	display: inline-flex;
	justify-self: start;
	padding: 0.38rem 0.72rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.16);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffe39b;
}
.contact-title {
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
	font-size: clamp(1.35rem, 2.4vw, 1.95rem);
	line-height: 1.16;
	color: #ffffff;
	max-width: 620px;
}
.contact-copy p {
	max-width: 560px;
	color: #ddd5ff;
	font-size: 0.9rem;
	line-height: 1.65;
}
.contact-points {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 0.2rem;
}
.contact-panel {
	padding: 1rem;
	border-radius: 20px;
	background: linear-gradient(150deg, rgba(255,255,255,0.08), rgba(var(--accent-purple-rgb), 0.12));
	border: 1px solid rgba(255,255,255,0.14);
	box-shadow: 0 16px 30px rgba(8, 10, 28, 0.2);
}
.contact-panel-label {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #f0ca7f;
	margin-bottom: 0.75rem;
}
.contact-form { display: grid; gap: 0.55rem; margin-top: 0; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.contact-form input, .contact-form textarea, .subscribe-row input { width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,0.2); background: #2f1e5d; color: #fff; padding: 0.72rem 0.8rem; }
.contact-form input:focus, .contact-form textarea:focus, .subscribe-row input:focus { outline: none; border-color: var(--primary); }
.subscribers {
	background: linear-gradient(155deg, rgba(33, 16, 70, 0.9), rgba(20, 10, 48, 0.92));
	border: 1px solid rgba(255,255,255,0.12);
	box-shadow: 0 18px 34px rgba(0,0,0,0.28);
}
.subscribers-layout {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0.8rem;
}
.subscribers-kicker {
	display: inline-block;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--primary);
	background: rgba(var(--primary-rgb), 0.14);
	border: 1px solid rgba(var(--primary-rgb), 0.35);
	margin-bottom: 0.5rem;
}
.subscribers-title { font-size: 1.2rem; margin-bottom: 0.45rem; }
.subscribers-copy p { color: var(--muted); font-size: 0.86rem; line-height: 1.55; margin-bottom: 0.7rem; }
.subscribers-points { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.7rem; }
.subscribers-points span {
	padding: 0.36rem 0.62rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	color: #f0e9ff;
}
.subscribers-panel {
	border-radius: 16px;
	padding: 0.9rem;
	border: 1px solid rgba(255,255,255,0.14);
	background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(var(--accent-purple-rgb), 0.1));
}
.subscribers-login-launch {
	position: relative;
	overflow: hidden;
	width: 100%;
	background: linear-gradient(120deg, #ff6cad, #9d62ff, #ffd36b) !important;
	background-size: 220% 220%;
	animation: subLaunchPulse 3s ease infinite;
	box-shadow: 0 12px 26px rgba(157, 98, 255, 0.32);
}
.subscribers-login-launch::after {
	content: '';
	position: absolute;
	top: 0;
	left: -120%;
	width: 46%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
	animation: subShine 2.4s ease infinite;
}
@keyframes subLaunchPulse {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
@keyframes subShine {
	0% { left: -120%; }
	100% { left: 130%; }
}
.subscribers-login-form {
	margin-top: 0.75rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem;
}
.subscribers-login-form input {
	width: 100%;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.2);
	background: #2f1e5d;
	color: #fff;
	padding: 0.72rem 0.8rem;
}
.subscribers-login-form input:focus { outline: none; border-color: var(--primary); }
.subscribers-login-actions { display: flex; gap: 0.45rem; flex-wrap: wrap; }
#subscribersLoginResult { margin-top: 0.6rem; min-height: 1.2em; font-size: 0.82rem; }
.contact-form textarea { resize: vertical; background: #331f63; }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.35rem; }
.page-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	padding: 0.26rem;
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(var(--accent-purple-rgb), 0.1));
	border: 1px solid rgba(255,255,255,0.12);
	backdrop-filter: blur(8px);
}
.page-status {
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #f8f9ff;
	padding: 0.42rem 0.72rem;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(var(--accent-purple-rgb), 0.32), rgba(var(--accent-pink-rgb), 0.22));
	border: 1px solid rgba(255,255,255,0.18);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.page-controls .btn {
	margin-right: 0;
	font-size: 0.88rem;
	min-width: 108px;
	border-radius: 999px;
	padding: 0.56rem 0.9rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	position: relative;
	overflow: hidden;
}
.page-controls .btn.ghost {
	background: linear-gradient(135deg, rgba(var(--accent-purple-rgb), 0.28), rgba(var(--accent-pink-rgb), 0.24));
	color: #ffffff;
	border: 1px solid rgba(255,255,255,0.38);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 10px 22px rgba(11, 12, 34, 0.3);
}
.page-controls .btn.ghost::before {
	content: '';
	position: absolute;
	top: 0;
	left: -120%;
	width: 52%;
	height: 100%;
	background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.38) 50%, transparent 80%);
	transition: left .45s ease;
}
.page-controls .btn.ghost:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	filter: saturate(0.7);
}
.page-controls .btn.ghost:not(:disabled) {
	transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s var(--ease-out), border-color .2s var(--ease-out);
}
.page-controls .btn.ghost:not(:disabled):hover {
	transform: translateY(-3px) scale(1.03);
	background: linear-gradient(135deg, rgba(var(--accent-pink-rgb), 0.34), rgba(var(--accent-purple-rgb), 0.28));
	border-color: rgba(255,255,255,0.72);
	box-shadow: 0 0 0 1px rgba(255,255,255,0.24), 0 14px 30px rgba(var(--accent-pink-rgb), 0.24);
}
.page-controls .btn.ghost:not(:disabled):hover::before { left: 145%; }

.faq {
	position: relative;
	overflow: hidden;
	background: linear-gradient(155deg, rgba(32, 12, 56, 0.94), rgba(22, 10, 46, 0.92));
	border-color: rgba(255,255,255,0.12);
}
.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.6rem;
}
.faq-item {
	padding: 0.72rem 0.78rem;
	border-radius: 14px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
}
.faq-item summary {
	cursor: pointer;
	font-weight: 800;
	font-size: 0.86rem;
	color: #f8efff;
	list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 0.45rem; font-size: 0.8rem; line-height: 1.62; color: #dbcff8; }

.gallery-modal {
	position: fixed;
	inset: 0;
	background: rgba(10, 6, 22, 0.78);
	backdrop-filter: blur(8px);
	display: none;
	place-items: center;
	padding: 1rem;
	z-index: 1200;
}
.gallery-modal.show { display: grid; }
.gallery-modal-content {
	width: min(760px, 100%);
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.2);
	background: linear-gradient(155deg, rgba(30, 13, 50, 0.96), rgba(19, 10, 38, 0.94));
	box-shadow: 0 26px 60px rgba(0,0,0,0.45);
}
.gallery-modal-content img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.gallery-modal-content figcaption { padding: 0.88rem 0.92rem 1rem; }
.gallery-modal-content h3 { margin: 0 0 0.32rem; color: #fff; font-size: 1rem; }
.gallery-modal-content p { margin: 0; color: #dfd5ff; font-size: 0.85rem; line-height: 1.62; }
.gallery-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.25);
	background: rgba(255,255,255,0.12);
	color: #fff;
	cursor: pointer;
	font-size: 1.02rem;
}

.whatsapp-float {
	position: fixed;
	right: 16px;
	bottom: 18px;
	z-index: 1150;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.54rem 0.68rem;
	border-radius: 16px;
	text-decoration: none;
	background: linear-gradient(135deg, #22c55e, #0ea75a);
	color: #fff;
	box-shadow: 0 14px 32px rgba(10, 90, 38, 0.35);
	border: 1px solid rgba(255,255,255,0.24);
	animation: waPulse 2.2s ease-in-out infinite;
}
.wa-icon { font-size: 1.06rem; }
.wa-text { display: grid; font-size: 0.75rem; font-weight: 800; line-height: 1.1; }
.wa-text small { font-size: 0.65rem; font-weight: 600; opacity: 0.9; }
@keyframes waPulse {
	0%,100% { transform: translateY(0); }
	50% { transform: translateY(-3px); }
}

.btn, .gallery-item, .testimonial-card, .service-tag-item {
	position: relative;
	overflow: hidden;
}
.ripple {
	position: absolute;
	border-radius: 50%;
	transform: scale(0);
	animation: ripple .6s linear;
	background: rgba(255, 255, 255, 0.35);
	pointer-events: none;
}
@keyframes ripple {
	to {
		transform: scale(4);
		opacity: 0;
	}
}
.page-section { opacity: 0; transform: translateX(22px) scale(0.988); transition: opacity .32s var(--ease-out), transform .32s var(--ease-out); display: none; position: relative; overflow: hidden; --glow-x: 50%; --glow-y: 50%; --shift-x: 0px; --shift-y: 0px; }
.page-section.active-page { opacity: 1; transform: translateX(0) scale(1); animation: pageReveal .52s var(--ease-out); display: block; }
@keyframes pageReveal {
	from { opacity: 0; transform: translateX(28px) scale(0.975); }
	to { opacity: 1; transform: translateX(0) scale(1); }
}
.page-section.active-page .card { animation: fadeInUp .42s var(--ease-out) both; }
.page-section > * { position: relative; z-index: 1; }
.page-section::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,0.13), rgba(var(--accent-pink-rgb), 0.11) 22%, transparent 50%); opacity: 0; transition: opacity .22s ease; pointer-events: none; z-index: 0; }
.page-section.is-interactive::after { opacity: 1; }
.about-layout, .services-layout, .gallery-showcase, .gallery-grid, .testimonials-showcase, .testimonial-grid, .subscribe-showcase, .subscribe-card-row, .contact-layout, .hero-left { transform: translate3d(var(--shift-x, 0px), var(--shift-y, 0px), 0); transition: transform .22s ease; }
body.light-theme .theme-btn { background: #fff; color: #66388f; border: 1px solid #edd8ff; }
body.light-theme .contrast-btn {
	background: rgba(255,255,255,0.86);
	color: #4a2c73;
	border-color: rgba(116,72,168,0.28);
}
body.light-theme .contrast-btn.active {
	background: linear-gradient(135deg, rgba(116,72,168,0.92), rgba(210,108,164,0.86));
	color: #fff;
	border-color: rgba(116,72,168,0.7);
}

body.light-theme .page-controls {
	background: linear-gradient(145deg, rgba(255,255,255,0.62), rgba(116,72,168,0.1));
	border-color: rgba(116,72,168,0.18);
	box-shadow: 0 10px 22px rgba(116,72,168,0.1);
}
body.light-theme .sticky-offer {
	background: linear-gradient(135deg, rgba(116,72,168,0.94), rgba(229,93,155,0.92));
	border-color: rgba(255,255,255,0.5);
}
body.light-theme .trust-marquee {
	background: rgba(255,255,255,0.52);
	border-color: rgba(116,72,168,0.16);
}
body.light-theme .trust-marquee-track span {
	color: #643990;
	background: rgba(255,255,255,0.5);
	border-color: rgba(116,72,168,0.14);
}
body.light-theme .timeline-step {
	background: linear-gradient(145deg, rgba(255,255,255,0.52), rgba(116,72,168,0.12));
	border-color: rgba(116,72,168,0.16);
}
body.light-theme .timeline-step h4 { color: #5f358a; }
body.light-theme .timeline-step p { color: #6f4b99; }
body.light-theme .faq {
	background: linear-gradient(155deg, rgba(255,248,254,0.96), rgba(245,236,255,0.92));
	border-color: rgba(116,72,168,0.16);
}
body.light-theme .faq-item {
	background: rgba(255,255,255,0.58);
	border-color: rgba(116,72,168,0.16);
}
body.light-theme .faq-item summary { color: #5f358a; }
body.light-theme .faq-item p { color: #6f4b99; }
body.light-theme .gallery-modal-content {
	background: linear-gradient(155deg, rgba(255,248,254,0.98), rgba(245,236,255,0.94));
	border-color: rgba(116,72,168,0.22);
}
body.light-theme .gallery-modal-content h3 { color: #5d3388; }
body.light-theme .gallery-modal-content p { color: #6f4b98; }
body.light-theme .page-status {
	color: #ffffff;
	background: linear-gradient(135deg, rgba(116,72,168,0.8), rgba(229,93,155,0.72));
	border-color: rgba(255,255,255,0.5);
}
body.light-theme .page-controls .btn.ghost {
	background: linear-gradient(135deg, rgba(116,72,168,0.2), rgba(229,93,155,0.16));
	color: #5a2f85;
	border: 1px solid rgba(116,72,168,0.38);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 10px 20px rgba(116,72,168,0.14);
}
body.light-theme .page-controls .btn.ghost:not(:disabled):hover {
	background: linear-gradient(135deg, rgba(229,93,155,0.24), rgba(116,72,168,0.24));
	border-color: rgba(116,72,168,0.62);
	box-shadow: 0 0 0 1px rgba(116,72,168,0.18), 0 12px 24px rgba(116,72,168,0.2);
}
body.light-theme .post-card { background: #f6ebff; border-color: rgba(116,72,168,0.18); }
body.light-theme .post-card h3 { color: #633a8e; }
body.light-theme .post-card p { color: #7a57a1; }
body.light-theme .post-card .meta { color: #9576b4; }
body.light-theme .about {
	background:
		linear-gradient(120deg, rgba(255, 248, 253, 0.95), rgba(246, 238, 255, 0.9)),
		url('img/about-section-bg.avif');
	background-size: cover;
	background-position: center 28%;
	border-color: rgba(84,54,128,0.24);
	box-shadow: 0 18px 42px rgba(116,72,168,0.14);
}
body.light-theme .about::after {
	background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,0.5), rgba(var(--accent-purple-rgb), 0.14) 18%, transparent 42%);
}
body.light-theme .about-kicker {
	background: rgba(255,255,255,0.48);
	border-color: rgba(116,72,168,0.2);
	color: #905f1f;
}
body.light-theme .about-title { color: #5b3187; text-shadow: 0 8px 18px rgba(116,72,168,0.12); }
body.light-theme .about-copy p { color: #3b2a56; }
body.light-theme .about-metrics article {
	border-color: rgba(84,54,128,0.22);
	background: linear-gradient(145deg, rgba(255,255,255,0.72), rgba(var(--accent-pink-rgb), 0.12));
	box-shadow: 0 10px 22px rgba(116,72,168,0.12);
}
body.light-theme .about-metrics strong { color: #5e348a; }
body.light-theme .about-metrics span { color: #4e3572; }
body.light-theme .about-panel {
	border-color: rgba(84,54,128,0.22);
	background: linear-gradient(160deg, rgba(255,255,255,0.76), rgba(var(--accent-purple-rgb), 0.1));
}
body.light-theme .about-panel-label { color: #a77522; }
body.light-theme .about-badge-row span {
	background: rgba(255,255,255,0.52);
	border-color: rgba(116,72,168,0.16);
	color: #643990;
}
body.light-theme .about-panel-stats article {
	background: rgba(255,255,255,0.72);
	border-color: rgba(84,54,128,0.2);
}
body.light-theme .about-panel-stats strong { color: #5b3186; }
body.light-theme .about-panel-stats span { color: #4e3572; }
body.light-theme .about-feature-card {
	background: rgba(255,255,255,0.72);
	border-color: rgba(84,54,128,0.2);
}
body.light-theme .about-feature-card h4 { color: #5b3186; }
body.light-theme .about-feature-card li {
	background: rgba(255,255,255,0.82);
	border-color: rgba(84,54,128,0.18);
	color: #463062;
}
body.light-theme .skills {
	background: linear-gradient(145deg, rgba(255, 244, 252, 0.86), rgba(244, 234, 255, 0.78)), url('img/premium-section-bg.jpg');
	background-size: cover;
	background-position: center 26%;
	border-color: rgba(116,72,168,0.16);
	box-shadow: 0 18px 42px rgba(116,72,168,0.14);
}
body.light-theme .skills::before {
	background: radial-gradient(circle at 14% 18%, rgba(var(--accent-pink-rgb), 0.1), transparent 28%), radial-gradient(circle at 86% 76%, rgba(var(--primary-rgb), 0.14), transparent 24%);
}
body.light-theme .services-kicker { background: rgba(255,255,255,0.48); border-color: rgba(116,72,168,0.16); color: #9b7023; }
body.light-theme .services-title { color: #5b3186; }
body.light-theme .services-copy p { color: #62408e; }
body.light-theme .services-strip span { background: rgba(255,255,255,0.45); border-color: rgba(116,72,168,0.14); color: #693f95; }
body.light-theme .skill { background: rgba(255,255,255,0.42); border-color: rgba(116,72,168,0.14); color: #643990; }
body.light-theme .service-icon { background: rgba(255,255,255,0.52); border-color: rgba(116,72,168,0.14); }
body.light-theme .service-package-card {
	background: linear-gradient(150deg, rgba(255,255,255,0.5), rgba(var(--accent-purple-rgb), 0.1));
	border-color: rgba(116,72,168,0.16);
	box-shadow: 0 16px 30px rgba(116,72,168,0.12);
}
body.light-theme .service-package-mark { color: #a67928; }
body.light-theme .service-package-card h4 { color: #5b3186; }
body.light-theme .service-package-card p { color: #62408e; }
body.light-theme .service-steps { background: rgba(255,255,255,0.48); border-color: rgba(116,72,168,0.14); }
body.light-theme .service-steps-title { color: #a37625; }
body.light-theme .service-steps li { color: #714d9b; }
body.light-theme .service-steps li strong { color: #5b3186; }
body.light-theme .service-package-list li {
	background: rgba(255,255,255,0.42);
	border-color: rgba(116,72,168,0.12);
	color: #714d9b;
}
body.light-theme .post-image { border-color: rgba(116,72,168,0.16); }
body.light-theme .gallery { background: linear-gradient(155deg, rgba(255,250,254,0.98), rgba(247,240,255,0.95)); border-color: rgba(84,54,128,0.24); }
body.light-theme .gallery::before { background: radial-gradient(circle at 12% 18%, rgba(var(--accent-pink-rgb), 0.12), transparent 28%), radial-gradient(circle at 84% 78%, rgba(var(--primary-rgb), 0.14), transparent 24%); }
body.light-theme .gallery-kicker { background: rgba(255,255,255,0.7); border-color: rgba(84,54,128,0.2); color: #7c5512; }
body.light-theme .gallery-title { color: #5b3186; }
body.light-theme .gallery-copy p { color: #3b2a56; }
body.light-theme .gallery-strip span { background: rgba(255,255,255,0.72); border-color: rgba(84,54,128,0.2); color: #4d3571; }
body.light-theme .gallery-note { background: linear-gradient(145deg, rgba(255,255,255,0.8), rgba(var(--accent-purple-rgb), 0.12)); border-color: rgba(84,54,128,0.22); }
body.light-theme .gallery-note h4 { color: #3a2558; }
body.light-theme .gallery-note p { color: #4b356e; }
body.light-theme .gallery-item { background: linear-gradient(160deg, rgba(255,255,255,0.82), rgba(255,255,255,0.56)); border-color: rgba(84,54,128,0.22); }
body.light-theme .gallery-item figcaption strong { color: #66388f; }
body.light-theme .gallery-item figcaption span { color: #4d3571; }
body.light-theme .gallery-item figcaption p { color: #4b356e; }
body.light-theme .gallery-item figcaption em { color: #a67928; }
body.light-theme .gallery-item:hover { border-color: rgba(116,72,168,0.32); box-shadow: 0 16px 30px rgba(116,72,168,0.16); }
body.light-theme .testimonials { background: linear-gradient(155deg, rgba(255,247,253,0.96), rgba(245,236,255,0.92)); border-color: rgba(116,72,168,0.16); }
body.light-theme .testimonials::before { background: radial-gradient(circle at 16% 20%, rgba(var(--primary-rgb), 0.12), transparent 28%), radial-gradient(circle at 84% 76%, rgba(var(--accent-purple-rgb), 0.12), transparent 24%); }
body.light-theme .testimonials-kicker { background: rgba(255,255,255,0.48); border-color: rgba(116,72,168,0.16); color: #9b7023; }
body.light-theme .testimonials-title { color: #5b3186; }
body.light-theme .testimonials-copy p { color: #62408e; }
body.light-theme .testimonials-strip span { background: rgba(255,255,255,0.45); border-color: rgba(116,72,168,0.14); color: #693f95; }
body.light-theme .testimonial-card { background: linear-gradient(145deg, rgba(255,255,255,0.56), rgba(var(--primary-rgb), 0.14), rgba(var(--accent-purple-rgb), 0.08)); border-color: rgba(116,72,168,0.18); box-shadow: 0 14px 26px rgba(116,72,168,0.12); }
body.light-theme .testimonial-mark { color: #a67928; }
body.light-theme .testimonial-card p { color: #6c4399; }
body.light-theme .testimonial-card p::before { color: rgba(116,72,168,0.18); }
body.light-theme .testimonial-meta { border-top-color: rgba(116,72,168,0.12); }
body.light-theme .testimonial-meta h3 { color: #5b3186; }
body.light-theme .testimonial-meta span { color: #9a7440; }
body.light-theme .subscribe { background: linear-gradient(155deg, rgba(255,247,253,0.96), rgba(245,236,255,0.92)); border-color: rgba(116,72,168,0.16); }
body.light-theme .subscribe::before { background: radial-gradient(circle at 16% 24%, rgba(var(--accent-pink-rgb), 0.12), transparent 28%), radial-gradient(circle at 84% 74%, rgba(var(--primary-rgb), 0.12), transparent 24%); }
body.light-theme .subscribe-kicker,
body.light-theme .contact-kicker { background: rgba(255,255,255,0.48); border-color: rgba(116,72,168,0.16); color: #9b7023; }
body.light-theme .subscribe-title,
body.light-theme .contact-title { color: #5b3186; }
body.light-theme .subscribe-copy p,
body.light-theme .contact-copy p { color: #62408e; }
body.light-theme .subscribe-strip span,
body.light-theme .subscribe-benefits span,
body.light-theme .contact-points span { background: rgba(255,255,255,0.45); border-color: rgba(116,72,168,0.14); color: #693f95; }
body.light-theme .offer-pill { background: rgba(255,255,255,0.58); border-color: rgba(116,72,168,0.2); color: #5e3489; }
body.light-theme .offer-pill.hot { background: linear-gradient(135deg, rgba(255,126,136,0.25), rgba(255,190,120,0.22)); border-color: rgba(214,126,100,0.3); color: #8a4d18; }
body.light-theme .offer-pill.discount { background: linear-gradient(135deg, rgba(var(--accent-pink-rgb),0.18), rgba(var(--accent-purple-rgb),0.14)); border-color: rgba(116,72,168,0.32); color: #5a2f86; }
body.light-theme .offer-pill.timer { background: rgba(255,255,255,0.62); color: #72489d; }
body.light-theme .subscribe-card-row,
body.light-theme .contact-panel { background: linear-gradient(145deg, rgba(255,255,255,0.55), rgba(var(--accent-purple-rgb), 0.08)); border-color: rgba(116,72,168,0.16); box-shadow: 0 14px 26px rgba(116,72,168,0.12); }
body.light-theme .subscribe-note { color: #6f489a; }
body.light-theme .subscribe-social-proof article { background: rgba(255,255,255,0.58); border-color: rgba(116,72,168,0.16); }
body.light-theme .subscribe-social-proof strong { color: #6a3b95; }
body.light-theme .subscribe-social-proof span { color: #7c59a5; }
body.light-theme .contact { background: linear-gradient(155deg, rgba(255,247,253,0.96), rgba(245,236,255,0.92)); border-color: rgba(116,72,168,0.16); }
body.light-theme .contact::before { background: radial-gradient(circle at 16% 22%, rgba(var(--accent-purple-rgb), 0.12), transparent 28%), radial-gradient(circle at 82% 78%, rgba(var(--primary-rgb), 0.12), transparent 24%); }
body.light-theme .contact-panel-label { color: #a67928; }
body.light-theme .subscribers { background: linear-gradient(155deg, rgba(255,247,253,0.96), rgba(245,236,255,0.92)); border-color: rgba(116,72,168,0.16); }
body.light-theme .subscribers-copy p { color: #62408e; }
body.light-theme .subscribers-points span { background: rgba(255,255,255,0.45); border-color: rgba(116,72,168,0.14); color: #693f95; }
body.light-theme .subscribers-panel { background: linear-gradient(145deg, rgba(255,255,255,0.55), rgba(var(--accent-purple-rgb), 0.08)); border-color: rgba(116,72,168,0.16); }
body.light-theme .subscribers-login-form input { background: rgba(255,255,255,0.72); border-color: rgba(116,72,168,0.22); color: #4d2c73; }
body.light-theme .main-nav a { border-color: rgba(116,72,168,0.22); background: rgba(255,255,255,0.52); color: #643990; }
body.light-theme .main-nav a:hover { background: rgba(var(--accent-pink-rgb), 0.18); color: #5d3388; border-color: rgba(116,72,168,0.45); letter-spacing: 0.055em; box-shadow: 0 0 0 1px rgba(116,72,168,0.25), 0 8px 22px rgba(116,72,168,0.22), inset 0 1px 0 rgba(255,255,255,0.5); }
body.light-theme .main-nav a.nav-active { background: rgba(116,72,168,0.12); border-color: rgba(116,72,168,0.45); color: #4e2a7e; box-shadow: 0 0 0 1px rgba(116,72,168,0.22), 0 4px 14px rgba(116,72,168,0.18); }
@media (max-width: 860px) { body { background-attachment: scroll; } body.light-theme { background-attachment: scroll; } .hero { grid-template-columns: 1fr; padding: 0.8rem; } .hero#home { min-height: clamp(320px, 52vh, 430px); padding: 0.9rem; background-position: center 14%; } .hero#home .hero-left { padding-top: 0; } .hero-avatar { width: 230px; height: 300px; justify-self: center; } .topbar { gap: 0.45rem; } .topbar-actions { gap: 0.34rem; } .main-nav { position: absolute; left: auto; transform: none; gap: 0.35rem; right: 0.25rem; top: calc(100% + 0.45rem); background: #2a1956; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); padding: 0.5rem; display: none; flex-direction: column; width: 200px; z-index: 50; box-shadow: 0 12px 28px rgba(0,0,0,0.35); }
.main-nav.show { display: flex; }
.main-nav a { padding: 0.35rem 0.45rem; }
.mobile-menu-btn { display: inline-flex; }
.services-showcase { grid-template-columns: 1fr; align-items: start; }
.services-strip { justify-content: flex-start; }
.services-layout { grid-template-columns: 1fr; }
.process-timeline { grid-template-columns: 1fr 1fr; }
.subscribe-showcase { grid-template-columns: 1fr; align-items: start; }
.subscribe-strip, .subscribe-benefits { justify-content: flex-start; }
.subscribe-card-row { grid-template-columns: 1fr; }
.contact-layout { grid-template-columns: 1fr; }
.subscribers-layout { grid-template-columns: 1fr; }
.contact-form .form-row { grid-template-columns: 1fr; }
.gallery-showcase { grid-template-columns: 1fr; align-items: start; }
.gallery-strip { justify-content: flex-start; }
.gallery-grid { grid-template-columns: 1fr 1fr; }
.gallery-grid.two-items { grid-template-columns: 1fr; grid-template-areas: none; max-width: none; }
.gallery-grid.two-items .feature-right,
.gallery-grid.two-items .feature-left,
.gallery-grid.two-items .note-top,
.gallery-grid.two-items .note-bottom { grid-area: auto; }
.testimonials-showcase { grid-template-columns: 1fr; align-items: start; }
.testimonials-strip { justify-content: flex-start; }
.testimonial-grid { grid-template-columns: 1fr; }
.faq-grid { grid-template-columns: 1fr; }
.hero-stats { grid-template-columns: 1fr; }
.about-layout { grid-template-columns: 1fr; }
.about-metrics { grid-template-columns: 1fr; }
.about-panel-stats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.about,
	.about-layout,
	.about::after {
		transition: none;
	}
}
@media (max-width: 600px) { .page { padding: 0.95rem; border-radius: 22px; } .topbar { margin-bottom: 0.95rem; } .logo-img { width: 58px; height: 58px; border-radius: 13px; } .logo-title { font-size: 1.02rem; } .logo-tag { font-size: 0.72rem; } .hero#home { padding: 0.9rem; background-position: center 12%; } .hero#home .hero-left { padding-top: 0; } .hero-avatar { width: 190px; height: 250px; } .skill-grid { grid-template-columns: 1fr; } .process-timeline { grid-template-columns: 1fr; } .subscribe-row { flex-direction: column; } .gallery-grid { grid-template-columns: 1fr; } .gallery-grid.two-items { grid-template-columns: 1fr; grid-template-areas: none; } .gallery-grid.two-items .feature-right, .gallery-grid.two-items .feature-left, .gallery-grid.two-items .note-top, .gallery-grid.two-items .note-bottom { grid-area: unset; } .gallery-note { padding: 0.78rem 0.8rem; } .gallery-item { display: block; } .gallery-item img { height: 220px; } .sticky-offer { top: 8px; width: calc(100% - 0.8rem); padding: 0.46rem 0.5rem 0.46rem 0.62rem; } .sticky-offer p { font-size: 0.72rem; } .sticky-offer .btn { font-size: 0.68rem; padding: 0.4rem 0.55rem; } .whatsapp-float { right: 10px; bottom: 10px; } .wa-text small { display: none; } }

/* ====================== DISCOUNT CODE REVEAL ====================== */
.discount-reveal {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 0.5rem 0.2rem;
	text-align: center;
}
.discount-reveal-title {
	font-size: 1rem;
	font-weight: 800;
	color: var(--primary);
}
.discount-reveal-sub {
	font-size: 0.8rem;
	color: var(--muted);
}
.discount-code-wrap {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255,255,255,0.07);
	border: 1.5px dashed rgba(var(--primary-rgb), 0.6);
	border-radius: 12px;
	padding: 0.5rem 1rem;
}
.discount-code {
	font-size: 1.6rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: var(--primary);
	font-family: 'Space Grotesk', monospace;
	user-select: all;
}
.discount-copy-btn {
	background: rgba(var(--primary-rgb), 0.15);
	border: 1px solid rgba(var(--primary-rgb), 0.3);
	color: var(--primary);
	border-radius: 8px;
	padding: 0.3rem 0.7rem;
	font-size: 0.78rem;
	font-weight: 700;
	cursor: pointer;
	transition: background .18s, transform .18s;
	white-space: nowrap;
}
.discount-copy-btn:hover { background: rgba(var(--primary-rgb), 0.28); transform: scale(1.04); }
.discount-copy-btn.copied { background: rgba(100,255,120,0.18); border-color: rgba(100,255,120,0.4); color: #a3ff9f; }
.discount-reveal-note {
	font-size: 0.78rem;
	color: var(--muted);
	line-height: 1.5;
	max-width: 320px;
}
.discount-reveal-note strong { color: var(--text); }
.discount-wa-btn {
	margin-top: 0.3rem;
	font-size: 0.84rem;
	padding: 0.5rem 1.1rem;
	border-radius: 999px;
}
.discount-hub-btn {
	font-size: 0.82rem;
	padding: 0.48rem 1rem;
	border-radius: 999px;
}

body.light-theme .discount-code-wrap {
	background: rgba(255,255,255,0.7);
	border-color: rgba(var(--primary-rgb), 0.5);
}
body.light-theme .discount-code { color: #8a6010; }
body.light-theme .discount-copy-btn { color: #8a6010; border-color: rgba(var(--primary-rgb), 0.4); background: rgba(var(--primary-rgb), 0.1); }
body.light-theme .discount-reveal-note { color: #6a468e; }
body.light-theme .discount-reveal-note strong { color: #4d2c73; }

/* ====================== SUBSCRIBER HUB PAGE ====================== */
.subscriber-hub-page {
	min-height: 100vh;
	padding: 1.2rem;
	background:
		radial-gradient(circle at 10% 15%, rgba(var(--accent-pink-rgb), 0.2), transparent 36%),
		radial-gradient(circle at 85% 20%, rgba(var(--accent-purple-rgb), 0.2), transparent 36%),
		linear-gradient(165deg, #170a34, #0f1733 52%, #1a1036);
}
.hub-shell {
	width: min(980px, 100%);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}
.hub-back-link {
	text-decoration: none;
	font-size: 0.85rem;
	color: var(--muted);
	align-self: flex-start;
	padding: 0.3rem 0.2rem;
}
.hub-back-link:hover { color: var(--primary); }
.hub-card {
	background: linear-gradient(150deg, rgba(33, 16, 70, 0.9), rgba(20, 9, 48, 0.92));
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 18px;
	padding: 1rem 1.1rem;
	box-shadow: 0 16px 36px rgba(0,0,0,0.34);
}
.hub-kicker {
	display: inline-block;
	padding: 0.22rem 0.58rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--primary);
	background: rgba(var(--primary-rgb), 0.13);
	border: 1px solid rgba(var(--primary-rgb), 0.34);
	margin-bottom: 0.52rem;
}
.lock-card h1,
.hub-hero h1 {
	font-size: clamp(1.25rem, 2.8vw, 1.75rem);
	margin-bottom: 0.45rem;
	line-height: 1.22;
}
.lock-card p,
.hub-hero p {
	font-size: 0.88rem;
	color: var(--muted);
	max-width: 66ch;
}
.lock-actions,
.hub-actions {
	display: flex;
	gap: 0.55rem;
	margin-top: 0.82rem;
	flex-wrap: wrap;
}
.hub-login-launch {
	position: relative;
	overflow: hidden;
	background: linear-gradient(120deg, #ff6cad, #9d62ff, #ffd36b) !important;
	background-size: 220% 220%;
	animation: hubLaunchPulse 3s ease infinite;
	box-shadow: 0 12px 28px rgba(157, 98, 255, 0.35);
}
.hub-login-launch::after {
	content: '';
	position: absolute;
	top: 0;
	left: -120%;
	width: 45%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
	animation: hubShine 2.4s ease infinite;
}
@keyframes hubLaunchPulse {
	0% { background-position: 0% 50%; transform: translateY(0); }
	50% { background-position: 100% 50%; transform: translateY(-1px); }
	100% { background-position: 0% 50%; transform: translateY(0); }
}
@keyframes hubShine {
	0% { left: -120%; }
	100% { left: 130%; }
}
.hub-login-form {
	margin-top: 0.9rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
	padding: 0.8rem;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(255,255,255,0.06);
	animation: loginFormIn .22s ease;
}
@keyframes loginFormIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}
.hub-login-form input {
	width: 100%;
	padding: 0.62rem 0.74rem;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.2);
	background: #2f1e5d;
	color: #fff;
	outline: none;
}
.hub-login-form input:focus { border-color: var(--primary); }
.hub-login-form button { grid-column: 1 / -1; }
.hub-login-result {
	font-size: 0.82rem;
	min-height: 1.1em;
	margin-top: 0.55rem;
	color: var(--muted);
}
.hub-content {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}
.hub-logout-btn {
	font-size: 0.74rem;
	padding: 0.32rem 0.64rem;
	border-radius: 999px;
}
.hub-quick-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.72rem;
}
.hub-quick-actions article {
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.03);
	border-radius: 14px;
	padding: 0.75rem;
}
.hub-quick-actions h3 {
	font-size: 0.96rem;
	margin-bottom: 0.35rem;
}
.hub-quick-actions p {
	font-size: 0.8rem;
	color: var(--muted);
	margin-bottom: 0.5rem;
}
.hub-actions.compact { margin-top: 0; }
.hub-meta {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.8rem;
	flex-wrap: wrap;
}
.code-badge,
.date-badge {
	font-size: 0.76rem;
	padding: 0.28rem 0.62rem;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.18);
	background: rgba(255,255,255,0.06);
	color: var(--muted);
}
.hub-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.72rem;
}
.stat-card span {
	display: block;
	font-size: 0.75rem;
	color: var(--muted);
	margin-bottom: 0.22rem;
}
.stat-card strong {
	font-size: 1.45rem;
	color: var(--text);
}
.hub-controls {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 0.9rem;
	align-items: end;
}
.hub-search-wrap,
.hub-filter-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.38rem;
}
.hub-controls label,
.hub-filter-wrap > span {
	font-size: 0.76rem;
	color: var(--muted);
}
.hub-search-wrap input {
	padding: 0.58rem 0.72rem;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(255,255,255,0.08);
	color: var(--text);
	outline: none;
}
.filter-buttons {
	display: flex;
	gap: 0.42rem;
	flex-wrap: wrap;
}
.filter-btn {
	border: 1px solid rgba(255,255,255,0.18);
	background: rgba(255,255,255,0.06);
	color: var(--muted);
	padding: 0.4rem 0.65rem;
	font-size: 0.76rem;
	border-radius: 999px;
	cursor: pointer;
}
.filter-btn.active {
	background: linear-gradient(135deg, rgba(var(--accent-purple-rgb), 0.46), rgba(var(--accent-pink-rgb), 0.46));
	color: #fff;
	border-color: rgba(255,255,255,0.34);
}
.progress-line {
	position: relative;
	height: 9px;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	overflow: hidden;
	margin-bottom: 0.88rem;
}
.progress-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--primary));
	transition: width .28s ease;
}
.resource-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.58rem;
}
.resource-empty-state {
	font-size: 0.84rem;
	color: var(--muted);
	padding: 0.6rem 0.2rem;
}
.resource-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.7rem;
	padding: 0.66rem 0.72rem;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.04);
}
.resource-item[hidden] { display: none; }
.resource-item label {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	flex: 1;
	cursor: pointer;
}
.resource-item input[type="checkbox"] {
	margin-top: 0.2rem;
	accent-color: #ff74c8;
}
.resource-item strong {
	display: block;
	font-size: 0.86rem;
	color: var(--text);
	line-height: 1.35;
}
.resource-item small {
	font-size: 0.74rem;
	color: var(--muted);
}
.resource-item a {
	text-decoration: none;
	font-size: 0.72rem;
	padding: 0.32rem 0.52rem;
	border-radius: 999px;
	background: rgba(var(--primary-rgb), 0.14);
	border: 1px solid rgba(var(--primary-rgb), 0.35);
	color: var(--primary);
	white-space: nowrap;
}
.resource-item a:hover { background: rgba(var(--primary-rgb), 0.25); }
.note-card h2 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}
.vault-card h2 {
	font-size: 1.03rem;
	margin-bottom: 0.68rem;
}
.vault-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.62rem;
}
.vault-item {
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.04);
	border-radius: 14px;
	padding: 0.74rem;
}
.vault-item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	font-size: 0.74rem;
	font-weight: 800;
	background: rgba(var(--primary-rgb), 0.15);
	border: 1px solid rgba(var(--primary-rgb), 0.34);
	color: var(--primary);
	margin-bottom: 0.4rem;
}
.vault-item h4 { font-size: 0.9rem; margin-bottom: 0.3rem; }
.vault-item p { font-size: 0.76rem; color: var(--muted); }
.note-card textarea {
	width: 100%;
	padding: 0.66rem 0.72rem;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(255,255,255,0.08);
	color: var(--text);
	resize: vertical;
	min-height: 96px;
}
#noteStatus {
	font-size: 0.77rem;
	color: #a3ff9f;
	display: inline-flex;
	align-items: center;
}

body.light-theme.subscriber-hub-page {
	background:
		radial-gradient(circle at 10% 15%, rgba(var(--accent-pink-rgb), 0.15), transparent 36%),
		radial-gradient(circle at 85% 20%, rgba(var(--accent-purple-rgb), 0.15), transparent 36%),
		linear-gradient(165deg, #fff6fd, #f8eeff 52%, #fff3fc);
}
body.light-theme .hub-card { background: linear-gradient(150deg, rgba(255,255,255,0.86), rgba(248,236,255,0.9)); border-color: rgba(116,72,168,0.17); }
body.light-theme .hub-back-link { color: #6a468e; }
body.light-theme .hub-back-link:hover { color: #5b3187; }
body.light-theme .lock-card p,
body.light-theme .hub-hero p,
body.light-theme .stat-card span,
body.light-theme .hub-controls label,
body.light-theme .hub-filter-wrap > span,
body.light-theme .resource-item small,
body.light-theme .code-badge,
body.light-theme .date-badge { color: #6a468e; }
body.light-theme .resource-item { border-color: rgba(116,72,168,0.15); background: rgba(255,255,255,0.55); }
body.light-theme .resource-empty-state { color: #6a468e; }
body.light-theme .hub-quick-actions article,
body.light-theme .vault-item { border-color: rgba(116,72,168,0.15); background: rgba(255,255,255,0.56); }
body.light-theme .hub-quick-actions p,
body.light-theme .vault-item p { color: #6a468e; }
body.light-theme .hub-search-wrap input,
body.light-theme .note-card textarea { background: rgba(255,255,255,0.72); border-color: rgba(116,72,168,0.22); color: #4d2c73; }
body.light-theme .hub-login-form { background: rgba(255,255,255,0.62); border-color: rgba(116,72,168,0.18); }
body.light-theme .hub-login-form input { background: rgba(255,255,255,0.84); border-color: rgba(116,72,168,0.24); color: #4d2c73; }

@media (max-width: 760px) {
	.hub-stats { grid-template-columns: 1fr; }
	.hub-quick-actions { grid-template-columns: 1fr; }
	.hub-controls { grid-template-columns: 1fr; }
	.vault-grid { grid-template-columns: 1fr; }
	.hub-login-form { grid-template-columns: 1fr; }
	.subscribe-row.two-col { flex-direction: column; }
	.resource-item { flex-direction: column; align-items: flex-start; }
}

/* ====================== SUBSCRIBER HUB V2 ====================== */
.subscriber-hub-v2 {
	background:
		radial-gradient(circle at 14% 18%, rgba(var(--accent-pink-rgb), 0.25), transparent 32%),
		radial-gradient(circle at 84% 16%, rgba(var(--accent-purple-rgb), 0.24), transparent 30%),
		linear-gradient(165deg, #12082f, #0f1733 48%, #160a37);
}
.hub-v2-shell {
	width: min(920px, 100%);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
/* â”€â”€ Topbar with logo â”€â”€ */
.hub-v2-topbar {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem;
	padding: 0.5rem 0;
}
.hub-v2-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}
.hub-v2-logo {
	height: 42px;
	width: auto;
	filter: drop-shadow(0 2px 10px rgba(159,99,255,0.35));
	transition: filter 0.2s ease, transform 0.2s ease;
	border-radius: 10px;
}
.hub-v2-logo:hover {
	filter: drop-shadow(0 4px 16px rgba(159,99,255,0.6));
	transform: scale(1.04);
}
/* â”€â”€ Welcome banner â”€â”€ */
.hub-v2-welcome-banner {
	background: linear-gradient(135deg, rgba(159,99,255,0.18) 0%, rgba(255,122,183,0.12) 100%);
	border-color: rgba(159,99,255,0.35);
	padding: 0.85rem 1.05rem;
}
.welcome-banner-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.welcome-banner-left {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}
.welcome-banner-text h2 {
	font-size: clamp(1.05rem, 2.5vw, 1.3rem);
	margin: 0 0 0.15rem;
	background: linear-gradient(135deg, #fff 50%, #ff7ab7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.welcome-banner-text p {
	margin: 0;
	color: var(--muted);
	font-size: 0.88rem;
	font-weight: 600;
}
.welcome-banner-emoji {
	font-size: 2rem;
	line-height: 1;
	animation: petBounce 2.4s ease-in-out infinite;
}
.hub-v2-back {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.36rem;
	padding: 0.5rem 0.82rem;
	border-radius: 999px;
	border: 1px solid rgba(var(--primary-rgb), 0.58);
	background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.26), rgba(var(--accent-pink-rgb), 0.18));
	box-shadow: 0 7px 16px rgba(0,0,0,0.25);
	text-decoration: none;
	color: #fff;
	font-size: 0.86rem;
	font-weight: 700;
	align-self: flex-start;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.hub-v2-back:hover {
	transform: translateY(-1px);
	color: #fff;
	border-color: rgba(var(--primary-rgb), 0.82);
	box-shadow: 0 10px 22px rgba(0,0,0,0.3), 0 0 0 4px rgba(var(--primary-rgb), 0.14);
}
.hub-v2-back:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255,255,255,0.28), 0 0 0 6px rgba(var(--primary-rgb), 0.42);
}
.hub-v2-card {
	background: linear-gradient(150deg, rgba(33, 16, 70, 0.92), rgba(20, 9, 48, 0.94));
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 18px;
	padding: 1rem 1.05rem;
	box-shadow: 0 16px 34px rgba(0,0,0,0.34);
}
.hub-v2-kicker {
	display: inline-block;
	padding: 0.22rem 0.58rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--primary);
	background: rgba(var(--primary-rgb), 0.13);
	border: 1px solid rgba(var(--primary-rgb), 0.34);
	margin-bottom: 0.55rem;
}
.hub-v2-locked h1,
.hub-v2-welcome h2 {
	font-size: clamp(1.2rem, 2.8vw, 1.7rem);
	margin: 0 0 0.45rem;
}
.hub-v2-locked p,
.hub-v2-welcome p {
	font-size: 0.88rem;
	color: var(--muted);
	line-height: 1.55;
}
.hub-v2-login-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.52rem;
	margin-top: 0.9rem;
}
.hub-v2-login-form input {
	width: 100%;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.2);
	background: #2f1e5d;
	color: #fff;
	padding: 0.68rem 0.76rem;
}
.hub-v2-login-form input:focus { outline: none; border-color: var(--primary); }
.hub-v2-login-form .btn {
	grid-column: span 1;
	width: 100%;
	margin-right: 0;
	text-align: center;
}
.hub-v2-login-result {
	min-height: 1.15em;
	font-size: 0.82rem;
	margin-top: 0.62rem;
}
.hub-v2-content {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}
.hub-v2-welcome .btn { margin-top: 0.5rem; }

/* Support card */
.hub-v2-support {
	position: relative;
}
.hub-v2-support::after {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: 19px;
	background: linear-gradient(135deg, rgba(159,99,255,0.5), rgba(255,122,183,0.38), rgba(255,217,120,0.22));
	z-index: -1;
}
.support-header {
	margin-bottom: 1.2rem;
}
.support-header h2 {
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	margin: 0.32rem 0 0.4rem;
	background: linear-gradient(135deg, #fff 55%, rgba(255,122,183,0.85));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.support-header p {
	margin: 0;
	color: var(--muted);
	font-size: 0.86rem;
	line-height: 1.55;
}
.hub-v2-support-form {
	display: grid;
	gap: 0.78rem;
}
.support-fields-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.65rem;
}
@media (max-width: 520px) {
	.support-fields-row { grid-template-columns: 1fr; }
}
.support-field {
	position: relative;
}
.support-field input,
.support-field textarea {
	width: 100%;
	box-sizing: border-box;
	background: rgba(255,255,255,0.05);
	border: 1.5px solid rgba(255,255,255,0.13);
	border-radius: 14px;
	color: #fff;
	font: inherit;
	font-size: 0.92rem;
	padding: 1.15rem 0.9rem 0.45rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	outline: none;
}
.support-field label {
	position: absolute;
	left: 0.92rem;
	top: 0.78rem;
	font-size: 0.88rem;
	color: rgba(255,255,255,0.4);
	pointer-events: none;
	transition: top 0.17s ease, font-size 0.17s ease, color 0.17s ease;
}
.support-field input:focus,
.support-field textarea:focus {
	border-color: rgba(159,99,255,0.65);
	background: rgba(159,99,255,0.07);
	box-shadow: 0 0 0 4px rgba(159,99,255,0.11);
}
.support-field input:focus ~ label,
.support-field input:not(:placeholder-shown) ~ label,
.support-field textarea:focus ~ label,
.support-field textarea:not(:placeholder-shown) ~ label {
	top: 0.3rem;
	font-size: 0.71rem;
	color: rgba(159,99,255,0.9);
}
.support-field-textarea textarea {
	resize: vertical;
	min-height: 112px;
	padding-top: 1.25rem;
}
.support-topic-chips {
	display: flex;
	flex-direction: column;
	gap: 0.48rem;
}
.support-topic-label {
	font-size: 0.74rem;
	color: rgba(255,255,255,0.4);
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.support-chip-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.44rem;
}
.support-chip {
	padding: 0.46rem 0.88rem;
	border-radius: 999px;
	border: 1.5px solid rgba(255,255,255,0.15);
	background: rgba(255,255,255,0.05);
	color: rgba(255,255,255,0.62);
	font: inherit;
	font-size: 0.84rem;
	cursor: pointer;
	transition: all 0.17s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}
.support-chip:hover {
	border-color: rgba(159,99,255,0.55);
	background: rgba(159,99,255,0.1);
	color: #fff;
	transform: translateY(-1px);
}
.support-chip.active {
	border-color: rgba(159,99,255,0.85);
	background: linear-gradient(135deg, rgba(159,99,255,0.28), rgba(255,122,183,0.18));
	color: #fff;
	box-shadow: 0 4px 14px rgba(159,99,255,0.22);
}

@keyframes btn-spin {
	to { transform: translate(-50%, -50%) rotate(360deg); }
}
.btn-loading {
	position: relative;
	color: transparent !important;
	pointer-events: none;
}
.btn-loading::after {
	content: '';
	position: absolute;
	width: 17px;
	height: 17px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 2.5px solid rgba(255,255,255,0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: btn-spin 0.55s linear infinite;
}
.hub-v2-support .btn.primary {
	transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.hub-v2-support .btn.primary:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(159,99,255,0.45);
}
.hub-v2-support .btn.primary:active:not(:disabled) {
	transform: translateY(0);
}
.support-submit-btn {
	width: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 48px;
	padding: 0.9rem;
	font-size: 1rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: 0.03em;
	border-radius: 14px;
	background: linear-gradient(135deg, #9f63ff 0%, #ff7ab7 100%);
	border: none;
	position: relative;
	overflow: hidden;
}
.support-submit-btn:disabled {
	opacity: 0.75;
	cursor: not-allowed;
}
.support-submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -110%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
	transform: skewX(-12deg);
	transition: left 0.55s ease;
	pointer-events: none;
}
.support-submit-btn:hover:not(:disabled)::before {
	left: 160%;
}
.support-chip:focus-visible,
.support-submit-btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(159,99,255,0.32);
}
.hub-v2-support-result {
	font-size: 0.86rem;
	border-radius: 12px;
	padding: 0 0.9rem;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.32s ease, opacity 0.28s ease, padding 0.28s ease;
}
.hub-v2-support-result.show {
	padding: 0.72rem 0.9rem;
	max-height: 80px;
	opacity: 1;
}
.hub-v2-support-result.success {
	background: rgba(157,240,178,0.1);
	border: 1px solid rgba(157,240,178,0.28);
	color: #9df0b2;
}
.hub-v2-support-result.error {
	background: rgba(255,158,168,0.1);
	border: 1px solid rgba(255,158,168,0.28);
	color: #ff9ea8;
}

@keyframes petBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px) scale(1.02); }
}

body.light-theme.subscriber-hub-v2 {
	background:
		radial-gradient(circle at 12% 16%, rgba(var(--accent-pink-rgb), 0.16), transparent 34%),
		radial-gradient(circle at 82% 18%, rgba(var(--accent-purple-rgb), 0.16), transparent 32%),
		linear-gradient(165deg, #fff6fd, #f8eeff 48%, #fff3fc);
}
body.light-theme .hub-v2-card { background: linear-gradient(150deg, rgba(255,255,255,0.9), rgba(248,236,255,0.92)); border-color: rgba(116,72,168,0.16); }
body.light-theme .hub-v2-back {
	color: #fff;
	border-color: rgba(116,72,168,0.56);
	background: linear-gradient(145deg, rgba(116,72,168,0.86), rgba(210,108,164,0.82));
}
body.light-theme .hub-v2-back:hover {
	border-color: rgba(116,72,168,0.82);
	box-shadow: 0 10px 22px rgba(116,72,168,0.24), 0 0 0 4px rgba(116,72,168,0.14);
}
body.light-theme .hub-v2-locked p { color: #6a468e; }
body.light-theme .hub-v2-login-form input { background: rgba(255,255,255,0.76); border-color: rgba(116,72,168,0.22); color: #4d2c73; }
body.light-theme .support-chip {
	background: rgba(255,255,255,0.72);
	border-color: rgba(116,72,168,0.2);
	color: #6a468e;
}
body.light-theme .support-chip:hover {
	border-color: rgba(116,72,168,0.45);
	background: rgba(116,72,168,0.1);
	color: #4d2c73;
}
body.light-theme .support-chip.active {
	border-color: rgba(116,72,168,0.65);
	background: linear-gradient(145deg, rgba(116,72,168,0.2), rgba(210,108,164,0.16));
	color: #4d2c73;
}

@media (max-width: 760px) {
	.hub-v2-login-form { grid-template-columns: 1fr; }
	.hub-v2-login-form .btn { grid-column: auto; }
}

/* ====================== EXIT INTENT POPUP ====================== */
.exit-intent-overlay {
	position: fixed;
	inset: 0;
	background: rgba(8, 4, 22, 0.72);
	backdrop-filter: blur(6px);
	z-index: 2200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity .28s ease;
}
.exit-intent-overlay.show {
	opacity: 1;
	pointer-events: all;
}
.exit-intent-box {
	position: relative;
	background: linear-gradient(145deg, rgba(30, 14, 60, 0.98), rgba(22, 8, 48, 0.98));
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 22px;
	padding: 2.2rem 2rem 1.8rem;
	max-width: 460px;
	width: 100%;
	text-align: center;
	box-shadow: 0 32px 70px rgba(0, 0, 0, 0.6);
	animation: exitBoxIn .34s var(--ease-out) both;
}
@keyframes exitBoxIn {
	from { transform: translateY(28px) scale(0.96); opacity: 0; }
	to { transform: translateY(0) scale(1); opacity: 1; }
}
.exit-intent-emoji {
	font-size: 3rem;
	margin-bottom: 0.6rem;
	animation: wobble 1.2s ease infinite;
}
@keyframes wobble {
	0%, 100% { transform: rotate(-4deg) scale(1); }
	50% { transform: rotate(4deg) scale(1.08); }
}
.exit-intent-box h2 {
	font-size: 1.42rem;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 0.5rem;
}
.exit-intent-box p {
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 1.1rem;
	line-height: 1.55;
}
.exit-intent-box p strong { color: var(--primary); }
.exit-intent-form {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: center;
}
.exit-intent-input {
	flex: 1;
	min-width: 180px;
	padding: 0.6rem 0.9rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	color: var(--text);
	font-size: 0.88rem;
	outline: none;
	transition: border-color .2s;
}
.exit-intent-input:focus { border-color: var(--accent-pink); }
.exit-intent-result {
	font-size: 0.82rem;
	min-height: 1.2em;
	margin-top: 0.6rem;
}
.exit-intent-skip {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.76rem;
	cursor: pointer;
	margin-top: 0.9rem;
	text-decoration: underline;
	transition: color .18s;
	display: block;
	width: 100%;
}
.exit-intent-skip:hover { color: rgba(255, 255, 255, 0.6); }
.exit-intent-close {
	position: absolute;
	top: 0.8rem;
	right: 0.8rem;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: var(--text);
	width: 30px;
	height: 30px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.92rem;
	transition: background .18s;
}
.exit-intent-close:hover { background: rgba(255, 255, 255, 0.2); }

body.light-theme .exit-intent-box {
	background: linear-gradient(145deg, rgba(255, 248, 255, 0.99), rgba(248, 238, 255, 0.99));
	border-color: rgba(116, 72, 168, 0.18);
	box-shadow: 0 32px 70px rgba(116, 72, 168, 0.2);
}
body.light-theme .exit-intent-box h2 { color: #5b3187; }
body.light-theme .exit-intent-box p { color: #6a468e; }
body.light-theme .exit-intent-input { background: rgba(255,255,255,0.7); border-color: rgba(116,72,168,0.26); color: #4d2c73; }
body.light-theme .exit-intent-skip { color: rgba(77,44,115,0.4); }
body.light-theme .exit-intent-skip:hover { color: rgba(77,44,115,0.7); }
body.light-theme .exit-intent-close { background: rgba(116,72,168,0.1); color: #5b3187; }
body.light-theme .exit-intent-close:hover { background: rgba(116,72,168,0.2); }

/* ====================== SOCIAL PROOF TOASTS ====================== */
.social-proof-toast {
	position: fixed;
	left: 1rem;
	bottom: 1rem;
	background: linear-gradient(135deg, rgba(30, 14, 60, 0.96), rgba(40, 18, 76, 0.96));
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 14px;
	padding: 0.64rem 1rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	z-index: 1800;
	box-shadow: 0 12px 28px rgba(0,0,0,0.38);
	min-width: 230px;
	max-width: 290px;
	transform: translateX(-120%);
	transition: transform .38s var(--ease-out), opacity .28s ease;
	opacity: 0;
}
.social-proof-toast.show {
	transform: translateX(0);
	opacity: 1;
}
.social-proof-toast .sp-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0;
}
.social-proof-toast .sp-text { font-size: 0.78rem; line-height: 1.4; color: var(--muted); }
.social-proof-toast .sp-text strong { color: var(--text); display: block; }
.social-proof-toast .sp-time {
	display: block;
	font-size: 0.69rem;
	color: rgba(255,255,255,0.32);
	margin-top: 0.1rem;
}

body.light-theme .social-proof-toast {
	background: linear-gradient(135deg, rgba(255,248,255,0.98), rgba(248,238,255,0.98));
	border-color: rgba(116,72,168,0.18);
	box-shadow: 0 12px 28px rgba(116,72,168,0.2);
}
body.light-theme .social-proof-toast .sp-text { color: #6a468e; }
body.light-theme .social-proof-toast .sp-text strong { color: #5b3187; }
body.light-theme .social-proof-toast .sp-time { color: rgba(77,44,115,0.4); }

/* ====================== COOKIE / KVKK BAR ====================== */
.cookie-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, rgba(20, 8, 46, 0.97), rgba(30, 10, 58, 0.97));
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	z-index: 1900;
	padding: 0.8rem 1.4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	transform: translateY(100%);
	transition: transform .38s var(--ease-out);
	box-shadow: 0 -8px 24px rgba(0,0,0,0.3);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar-content {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex: 1;
	min-width: 240px;
}
.cookie-icon { font-size: 1.4rem; flex-shrink: 0; }
.cookie-bar-content p {
	font-size: 0.8rem;
	color: var(--muted);
	margin: 0;
	line-height: 1.45;
}
.cookie-policy-link {
	background: none;
	border: none;
	color: var(--primary);
	font-weight: 700;
	font-size: inherit;
	cursor: pointer;
	text-decoration: underline;
	padding: 0;
}
.cookie-bar-actions {
	display: flex;
	gap: 0.5rem;
	flex-shrink: 0;
}
.cookie-btn { padding: 0.44rem 0.88rem; font-size: 0.8rem; border-radius: 10px; }

body.light-theme .cookie-bar {
	background: linear-gradient(135deg, rgba(255,248,255,0.98), rgba(248,238,255,0.97));
	border-top-color: rgba(116,72,168,0.18);
	box-shadow: 0 -8px 24px rgba(116,72,168,0.12);
}
body.light-theme .cookie-bar-content p { color: #6a468e; }

/* ====================== SEARCH OVERLAY ====================== */
.search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(8, 4, 22, 0.78);
	backdrop-filter: blur(8px);
	z-index: 2100;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 8vh;
	padding-left: 1rem;
	padding-right: 1rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity .24s ease;
}
.search-overlay.show {
	opacity: 1;
	pointer-events: all;
}
.search-box {
	background: linear-gradient(145deg, rgba(28, 12, 58, 0.98), rgba(20, 8, 46, 0.98));
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 20px;
	padding: 1.4rem;
	max-width: 540px;
	width: 100%;
	box-shadow: 0 28px 58px rgba(0, 0, 0, 0.55);
	animation: searchBoxIn .28s var(--ease-out) both;
}
@keyframes searchBoxIn {
	from { transform: translateY(-18px) scale(0.97); opacity: 0; }
	to { transform: translateY(0) scale(1); opacity: 1; }
}
.search-input-wrap {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 12px;
	padding: 0.62rem 0.9rem;
	margin-bottom: 1rem;
	transition: border-color .2s;
}
.search-input-wrap:focus-within {
	border-color: var(--accent-pink);
	box-shadow: 0 0 0 3px rgba(var(--accent-pink-rgb), 0.12);
}
.search-icon-prefix { font-size: 1rem; flex-shrink: 0; }
.search-input {
	flex: 1;
	background: none;
	border: none;
	outline: none;
	color: var(--text);
	font-size: 1rem;
	font-family: inherit;
}
.search-input::placeholder { color: var(--muted); opacity: 0.7; }
.search-results {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	max-height: 260px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.search-results li {
	padding: 0.6rem 0.8rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	cursor: pointer;
	transition: background .18s, border-color .18s;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.88rem;
	color: var(--muted);
}
.search-results li:hover, .search-results li.active {
	background: rgba(var(--accent-pink-rgb), 0.12);
	border-color: rgba(var(--accent-pink-rgb), 0.3);
	color: var(--text);
}
.search-results li .result-icon { font-size: 1rem; flex-shrink: 0; }
.search-results li .result-title { font-weight: 700; color: var(--text); }
.search-results li .result-desc { font-size: 0.76rem; color: var(--muted); display: block; }
.search-result-empty {
	text-align: center;
	color: var(--muted);
	font-size: 0.84rem;
	padding: 0.8rem 0;
}
.search-hint {
	font-size: 0.72rem;
	color: rgba(255,255,255,0.25);
	text-align: center;
	margin-top: 0.7rem;
}
.search-close {
	position: absolute;
	top: 0.8rem;
	right: 0.8rem;
	background: rgba(255,255,255,0.1);
	border: none;
	color: var(--text);
	width: 30px;
	height: 30px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.92rem;
	display: none;
}
.search-toggle-btn {
	position: fixed;
	bottom: 5.2rem;
	right: 1.2rem;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(40, 18, 76, 0.9), rgba(28, 12, 56, 0.9));
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: var(--text);
	font-size: 1.1rem;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
	transition: transform .22s var(--ease-out), box-shadow .22s;
	z-index: 1700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.search-toggle-btn:hover {
	transform: scale(1.08);
	box-shadow: 0 12px 26px rgba(var(--accent-purple-rgb), 0.3);
}

body.light-theme .search-box {
	background: linear-gradient(145deg, rgba(255,248,255,0.99), rgba(248,238,255,0.99));
	border-color: rgba(116,72,168,0.18);
}
body.light-theme .search-input-wrap {
	background: rgba(255,255,255,0.7);
	border-color: rgba(116,72,168,0.22);
}
body.light-theme .search-input { color: #4d2c73; }
body.light-theme .search-hint { color: rgba(77,44,115,0.35); }
body.light-theme .search-results li { background: rgba(255,255,255,0.55); border-color: rgba(116,72,168,0.14); color: #6a468e; }
body.light-theme .search-results li:hover, body.light-theme .search-results li.active {
	background: rgba(var(--accent-pink-rgb), 0.08);
	border-color: rgba(var(--accent-pink-rgb), 0.25);
	color: #4d2c73;
}
body.light-theme .search-results li .result-title { color: #5b3187; }
body.light-theme .search-toggle-btn {
	background: rgba(255,255,255,0.85);
	border-color: rgba(116,72,168,0.22);
	color: #5b3187;
}

/* ====================== SHARE PANEL ====================== */
.share-panel {
	position: fixed;
	bottom: 9.2rem;
	right: 1.2rem;
	z-index: 1700;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	gap: 0.46rem;
}
.share-panel-toggle {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(40, 18, 76, 0.9), rgba(28, 12, 56, 0.9));
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: var(--text);
	font-size: 1.05rem;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
	transition: transform .22s var(--ease-out), box-shadow .22s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.share-panel-toggle:hover {
	transform: scale(1.08);
	box-shadow: 0 12px 26px rgba(var(--accent-purple-rgb), 0.3);
}
.share-panel-items {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	align-items: center;
	transform: translateY(12px) scale(0.9);
	opacity: 0;
	pointer-events: none;
	transition: transform .28s var(--ease-out), opacity .22s ease;
}
.share-panel.open .share-panel-items {
	transform: translateY(0) scale(1);
	opacity: 1;
	pointer-events: all;
}
.share-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	text-decoration: none;
	color: #fff;
	border: none;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(0,0,0,0.3);
	transition: transform .22s var(--ease-out), box-shadow .22s;
}
.share-btn:hover { transform: scale(1.12); }
.share-btn.wa { background: linear-gradient(135deg, #25d366, #128c3e); }
.share-btn.tw { background: linear-gradient(135deg, #1d9bf0, #0a4f80); font-weight: 800; font-size: 0.85rem; }
.share-btn.copy { background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)); }

body.light-theme .share-panel-toggle {
	background: rgba(255,255,255,0.85);
	border-color: rgba(116,72,168,0.22);
	color: #5b3187;
}

/* ====================== THEME TOGGLE ANIMATION ====================== */
.theme-btn {
	position: relative;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.theme-icon {
	position: absolute;
	font-size: 1.1rem;
	transition: transform .38s var(--ease-out), opacity .3s ease;
	line-height: 1;
}
.theme-moon { transform: rotate(0deg) scale(1); opacity: 1; }
.theme-sun  { transform: rotate(90deg) scale(0.4); opacity: 0; }

body.light-theme .theme-moon { transform: rotate(-90deg) scale(0.4); opacity: 0; }
body.light-theme .theme-sun  { transform: rotate(0deg) scale(1); opacity: 1; }

/* ====================== LIGHT THEME READABILITY FIX ====================== */
body.light-theme {
	color: #2f2145;
}

body.light-theme .page {
	background: rgba(255, 255, 255, 0.97);
	border-color: rgba(74, 46, 116, 0.22);
}

body.light-theme :is(.section-heading p, .subtitle, .hero-slogan, .hero-note, .contact-copy p, .subscribers-copy p, .gallery-copy p, .testimonials-copy p, .about-copy p, .services-copy p, .faq-item p, .timeline-step p, .post-card p, .testimonial-card p, .hub-v2-login-result, .search-results li, .cookie-bar-content p) {
	color: #3f2d5a !important;
}

body.light-theme :is(.section-heading h2, .services-title, .gallery-title, .testimonials-title, .contact-title, .about-title, .post-card h3, .testimonial-meta h3, .faq-item summary, .timeline-step h4, .hero-main-title, .hero-highlight strong) {
	color: #2f1d49 !important;
}

body.light-theme :is(.card, .post-card, .testimonial-card, .gallery-item, .contact-panel, .subscribers-panel, .service-package-card, .service-steps, .resource-item, .vault-item, .search-results li) {
	background: rgba(255, 255, 255, 0.78);
	border-color: rgba(74, 46, 116, 0.2);
}

body.light-theme :is(input, textarea, select, .hub-v2-login-form input, .subscribers-login-form input, .search-input) {
	background: rgba(255, 255, 255, 0.92) !important;
	color: #2d2142 !important;
	border-color: rgba(74, 46, 116, 0.34) !important;
}

body.light-theme :is(input, textarea, .search-input)::placeholder {
	color: rgba(47, 33, 69, 0.58);
}

body.light-theme .main-nav a {
	background: rgba(255, 255, 255, 0.88);
	color: #3a245b;
	border-color: rgba(74, 46, 116, 0.28);
}

body.light-theme.readability-boost .about {
	background: linear-gradient(120deg, rgba(255, 248, 253, 0.97), rgba(248, 241, 255, 0.94)), url('img/about-section-bg.avif');
	border-color: rgba(84,54,128,0.24);
}
body.light-theme.readability-boost .about-copy p,
body.light-theme.readability-boost .about-metrics span,
body.light-theme.readability-boost .about-panel-stats span,
body.light-theme.readability-boost .about-feature-card li {
	color: #3f2d5a !important;
}
body.light-theme.readability-boost .about-metrics article,
body.light-theme.readability-boost .about-panel,
body.light-theme.readability-boost .about-feature-card,
body.light-theme.readability-boost .about-panel-stats article {
	background: rgba(255,255,255,0.8);
	border-color: rgba(84,54,128,0.22);
}
body.light-theme.readability-boost .gallery {
	background: linear-gradient(155deg, rgba(255,251,254,0.98), rgba(249,243,255,0.95));
	border-color: rgba(84,54,128,0.24);
}
body.light-theme.readability-boost .gallery-copy p,
body.light-theme.readability-boost .gallery-note p,
body.light-theme.readability-boost .gallery-item figcaption span,
body.light-theme.readability-boost .gallery-item figcaption p {
	color: #3f2d5a !important;
}
body.light-theme.readability-boost .gallery-strip span,
body.light-theme.readability-boost .gallery-note,
body.light-theme.readability-boost .gallery-item {
	background: rgba(255,255,255,0.82);
	border-color: rgba(84,54,128,0.22);
}

body.light-theme .main-nav a:hover,
body.light-theme .main-nav a.nav-active {
	color: #2e1c48;
}

body.light-theme .exit-intent-skip,
body.light-theme .search-hint,
body.light-theme .social-proof-toast .sp-time {
	color: rgba(47, 33, 69, 0.62) !important;
}

body.light-theme.high-contrast-light {
	color: #201631;
	background-image: linear-gradient(rgba(255, 255, 255, 0.86), rgba(247, 242, 255, 0.9)), url('img/site-background.jpeg');
}

body.light-theme.high-contrast-light .page {
	background: rgba(255, 255, 255, 0.99);
	border-color: rgba(50, 30, 84, 0.32);
}

body.light-theme.high-contrast-light :is(.subtitle, .hero-slogan, .hero-note, .section-heading p, .services-copy p, .about-copy p, .gallery-copy p, .testimonials-copy p, .contact-copy p, .subscribers-copy p, .faq-item p, .timeline-step p, .post-card p, .testimonial-card p, .hub-v2-login-result, .cookie-bar-content p, .search-results li) {
	color: #2f2246 !important;
}

body.light-theme.high-contrast-light :is(.hero-main-title, h1, h2, h3, .services-title, .gallery-title, .testimonials-title, .contact-title, .about-title, .faq-item summary, .timeline-step h4) {
	color: #1f1530 !important;
	text-shadow: none;
}

body.light-theme.high-contrast-light :is(.card, .post-card, .testimonial-card, .gallery-item, .contact-panel, .subscribers-panel, .service-package-card, .service-steps, .resource-item, .vault-item, .hub-v2-card, .search-results li) {
	background: rgba(255, 255, 255, 0.92) !important;
	border-color: rgba(50, 30, 84, 0.28) !important;
}

body.light-theme.high-contrast-light :is(input, textarea, select, .search-input, .hub-v2-login-form input, .subscribers-login-form input) {
	background: #fff !important;
	color: #201631 !important;
	border-color: rgba(50, 30, 84, 0.44) !important;
}

body.light-theme.high-contrast-light .main-nav a {
	background: #fff;
	color: #2a1943;
	border-color: rgba(50, 30, 84, 0.38);
}

@media (max-width: 600px) {
	.exit-intent-box { padding: 1.6rem 1.2rem 1.4rem; }
	.exit-intent-form { flex-direction: column; align-items: stretch; }
	.cookie-bar { flex-direction: column; align-items: flex-start; padding: 0.7rem 1rem; }
	.share-panel { bottom: 8rem; }
	.search-toggle-btn { bottom: 4.4rem; }
}

/* ====================== NEW GROWTH SECTIONS ====================== */
.mobile-sticky-cta {
	position: fixed;
	left: 50%;
	bottom: 12px;
	transform: translateX(-50%) translateY(120%);
	padding: 0.7rem 1.2rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #ef4f9f, #9f57e7, #f39c34);
	color: #fff;
	text-decoration: none;
	font-weight: 800;
	letter-spacing: 0.03em;
	z-index: 1600;
	box-shadow: 0 12px 28px rgba(0,0,0,0.35);
	transition: transform .24s var(--ease-out), opacity .2s ease;
	opacity: 0;
}
.mobile-sticky-cta.show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

.comparison,
.pricing,
.insights,
.community {
	background: linear-gradient(155deg, rgba(34, 12, 58, 0.94), rgba(22, 11, 48, 0.9));
	border-color: rgba(255,255,255,0.12);
}
.comparison-intro,
.pricing-intro,
.insights-intro { margin-bottom: 0.75rem; }

.comparison-table-wrap {
	overflow-x: auto;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(255,255,255,0.04);
}
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 560px;
}
.comparison-table th,
.comparison-table td {
	padding: 0.66rem 0.74rem;
	text-align: left;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	font-size: 0.82rem;
}
.comparison-table th { color: #ffe39b; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.comparison-cta-row { margin-top: 0.72rem; }

.pricing-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}
.pricing-card {
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(255,255,255,0.06);
	padding: 0.88rem;
	display: grid;
	gap: 0.45rem;
}
.pricing-card.featured {
	background: linear-gradient(145deg, rgba(var(--accent-purple-rgb), 0.24), rgba(var(--accent-pink-rgb), 0.18));
	border-color: rgba(var(--accent-pink-rgb), 0.46);
}
.pricing-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; color: #f2cc84; text-transform: uppercase; }
.pricing-card h3 { font-size: 1.02rem; }
.pricing-price { color: #fff; font-weight: 800; font-size: 1.12rem; }
.pricing-card ul { list-style: none; display: grid; gap: 0.34rem; }
.pricing-card li { font-size: 0.8rem; color: #e5ddff; }
.pricing-countdown {
	margin-top: 0.7rem;
	font-size: 0.82rem;
	font-weight: 700;
	padding: 0.5rem 0.7rem;
	border-radius: 10px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	color: #ffe39b;
}

.subscribe-row select {
	flex: 1;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.2);
	background: #2f1e5d;
	color: #fff;
	padding: 0.72rem 0.8rem;
}
.live-counter-text {
	margin-top: 0.7rem;
	font-size: 0.82rem;
	color: #d9ccfb;
}
.live-counter-text strong { color: #ffe39b; }

.faq-cta-row { margin-top: 0.7rem; }

.insights-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.6rem;
}
.insight-card {
	border-radius: 14px;
	padding: 0.8rem;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(255,255,255,0.06);
	display: grid;
	gap: 0.4rem;
}
.insight-tag {
	display: inline-flex;
	width: fit-content;
	padding: 0.22rem 0.5rem;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 800;
	background: rgba(var(--primary-rgb), 0.2);
	border: 1px solid rgba(var(--primary-rgb), 0.35);
	color: #ffe3a2;
}
.insight-card h3 { font-size: 0.95rem; color: #fff; }
.insight-card p { font-size: 0.8rem; color: #ddd5ff; }
.insight-card a { color: #f2cc84; font-weight: 700; text-decoration: none; font-size: 0.78rem; }

.community-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}
.community-card {
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(255,255,255,0.06);
	padding: 0.88rem;
	display: grid;
	gap: 0.5rem;
}
.community-card h3 { font-size: 1rem; color: #fff; }
.community-card p { font-size: 0.82rem; color: #e6ddff; }
.community-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.referral-box {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	padding: 0.6rem;
	border-radius: 12px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.16);
}
.referral-box strong {
	font-size: 0.96rem;
	letter-spacing: 0.05em;
	color: #ffe39b;
	font-family: 'Space Grotesk', 'Manrope', sans-serif;
}

body.light-theme .comparison,
body.light-theme .pricing,
body.light-theme .insights,
body.light-theme .community {
	background: linear-gradient(155deg, rgba(255,247,253,0.96), rgba(245,236,255,0.92));
	border-color: rgba(116,72,168,0.16);
}
body.light-theme .comparison-table-wrap,
body.light-theme .pricing-card,
body.light-theme .insight-card,
body.light-theme .community-card,
body.light-theme .referral-box {
	background: rgba(255,255,255,0.62);
	border-color: rgba(116,72,168,0.18);
}
body.light-theme .comparison-table th { color: #8a6010; }
body.light-theme .comparison-table td,
body.light-theme .pricing-card li,
body.light-theme .insight-card p,
body.light-theme .community-card p,
body.light-theme .live-counter-text { color: #62408e; }
body.light-theme .pricing-card h3,
body.light-theme .insight-card h3,
body.light-theme .community-card h3 { color: #5b3187; }
body.light-theme .pricing-price,
body.light-theme .referral-box strong,
body.light-theme .live-counter-text strong { color: #7b5214; }
body.light-theme .subscribe-row select {
	background: rgba(255,255,255,0.82);
	color: #4d2c73;
	border-color: rgba(116,72,168,0.24);
}

@media (max-width: 860px) {
	.pricing-grid,
	.community-grid,
	.insights-grid { grid-template-columns: 1fr; }
}

@media (min-width: 861px) {
	.mobile-sticky-cta { display: none; }
}

/* Mobile fixes: page navigation layout + light theme hamburger visibility */
@media (max-width: 860px) {
	.mobile-menu-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		font-size: 1.22rem;
		font-weight: 800;
		line-height: 1;
	}
	body.light-theme .mobile-menu-btn {
		background: rgba(255,255,255,0.92);
		color: #5b3187;
		border: 1px solid rgba(116,72,168,0.34);
		box-shadow: 0 6px 14px rgba(116,72,168,0.14);
	}
	body.light-theme .mobile-menu-btn:hover {
		background: rgba(255,255,255,1);
		color: #4d2c73;
		border-color: rgba(116,72,168,0.55);
	}
}

@media (max-width: 600px) {
	.page-controls {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			'status status'
			'prev next';
		gap: 0.45rem;
		align-items: stretch;
	}
	.page-status {
		grid-area: status;
		text-align: center;
	}
	#prevPage {
		grid-area: prev;
		width: 100%;
		min-width: 0;
		margin-right: 0;
	}
	#nextPage {
		grid-area: next;
		width: 100%;
		min-width: 0;
		margin-right: 0;
	}
}
