/* ==========================================================================
   TKCursor — Pixel-match for tkcursor.pro
   Pure dark grayscale theme. White accents. Sparing color use.
   ========================================================================== */

/* ---------- Tokens ------------------------------------------------------ */
:root {
	--bg:          #0a0a0a;
	--bg-2:        #111111;
	--bg-3:        #181818;
	--bg-card:     #141414;
	--bg-elevated: #1c1c1c;
	--border:      #232323;
	--border-2:    #2e2e2e;
	--text:        #f5f5f5;
	--text-2:      #d4d4d4;
	--text-mute:   #a3a3a3;
	--text-dim:    #737373;

	--primary:     #7c3aed;
	--accent:      #a855f7;
	--accent-2:    #c084fc;
	--cyan:        #22d3ee;
	--blue:        #2563eb;
	--blue-2:      #3b82f6;
	--green:       #22c55e;
	--green-2:     #16a34a;
	--yellow:      #facc15;
	--orange:      #f97316;
	--red:         #dc2626;
	--red-2:       #ef4444;
	--pink:        #ec4899;
	--magenta:     #d946ef;

	--shadow-sm:  0 1px 2px rgba(0,0,0,.4);
	--shadow:     0 4px 12px rgba(0,0,0,.35);
	--shadow-lg:  0 12px 32px rgba(0,0,0,.55);
	--shadow-xl:  0 24px 60px rgba(0,0,0,.7);

	--r-sm:   6px;
	--r:      10px;
	--r-md:   14px;
	--r-lg:   18px;
	--r-xl:   24px;
	--r-full: 999px;

	--ease:     cubic-bezier(.4,0,.2,1);
	--ease-out: cubic-bezier(.16,1,.3,1);

	--container:   1280px;
	--container-w: 1440px;

	--header-h: 64px;
	--banner-h: 38px;
}

/* ---------- Reset ------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a, a:where(:not(.wp-element-button)) { color: inherit; text-decoration: none !important; transition: color .2s var(--ease); }
a:hover, a:where(:not(.wp-element-button)):hover { color: var(--accent-2); text-decoration: none !important; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: 700; line-height: 1.15; letter-spacing: -.02em; color: var(--text); }
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0; }
hr { border: 0; border-top: 1px solid var(--border); margin: 2rem 0; }
code, pre { font-family: 'JetBrains Mono', Consolas, monospace; }
::selection { background: rgba(168,85,247,.4); color: #fff; }

/* ---------- Layout primitives ------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container--wide { max-width: var(--container-w); }
.container--narrow { max-width: 880px; }
.section { padding-block: clamp(56px, 8vw, 96px); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, 64px); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section__title {
	display: inline-block;
	margin-bottom: 0;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--text);
}
.section__head .section__title { margin-bottom: 18px; }
.section__lead  { color: var(--text-mute); font-size: 1rem; max-width: 720px; margin-inline: auto; }

/* ---------- Buttons ----------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 22px; border-radius: var(--r-full);
	font-weight: 600; font-size: 14px; line-height: 1;
	white-space: nowrap; cursor: pointer; user-select: none;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
	border: 1px solid transparent;
	text-decoration: none !important;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm  { padding: 9px 16px; font-size: 13px; }
.btn--lg  { padding: 14px 26px; font-size: 15px; }
.btn--xl  { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* Primary = WHITE pill (matches source) */
.btn--primary {
	background: linear-gradient(180deg, #ffffff 0%, #e5e5e5 100%);
	color: #0a0a0a;
	border-color: #ffffff;
	box-shadow: 0 1px 0 rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn--primary:hover { background: #ffffff; color: #0a0a0a; box-shadow: 0 4px 14px rgba(255,255,255,.15); }

.btn--ghost {
	background: rgba(255,255,255,.03);
	color: var(--text);
	border-color: var(--border-2);
}
.btn--ghost:hover { background: rgba(255,255,255,.06); border-color: var(--border-2); color: var(--text); }

.btn--dark {
	background: var(--bg-3);
	color: var(--text);
	border-color: var(--border);
}
.btn--dark:hover { background: var(--bg-elevated); color: var(--text); }

.btn--outline {
	background: transparent; color: var(--text);
	border-color: var(--border-2);
}
.btn--outline:hover { background: rgba(255,255,255,.04); color: var(--text); }

/* Accent buttons (purple/violet) used SPARINGLY */
.btn--accent {
	background: var(--primary); color: #fff; border-color: transparent;
}
.btn--accent:hover { background: #6d28d9; color: #fff; }

/* ---------- Cards (clean, no glow) ------------------------------------- */
.card {
	position: relative;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 28px 24px;
	transition: border-color .25s var(--ease), background .25s var(--ease);
}
.card:hover { border-color: var(--border-2); background: #161616; }
.card__icon {
	width: 56px; height: 56px; border-radius: var(--r);
	display: grid; place-items: center;
	font-size: 24px; margin-bottom: 18px; color: #fff;
}
.card__title { margin-bottom: 10px; font-size: 18px; }
.card__text  { color: var(--text-mute); font-size: 14px; line-height: 1.6; }

/* ---------- Badges ------------------------------------------------------ */
.badge {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 4px 10px; border-radius: var(--r-full);
	font-size: 11px; font-weight: 600; letter-spacing: .02em;
	background: var(--bg-3); color: var(--text-2);
	border: 1px solid var(--border-2);
}

/* ==========================================================================
   1. Warning banner (bright red, source-style)
   ========================================================================== */
.warning-banner {
	position: relative;
	background: var(--red);
	border-bottom: 1px solid #b91c1c;
	overflow: hidden;
	height: var(--banner-h);
	display: flex; align-items: center;
	font-size: 13px; font-weight: 500;
	color: #ffffff;
}
.warning-banner__track {
	display: flex; gap: 80px; white-space: nowrap;
	animation: marquee 60s linear infinite;
	will-change: transform;
}
.warning-banner__track:hover { animation-play-state: paused; }
.warning-banner__item { display: inline-flex; align-items: center; gap: 8px; }
.warning-banner__item .warn-link { color: #fef08a; text-decoration: underline !important; }
.warning-banner__item .warn-link:hover { color: #fff; }
.warning-banner__item .dot { color: rgba(255,255,255,.5); }
.warning-banner__item .alert { color: #fde68a; }

@keyframes marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ==========================================================================
   2. Site header (text-only logo, source nav, auth buttons)
   ========================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(10,10,10,.85);
	backdrop-filter: saturate(140%) blur(14px);
	-webkit-backdrop-filter: saturate(140%) blur(14px);
	border-bottom: 1px solid var(--border);
}
.header__inner {
	display: flex; align-items: center; gap: 32px;
	height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 0; }
.brand:hover { color: var(--text); }
.brand__name { font-weight: 800; font-size: 19px; letter-spacing: -.01em; color: var(--text); }

.primary-nav { flex: 1; }
.primary-nav__list {
	display: flex; align-items: center; gap: 6px;
}
.primary-nav__list a {
	display: inline-block; padding: 8px 12px;
	font-size: 14px; font-weight: 500; color: var(--text-mute);
	border-radius: var(--r);
}
.primary-nav__list a:hover { color: var(--text); }
.primary-nav__list a.is-active { color: var(--text); font-weight: 600; }

.header__cta { display: flex; align-items: center; gap: 6px; }
.header__icon-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: var(--r-full);
	color: var(--text-mute);
	background: transparent;
	border: 0;
	transition: color .2s, background .2s;
}
.header__icon-btn:hover { color: var(--text); background: rgba(255,255,255,.05); }
.header__icon-btn .header__cart-count {
	position: absolute; top: -4px; right: -4px;
	min-width: 18px; height: 18px; padding: 0 5px;
	border-radius: var(--r-full);
	background: var(--red); color: #fff;
	font-size: 10px; font-weight: 700;
	display: grid; place-items: center;
}
.header__cart { position: relative; }
.header__signin { color: var(--text-mute); font-size: 14px; padding: 8px 12px; }
.header__signin:hover { color: var(--text); }
.header__signup {
	padding: 8px 18px; border-radius: var(--r-full);
	background: transparent; border: 1px solid var(--text);
	color: var(--text); font-size: 14px; font-weight: 600;
	transition: background .2s, color .2s;
}
.header__signup:hover { background: var(--text); color: var(--bg); }

.hamburger {
	display: none; width: 40px; height: 40px;
	flex-direction: column; align-items: center; justify-content: center; gap: 5px;
	border-radius: var(--r); background: rgba(255,255,255,.04);
	border: 1px solid var(--border-2);
}
.hamburger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
	display: none;
	position: fixed; left: 0; right: 0;
	top: calc(var(--banner-h) + var(--header-h));
	background: var(--bg-2);
	border-bottom: 1px solid var(--border);
	padding: 16px 24px 24px;
	flex-direction: column; gap: 4px;
	z-index: 99;
	max-height: calc(100vh - var(--banner-h) - var(--header-h));
	overflow-y: auto;
}
.mobile-menu.is-open { display: flex; animation: slideDown .25s var(--ease-out); }
.mobile-menu a {
	padding: 14px 12px; border-radius: var(--r);
	color: var(--text-2); font-weight: 500;
	border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: 0; margin-top: 8px; justify-content: center; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   3. Hero (clean dark, video thumb on right, plain white title)
   ========================================================================== */
.hero { padding-block: clamp(56px, 7vw, 96px); position: relative; }
.hero__grid {
	display: grid; gap: 56px; align-items: center;
	grid-template-columns: 1.05fr .95fr;
}
.hero__eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 14px; border-radius: var(--r-full);
	background: var(--bg-3); color: var(--text-2);
	font-size: 12px; font-weight: 500;
	border: 1px solid var(--border);
	margin-bottom: 24px;
}
.hero__title {
	font-size: clamp(2.4rem, 5vw, 4rem);
	line-height: 1.05;
	margin-bottom: 24px;
	color: var(--text);
}
.hero__lead {
	font-size: clamp(1rem, 1.2vw, 1.05rem);
	color: var(--text-mute);
	margin-bottom: 28px; max-width: 560px;
	line-height: 1.65;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero__cta .btn { gap: 8px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero__chip {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 14px; border-radius: var(--r-full);
	background: transparent; border: 1px solid var(--border-2);
	color: var(--text-2); font-size: 13px;
}
.hero__chip svg { color: var(--text-mute); }

.hero__offer {
	display: flex; align-items: center; gap: 14px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 14px 18px;
}
.hero__offer-icon { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-3); color: var(--text-mute); flex: 0 0 auto; font-size: 14px; }
.hero__offer-title { font-weight: 600; color: var(--text); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.hero__offer-title .flame { color: var(--orange); }
.hero__offer-text  { font-size: 12px; color: var(--text-mute); margin-top: 2px; }
.hero__offer-text strong { color: var(--text-2); }

.hero__disclaimer {
	margin-top: 28px;
	padding: 14px 18px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	font-size: 13px; color: var(--text-mute);
	line-height: 1.55;
	display: flex; gap: 10px; align-items: flex-start;
}
.hero__disclaimer svg { flex: 0 0 auto; color: var(--text-mute); margin-top: 2px; }

/* Hero right: YouTube video thumbnail */
.hero__video {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	aspect-ratio: 16 / 10;
	cursor: pointer;
	background: #000;
}
.hero__video img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .5s var(--ease), filter .3s;
}
.hero__video:hover img { transform: scale(1.04); filter: brightness(1.05); }
.hero__video-play {
	position: absolute; inset: 0;
	display: grid; place-items: center;
	background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.35) 100%);
}
.hero__video-play .play-circle {
	width: 76px; height: 76px; border-radius: 50%;
	background: rgba(255,255,255,.92);
	display: grid; place-items: center;
	color: #000; transition: transform .25s, background .25s;
	box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.hero__video:hover .play-circle { transform: scale(1.08); background: #fff; }
.hero__video-play .play-circle svg { margin-left: 4px; }

.hero__video-badge {
	position: absolute; top: 14px; left: 14px;
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 12px; border-radius: var(--r-full);
	background: rgba(0,0,0,.6); color: #fff;
	font-size: 12px; font-weight: 600;
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,.1);
}
.hero__video-badge::before {
	content: ""; width: 8px; height: 8px; border-radius: 50%;
	background: var(--red-2);
	animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%      { opacity: .4; transform: scale(.85); }
}

/* ==========================================================================
   4. Products grid (stacked buttons, white primary, dark badges)
   ========================================================================== */
.products { padding-block: clamp(48px, 7vw, 80px); }
.products__grid {
	display: grid; gap: 24px;
	grid-template-columns: repeat(4, 1fr);
}
.product-card {
	position: relative;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.product-card:hover { transform: translateY(-3px); border-color: var(--border-2); }
.product-card__media {
	position: relative; aspect-ratio: 1 / 1; overflow: hidden;
	background: #0d0d0d;
}
.product-card__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .4s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.04); }

.product-card__cat {
	position: absolute; top: 12px; left: 12px;
	padding: 4px 12px; border-radius: var(--r-full);
	background: rgba(0,0,0,.7); color: var(--text);
	font-size: 11px; font-weight: 500;
	backdrop-filter: blur(6px);
	border: 1px solid var(--border-2);
}
.product-card__discount {
	position: absolute; top: 12px; right: 12px;
	padding: 5px 11px; border-radius: var(--r-sm);
	background: var(--red); color: #fff;
	font-size: 12px; font-weight: 700;
}
.product-card__popular {
	position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
	padding: 5px 14px; border-radius: var(--r-sm);
	background: #fff; color: #000;
	font-size: 11px; font-weight: 700; letter-spacing: .04em;
}

.product-card__body { padding: 18px 18px 18px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.product-card__title {
	font-size: 14px; font-weight: 600; line-height: 1.5;
	min-height: 42px; color: var(--text);
	display: -webkit-box;
	-webkit-line-clamp: 2; -webkit-box-orient: vertical;
	overflow: hidden;
}
.product-card__rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-2); }
.product-card__rating .stars { color: var(--yellow); letter-spacing: 1px; }

.product-card__price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.product-card__price    { font-size: 20px; font-weight: 800; color: var(--text); }
.product-card__regular  { font-size: 13px; color: var(--text-dim); text-decoration: line-through !important; }
.product-card__save     { font-size: 12px; color: var(--green); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.product-card__save::before { content: "💵"; font-size: 11px; }

.product-card__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.product-card__chip {
	display: inline-flex; align-items: center; gap: 4px;
	font-size: 11px; padding: 3px 8px; border-radius: var(--r-full);
	background: transparent; color: var(--text-mute); border: 1px solid var(--border-2);
}
.product-card__chip svg { width: 10px; height: 10px; color: var(--text-mute); }

.product-card__actions { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.product-card__actions .btn { padding: 10px 14px; font-size: 13px; width: 100%; gap: 6px; }
.product-card__actions .btn--primary { background: linear-gradient(180deg, #f5f5f5 0%, #d4d4d4 100%); border-color: #d4d4d4; }
.product-card__actions .btn--dark { background: var(--bg-3); border-color: var(--border); }

.products__viewall { text-align: center; margin-top: 40px; }

/* ==========================================================================
   5. Live demo race
   ========================================================================== */
.live-demo { padding-block: clamp(56px, 8vw, 96px); position: relative; }
.live-demo__panel {
	background: transparent;
	max-width: 1100px; margin: 0 auto;
}
.live-demo__controls { display: flex; justify-content: center; gap: 12px; margin-bottom: 32px; }

.live-demo__race {
	display: grid; gap: 24px;
	grid-template-columns: 1fr auto 1fr;
	align-items: stretch;
}
.live-demo__lane {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 22px;
	min-height: 380px;
	display: flex; flex-direction: column;
}
.live-demo__lane--ai { border-color: rgba(34,197,94,.35); background: linear-gradient(180deg, rgba(34,197,94,.04), var(--bg-card)); }
.live-demo__lane-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 12px; }
.live-demo__lane-name { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.live-demo__lane-icon {
	width: 32px; height: 32px; border-radius: var(--r-sm);
	display: grid; place-items: center;
	background: var(--bg-3); color: var(--text-2);
	border: 1px solid var(--border-2);
	font-size: 14px;
}
.live-demo__lane--ai .live-demo__lane-icon { background: var(--green); color: #fff; border-color: var(--green); }
.live-demo__lane-name .sub { display: block; font-size: 11px; font-weight: 400; color: var(--text-mute); margin-top: 2px; }
.live-demo__lane--ai .live-demo__lane-name .sub { color: var(--green); }
.live-demo__live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-right: 4px; animation: pulse 1.5s ease-in-out infinite; }
.live-demo__time {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 12px; border-radius: var(--r-full);
	background: var(--bg-3); border: 1px solid var(--border-2);
	font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 13px;
	color: var(--text);
}
.live-demo__time::before { content: ""; width: 12px; height: 12px; background: var(--text-mute); border-radius: 50%; }
.live-demo__lane--ai .live-demo__time { border-color: rgba(34,197,94,.4); color: var(--green); }
.live-demo__lane--ai .live-demo__time::before { background: var(--green); }

.live-demo__bar {
	height: 4px; background: rgba(255,255,255,.06); border-radius: var(--r-full);
	overflow: hidden; margin-bottom: 14px;
}
.live-demo__bar-fill {
	height: 100%; width: 0%;
	background: var(--text-mute);
	transition: width .1s linear;
}
.live-demo__lane--ai .live-demo__bar-fill { background: var(--green); }

.live-demo__steps { list-style: none; padding: 0; margin: 0 0 14px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.live-demo__steps li { height: 4px; border-radius: 2px; background: rgba(255,255,255,.06); transition: background .2s; }
.live-demo__steps li.is-active { background: var(--text-mute); }
.live-demo__lane--ai .live-demo__steps li.is-active { background: var(--green); }

.live-demo__editor {
	flex: 1; background: #0a0a0a;
	border-radius: var(--r); padding: 0;
	font-family: 'JetBrains Mono', monospace; font-size: 12.5px;
	color: var(--text-mute); line-height: 1.7;
	min-height: 200px;
	display: flex; overflow: hidden;
	border: 1px solid var(--border);
}
.live-demo__editor-gutter {
	display: flex; flex-direction: column;
	padding: 12px 8px;
	background: var(--bg-2);
	color: var(--text-dim); font-size: 11px;
	text-align: right;
	border-right: 1px solid var(--border);
	min-width: 32px;
}
.live-demo__editor-gutter span { line-height: 1.7; }
.live-demo__code { flex: 1; padding: 12px 14px; white-space: pre-wrap; margin: 0; font-family: inherit; font-size: inherit; color: inherit; line-height: inherit; min-height: 100%; }
.live-demo__lane--ai .live-demo__code { color: #86efac; }

.live-demo__vs {
	width: 64px; height: 64px; border-radius: 50%;
	display: grid; place-items: center;
	background: var(--bg-3);
	color: var(--orange);
	font-weight: 800; font-size: 14px; letter-spacing: .05em;
	border: 1px solid var(--border-2);
	align-self: center;
}

/* ==========================================================================
   6. Three feature cards (colored icons)
   ========================================================================== */
.features3 { padding-block: clamp(48px, 6vw, 80px); }
.features3__grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.features3 .card { text-align: center; padding: 36px 28px; }
.features3 .card__icon { margin: 0 auto 18px; width: 64px; height: 64px; border-radius: var(--r-md); }
.features3 .card__icon--blue   { background: var(--blue-2); }
.features3 .card__icon--green  { background: var(--green); }
.features3 .card__icon--magenta{ background: linear-gradient(135deg, var(--magenta), #f472b6); }
.features3 .card__title { color: var(--text); }

/* ==========================================================================
   7. Customer proofs (blue + orange pills, no overlay verified)
   ========================================================================== */
.proofs { padding-block: clamp(56px, 8vw, 96px); }
.proofs__stats {
	display: grid; gap: 16px;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 40px;
}
.proofs__stat {
	text-align: center;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 24px 16px;
}
.proofs__stat-value {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 800;
	color: var(--text);
	margin-bottom: 4px;
}
.proofs__stat-label { font-size: 12px; color: var(--text-mute); text-transform: uppercase; letter-spacing: .08em; }

.proofs__grid {
	display: grid; gap: 20px;
	grid-template-columns: repeat(3, 1fr);
}
.proof-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform .25s var(--ease), border-color .25s var(--ease);
	position: relative;
}
.proof-card:hover { transform: translateY(-2px); border-color: var(--border-2); }
.proof-card__media {
	aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-3); position: relative;
}
.proof-card__media img { width: 100%; height: 100%; object-fit: cover; }

.proof-card__top-pills {
	position: absolute; top: 12px; left: 12px; right: 12px;
	display: flex; justify-content: space-between; gap: 8px; pointer-events: none;
}
.proof-card__badge {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 5px 11px; border-radius: var(--r-full);
	font-size: 11px; font-weight: 600;
	backdrop-filter: blur(6px);
}
.proof-card__badge--blue   { background: var(--blue); color: #fff; }
.proof-card__badge--orange { background: var(--orange); color: #fff; }

.proof-card__body { padding: 18px 20px; }
.proof-card__title { font-size: 14px; font-weight: 600; margin-bottom: 8px; line-height: 1.5; color: var(--text); display: flex; gap: 6px; align-items: flex-start; }
.proof-card__desc  { font-size: 13px; color: var(--text-mute); margin-bottom: 14px; line-height: 1.55; }
.proof-card__time  { font-size: 12px; color: var(--text-dim); }
.proof-card__bar {
	height: 3px;
	background: linear-gradient(90deg, var(--accent) 0%, var(--blue-2) 50%, var(--green) 100%);
}

.proofs__trust {
	display: flex; flex-wrap: wrap; gap: 24px; justify-content: center;
	padding: 20px; margin-top: 32px;
	background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg);
}
.proofs__trust span {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--text-2); font-size: 14px;
}
.proofs__trust svg { color: var(--green); }

.proofs__viewall { text-align: center; margin-top: 32px; }

/* ==========================================================================
   8. Why us (4 cards) + 9. Why Pro (3 features)
   ========================================================================== */
.why { padding-block: clamp(56px, 8vw, 96px); }
.why__grid { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.why .card__icon { background: var(--bg-3); border: 1px solid var(--border-2); color: var(--text); }
.why .card__icon--blue   { background: var(--blue-2); border-color: var(--blue-2); color: #fff; }
.why .card__icon--green  { background: var(--green); border-color: var(--green); color: #fff; }
.why .card__icon--orange { background: var(--orange); border-color: var(--orange); color: #fff; }
.why .card__icon--purple { background: var(--accent); border-color: var(--accent); color: #fff; }

.whypro { padding-block: clamp(48px, 6vw, 80px); }
.whypro__grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.whypro .card__icon { background: var(--accent); color: #fff; }

/* ==========================================================================
   10. Comparison (card-grid header, dark pill cells)
   ========================================================================== */
.compare { padding-block: clamp(56px, 8vw, 96px); }
.compare__wrap { background: transparent; border-radius: 0; overflow: visible; }
.compare__table-scroll { overflow-x: auto; }
.compare__table {
	width: 100%; border-collapse: separate; border-spacing: 16px 8px;
	min-width: 900px;
}
.compare__table thead th { padding: 0; vertical-align: bottom; }
.compare__table tbody th { font-weight: 500; color: var(--text-mute); text-align: left; padding: 16px 18px; font-size: 14px; width: 200px; }
.compare__table tbody td {
	padding: 16px 18px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r);
	color: var(--text-mute);
	font-size: 13px;
	vertical-align: middle;
}
.compare__cell-recommended { background: linear-gradient(180deg, #1a1a1a, var(--bg-card)) !important; border-color: var(--border-2) !important; color: var(--text) !important; }
.compare__yes  { color: var(--text); font-weight: 600; }
.compare__no   { color: var(--text-dim); font-weight: 500; }
.compare__warn { color: var(--text-mute); }

.compare__th-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 22px 16px;
	display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
	min-height: 200px;
}
.compare__th-card .icon-circle {
	width: 44px; height: 44px; border-radius: 50%;
	display: grid; place-items: center;
	background: linear-gradient(135deg, var(--accent), var(--magenta));
	color: #fff; font-size: 18px;
	margin-bottom: 4px;
}
.compare__th-card .icon-circle--gray { background: var(--bg-3); color: var(--text-mute); border: 1px solid var(--border-2); }
.compare__th-card .icon-circle--blue { background: var(--blue-2); }
.compare__th-card .icon-circle--orange { background: var(--orange); }
.compare__th-card .name { font-weight: 700; font-size: 16px; color: var(--text); }
.compare__th-card .sub  { font-size: 12px; color: var(--text-mute); font-weight: 400; }
.compare__th-card .price { font-size: 13px; color: var(--text-2); font-weight: 600; margin-top: auto; padding-top: 8px; }
.compare__th-card .price small { display: block; font-size: 11px; color: var(--text-dim); font-weight: 400; text-decoration: line-through; margin-top: 2px; }
.compare__th-card.is-recommended {
	border: 2px solid var(--text);
	position: relative;
	background: linear-gradient(180deg, #1a1a1a 0%, var(--bg-card) 100%);
}
.compare__th-card.is-recommended .recommend-badge {
	display: inline-flex; align-items: center; gap: 4px;
	margin-top: 4px; padding: 4px 10px;
	border-radius: var(--r-full);
	background: #fff; color: #000;
	font-size: 10px; font-weight: 700; letter-spacing: .04em;
}

.compare__callouts {
	display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr);
	margin-top: 40px;
}
.compare__callout {
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--r-lg); padding: 28px;
}
.compare__callout h4 { color: var(--text); margin-bottom: 16px; font-size: 15px; font-weight: 700; }
.compare__callout ul { display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: var(--text-mute); }
.compare__callout ul li { padding-left: 20px; position: relative; }
.compare__callout ul li::before { content: "•"; color: var(--text-2); position: absolute; left: 0; font-weight: 700; }
.compare__callout ul strong { color: var(--text); font-weight: 600; }

/* ==========================================================================
   11. Customer success stories (clean, italic quote, no border)
   ========================================================================== */
.stories { padding-block: clamp(56px, 8vw, 96px); }
.stories__stats {
	display: grid; gap: 16px;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 48px;
}
.stories__stat {
	text-align: center;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 24px 16px;
}
.stories__stat-value {
	font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800;
	color: var(--text);
	margin-bottom: 4px;
}
.stories__stat-label { font-size: 13px; color: var(--text-mute); }

.stories__grid {
	display: grid; gap: 24px;
	grid-template-columns: repeat(3, 1fr);
}
.story {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 28px;
	display: flex; flex-direction: column;
	transition: border-color .25s var(--ease);
}
.story:hover { border-color: var(--border-2); }
.story__head { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.story__avatar {
	width: 52px; height: 52px; border-radius: 50%;
	overflow: hidden; flex: 0 0 auto;
	background: var(--bg-3);
	position: relative;
}
.story__avatar img { width: 100%; height: 100%; object-fit: cover; }
.story__avatar::after {
	content: ""; position: absolute; bottom: 2px; right: 2px;
	width: 11px; height: 11px; border-radius: 50%;
	background: var(--green);
	border: 2px solid var(--bg-card);
}
.story__name { font-weight: 700; font-size: 15px; color: var(--text); }
.story__role { font-size: 12px; color: var(--text-mute); margin-top: 2px; }
.story__company { font-size: 12px; color: var(--text-2); font-weight: 600; margin-top: 1px; }
.story__rating { display: flex; align-items: center; gap: 5px; margin-bottom: 14px; font-size: 13px; color: var(--text-2); }
.story__rating .stars { color: var(--yellow); letter-spacing: 1px; }
.story__quote {
	color: var(--text-2); font-size: 14px; line-height: 1.6;
	font-style: italic;
	margin: 0 0 16px;
	padding: 0;
	background: transparent;
	border: 0;
}
.story__results { margin-bottom: 16px; }
.story__results h4 { font-size: 13px; color: var(--text); margin-bottom: 10px; font-weight: 600; }
.story__results ul { display: flex; flex-direction: column; gap: 6px; }
.story__results li { font-size: 13px; color: var(--text-mute); padding-left: 16px; position: relative; }
.story__results li::before { content: "•"; color: var(--text-mute); position: absolute; left: 4px; }
.story__stack { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 4px; }
.story__stack span {
	font-size: 11px; padding: 4px 10px; border-radius: var(--r-full);
	background: var(--bg-3); color: var(--text-2); border: 1px solid var(--border-2);
}

.stories__cta {
	margin-top: 48px; padding: 48px 32px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	text-align: center;
}
.stories__cta h3 { margin-bottom: 12px; font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--text); }
.stories__cta p  { color: var(--text-mute); margin-bottom: 24px; max-width: 560px; margin-inline: auto; }
.stories__cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ==========================================================================
   12. Usage guide (cleaner)
   ========================================================================== */
.guide { padding-block: clamp(56px, 8vw, 96px); }
.guide__intro {
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--r-lg); padding: 24px;
	display: flex; flex-wrap: wrap; gap: 20px; align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}
.guide__intro h3 { font-size: 18px; margin-bottom: 6px; color: var(--text); }
.guide__intro p { color: var(--text-mute); font-size: 14px; margin-bottom: 4px; }
.guide__intro p strong { color: var(--text); }
.guide__intro-tip { font-size: 12px; color: var(--text-mute); margin-top: 6px; }

.guide__grid {
	display: grid; gap: 20px;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 40px;
}
.guide-step {
	position: relative;
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--r-lg); padding: 28px 24px;
	transition: border-color .25s var(--ease);
}
.guide-step:hover { border-color: var(--border-2); }
.guide-step__num {
	position: absolute; top: -16px; left: 24px;
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--text); color: var(--bg);
	display: grid; place-items: center; font-weight: 800; font-size: 15px;
}
.guide-step__meta { display: flex; gap: 8px; align-items: center; margin-top: 4px; margin-bottom: 12px; font-size: 12px; }
.guide-step__time { color: var(--text-mute); display: inline-flex; align-items: center; gap: 4px; }
.guide-step__diff { padding: 2px 8px; border-radius: var(--r-sm); background: var(--bg-3); color: var(--green); font-weight: 600; font-size: 11px; border: 1px solid rgba(34,197,94,.3); }
.guide-step__diff.is-medium { color: var(--yellow); border-color: rgba(245,158,11,.3); }
.guide-step__diff.is-advanced { color: var(--red-2); border-color: rgba(239,68,68,.3); }
.guide-step__title { font-size: 17px; margin-bottom: 8px; color: var(--text); }
.guide-step__desc  { font-size: 14px; color: var(--text-mute); margin-bottom: 16px; line-height: 1.55; }
.guide-step__list  { display: flex; flex-direction: column; gap: 8px; }
.guide-step__list li { font-size: 13px; color: var(--text-2); padding-left: 18px; position: relative; }
.guide-step__list li::before { content: "•"; color: var(--text-mute); position: absolute; left: 4px; top: 0; font-weight: 700; }

.guide__triplet { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); margin-bottom: 32px; }
.guide__triplet h4 { font-size: 15px; color: var(--text); margin-bottom: 16px; font-weight: 700; }
.guide__triplet ul { display: flex; flex-direction: column; gap: 10px; }
.guide__triplet li { font-size: 13px; color: var(--text-mute); padding-left: 16px; position: relative; }
.guide__triplet li::before { content: "•"; color: var(--text-mute); position: absolute; left: 4px; }
.guide__triplet kbd {
	font-family: 'JetBrains Mono', monospace;
	background: var(--bg-3); color: var(--text-2);
	padding: 2px 6px; border-radius: var(--r-sm);
	font-size: 11.5px; font-weight: 600;
	border: 1px solid var(--border-2);
}

.guide__support {
	margin-top: 32px; padding: 28px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	text-align: center;
}
.guide__support p { margin-bottom: 16px; color: var(--text); font-weight: 500; font-size: 15px; }
.guide__support-buttons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ==========================================================================
   13. Articles
   ========================================================================== */
.articles { padding-block: clamp(56px, 8vw, 96px); }
.articles__grid { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); }
.article {
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--r-lg); overflow: hidden;
	display: flex; flex-direction: column;
	transition: border-color .25s var(--ease);
}
.article:hover { border-color: var(--border-2); }
.article__media {
	aspect-ratio: 16 / 10; background: linear-gradient(135deg, var(--bg-3), var(--bg-elevated)); position: relative;
	display: grid; place-items: center; color: var(--text); font-size: 38px;
}
.article__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.article__meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-mute); margin-bottom: 12px; }
.article__meta .tag { padding: 3px 9px; border-radius: var(--r-sm); background: var(--bg-3); color: var(--text-2); font-weight: 600; border: 1px solid var(--border-2); }
.article__title { font-size: 15px; margin-bottom: 10px; line-height: 1.45; color: var(--text); }
.article__excerpt { font-size: 13px; color: var(--text-mute); margin-bottom: 14px; flex: 1; line-height: 1.55; }
.article__more { font-size: 13px; font-weight: 600; color: var(--text); display: inline-flex; align-items: center; gap: 6px; }
.articles__viewall { text-align: center; margin-top: 32px; }

/* ==========================================================================
   14. Tweets/reviews marquee
   ========================================================================== */
.tweets { padding-block: clamp(56px, 8vw, 96px); overflow: hidden; }
.tweets__row { overflow: hidden; padding: 8px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.tweets__track { display: flex; gap: 16px; width: max-content; animation: marquee 50s linear infinite; }
.tweets__row:hover .tweets__track { animation-play-state: paused; }
.tweets__row + .tweets__row .tweets__track { animation-direction: reverse; animation-duration: 60s; }
.tweet {
	flex: 0 0 360px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 18px 22px;
}
.tweet__head { display: flex; gap: 10px; margin-bottom: 12px; align-items: center; }
.tweet__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--border-2); display: grid; place-items: center; color: var(--text); font-weight: 700; font-size: 14px; }
.tweet__name { font-weight: 700; font-size: 14px; color: var(--text); }
.tweet__handle { font-size: 12px; color: var(--text-mute); }
.tweet__body { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }

/* ==========================================================================
   15. FAQ accordion
   ========================================================================== */
.faq { padding-block: clamp(56px, 8vw, 96px); }
.faq__list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--r-lg); overflow: hidden;
	transition: border-color .25s var(--ease);
}
.faq-item.is-open { border-color: var(--border-2); }
.faq-item__btn {
	width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
	padding: 20px 24px; text-align: left;
	font-size: 15px; font-weight: 600; color: var(--text);
}
.faq-item__btn .icon {
	width: 26px; height: 26px; border-radius: 50%;
	display: grid; place-items: center;
	background: var(--bg-3); color: var(--text-2);
	transition: transform .25s var(--ease), background .25s, color .25s;
	flex: 0 0 auto;
	border: 1px solid var(--border-2);
}
.faq-item.is-open .faq-item__btn .icon { transform: rotate(45deg); background: var(--text); color: var(--bg); border-color: var(--text); }
.faq-item__panel {
	max-height: 0; overflow: hidden;
	transition: max-height .35s var(--ease);
}
.faq-item__panel-inner { padding: 0 24px 22px; color: var(--text-mute); font-size: 14px; line-height: 1.65; }

.faq__contact {
	max-width: 880px; margin: 32px auto 0;
	padding: 32px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
}
.faq__contact h3 { text-align: center; margin-bottom: 8px; font-size: 1.3rem; color: var(--text); }
.faq__contact p  { text-align: center; color: var(--text-mute); margin-bottom: 20px; font-size: 14px; }
.faq__contact-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.faq__contact-item {
	display: flex; align-items: center; gap: 12px;
	padding: 14px 16px; background: transparent;
	border: 1px solid var(--border); border-radius: var(--r);
	transition: border-color .2s, background .2s;
}
.faq__contact-item:hover { border-color: var(--border-2); background: rgba(255,255,255,.02); color: var(--text); }
.faq__contact-item .icon { font-size: 22px; line-height: 1; }
.faq__contact-item .label { font-size: 12px; color: var(--text-mute); display: block; }
.faq__contact-item .value { font-size: 14px; font-weight: 600; color: var(--text); }

/* ==========================================================================
   16. Community
   ========================================================================== */
.community { padding-block: clamp(56px, 8vw, 96px); }
.community__grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.community-card {
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--r-lg); padding: 32px;
	text-align: center;
	transition: border-color .25s var(--ease);
}
.community-card:hover { border-color: var(--border-2); }
.community-card__icon {
	width: 56px; height: 56px; border-radius: var(--r-md);
	display: grid; place-items: center;
	margin: 0 auto 16px; color: #fff;
}
.community-card__icon.fb { background: #1877f2; }
.community-card__icon.zalo { background: #0068ff; }
.community-card__icon.tg { background: #2aabee; }
.community-card h4 { font-size: 17px; margin-bottom: 6px; color: var(--text); }
.community-card .count { font-size: 12px; color: var(--text-mute); margin-bottom: 12px; font-weight: 500; }
.community-card p { font-size: 14px; color: var(--text-mute); }

.community__bottom {
	margin-top: 24px; padding: 16px 24px; text-align: center;
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--r-lg);
	display: flex; flex-wrap: wrap; gap: 16px 28px; justify-content: center; align-items: center;
	color: var(--text-2); font-size: 14px;
}
.community__bottom .dot { color: var(--text-mute); }

/* ==========================================================================
   17. Final CTA
   ========================================================================== */
.final-cta { padding-block: clamp(72px, 10vw, 120px); }
.final-cta__panel {
	max-width: 980px; margin: 0 auto;
	padding: clamp(40px, 6vw, 56px);
	text-align: center;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
}
.final-cta__title { margin-bottom: 18px; color: var(--text); }
.final-cta__lead  { color: var(--text-mute); margin-bottom: 28px; font-size: 1.05rem; max-width: 600px; margin-inline: auto; }
.final-cta__buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ==========================================================================
   NEW: Promo banner ("Hey there, lovely friend!")
   ========================================================================== */
.promo-banner { padding-block: 0 32px; }
.promo-banner__panel {
	position: relative;
	display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
	padding: 20px 24px;
	border-radius: var(--r-xl);
	background:
		radial-gradient(40% 200% at 0% 50%, rgba(244,114,182,.6), transparent 70%),
		radial-gradient(40% 200% at 100% 50%, rgba(99,102,241,.6), transparent 70%),
		linear-gradient(90deg, #ec4899, #a855f7);
	overflow: hidden;
	color: #fff;
}
.promo-banner__icon {
	width: 56px; height: 56px; border-radius: 50%;
	display: grid; place-items: center;
	background: rgba(255,255,255,.18);
	backdrop-filter: blur(8px);
	font-size: 24px; flex: 0 0 auto;
	position: relative;
}
.promo-banner__icon::after {
	content: ""; position: absolute; bottom: 4px; right: 4px;
	width: 10px; height: 10px; border-radius: 50%;
	background: var(--green);
	border: 2px solid rgba(255,255,255,.3);
}
.promo-banner__text { flex: 1; min-width: 240px; }
.promo-banner__title { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.promo-banner__title .deco { display: inline-block; margin-left: 4px; }
.promo-banner__sub { font-size: 14px; color: rgba(255,255,255,.9); }
.promo-banner__cta {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 10px 18px; border-radius: var(--r-full);
	background: rgba(255,255,255,.95); color: #7c3aed;
	font-weight: 700; font-size: 14px;
	transition: background .2s, transform .2s;
}
.promo-banner__cta:hover { background: #fff; transform: translateY(-1px); color: #7c3aed; }
.promo-banner__sale {
	display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
	min-width: 64px; padding: 6px 12px;
	background: rgba(255,255,255,.18);
	border-radius: var(--r);
	color: #fff;
}
.promo-banner__sale .label { font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.promo-banner__sale .pct   { font-size: 18px; font-weight: 800; }

/* ==========================================================================
   NEW: 100% Real Orders Guarantee banner
   ========================================================================== */
.guarantee-banner { padding-block: 0 40px; }
.guarantee-banner__panel {
	display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
	padding: 24px 28px;
	border-radius: var(--r-xl);
	background:
		radial-gradient(60% 200% at 0% 50%, rgba(34,197,94,.18), transparent 60%),
		linear-gradient(90deg, rgba(34,197,94,.12), rgba(16,163,74,.18));
	border: 1px solid rgba(34,197,94,.3);
}
.guarantee-banner__icon {
	width: 52px; height: 52px; border-radius: 50%;
	display: grid; place-items: center;
	background: rgba(34,197,94,.18);
	color: var(--green);
	font-size: 22px; flex: 0 0 auto;
	border: 1px solid rgba(34,197,94,.4);
}
.guarantee-banner__text { flex: 1; min-width: 260px; }
.guarantee-banner__title {
	font-size: 18px; font-weight: 800; color: var(--green);
	display: flex; align-items: center; gap: 8px;
	letter-spacing: .03em; text-transform: uppercase;
}
.guarantee-banner__title svg { color: var(--green); }
.guarantee-banner__sub { font-size: 13px; color: var(--text-mute); margin-top: 4px; }
.guarantee-banner__chips { display: flex; gap: 10px; flex-wrap: wrap; }
.guarantee-banner__chip {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 7px 14px; border-radius: var(--r-full);
	background: rgba(34,197,94,.12); color: var(--green);
	font-size: 13px; font-weight: 600;
	border: 1px solid rgba(34,197,94,.3);
}

/* ==========================================================================
   NEW: Recent Purchases section
   ========================================================================== */
.recent-purchases { padding-block: 0 64px; }
.recent-purchases__head {
	display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
	margin-bottom: 24px;
}
.recent-purchases__title {
	font-size: 18px; font-weight: 700; color: var(--text);
	display: inline-flex; align-items: center; gap: 8px;
}
.recent-purchases__title::before {
	content: ""; width: 8px; height: 8px; border-radius: 50%;
	background: var(--green); animation: pulse 1.5s ease-in-out infinite;
}
.recent-purchases__title::after {
	content: ""; flex: 1; height: 1px; background: var(--border); display: inline-block; min-width: 40px;
}
.recent-purchases__stats { display: flex; flex-wrap: wrap; gap: 10px; margin-left: auto; }
.recent-purchases__stat {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 12px; border-radius: var(--r-full);
	font-size: 12px; font-weight: 600;
	border: 1px solid var(--border);
}
.recent-purchases__stat--red    { background: rgba(220,38,38,.12); color: #fca5a5; border-color: rgba(220,38,38,.3); }
.recent-purchases__stat--green  { background: rgba(34,197,94,.12); color: #86efac; border-color: rgba(34,197,94,.3); }
.recent-purchases__stat--blue   { background: rgba(59,130,246,.12); color: #93c5fd; border-color: rgba(59,130,246,.3); }
.recent-purchases__stat .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.recent-purchases__grid { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); }
.recent-card {
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--r-lg); padding: 16px;
}
.recent-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.recent-card__avatar {
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--bg-3); color: var(--text); font-size: 14px; font-weight: 700;
	display: grid; place-items: center; flex: 0 0 auto;
	position: relative;
}
.recent-card__avatar::after {
	content: ""; position: absolute; bottom: -1px; right: -1px;
	width: 10px; height: 10px; border-radius: 50%; background: var(--green);
	border: 2px solid var(--bg-card);
}
.recent-card__avatar.bg-blue { background: var(--blue-2); }
.recent-card__avatar.bg-purple { background: var(--accent); }
.recent-card__avatar.bg-pink { background: var(--pink); }
.recent-card__avatar.bg-orange { background: var(--orange); }
.recent-card__name { font-weight: 600; font-size: 13.5px; color: var(--text); }
.recent-card__time { font-size: 11px; color: var(--text-mute); display: inline-flex; align-items: center; gap: 4px; }
.recent-card__verified {
	margin-left: auto; display: inline-flex; align-items: center; gap: 4px;
	padding: 3px 8px; border-radius: var(--r-full);
	background: rgba(34,197,94,.12); color: #86efac;
	font-size: 10px; font-weight: 600;
	border: 1px solid rgba(34,197,94,.3);
}
.recent-card__product { font-size: 13px; color: var(--text-mute); margin-bottom: 8px; line-height: 1.4; }
.recent-card__bottom { display: flex; align-items: center; justify-content: space-between; }
.recent-card__price { font-size: 14px; font-weight: 700; color: var(--green); }
.recent-card__paid {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 3px 8px; border-radius: var(--r-sm);
	background: rgba(168,85,247,.12); color: var(--accent-2);
	font-size: 10px; font-weight: 600;
	border: 1px solid rgba(168,85,247,.3);
}
.recent-card__just-bought {
	margin-top: 12px;
	display: inline-flex; align-items: center; gap: 4px;
	padding: 5px 10px; border-radius: var(--r-full);
	background: rgba(34,197,94,.18); color: var(--green);
	font-size: 11px; font-weight: 700; letter-spacing: .04em;
	border: 1px solid rgba(34,197,94,.4);
	width: 100%; justify-content: center;
}

/* ==========================================================================
   18. Footer
   ========================================================================== */
.site-footer {
	background: var(--bg);
	border-top: 1px solid var(--border);
	padding-block: 64px 24px;
	margin-top: 32px;
}
.footer__grid {
	display: grid; gap: 40px;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	margin-bottom: 40px;
}
.footer__col h4 {
	font-size: 15px; color: var(--text); margin-bottom: 16px; font-weight: 700;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 14px; color: var(--accent-2); }
.footer__col a:hover { color: var(--text); }
.footer__about { color: var(--text-mute); font-size: 14px; line-height: 1.6; margin: 16px 0; max-width: 400px; }
.footer__hours {
	margin-top: 12px; padding: 16px;
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--r);
}
.footer__hours h4 { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; font-size: 14px; color: var(--text); }
.footer__hours p { font-size: 12.5px; color: var(--text-2); margin-bottom: 4px; }
.footer__hours .muted { color: var(--text-mute); font-size: 12px; }
.footer__socials { display: flex; gap: 8px; margin-top: 16px; }
.social {
	width: 30px; height: 30px; border-radius: 50%;
	display: grid; place-items: center;
	background: var(--bg-card); color: var(--text-mute);
	border: 1px solid var(--border-2);
	transition: color .2s, border-color .2s, transform .2s;
}
.social:hover { color: var(--text); border-color: var(--text-mute); transform: translateY(-2px); }
.footer__bottom {
	display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
	padding-top: 24px; border-top: 1px solid var(--border);
	font-size: 13px; color: var(--text-mute);
}
.footer__legal a { margin-right: 4px; color: var(--text-mute); }
.footer__legal a:hover { color: var(--text); }

/* ---------- Floating widget stack (3 chat bubbles + scroll-to-top) ---- */
.float-stack {
	position: fixed; right: 18px; bottom: 18px;
	display: flex; flex-direction: column; gap: 12px;
	z-index: 90;
}
.float-stack__btn {
	width: 48px; height: 48px; border-radius: 50%;
	display: grid; place-items: center;
	color: #fff;
	box-shadow: 0 8px 22px rgba(0,0,0,.4);
	transition: transform .25s var(--ease), box-shadow .25s;
	border: 0;
}
.float-stack__btn:hover { transform: translateY(-3px) scale(1.06); color: #fff; }
.float-stack__btn--scroll  { background: var(--bg-elevated); border: 1px solid var(--border-2); color: var(--text-2); }
.float-stack__btn--telegram { background: linear-gradient(135deg, #2aabee, #229ed9); }
.float-stack__btn--messenger{ background: linear-gradient(135deg, #00c6ff, #0084ff); }
.float-stack__btn--chat     { background: var(--bg-elevated); border: 1px solid var(--border-2); color: var(--text-2); }

/* ---------- "Just Bought" notification toast ------------------------- */
.just-bought {
	position: fixed; left: 18px; bottom: 18px;
	z-index: 89;
	width: 320px; max-width: calc(100vw - 36px);
	background: var(--bg-card);
	border: 1px solid var(--border-2);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(0,0,0,.55);
	transform: translateY(120%);
	opacity: 0;
	transition: transform .45s var(--ease-out), opacity .35s ease;
}
.just-bought.is-shown { transform: translateY(0); opacity: 1; }
.just-bought__top {
	background: rgba(34,197,94,.12);
	border-bottom: 1px solid rgba(34,197,94,.25);
	padding: 6px 14px;
	display: flex; align-items: center; justify-content: space-between;
}
.just-bought__top .pill {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 3px 10px; border-radius: var(--r-full);
	background: var(--green); color: #fff;
	font-size: 11px; font-weight: 700; letter-spacing: .04em;
}
.just-bought__top .verified {
	display: inline-flex; align-items: center; gap: 4px;
	color: #86efac; font-size: 11px; font-weight: 600;
}
.just-bought__close {
	color: var(--text-mute);
	width: 22px; height: 22px; border-radius: 50%;
	display: inline-grid; place-items: center;
	transition: color .2s, background .2s;
}
.just-bought__close:hover { color: var(--text); background: rgba(255,255,255,.05); }
.just-bought__body { padding: 14px; }
.just-bought__user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.just-bought__avatar {
	width: 32px; height: 32px; border-radius: 50%;
	background: var(--accent); color: #fff;
	display: grid; place-items: center;
	font-size: 14px; font-weight: 700;
	position: relative;
}
.just-bought__avatar::after {
	content: ""; position: absolute; bottom: -1px; right: -1px;
	width: 9px; height: 9px; border-radius: 50%;
	background: var(--green);
	border: 2px solid var(--bg-card);
}
.just-bought__name { font-weight: 700; font-size: 13.5px; color: var(--text); }
.just-bought__act  { font-size: 11px; color: var(--text-mute); display: inline-flex; align-items: center; gap: 4px; }
.just-bought__product {
	background: rgba(255,255,255,.03);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 10px 12px;
}
.just-bought__product-name {
	font-size: 13px; color: var(--text); margin-bottom: 4px;
	display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
	overflow: hidden;
}
.just-bought__product-name::before { content: "🔥 "; }
.just-bought__product-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.just-bought__product-price { color: var(--green); font-weight: 700; font-size: 13px; }
.just-bought__product-time  { color: var(--text-mute); font-size: 11px; }
.just-bought__location { font-size: 11px; color: var(--text-mute); margin-top: 6px; display: inline-flex; align-items: center; gap: 4px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1280px) {
	.products__grid { grid-template-columns: repeat(3, 1fr); }
	.articles__grid { grid-template-columns: repeat(3, 1fr); }
	.proofs__grid   { grid-template-columns: repeat(3, 1fr); }
	.recent-purchases__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
	:root { --header-h: 60px; }
	.primary-nav { display: none; }
	.hamburger { display: inline-flex; }
	.header__signin, .header__signup { display: none; }
	.hero__grid     { grid-template-columns: 1fr; }
	.hero__video    { order: -1; max-width: 600px; margin-inline: auto; }
	.products__grid { grid-template-columns: repeat(2, 1fr); }
	.articles__grid { grid-template-columns: repeat(2, 1fr); }
	.proofs__grid   { grid-template-columns: repeat(2, 1fr); }
	.proofs__stats  { grid-template-columns: repeat(2, 1fr); }
	.stories__grid  { grid-template-columns: repeat(2, 1fr); }
	.stories__stats { grid-template-columns: repeat(2, 1fr); }
	.guide__grid    { grid-template-columns: repeat(2, 1fr); }
	.guide__triplet { grid-template-columns: 1fr; }
	.community__grid{ grid-template-columns: repeat(2, 1fr); }
	.why__grid      { grid-template-columns: repeat(2, 1fr); }
	.whypro__grid   { grid-template-columns: 1fr; }
	.features3__grid{ grid-template-columns: 1fr; }
	.compare__callouts { grid-template-columns: 1fr; }
	.recent-purchases__grid { grid-template-columns: repeat(2, 1fr); }
	.footer__grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
	body { font-size: 15px; }
	.section { padding-block: 56px; }
	.live-demo__race { grid-template-columns: 1fr; gap: 16px; }
	.live-demo__vs { margin: 0 auto; }
	.faq__contact-grid { grid-template-columns: 1fr; }
	.community__grid { grid-template-columns: 1fr; }
	.footer__grid { grid-template-columns: 1fr; gap: 32px; }
	.guide__intro { flex-direction: column; align-items: flex-start; }
	.recent-purchases__head { flex-direction: column; align-items: flex-start; }
	.recent-purchases__stats { margin-left: 0; }
	.just-bought { display: none; } /* hide on mobile to not block UI */
}
@media (max-width: 520px) {
	.products__grid { grid-template-columns: 1fr; }
	.articles__grid { grid-template-columns: 1fr; }
	.proofs__grid   { grid-template-columns: 1fr; }
	.stories__grid  { grid-template-columns: 1fr; }
	.guide__grid    { grid-template-columns: 1fr; }
	.why__grid      { grid-template-columns: 1fr; }
	.proofs__stats  { grid-template-columns: 1fr 1fr; }
	.stories__stats { grid-template-columns: 1fr 1fr; }
	.recent-purchases__grid { grid-template-columns: 1fr; }
	.hero__cta .btn { width: 100%; }
	.tweet { flex-basis: 280px; }
	.section__head { margin-bottom: 32px; }
	.float-stack { right: 12px; bottom: 12px; }
	.float-stack__btn { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
	*,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
