/* Weblo TTS - landing · v4 (editorial) */

:root {
	--paper: #f4f1ea;
	--paper-2: #ece8df;
	--card: #ffffff;
	--ink: #0c0c10;
	--ink-2: #17171f;
	--text: #18181d;
	--text-soft: #565660;
	--line: #e1dccf;
	--line-2: #d4cebf;
	--red: #fe2c55;
	--red-dark: #e01346;
	--cyan: #07b8b0;
	--cyan-bright: #25f4ee;
	--violet: #6d28d9;
	--radius: 14px;
	--radius-sm: 10px;
	--shadow: 0 24px 60px rgba(20, 16, 8, 0.12);
	--shadow-sm: 0 8px 24px rgba(20, 16, 8, 0.07);
	--font-display: "Sora", system-ui, sans-serif;
	--font-body: "DM Sans", system-ui, sans-serif;
	--font-mono: "Space Mono", ui-monospace, monospace;
	--gutter: 24px;
	--nav-gutter: clamp(24px, 4vw, 72px);
	--container: min(1180px, calc(100% - 2 * var(--gutter)));
	--nav-h: 76px;
	--urgency-h: 52px;
	--safe-top: env(safe-area-inset-top, 0px);
	--safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; }
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	background-color: var(--ink);
}
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
	max-width: 100%;
}
@supports (overflow: clip) {
	html, body { overflow-x: clip; }
}
.container,
.hero__grid,
.hero__main,
.hero__aside,
.showcase,
.showcase__tabs,
.showcase__panels,
.showcase__panel,
.showcase__frame,
.showcase__frame-body,
.about__grid,
.about__clients {
	min-width: 0;
	max-width: 100%;
}
body.has-urgency { padding-top: 0; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
:focus,
:focus-visible,
:active {
	outline: none !important;
}
::selection { background: var(--ink); color: #fff; }
.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.container { width: var(--container); margin-inline: auto; }

/* ── Pasek pilności ── */
.urgency {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	z-index: 110;
	padding-top: calc(15px + var(--safe-top));
	padding-bottom: 15px;
	height: auto;
	background: var(--ink);
	color: #fff;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	box-sizing: border-box;
}
.urgency.is-hidden { display: none; }
html.urgency-dismissed .urgency { display: none; }
body.has-urgency .nav { top: 0; }
.urgency__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	max-width: none;
	padding-inline: calc(var(--nav-gutter) + 40px) var(--nav-gutter);
	box-sizing: border-box;
}
.urgency__inner.container {
	width: 100%;
	max-width: none;
}
.urgency__inner > span {
	line-height: 1.5;
}
.urgency strong { color: var(--cyan-bright); font-weight: 700; }
.urgency__link {
	display: inline;
	font-family: var(--font-mono);
	font-size: 0.92em;
	font-weight: 700;
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: var(--red);
	text-decoration-thickness: 2px;
	white-space: nowrap;
}
.urgency__close {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #fff;
	font-size: 1.4rem;
	cursor: pointer;
	opacity: 0.7;
	line-height: 1;
	padding: 8px 12px;
}
.urgency__close:hover { opacity: 1; }

/* ── Nawigacja ── */
.nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	padding-top: var(--safe-top);
	height: calc(var(--nav-h) + var(--safe-top));
	display: flex;
	align-items: center;
	transition: background 0.3s, box-shadow 0.3s, border-color 0.3s, transform 0.28s ease;
	border-bottom: 1px solid transparent;
	will-change: transform;
	box-sizing: border-box;
}
.nav::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: var(--safe-top);
	background: var(--ink);
	pointer-events: none;
}
.nav.is-scrolled {
	background: rgba(244,241,234,0.92);
	backdrop-filter: blur(16px) saturate(140%);
	border-bottom-color: var(--line);
}
.nav__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: none;
	margin-inline: auto;
	padding-inline: var(--nav-gutter);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(16px, 2.5vw, 40px);
}

/* ── Logo ── */
.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	flex-wrap: nowrap;
	white-space: nowrap;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.16rem;
	letter-spacing: -0.025em;
	color: #fff;
	line-height: 1;
}
.nav.is-scrolled .brand { color: var(--ink); }
.brand__logo {
	position: relative;
	width: 78px;
	height: 42px;
	flex-shrink: 0;
	overflow: visible;
}
.brand__core {
	position: absolute;
	left: 20px; top: 1px;
	width: 38px; height: 38px;
	border-radius: 10px;
	background: #0d0d1b;
	display: grid; place-items: center;
	z-index: 2;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
.brand__core svg { width: 24px; height: 24px; display: block; }
.brand__side {
	position: absolute;
	top: 50%;
	height: 32px;
	border-radius: 8px;
	display: grid; place-items: center;
	z-index: 1;
	transition: transform 0.3s ease, left 0.3s ease, right 0.3s ease;
}
.brand__side--woo {
	left: -2px;
	width: 32px;
	background: #7f54b3;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.72rem;
	letter-spacing: -0.045em;
	line-height: 1;
	transform: translateY(-50%) rotate(-11deg);
	box-shadow: 0 2px 8px rgba(0,0,0,0.22);
	z-index: 0;
}
.brand__side--tt {
	left: 48px;
	right: auto;
	width: 32px;
	background: #141420;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.58rem;
	letter-spacing: -0.062em;
	line-height: 1;
	box-shadow: 0 2px 8px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.14);
	transform: translateY(-50%) rotate(11deg);
	z-index: 0;
}
.brand:hover .brand__side--woo {
	left: -5px;
	transform: translateY(-50%) rotate(-14deg);
}
.brand:hover .brand__side--tt {
	left: 51px;
	transform: translateY(-50%) rotate(14deg);
}
.brand__text {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
}
.brand__badge {
	font-family: var(--font-mono);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 3px 6px;
	border-radius: 5px;
	background: #c9003a;
	color: #fff;
	transform: translateY(-1px);
}

.nav__links {
	display: flex; gap: 30px;
	font-family: var(--font-mono);
	font-size: 1.04rem;
	font-weight: 400;
	letter-spacing: -0.01em;
	color: rgba(255,255,255,0.95);
}
.nav.is-scrolled .nav__links { color: var(--text); }
.nav__links a {
	position: relative;
	padding: 4px 0;
	transition: color 0.2s;
}
.nav__links a::after {
	content: "";
	position: absolute;
	left: 0; bottom: -2px;
	width: 0; height: 2px;
	background: var(--red);
	transition: width 0.25s ease;
}
.nav__links a:hover { color: #fff; }
.nav.is-scrolled .nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__links .nav__cta-mobile { display: none; }
.nav__links a.nav__cta-mobile::after { display: none; }
.nav__cta-text { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: #fff; flex-shrink: 0; }
.nav.is-scrolled .nav-toggle { color: var(--ink); }

/* ── Przyciski ── */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 13px 22px;
	border-radius: var(--radius-sm);
	border: 1px solid transparent;
	cursor: pointer;
	font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
	letter-spacing: -0.01em;
	transition: transform 0.18s ease, background 0.2s, box-shadow 0.2s, color 0.2s;
	white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
	background: var(--red);
	color: #fff;
	box-shadow: 0 6px 18px rgba(254, 44, 85, 0.28);
}
.btn--primary:hover {
	background: var(--red-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(254, 44, 85, 0.36);
}
.btn--ghost-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,0.28);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn--ghost {
	background: transparent;
	border-color: var(--line-2);
	color: var(--text);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { padding: 16px 26px; font-size: 0.96rem; }
.btn--sm { padding: 10px 16px; font-size: 0.8rem; }
.btn--block { width: 100%; }
.btn--nav { padding: 11px 18px; font-size: 0.84rem; }
/* shimmer wyłączony - czysty, niegeneryczny wygląd */
.btn--shimmer::after { content: none; }

/* ── Etykiety mono ── */
.section__eyebrow,
.hero__eyebrow {
	font-family: var(--font-mono);
	font-size: 0.74rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

/* ── Hero ── */
.hero {
	position: relative;
	padding: calc(var(--nav-h) + var(--safe-top) + 64px) 0 80px;
	background: var(--ink);
	color: #fff;
	overflow: hidden;
	min-height: min(100vh, 960px);
	display: flex;
	align-items: center;
}
body.has-urgency .hero { padding-top: calc(var(--nav-h) + var(--safe-top) + 64px); }
@media (min-width: 769px) {
	body.has-urgency.urgency-in-view .nav { top: var(--urgency-h); }
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid-lines {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: linear-gradient(115deg, #000 18%, transparent 70%);
	-webkit-mask-image: linear-gradient(115deg, #000 18%, transparent 70%);
}
/* dwa pełne, ostre bloki koloru zamiast rozmytych poświat */
.hero__glow { position: absolute; pointer-events: none; }
.hero__glow--pink {
	width: 1px; height: 100%;
	top: 0; left: 58%;
	background: linear-gradient(to bottom, transparent, rgba(254,44,85,0.5), transparent);
}
.hero__glow--cyan {
	width: 220px; height: 220px;
	right: 6%; top: 18%;
	border: 1px solid rgba(37,244,238,0.18);
	border-radius: 50%;
	box-shadow: inset 0 0 60px rgba(37,244,238,0.06);
}
.hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 412px;
	gap: 60px;
	align-items: center;
	min-height: 34rem;
}
.hero__copy {
	min-height: 28rem;
}
.hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 4.4vw, 3.4rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.04em;
	margin: 0 0 22px;
	text-wrap: balance;
	min-height: 10.5rem;
}
.hero__eyebrow {
	display: inline-flex; align-items: center; gap: 9px;
	color: var(--cyan-bright);
	margin-bottom: 26px;
}
.hero__eyebrow-dot {
	width: 6px; height: 6px;
	background: var(--cyan-bright);
	box-shadow: 0 0 10px var(--cyan-bright);
	animation: pulse 2s infinite;
}
.hero__title .accent {
	color: var(--cyan-bright);
}
.hero__title .gradient {
	color: #fff;
	white-space: nowrap;
	background: linear-gradient(transparent 56%, var(--red) 56%, var(--red) 96%, transparent 96%);
	padding: 0 0.12em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
.hero__lead {
	font-size: 1.06rem;
	color: rgba(255,255,255,0.7);
	margin: 0 0 26px;
	max-width: 37rem;
}
.hero__lead strong { color: #fff; font-weight: 600; }
.hero__steps {
	margin: 0 0 32px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0;
	border-top: 1px solid rgba(255,255,255,0.12);
	max-width: 37rem;
	min-height: 9.75rem;
}
.hero__aside {
	min-height: 28rem;
}
.lead-card--hero {
	min-height: 26rem;
}
.hero__steps li {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255,255,255,0.12);
	font-size: 0.98rem;
	font-weight: 500;
	color: rgba(255,255,255,0.9);
}
.hero__steps-num {
	flex-shrink: 0;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--red);
	width: 28px;
}
.hero__cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}
.hero__trust-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	color: rgba(255,255,255,0.45);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.hero__trust-chips span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust-chips span::before {
	content: "";
	width: 5px; height: 5px;
	background: var(--cyan-bright);
}
.hero__trust-chips strong { color: rgba(255,255,255,0.85); font-weight: 700; }

/* ── Karta formularza ── */
.lead-card {
	background: var(--card);
	border-radius: var(--radius);
	padding: 30px;
	box-shadow: var(--shadow);
	color: var(--text);
	border: 1px solid rgba(255,255,255,0.08);
	scroll-margin-top: calc(var(--nav-h) + 16px);
	transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
body.has-urgency .lead-card#lead {
	scroll-margin-top: calc(var(--nav-h) + 16px);
}
.lead-card.is-spotlight {
	position: relative;
	z-index: 3;
	border-color: rgba(254, 44, 85, 0.45);
	animation: leadSpotlight 2.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.lead-card.is-spotlight::after {
	content: "";
	position: absolute;
	inset: -3px;
	border-radius: calc(var(--radius) + 3px);
	border: 2px solid var(--red);
	pointer-events: none;
	animation: leadSpotlightRing 2.8s ease forwards;
}
@keyframes leadSpotlight {
	0% { transform: scale(1); box-shadow: var(--shadow); }
	12% { transform: scale(1.025); box-shadow: 0 0 0 1px rgba(254, 44, 85, 0.35), 0 0 0 8px rgba(254, 44, 85, 0.12), 0 28px 70px rgba(254, 44, 85, 0.2); }
	28%, 48% { transform: scale(1.018); box-shadow: 0 0 0 1px rgba(254, 44, 85, 0.4), 0 0 0 12px rgba(37, 244, 238, 0.1), 0 32px 80px rgba(20, 16, 8, 0.16); }
	100% { transform: scale(1); box-shadow: var(--shadow); border-color: rgba(255,255,255,0.08); }
}
@keyframes leadSpotlightRing {
	0%, 100% { opacity: 0; transform: scale(1); }
	12% { opacity: 1; transform: scale(1); }
	48% { opacity: 0.85; transform: scale(1.01); }
	100% { opacity: 0; transform: scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
	.lead-card.is-spotlight {
		animation: none;
		box-shadow: 0 0 0 3px var(--red), var(--shadow);
		transform: none;
	}
	.lead-card.is-spotlight::after { animation: none; opacity: 1; }
}
.lead-card__kicker {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 12px;
}
.lead-card__title {
	font-family: var(--font-display);
	font-size: 1.36rem;
	font-weight: 800;
	margin: 0 0 6px;
	letter-spacing: -0.03em;
}
.lead-card__sub {
	margin: 0 0 22px;
	font-size: 0.88rem;
	color: var(--text-soft);
	line-height: 1.5;
}
.lead-form__row { margin-bottom: 10px; }
.lead-form__label {
	display: block;
	margin: 0 0 6px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--ink);
}
.update-info-modal .lead-form__label {
	font-size: 0.9rem;
	font-weight: 750;
	margin-bottom: 8px;
}
.lead-form__label-badge {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	background: var(--red);
	vertical-align: middle;
}
.lead-form__optional {
	font-weight: 500;
	color: #9b988e;
}
.lead-form__hint {
	margin: 6px 0 0;
	font-size: 0.78rem;
	line-height: 1.4;
	color: #b42318;
}
.lead-form__row.is-focus-field {
	padding: 12px;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 14px;
	border-radius: 12px;
	background: #fff5f7;
	border: 2px solid var(--red);
	box-shadow: 0 0 0 3px rgba(254, 44, 85, 0.12);
}
.lead-form__row.is-focus-field .lead-form__label {
	color: #b42318;
}
.lead-form__row.is-focus-field input {
	background: #fff;
	border-color: var(--red);
}
.lead-form__row--2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.lead-form input,
.lead-form select {
	width: 100%;
	padding: 13px 15px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--line-2);
	background: #fbfaf7;
	font-size: 16px;
	color: var(--text);
	transition: border-color 0.2s, background 0.2s;
}
.lead-form input::placeholder { color: #9b988e; }
.lead-form input:focus,
.lead-form select:focus {
	background: #fff;
	border-color: var(--ink);
}
.lead-form input.is-error,
.lead-form select.is-error { border-color: var(--red); background: #fff5f7; }
.lead-form input.is-error:focus,
.lead-form select.is-error:focus {
	outline: 2px solid rgba(254, 44, 85, 0.25);
	border-color: var(--red);
}
.update-info-modal .chat-modal__promise {
	font-size: 1rem;
	line-height: 1.4;
}
.decline-modal .chat-modal__panel {
	max-width: 420px;
	text-align: center;
}
.decline-modal .chat-modal__success {
	display: block;
	padding: 8px 4px 4px;
}
.decline-modal__face {
	background: transparent !important;
	color: inherit;
	font-size: 2.75rem;
	line-height: 1;
	width: auto;
	height: auto;
	margin: 0 auto 12px;
	box-shadow: none;
}
.decline-modal .chat-modal__success h3 {
	margin-bottom: 8px;
}
.decline-modal .chat-modal__success p {
	margin: 0 auto;
	max-width: 32ch;
}
.lead-form button { margin-top: 4px; }
.lead-form button.is-loading {
	opacity: 0.85;
	pointer-events: none;
	position: relative;
}
.lead-form button.is-loading::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 8px;
	vertical-align: -2px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-top-color: #fff;
	border-radius: 50%;
	animation: demoSpin 0.7s linear infinite;
}
.lead-form__legal {
	margin: 12px 0 0;
	font-size: 0.72rem;
	color: #8a877e;
	line-height: 1.45;
}
.lead-form__legal a { color: var(--text); text-decoration: underline; }
.lead-card__success {
	text-align: center;
	padding: 28px 8px;
}
.lead-card__success-icon {
	width: 56px; height: 56px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--cyan-bright);
	font-size: 1.5rem;
	font-weight: 800;
	display: grid; place-items: center;
	animation: popIn 0.45s ease;
}
.lead-card__success h3 {
	font-family: var(--font-display);
	margin: 0 0 8px;
	letter-spacing: -0.02em;
}
.lead-card__success p { margin: 0 0 16px; color: var(--text-soft); font-size: 0.92rem; }

/* ── Marquee ── */
.marquee {
	position: relative;
	width: 100%;
	max-width: 100%;
	padding: 0;
	background: var(--ink);
	overflow: hidden;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee__fade { display: none; }
.marquee__track {
	display: flex;
	gap: 0;
	width: max-content;
	animation: marquee 34s linear infinite;
	font-family: var(--font-mono);
	font-weight: 400;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.4);
}
.marquee__track span {
	padding: 16px 32px;
	border-right: 1px solid rgba(255,255,255,0.08);
}

/* ── Sekcje ── */
.section { padding: 100px 0; }
.section--alt { background: var(--paper-2); }
.section--dark {
	background: var(--ink);
	color: #fff;
}
.section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--red);
	margin-bottom: 16px;
}
.section__eyebrow::before {
	content: "";
	width: 26px; height: 1px;
	background: var(--red);
}
.section--dark .section__eyebrow { color: var(--cyan-bright); }
.section--dark .section__eyebrow::before { background: var(--cyan-bright); }
.section__title {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3.6vw, 2.8rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.04em;
	margin: 0 0 16px;
	max-width: 18ch;
}
.section__head--center .section__title { max-width: 22ch; }
.section__lead {
	font-size: 1.04rem;
	color: var(--text-soft);
	max-width: 54ch;
	margin: 0 0 48px;
}
.section--dark .section__lead { color: rgba(255,255,255,0.6); }
.section__head--center { text-align: center; max-width: 720px; margin-inline: auto; }
.section__head--center .section__eyebrow,
.section__head--center .section__title { justify-content: center; margin-inline: auto; }
.section__head--center .section__lead { margin-inline: auto; }

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	* { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* ── Karty problemów ── */
.pain-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-bottom: 40px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--card);
}
.pain-card {
	position: relative;
	padding: 32px;
	border-right: 1px solid var(--line);
	transition: background 0.25s ease;
}
.pain-card:last-child { border-right: none; }
.pain-card:hover { background: var(--paper); }
.pain-card__num {
	display: block;
	font-family: var(--font-mono);
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--red);
	margin-bottom: 16px;
}
.pain-card h3 {
	font-family: var(--font-display);
	font-size: 1.12rem;
	letter-spacing: -0.025em;
	margin: 0 0 10px;
}
.pain-card p { margin: 0; font-size: 0.92rem; color: var(--text-soft); }

.cta-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	padding: 30px 34px;
	border-radius: var(--radius);
	background: var(--ink);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.cta-band::before {
	content: "";
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 4px;
	background: var(--red);
}
.cta-band strong { display: block; font-family: var(--font-display); font-size: 1.16rem; letter-spacing: -0.025em; margin-bottom: 5px; }
.cta-band span { font-size: 0.9rem; opacity: 0.66; }
.cta-band .btn { flex-shrink: 0; }

/* ── Korzyści ── */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}
.benefit-card {
	padding: 32px;
	background: var(--card);
	transition: background 0.25s ease;
}
.benefit-card:hover { background: var(--paper); }
.benefit-card__icon {
	width: 46px; height: 46px;
	border-radius: 12px;
	margin-bottom: 20px;
	background: #0c0c10;
	display: grid;
	place-items: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.benefit-card__icon svg { width: 22px; height: 22px; display: block; stroke: url(#ttGrad); }
.benefit-card:hover .benefit-card__icon {
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(254,44,85,0.25), 0 0 0 1px rgba(37,244,238,0.25);
}
.benefit-card h3 {
	font-family: var(--font-display);
	font-size: 1.06rem;
	letter-spacing: -0.025em;
	margin: 0 0 8px;
}
.benefit-card p { margin: 0; font-size: 0.9rem; color: var(--text-soft); }

/* ── Prezentacja panelu ── */
.showcase {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 28px;
}
.showcase__tabs { display: flex; flex-direction: column; gap: 2px; }
.showcase__tab {
	text-align: left;
	padding: 18px;
	border: none;
	border-left: 2px solid rgba(255,255,255,0.12);
	background: transparent;
	color: inherit;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
}
.showcase__tab:hover { background: rgba(255,255,255,0.04); }
.showcase__tab.is-active {
	border-left-color: var(--cyan-bright);
	background: rgba(255,255,255,0.05);
}
.showcase__tab strong { display: block; font-family: var(--font-display); font-size: 0.96rem; margin-bottom: 4px; }
.showcase__tab span { font-family: var(--font-mono); font-size: 0.7rem; opacity: 0.5; letter-spacing: 0.02em; }
.showcase__panel { display: none; animation: fadeIn 0.4s ease; }
.showcase__panel.is-active { display: block; }
.showcase__panel[hidden] { display: none !important; }
.showcase__frame {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.12);
	background: #0a0a0d;
	min-width: 0;
	max-width: 100%;
}
.showcase__frame-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 15px 18px;
	background: rgba(255,255,255,0.03);
	border-bottom: 1px solid rgba(255,255,255,0.08);
	font-family: var(--font-mono);
	font-size: 0.76rem;
	letter-spacing: 0.02em;
}
.showcase__frame-head > span:first-child {
	min-width: 0;
	overflow-wrap: anywhere;
}
.showcase__frame-body { padding: 24px; min-height: 290px; min-width: 0; max-width: 100%; }
.showcase__frame-body--flush { padding: 0; overflow: hidden; }

/* ── Mock tabeli WooCommerce ── */
.woo-shot {
	background: #fff;
	color: #1d2327;
	font-family: var(--font-body);
	max-width: 100%;
	min-width: 0;
}
.woo-shot:not(.woo-shot--pipeline) {
	display: block;
	width: 100%;
	overflow-x: auto;
	overflow-y: visible;
	overscroll-behavior-x: contain;
	-webkit-overflow-scrolling: touch;
}
.woo-shot--pipeline {
	overflow-x: hidden;
}
.woo-table {
	width: max-content;
	min-width: 100%;
	border-collapse: collapse;
	font-size: 0.8rem;
}
.woo-table thead th {
	text-align: left;
	padding: 11px 16px;
	background: #fff;
	border-bottom: 1px solid #c3c4c7;
	font-size: 0.74rem;
	font-weight: 700;
	color: #2c3338;
	white-space: nowrap;
}
.woo-table tbody td {
	padding: 12px 16px;
	border-bottom: 1px solid #f0f0f1;
	vertical-align: middle;
	color: #50575e;
}
.woo-table tbody tr:last-child td { border-bottom: none; }
.woo-table tbody tr:hover { background: #f6f7f7; }
.woo-col-cb { width: 34px; }
.woo-col-amt, .woo-amount { text-align: right; }
.woo-cb {
	display: inline-block;
	width: 15px; height: 15px;
	border: 1px solid #8c8f94;
	border-radius: 3px;
	background: #fff;
	vertical-align: middle;
	position: relative;
}
.woo-cb--checked {
	background: #2271b1;
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
}
.woo-cb--checked::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.woo-bulk-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	padding: 10px 16px;
	border-bottom: 1px solid #c3c4c7;
	background: #f0f6fc;
}
.woo-bulk-bar__count {
	font-size: 0.74rem;
	font-weight: 600;
	color: #2271b1;
	white-space: nowrap;
}
.woo-bulk-bar__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	border: 1px solid #0c0c10;
	border-radius: 4px;
	background: #0c0c10;
	color: #fff;
	font-size: 0.74rem;
	font-weight: 700;
	cursor: default;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(12, 12, 16, 0.12);
}
.woo-bulk-bar__btn svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: #25f4ee;
}
.woo-order { font-weight: 700; color: #2271b1; }
.woo-order span { display: block; font-weight: 400; color: #787c82; font-size: 0.74rem; margin-top: 2px; }
.woo-date { color: #646970; white-space: nowrap; }
.woo-amount { font-weight: 600; color: #1d2327; white-space: nowrap; }
.woo-status {
	display: inline-block;
	padding: 3px 11px;
	border-radius: 4px;
	font-size: 0.7rem;
	font-weight: 600;
	white-space: nowrap;
}
.woo-status--processing { background: #c6e1c6; color: #43740b; }
.woo-status--completed { background: #c8d7e1; color: #2e4453; }
.woo-status--hold { background: #f8dda7; color: #94660c; }
.woo-status--pending { background: #f8dda7; color: #94660c; }
.woo-status--return-accepted { background: #c6e1c6; color: #43740b; }
.woo-status--return-rejected { background: #f1f1f1; color: #646970; }
.woo-status--return-sync {
	background: #010101;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.woo-status--return-sync::before {
	content: "";
	width: 10px;
	height: 10px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-top-color: #25f4ee;
	border-radius: 50%;
	animation: demoSpin 0.7s linear infinite;
}
.woo-src {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	white-space: nowrap;
}
.woo-src--tt { background: #010101; color: #fff; }
.woo-src--shop { background: #f0f0f1; color: #50575e; }

/* ── Produkty Woo (mock) ── */
.woo-table tbody tr.is-highlight { background: #f0f6fc; }
.woo-table tbody tr.is-highlight:hover { background: #e8f2fa; }
.woo-product {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 180px;
}
.woo-thumb {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 4px;
	border: 1px solid #dcdcde;
	background: #f6f7f7;
	object-fit: cover;
	display: block;
}
.woo-tt-sync {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
}
.woo-tt-sync--none {
	color: #c3c4c7;
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 1;
}
.woo-tt-sync--syncing {
	gap: 8px;
}
.woo-tt-sync__spinner,
.woo-pipeline__upload-spinner,
.woo-bulk-bar__btn.is-loading::after {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-top-color: #25f4ee;
	border-radius: 50%;
	animation: demoSpin 0.7s linear infinite;
	flex-shrink: 0;
}
.woo-tt-sync--syncing .woo-tt-sync__spinner {
	border-color: rgba(12, 12, 16, 0.12);
	border-top-color: #2271b1;
}
.woo-tt-sync__check.is-pop {
	animation: demoPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.woo-bulk-bar__btn.is-loading {
	opacity: 0.92;
	pointer-events: none;
}
.woo-bulk-bar__btn.is-loading::after {
	content: "";
	display: inline-block;
	margin-left: 2px;
}
tr.is-demo-active {
	background: #f0f6fc;
}
tr.is-demo-active td {
	background: transparent;
}
tr.is-demo-active:hover,
tr.is-demo-active:hover td {
	background: #e8f2fa;
}
.woo-row-incoming {
	opacity: 0;
	transform: translateY(-8px);
}
.woo-row-incoming.is-visible {
	animation: demoRowIn 0.45s ease forwards;
}
.woo-row-incoming.is-visible td {
	background: #edfaef;
}
.woo-status--import {
	background: #010101;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.woo-status--import::before {
	content: "";
	width: 10px;
	height: 10px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-top-color: #25f4ee;
	border-radius: 50%;
	animation: demoSpin 0.7s linear infinite;
}

/* ── Zwroty (mock) ── */
.woo-shot--returns { min-height: 340px; }
.woo-table--returns .woo-col-expand { width: 28px; padding-left: 0; padding-right: 12px; }
.woo-return-row.is-pending { cursor: pointer; }
.woo-return-row.is-pending:hover { background: #f0f6fc; }
.woo-return-row.is-pending.is-highlight,
.woo-return-row.is-pending.is-expanded {
	background: #f0f6fc;
	box-shadow: inset 3px 0 0 #2271b1;
}
.woo-return-row.is-resolved { opacity: 0.78; }
.woo-return-row.is-resolved.is-just-done {
	opacity: 1;
	animation: demoReturnDone 0.45s ease;
}
.woo-return-id {
	font-weight: 600;
	color: #2271b1;
	white-space: nowrap;
}
.woo-return-expand {
	color: #8c8f94;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: right;
	transition: transform 0.2s, color 0.2s;
}
.woo-return-row.is-expanded .woo-return-expand { transform: rotate(90deg); color: #2271b1; }
.woo-return-row.is-resolved .woo-return-expand { visibility: hidden; }
.woo-return-detail td {
	padding: 0 !important;
	border-bottom: 1px solid #dcdcde;
	background: #f9fafb;
}
.woo-return-detail__inner { padding: 16px 18px 18px 64px; }
.woo-return-detail__label {
	margin: 0 0 10px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #646970;
}
.woo-return-photos {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.woo-return-photo {
	position: relative;
	margin: 0;
	width: 120px;
}
.woo-return-photo img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid #dcdcde;
	display: block;
}
.woo-return-photo--damage img {
	filter: saturate(0.8) contrast(1.08);
	border-color: #d63638;
}
.woo-return-photo--damage::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 8px;
	background:
		linear-gradient(135deg, transparent 42%, rgba(214, 54, 56, 0.45) 42%, rgba(214, 54, 56, 0.45) 46%, transparent 46%),
		linear-gradient(45deg, transparent 58%, rgba(214, 54, 56, 0.35) 58%, rgba(214, 54, 56, 0.35) 62%, transparent 62%);
	pointer-events: none;
}
.woo-return-photo figcaption {
	margin-top: 4px;
	font-size: 0.68rem;
	color: #787c82;
	text-align: center;
}
.woo-return-detail__note {
	margin: 0 0 14px;
	font-size: 0.78rem;
	color: #50575e;
	font-style: italic;
}
.woo-return-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.woo-return-btn {
	font-family: var(--font-mono);
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 7px 12px;
	border-radius: 6px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, transform 0.15s, opacity 0.2s;
	white-space: nowrap;
}
.woo-return-btn:hover { transform: translateY(-1px); }
.woo-return-btn:active { transform: translateY(0); }
.woo-return-btn--accept {
	background: #1d2327;
	color: #fff;
	border-color: #1d2327;
}
.woo-return-btn--accept:hover { background: #010101; }
.woo-return-btn--reject {
	background: #fff;
	color: #646970;
	border-color: #c3c4c7;
}
.woo-return-btn--reject:hover {
	border-color: #d63638;
	color: #d63638;
}
.woo-return-btn.is-loading {
	opacity: 0.85;
	pointer-events: none;
	position: relative;
	padding-right: 28px;
}
.woo-return-btn.is-loading::after {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-top-color: #25f4ee;
	border-radius: 50%;
	animation: demoSpin 0.7s linear infinite;
}
.woo-return-btn--reject.is-loading::after {
	border-color: rgba(12, 12, 16, 0.12);
	border-top-color: #646970;
}
.woo-return-sync {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-mono);
	font-size: 0.62rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #646970;
	white-space: nowrap;
}
.woo-return-sync svg { width: 11px; height: 11px; opacity: 0.55; }
.woo-return-row.is-processing .woo-return-actions { pointer-events: none; opacity: 0.7; }
@keyframes demoReturnDone {
	0% { background: #edfaef; }
	100% { background: #fff; }
}

.woo-pipeline__step--upload {
	border-color: #2271b1;
	background: #f0f6fc;
	box-shadow: 0 0 0 1px #2271b1;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.woo-pipeline__upload-spinner {
	position: absolute;
	right: -6px;
	bottom: -6px;
	width: 20px;
	height: 20px;
	border-width: 2px;
	background: #fff;
}
@keyframes demoSpin {
	to { transform: rotate(360deg); }
}
@keyframes demoPop {
	0% { transform: scale(0); opacity: 0; }
	100% { transform: scale(1); opacity: 1; }
}
@keyframes demoRowIn {
	to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
	.woo-tt-sync__spinner,
	.woo-pipeline__upload-spinner,
	.woo-bulk-bar__btn.is-loading::after,
	.woo-status--import::before {
		animation: none;
	}
	.woo-row-incoming { opacity: 1; transform: none; }
}
.woo-tt-sync__icon {
	position: relative;
	width: auto;
	min-width: 28px;
	height: 28px;
	padding: 0 6px;
	border-radius: 7px;
	background: #0c0c10;
	display: grid;
	place-items: center;
	box-shadow: 0 2px 8px rgba(12, 12, 16, 0.12);
}
.woo-tt-sync__label {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.42rem;
	letter-spacing: -0.04em;
	line-height: 1;
	color: #fff;
}
.woo-tt-sync__check {
	position: absolute;
	right: -4px;
	bottom: -4px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #00a32a;
	color: #fff;
	font-size: 0.55rem;
	font-weight: 800;
	line-height: 14px;
	text-align: center;
	border: 1.5px solid #fff;
}
.woo-product__info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-weight: 600;
	color: #1d2327;
	line-height: 1.25;
}
.woo-product__info span {
	font-weight: 400;
	font-size: 0.72rem;
	color: #787c82;
}
.woo-sku {
	font-family: var(--font-mono);
	font-size: 0.72rem;
	background: #f6f7f7;
	padding: 2px 6px;
	border-radius: 3px;
	color: #50575e;
}
.woo-stock { font-weight: 600; color: #1d2327; white-space: nowrap; }
.woo-tt-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 4px;
	font-size: 0.68rem;
	font-weight: 600;
	white-space: nowrap;
}
.woo-tt-badge--live { background: #010101; color: #fff; }
.woo-tt-badge--ready { background: #c6e1c6; color: #43740b; }
.woo-tt-badge--pending { background: #f8dda7; color: #94660c; }
.woo-tt-badge--draft { background: #f0f0f1; color: #646970; }
.woo-score { font-weight: 700; white-space: nowrap; }
.woo-score--ok { color: #007017; }
.woo-score--warn { color: #94660c; }
.woo-score--bad { color: #b32d2e; }

/* ── Pipeline zgodności (mock Woo) ── */
.woo-shot--pipeline { min-height: 320px; }
.woo-pipeline-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 14px 16px;
	border-bottom: 1px solid #c3c4c7;
	background: #f6f7f7;
}
.woo-pipeline-product {
	display: flex;
	align-items: center;
	gap: 10px;
}
.woo-pipeline-action {
	font-size: 0.72rem;
	font-weight: 600;
	color: #2271b1;
	white-space: nowrap;
}
.woo-pipeline {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: stretch;
	gap: 0;
	padding: 20px 16px 24px;
}
.woo-pipeline.has-stage {
	grid-template-columns: 1fr auto 1fr auto 1fr;
}
.woo-pipeline[hidden],
.woo-pipeline__arrow[hidden],
.woo-pipeline__step[hidden],
.woo-pipeline-done[hidden] {
	display: none !important;
}
.woo-pipeline-done {
	padding: 20px 16px 24px;
	animation: chatSlideUp 0.35s ease;
}
.woo-pipeline-done .woo-pipeline__step--success {
	max-width: 420px;
	margin: 0 auto;
}
.woo-pipeline-done .woo-pipeline__success-msg {
	max-width: none;
}
.woo-pipeline__step {
	padding: 16px;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #fff;
	position: relative;
}
.woo-pipeline__step--done { border-color: #c3c4c7; }
.woo-pipeline__step--active {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
	background: #f0f6fc;
}
.woo-pipeline__step--ready {
	border-color: #00a32a;
	background: #edfaef;
}
.woo-pipeline__step--success {
	border-color: #00a32a;
	background: linear-gradient(180deg, #edfaef 0%, #fff 100%);
	box-shadow: 0 0 0 1px rgba(0, 163, 42, 0.15);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.woo-pipeline__success-icon {
	position: relative;
	width: 52px;
	height: 52px;
	margin: 0 auto 12px;
	border-radius: 14px;
	background: #0c0c10;
	display: grid;
	place-items: center;
	box-shadow: 0 8px 20px rgba(12, 12, 16, 0.18);
}
.woo-pipeline__tiktok {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.62rem;
	letter-spacing: -0.04em;
	line-height: 1;
	color: #fff;
}
.woo-pipeline__success-check {
	position: absolute;
	right: -6px;
	bottom: -6px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #00a32a;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 22px;
	text-align: center;
	border: 2px solid #fff;
	box-shadow: 0 2px 8px rgba(0, 115, 34, 0.35);
}
.woo-pipeline__success-msg {
	margin: 0 0 12px;
	font-size: 0.76rem;
	color: #50575e;
	line-height: 1.5;
	max-width: 220px;
}
.woo-pipeline__success-msg strong { color: #1d2327; }
.woo-pipeline__step--success .woo-pipeline__title {
	margin-bottom: 6px;
	color: #007017;
}
.woo-pipeline__checks--success {
	width: 100%;
	text-align: left;
}
.woo-pipeline__success-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 12px;
	padding: 7px 12px;
	border-radius: 999px;
	background: #0c0c10;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}
.woo-pipeline__success-badge svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: #25f4ee;
}
.woo-pipeline__num {
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #1d2327;
	color: #fff;
	font-family: var(--font-mono);
	font-size: 0.68rem;
	font-weight: 700;
	margin-bottom: 10px;
}
.woo-pipeline__step--active .woo-pipeline__num { background: #2271b1; }
.woo-pipeline__step--ready .woo-pipeline__num { background: #00a32a; }
.woo-pipeline__title {
	margin: 0 0 10px;
	font-size: 0.88rem;
	font-weight: 700;
	color: #1d2327;
}
.woo-pipeline__desc {
	margin: 0 0 12px;
	font-size: 0.76rem;
	color: #646970;
	line-height: 1.45;
}
.woo-pipeline__meter {
	height: 6px;
	border-radius: 999px;
	background: #f0f0f1;
	overflow: hidden;
	margin-bottom: 6px;
}
.woo-pipeline__meter-fill {
	height: 100%;
	border-radius: 999px;
}
.woo-pipeline__meter-fill--warn { background: #dba617; }
.woo-pipeline__meter-fill--ok { background: #00a32a; }
.woo-pipeline__score {
	margin: 0 0 12px;
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
}
.woo-pipeline__score--warn { color: #94660c; }
.woo-pipeline__score--ok { color: #007017; }
.woo-pipeline__checks {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.74rem;
	color: #50575e;
}
.woo-pipeline__checks li {
	padding: 5px 0 5px 18px;
	position: relative;
	border-bottom: 1px solid #f0f0f1;
}
.woo-pipeline__checks li:last-child { border-bottom: none; }
.woo-pipeline__checks li::before {
	position: absolute;
	left: 0;
	font-weight: 700;
}
.woo-pipeline__checks li.is-ok::before { content: "✓"; color: #00a32a; }
.woo-pipeline__checks li.is-warn::before { content: "!"; color: #dba617; }
.woo-pipeline__fields { display: grid; gap: 8px; margin-bottom: 10px; }
.woo-pipeline__field {
	display: grid;
	gap: 4px;
}
.woo-pipeline__field span {
	font-size: 0.68rem;
	font-weight: 600;
	color: #50575e;
}
.woo-pipeline__field input {
	width: 100%;
	padding: 7px 10px;
	border: 1px solid #8c8f94;
	border-radius: 4px;
	background: #fff;
	font-size: 0.76rem;
	color: #1d2327;
}
.woo-pipeline__field.is-focus input {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
}
.woo-pipeline__hint {
	display: block;
	font-size: 0.68rem;
	color: #646970;
	line-height: 1.4;
}
.woo-pipeline__btn {
	display: inline-block;
	margin-top: 12px;
	padding: 8px 14px;
	border-radius: 4px;
	background: #2271b1;
	color: #fff;
	font-size: 0.74rem;
	font-weight: 600;
}
.woo-pipeline__arrow {
	display: grid;
	place-items: center;
	padding: 0 6px;
	font-size: 1.1rem;
	color: #8c8f94;
	align-self: center;
}

.sync-flow { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.sync-node {
	flex: 1; text-align: center; padding: 14px 8px;
	border-radius: 12px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
}
.sync-node__icon {
	height: 44px; margin: 0 auto 9px;
	border-radius: 10px;
	display: inline-grid; place-items: center;
	padding: 0 10px;
}
.sync-node--woo .sync-node__icon {
	background: #7f54b3;
	width: 44px;
	padding: 0;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.88rem;
	letter-spacing: -0.03em;
}
.sync-node--weblo .sync-node__icon { background: #0d0d1b; width: 44px; padding: 0; }
.sync-node--weblo .sync-node__icon svg { width: 26px; height: 26px; display: block; }
.sync-node--tt .sync-node__icon { background: #000; width: 44px; padding: 0; color: #fff; }
.sync-node--tt .sync-node__icon svg { width: 22px; height: 22px; display: block; }
.sync-node__label { font-size: 0.72rem; font-weight: 600; }
.sync-arrow { width: 24px; flex-shrink: 0; animation: flowPulse 1.6s ease infinite; }
.mock-rows { display: grid; gap: 8px; }
.mock-row {
	display: flex; justify-content: space-between; align-items: center;
	padding: 12px 14px;
	border-radius: 10px;
	background: rgba(255,255,255,0.04);
	font-size: 0.8rem;
}
.mock-row__name { font-weight: 500; }
.mock-badge {
	font-family: var(--font-mono);
	padding: 4px 9px; border-radius: 6px;
	font-size: 0.62rem; font-weight: 700;
	text-transform: uppercase;
}
.mock-badge--ok { background: rgba(7,184,176,0.18); color: #5eead4; }
.mock-badge--warn { background: rgba(245,158,11,0.18); color: #fcd34d; }
.mock-badge--live { background: rgba(254,44,85,0.2); color: #fda4af; }

.ui-pill {
	font-family: var(--font-mono);
	display: inline-block; padding: 4px 9px; border-radius: 6px;
	font-size: 0.64rem; font-weight: 700; text-transform: uppercase;
}
.ui-pill--green { background: rgba(7,184,176,0.18); color: #5eead4; }
.ui-pill--orange { background: rgba(245,158,11,0.18); color: #fcd34d; }
.ui-pill--pink { background: rgba(254,44,85,0.2); color: #fda4af; }
.ui-order-card {
	display: flex; justify-content: space-between; align-items: center;
	padding: 15px; margin-bottom: 9px;
	border-radius: 12px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	font-size: 0.82rem;
}
.ui-order-card__meta { font-size: 0.72rem; opacity: 0.55; margin-top: 3px; }

.compliance-meter {
	height: 8px; border-radius: 999px;
	background: rgba(255,255,255,0.1);
	overflow: hidden;
	margin-bottom: 10px;
}
.compliance-meter__fill {
	height: 100%;
	background: var(--cyan-bright);
	animation: meterGrow 1.3s ease forwards;
}
.compliance-meter__label {
	font-family: var(--font-mono);
	font-weight: 700;
	margin: 0 0 18px;
	font-size: 0.84rem;
}
.compliance-list {
	margin: 0; padding: 0; list-style: none;
	font-size: 0.86rem;
}
.compliance-list li {
	padding: 10px 0 10px 26px;
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.07);
}
.compliance-list li::before {
	position: absolute; left: 0; font-weight: 700;
}
.compliance-list li.is-ok::before { content: "✓"; color: var(--cyan-bright); }
.compliance-list li.is-warn::before { content: "!"; color: #fcd34d; }

/* ── Kroki startu ── */
.steps {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--card);
}
.steps__item {
	position: relative;
	padding: 36px 30px;
	border-right: 1px solid var(--line);
}
.steps__item:last-child { border-right: none; }
.steps__item--final {
	background: var(--ink);
	color: #fff;
}
.steps__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 22px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
}
.steps__item--final .steps__top { border-bottom-color: rgba(255,255,255,0.15); }
.steps__num {
	font-family: var(--font-mono);
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--red);
}
.steps__item--final .steps__num { color: var(--cyan-bright); }
.steps__num::before { content: "0"; }

.steps__icon {
	width: 46px; height: 46px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	flex-shrink: 0;
}
.steps__icon svg { width: 24px; height: 24px; display: block; }
.steps__icon--woo {
	background: #7f54b3;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.98rem;
	letter-spacing: -0.03em;
}
.steps__icon--tt {
	background: #0c0c10;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.52rem;
	letter-spacing: -0.04em;
	line-height: 1;
	padding: 0 4px;
}

.steps__combo { display: flex; align-items: center; }
.steps__chip {
	width: 42px; height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	flex-shrink: 0;
}
.steps__chip--woo {
	background: #7f54b3;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.88rem;
	letter-spacing: -0.03em;
}
.steps__chip--tt {
	background: #fff;
	color: #0c0c10;
	margin-left: -10px;
	box-shadow: 0 0 0 3px var(--ink);
	width: auto;
	min-width: 42px;
	padding: 0 8px;
	border-radius: 999px;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.46rem;
	letter-spacing: -0.04em;
	line-height: 1;
}
.steps__check {
	width: 26px; height: 26px;
	border-radius: 50%;
	background: #22c55e;
	color: #fff;
	display: grid;
	place-items: center;
	margin-left: 12px;
	flex-shrink: 0;
}
.steps__check svg { width: 14px; height: 14px; }
.steps__item h3 {
	font-family: var(--font-display);
	font-size: 1.18rem;
	letter-spacing: -0.025em;
	margin: 0 0 10px;
}
.steps__item p { margin: 0; font-size: 0.92rem; color: var(--text-soft); }
.steps__item--final p { color: rgba(255,255,255,0.68); }
.steps__arrow { display: none; }
.steps__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	flex-wrap: wrap;
	margin-top: 36px;
	text-align: center;
}
.steps__cta span {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.08rem;
	letter-spacing: -0.025em;
}

/* ── Porównanie ── */
.compare-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}
.compare-col {
	position: relative;
	padding: 36px;
	background: var(--card);
}
.compare-col--bad {
	border-right: 1px solid var(--line);
	background: linear-gradient(145deg, #faf8f6 0%, #f0ebe4 100%);
	overflow: hidden;
}
.compare-col--bad h3,
.compare-col--bad ul {
	position: relative;
	z-index: 1;
}
.compare-col__mood {
	position: absolute;
	right: 18px;
	bottom: 14px;
	width: clamp(96px, 22vw, 132px);
	height: clamp(96px, 22vw, 132px);
	color: #c9b8b8;
	opacity: 0.22;
	pointer-events: none;
	user-select: none;
	z-index: 0;
}
.compare-col__mood svg {
	width: 100%;
	height: 100%;
}
.compare-col--good {
	background: var(--ink);
	color: #fff;
}
.compare-col__tag {
	position: absolute;
	top: 32px; right: 32px;
	font-family: var(--font-mono);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink);
	background: var(--cyan-bright);
	padding: 5px 10px;
	border-radius: 6px;
}
.compare-col h3 {
	font-family: var(--font-display);
	margin: 0 0 22px;
	font-size: 1.24rem;
	letter-spacing: -0.03em;
}
.compare-col ul { margin: 0 0 24px; padding: 0; list-style: none; }
.compare-col li {
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
	font-size: 0.92rem;
	display: flex; gap: 12px; align-items: flex-start;
}
.compare-col--good li { border-color: rgba(255,255,255,0.1); }
.compare-col li::before { font-family: var(--font-mono); font-weight: 700; flex-shrink: 0; }
.compare-col--bad li::before { content: "✕"; color: #c98a96; }
.compare-col--good li::before { content: "+"; color: var(--cyan-bright); }

/* ── TikTok Shop / rynek ── */
.tts-market__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-bottom: 48px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.tts-market__stat {
	padding: 32px 28px;
	text-align: center;
	border-right: 1px solid var(--line);
}
.tts-market__stat:last-child { border-right: none; }
.tts-market__stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	margin-bottom: 10px;
	color: var(--ink);
}
.tts-market__stat span {
	display: block;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-soft);
	line-height: 1.45;
	max-width: 22ch;
	margin-inline: auto;
}
.tts-market__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--card);
	margin-bottom: 36px;
}
.tts-market__card {
	padding: 32px;
	border-right: 1px solid var(--line);
}
.tts-market__card:last-child { border-right: none; }
.tts-market__card-num {
	display: block;
	font-family: var(--font-mono);
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--red);
	margin-bottom: 16px;
}
.tts-market__card h3 {
	font-family: var(--font-display);
	font-size: 1.12rem;
	letter-spacing: -0.025em;
	margin: 0 0 10px;
}
.tts-market__card p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--text-soft);
	line-height: 1.55;
}
.tts-market__note {
	margin: 0;
	text-align: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.22rem, 2.4vw, 1.55rem);
	line-height: 1.42;
	letter-spacing: -0.025em;
	color: var(--ink);
	max-width: min(920px, 100%);
	margin-inline: auto;
	text-wrap: balance;
}

/* ── Opinia ── */
.testimonial { background: var(--paper-2); padding-bottom: 72px; }
.quote {
	position: relative;
	margin: 0;
	padding: 56px 60px 48px;
	border-radius: var(--radius);
	background: var(--ink);
	color: #fff;
	overflow: hidden;
}
.quote__bg {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(120deg, #000 8%, transparent 55%);
	-webkit-mask-image: linear-gradient(120deg, #000 8%, transparent 55%);
}
.quote__mark {
	position: absolute;
	top: 6px; right: 44px;
	font-family: var(--font-display);
	font-size: 11rem;
	line-height: 1;
	color: rgba(255,255,255,0.07);
	pointer-events: none;
}
.quote .section__eyebrow { position: relative; color: var(--cyan-bright); }
.quote__text {
	position: relative;
	font-family: var(--font-display);
	font-size: clamp(1.15rem, 2.1vw, 1.65rem);
	font-weight: 700;
	line-height: 1.38;
	letter-spacing: -0.03em;
	margin: 16px 0 40px;
	max-width: 52ch;
}
.quote__foot {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
	padding-top: 30px;
	border-top: 1px solid rgba(255,255,255,0.12);
}
.quote__author { display: flex; align-items: center; gap: 14px; }
.quote__avatar {
	width: 50px; height: 50px;
	border-radius: 50%;
	display: grid; place-items: center;
	background: linear-gradient(135deg, var(--red), var(--violet));
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1rem;
	letter-spacing: -0.02em;
	color: #fff;
	flex-shrink: 0;
}
.quote__avatar svg { width: 24px; height: 24px; }
.quote__avatar--logo {
	background: #fff;
	border-radius: 12px;
	padding: 8px 10px;
	width: auto;
	min-width: 50px;
	height: 50px;
}
.quote__avatar--logo img {
	display: block;
	width: auto;
	height: 28px;
	max-width: 88px;
	object-fit: contain;
}
.quote__who { display: flex; flex-direction: column; gap: 3px; }
.quote__who strong { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.02em; }
.quote__who span,
.quote__who a {
	font-family: var(--font-mono);
	font-size: 0.74rem;
	color: rgba(255,255,255,0.5);
}
.quote__who a:hover { color: var(--cyan-bright); }
.quote__stats { display: flex; gap: 34px; }
.quote__stats div strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #fff;
}
.quote__stats div span { font-family: var(--font-mono); font-size: 0.66rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Kim jesteśmy / klienci ── */
.about {
	padding-top: 88px;
	padding-bottom: 72px;
	background: var(--paper);
}
.about__grid {
	display: grid;
	grid-template-columns: minmax(260px, 320px) 1fr;
	gap: 48px 72px;
	align-items: center;
	margin-bottom: 56px;
}
.about__brand {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	padding: 40px 32px;
	border-radius: var(--radius);
	background: var(--ink);
	color: #fff;
	overflow: hidden;
}
.about__brand-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 20%, transparent 100%);
	-webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 20%, transparent 100%);
}
.about__logo-link {
	position: relative;
	display: block;
	width: 100%;
	max-width: 240px;
	margin-bottom: 28px;
	transition: opacity 0.2s, transform 0.2s;
}
.about__logo-link:hover {
	opacity: 0.88;
	transform: scale(1.02);
}
.about__logo {
	display: block;
	width: 100%;
	height: auto;
}
.about__tags {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}
.about__tags li {
	font-family: var(--font-mono);
	font-size: 0.64rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	padding: 7px 13px;
	border-radius: 999px;
	background: rgba(255,255,255,0.07);
	color: rgba(255,255,255,0.78);
	border: 1px solid rgba(255,255,255,0.12);
}
.about__copy .section__title {
	max-width: none;
	font-size: clamp(1.85rem, 3.2vw, 2.65rem);
	margin-bottom: 20px;
}
.about__copy .section__lead {
	max-width: none;
	margin-bottom: 24px;
	font-size: 1.08rem;
	line-height: 1.68;
}
.about__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 32px;
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}
.about__stats li strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--ink);
	line-height: 1.1;
	margin-bottom: 4px;
}
.about__stats li span {
	font-family: var(--font-mono);
	font-size: 0.66rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-soft);
}
.about__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.96rem;
	letter-spacing: -0.02em;
	color: var(--ink);
	border-bottom: 2px solid var(--red);
	padding-bottom: 2px;
	transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.about__link:hover {
	color: var(--red);
	gap: 12px;
}
.about__clients-label {
	font-family: var(--font-mono);
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-soft);
	margin: 0 0 18px;
	text-align: center;
}
.clients-marquee {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin-top: 0;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.clients-marquee__viewport { overflow: hidden; max-width: 100%; }
.clients-marquee__track {
	display: flex;
	align-items: stretch;
	gap: 14px;
	width: max-content;
	padding: 4px 0;
	animation: clientsMarquee 42s linear infinite;
}
.clients-marquee:hover .clients-marquee__track {
	animation-play-state: paused;
}
.clients-marquee__item {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 14px;
	row-gap: 2px;
	min-width: 210px;
	padding: 16px 20px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	color: var(--ink);
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.clients-marquee__item:hover {
	border-color: var(--line-2);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}
.clients-marquee__logo {
	grid-row: 1 / span 2;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	object-fit: contain;
	background: var(--paper-2);
	padding: 4px;
}
.clients-marquee__logo--wide {
	width: auto;
	min-width: 36px;
	max-width: 72px;
	height: 32px;
	padding: 6px 8px;
	background: #fff;
}
.clients-marquee__name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.98rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
}
.clients-marquee__url {
	grid-column: 2;
	font-family: var(--font-mono);
	font-size: 0.68rem;
	color: var(--text-soft);
	letter-spacing: 0.01em;
}
@keyframes clientsMarquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ── FAQ ── */
.faq-layout {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: 60px;
	align-items: start;
}
.faq-aside { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq-aside .section__title {
	font-size: clamp(1.6rem, 2.7vw, 2.1rem);
	margin: 0 0 20px;
	max-width: 13ch;
}
.faq-aside__note {
	color: var(--text-soft);
	font-size: 0.96rem;
	margin: 0 0 20px;
	max-width: 32ch;
}
.faq-aside__contact {
	display: flex;
	flex-direction: column;
	gap: 7px;
	font-family: var(--font-mono);
	font-size: 0.88rem;
}
.faq-aside__contact a { color: var(--red); }
.faq-aside__contact a:hover { text-decoration: underline; }

.faq { max-width: none; margin: 0; }
.faq-item__heading {
	margin: 0;
	font: inherit;
}
.faq-item {
	border-top: 1px solid var(--line-2);
}
.faq-item:last-child { border-bottom: 1px solid var(--line-2); }
.faq-item__q {
	width: 100%; text-align: left;
	padding: 22px 0;
	background: none; border: none; cursor: pointer;
	font-family: var(--font-display); font-weight: 700; font-size: 1.04rem;
	letter-spacing: -0.02em;
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
	color: var(--text);
	transition: color 0.2s;
}
.faq-item__q:hover { color: var(--red); }
.faq-item__q::after {
	content: "+";
	flex-shrink: 0;
	width: 30px; height: 30px;
	border: 1px solid var(--line-2);
	border-radius: 50%;
	display: grid; place-items: center;
	font-family: var(--font-mono);
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 1;
	color: var(--text);
	transition: transform 0.28s ease, background 0.25s, color 0.25s, border-color 0.25s;
}
.faq-item__q:hover::after { border-color: var(--ink); }
.faq-item.is-open .faq-item__q::after {
	transform: rotate(45deg);
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}
.faq-item.is-open .faq-item__q { color: var(--ink); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.is-open .faq-item__a { max-height: 260px; }
.faq-item__a p { margin: -4px 0 24px; font-size: 0.95rem; color: var(--text-soft); max-width: 60ch; }

/* ── CTA końcowe ── */
.cta-final {
	padding: 100px 0;
	background: var(--ink);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.cta-final::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: linear-gradient(160deg, #000 10%, transparent 60%);
	-webkit-mask-image: linear-gradient(160deg, #000 10%, transparent 60%);
}
.cta-final__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 410px;
	gap: 56px;
	align-items: center;
}
.cta-final__copy h2 {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.4vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	margin: 0 0 14px;
	max-width: 16ch;
}
.cta-final__copy > p {
	color: rgba(255,255,255,0.64);
	margin: 0 0 24px;
	font-size: 1.02rem;
	max-width: 44ch;
}
.cta-final__list {
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}
.cta-final__list li {
	padding: 0 0 0 28px;
	position: relative;
	font-size: 0.94rem;
	color: rgba(255,255,255,0.82);
}
.cta-final__list li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--cyan-bright);
	font-weight: 700;
}
.cta-final__contact {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.contact-chip {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 11px 20px 11px 11px;
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 14px;
	transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.contact-chip:hover {
	border-color: var(--cyan-bright);
	background: rgba(255,255,255,0.03);
	transform: translateY(-2px);
}
.contact-chip__ic {
	width: 40px; height: 40px;
	border-radius: 10px;
	display: grid; place-items: center;
	background: rgba(37,244,238,0.12);
	color: var(--cyan-bright);
	flex-shrink: 0;
}
.contact-chip__ic svg { width: 19px; height: 19px; }
.contact-chip__txt { display: flex; flex-direction: column; line-height: 1.25; }
.contact-chip__label {
	font-family: var(--font-mono);
	font-size: 0.62rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255,255,255,0.5);
}
.contact-chip strong {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.98rem;
	color: #fff;
	letter-spacing: -0.01em;
}

/* ── Sticky CTA ── */
.sticky-cta {
	position: fixed;
	bottom: 0; left: 0; right: 0;
	z-index: 90;
	padding: 12px 0;
	background: var(--ink);
	border-top: 1px solid rgba(255,255,255,0.1);
	transform: translateY(100%);
	transition: transform 0.35s ease;
	pointer-events: none;
}
.sticky-cta.is-visible {
	transform: none;
	pointer-events: auto;
}
.sticky-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: #fff;
	font-size: 0.9rem;
}

/* ── Chat FAB + modal ── */
.chat-fab {
	position: fixed;
	right: 22px;
	bottom: calc(22px + var(--safe-bottom));
	z-index: 99999;
	width: 58px;
	height: 58px;
	border: none;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--red), #d41450);
	color: #fff;
	cursor: pointer;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	box-shadow: 0 10px 32px rgba(254, 44, 85, 0.42);
	transition: transform 0.22s ease, box-shadow 0.22s ease, bottom 0.35s ease;
	animation: chatFabPulse 2.8s ease-in-out infinite;
}
.chat-fab__bubble {
	position: absolute;
	right: calc(100% + 12px);
	bottom: 50%;
	transform: translateY(50%);
	white-space: nowrap;
	padding: 9px 14px;
	border-radius: 12px;
	background: var(--ink);
	color: #fff;
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.25;
	box-shadow: 0 8px 24px rgba(12, 12, 16, 0.28);
	pointer-events: none;
	animation: chatBubbleIn 0.5s ease 1.2s both;
}
.chat-fab__bubble::after {
	content: "";
	position: absolute;
	right: -6px;
	top: 50%;
	width: 0;
	height: 0;
	margin-top: -6px;
	border: 6px solid transparent;
	border-left-color: var(--ink);
}
.chat-fab.is-bubble-hidden .chat-fab__bubble {
	display: none;
}
.chat-fab svg { width: 26px; height: 26px; position: relative; z-index: 1; }
.chat-fab:hover {
	transform: translateY(-3px) scale(1.04);
	box-shadow: 0 16px 40px rgba(254, 44, 85, 0.5);
	animation: none;
}
.chat-fab--raised { bottom: calc(86px + var(--safe-bottom)); }
.chat-fab[aria-expanded="true"] { animation: none; }

@keyframes chatFabPulse {
	0%, 100% { box-shadow: 0 10px 32px rgba(254, 44, 85, 0.42); }
	50% { box-shadow: 0 10px 32px rgba(254, 44, 85, 0.42), 0 0 0 10px rgba(254, 44, 85, 0.12); }
}
@keyframes chatBubbleIn {
	from { opacity: 0; transform: translateY(50%) translateX(8px); }
	to { opacity: 1; transform: translateY(50%) translateX(0); }
}

.chat-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	padding-bottom: calc(20px + var(--safe-bottom));
}
.chat-modal[hidden] { display: none; }
.chat-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(12, 12, 16, 0.62);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	animation: chatFadeIn 0.25s ease;
}
.chat-modal__panel {
	position: relative;
	width: min(420px, 100%);
	max-height: calc(100dvh - 40px);
	overflow-y: auto;
	padding: 28px 24px 24px;
	border-radius: var(--radius);
	background: var(--card);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	animation: chatSlideUp 0.3s ease;
}
.chat-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 10px;
	background: transparent;
	color: var(--text-soft);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.chat-modal__close:hover { background: var(--paper-2); color: var(--ink); }
.chat-modal__head { margin-bottom: 14px; padding-right: 28px; }
.chat-modal__badge {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 14px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(37,244,238,0.15), rgba(254,44,85,0.12));
	color: var(--red);
}
.chat-modal__badge svg { width: 22px; height: 22px; }
.chat-modal__head h2 {
	margin: 0 0 6px;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--ink);
}
.chat-modal__promise {
	margin: 0;
	font-family: var(--font-mono);
	font-size: 0.82rem;
	color: var(--text-soft);
}
.chat-modal__promise strong { color: var(--red); }
.chat-modal__lead {
	margin: 0 0 18px;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--text-soft);
}
.chat-modal__form { margin: 0; }
.chat-modal__form .lead-form__row:last-of-type { margin-bottom: 0; }
.chat-modal__success {
	text-align: center;
	padding: 8px 0 4px;
}
.chat-modal__success-icon {
	width: 52px;
	height: 52px;
	margin: 0 auto 14px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(7, 184, 176, 0.14);
	color: #0d9488;
	font-size: 1.4rem;
	font-weight: 700;
}
.chat-modal__success h3 {
	margin: 0 0 8px;
	font-family: var(--font-display);
	font-size: 1.2rem;
	letter-spacing: -0.02em;
}
.chat-modal__success p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--text-soft);
	line-height: 1.5;
}
.chat-modal__success strong { color: var(--red); }
body.chat-open { overflow: hidden; }

@keyframes chatFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes chatSlideUp {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: none; }
}

/* ── Stopka ── */
.footer {
	padding: 48px 0 84px;
	background: var(--ink);
	color: rgba(255,255,255,0.5);
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.02em;
}
.footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}
.footer a:not(.brand) {
	color: rgba(255,255,255,0.85);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}
.footer a:not(.brand):hover { color: #fff; }
.footer p a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__lang {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	font-weight: 600;
}
.footer__lang a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
}
.footer__lang a:hover,
.footer__lang a[aria-current="page"] {
	color: #fff;
}
.brand--footer { color: #fff; }

/* ── Strona prawna (polityka prywatności) ── */
.legal-body { background: var(--paper); color: var(--ink); }
.legal-header {
	padding: 20px 0;
	background: var(--ink);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}
.legal-header__back {
	font-family: var(--font-mono);
	font-size: 0.82rem;
	color: rgba(255,255,255,0.72);
	text-decoration: none;
}
.legal-header__back:hover { color: #fff; }
.legal-main { padding: 48px 0 64px; }
.legal-page { max-width: 760px; }
.legal-page__head { margin-bottom: 40px; }
.legal-page__head h1 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 12px;
}
.legal-page__meta {
	font-family: var(--font-mono);
	font-size: 0.82rem;
	color: var(--text-soft);
	line-height: 1.6;
	margin: 0;
}
.legal-section { margin-bottom: 32px; }
.legal-section h2 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 600;
	margin: 0 0 12px;
	color: var(--ink);
}
.legal-section p,
.legal-section li {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--text-soft);
	margin: 0 0 12px;
}
.legal-section ul { padding-left: 1.25rem; margin: 0 0 12px; }
.legal-section a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { color: var(--ink); }
.legal-address {
	font-style: normal;
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--text-soft);
	padding: 16px 20px;
	background: var(--card);
	border-radius: var(--radius-sm);
	border: 1px solid var(--line);
	margin: 12px 0;
}
.legal-table-wrap { overflow-x: auto; margin: 16px 0; }
.legal-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.85rem;
	line-height: 1.55;
}
.legal-table th,
.legal-table td {
	padding: 12px 14px;
	text-align: left;
	vertical-align: top;
	border: 1px solid var(--line);
}
.legal-table th {
	background: var(--paper-2);
	font-weight: 600;
	color: var(--ink);
}
.legal-table td { color: var(--text-soft); }

/* ── Dokumenty / PRD (documents.css rozszerzenie - landing.css fallback) ── */
.legal-page--doc { max-width: 820px; }
.legal-page--doc.legal-page--wide { max-width: 960px; }
.legal-page--doc .legal-section h2 { font-size: 1.15rem; }
.legal-page--doc .legal-section h3 {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	margin: 20px 0 8px;
}
.legal-page--doc table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0;
	font-size: 0.92rem;
}
.legal-page--doc table th,
.legal-page--doc table td {
	border: 1px solid var(--line);
	padding: 10px 12px;
	text-align: left;
	vertical-align: top;
}
.legal-page--doc table th {
	background: var(--paper-2);
	font-weight: 600;
	color: var(--ink);
}
.legal-page--doc code {
	font-family: var(--font-mono);
	font-size: 0.85em;
	background: var(--paper-2);
	padding: 2px 6px;
	border-radius: 4px;
}
.doc-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--line);
}
.doc-toolbar__back {
	font-size: 0.9rem;
	color: var(--text-soft);
	text-decoration: none;
}
.doc-toolbar__back:hover { color: var(--violet); }
.btn--doc {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: 8px;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
	cursor: pointer;
	text-decoration: none;
}
.btn--doc:hover {
	background: var(--paper-2);
	border-color: var(--violet);
	color: var(--violet);
}
.btn--doc--primary {
	background: var(--violet);
	border-color: var(--violet);
	color: #fff;
}
.btn--doc--primary:hover {
	background: #5b21b6;
	border-color: #5b21b6;
	color: #fff;
}
.doc-diagram {
	background: var(--paper-2);
	border: 1px solid var(--line);
	border-radius: 10px;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	line-height: 1.45;
	margin: 16px 0;
	overflow-x: auto;
	padding: 16px 18px;
	white-space: pre;
	color: var(--ink);
}
.legal-section--screenshots { max-width: none; }
.doc-screenshot {
	margin: 36px 0 48px;
	padding: 24px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-sm);
	page-break-inside: avoid;
	break-inside: avoid;
}
.doc-screenshot h3 {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--ink);
}
.doc-screenshot p {
	margin: 0 0 12px;
	color: var(--text-soft);
	line-height: 1.65;
}
.doc-screenshot ul {
	margin: 0 0 20px;
	padding-left: 1.25rem;
	line-height: 1.65;
	color: var(--text-soft);
}
.doc-screenshot__img {
	width: 100%;
	height: auto;
	display: block;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #0c0c10;
	box-shadow: 0 8px 32px rgba(12, 12, 16, 0.12);
}
.doc-screenshot figcaption {
	margin-top: 12px;
	font-size: 0.85rem;
	color: var(--text-soft);
	text-align: center;
	font-style: italic;
}
.pdf-loading {
	position: fixed;
	inset: 0;
	background: rgba(12, 12, 16, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	color: #fff;
	font-weight: 600;
	font-size: 1.1rem;
}
.pdf-loading[hidden] { display: none; }

/* ── Animacje ── */
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}
@keyframes flowPulse {
	0%, 100% { opacity: 0.3; }
	50% { opacity: 1; }
}
@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: none; }
}
@keyframes popIn {
	0% { transform: scale(0.6); opacity: 0; }
	100% { transform: scale(1); opacity: 1; }
}
@keyframes meterGrow {
	from { width: 0; }
}

/* ── Responsywność ── */
@media (max-width: 1024px) {
	.hero__grid { grid-template-columns: 1fr; gap: 44px; min-height: auto; }
	.hero__copy { min-height: auto; }
	.hero__title { min-height: 8.5rem; }
	.hero__steps { min-height: 8.5rem; }
	.hero__aside { min-height: auto; }
	.lead-card--hero { min-height: 24rem; }
	.hero__aside { max-width: none; width: 100%; }
	.pain-grid, .benefits-grid { grid-template-columns: 1fr 1fr; }
	.showcase { grid-template-columns: 1fr; gap: 20px; }
	.showcase__tabs {
		flex-direction: row;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		gap: 8px;
		padding-bottom: 2px;
		overscroll-behavior-x: contain;
	}
	.showcase__tabs::-webkit-scrollbar { display: none; }
	.showcase__tab {
		flex: 0 0 auto;
		min-width: 168px;
		scroll-snap-align: start;
		border-left: none;
		border-bottom: 2px solid rgba(255,255,255,0.12);
		border-radius: var(--radius-sm);
	}
	.showcase__tab.is-active { border-left: none; border-bottom-color: var(--cyan-bright); }
	.testimonial__inner, .cta-final__grid, .compare-wrap, .steps { grid-template-columns: 1fr; }
	.pain-card, .steps__item, .compare-col--bad { border-right: none; border-bottom: 1px solid var(--line); }
	.pain-card:last-child, .steps__item:last-child { border-bottom: none; }
	.faq-layout { grid-template-columns: 1fr; gap: 36px; }
	.faq-aside { position: static; }
	.cta-final__grid { gap: 40px; }
	.tts-market__grid { grid-template-columns: 1fr; }
	.tts-market__card { border-right: none; border-bottom: 1px solid var(--line); padding: 26px 22px; }
	.tts-market__card:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
	:root {
		--gutter: 16px;
		--nav-h: 64px;
		--urgency-h: 60px;
	}
	body.has-urgency { padding-top: 0; }
	body.has-urgency .nav { display: none; top: 0; }
	body.has-urgency .nav.is-open { display: none; }
	.nav.is-scroll-hidden {
		transform: translateY(-100%);
		pointer-events: none;
	}
	.nav__links { display: none; }
	.nav__actions { display: none; }
	.nav__cta-text {
		display: inline-flex;
		align-items: center;
		margin-left: auto;
		margin-right: 4px;
		font-family: var(--font-mono);
		font-size: 0.72rem;
		font-weight: 700;
		color: #fff;
		text-decoration: underline;
		text-underline-offset: 3px;
		text-decoration-color: var(--red);
		text-decoration-thickness: 2px;
		white-space: nowrap;
		flex-shrink: 1;
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	body.has-urgency .nav__cta-text { display: none; }
	.nav.is-scrolled .nav__cta-text { color: var(--ink); }
	.nav.is-open .nav__cta-text { display: none; }
	.nav-toggle { display: block; flex-shrink: 0; }
	.nav.is-open { background: rgba(244,241,234,0.97); backdrop-filter: blur(16px); border-bottom-color: var(--line); }
	.nav.is-open .brand, .nav.is-open .nav-toggle { color: var(--ink); }
	.nav.is-open .nav__links {
		display: flex;
		flex-direction: column;
		gap: 14px;
		position: fixed;
		top: calc(var(--nav-h) + var(--safe-top));
		left: 0;
		right: 0;
		max-height: calc(100dvh - var(--nav-h) - var(--safe-top));
		overflow-y: auto;
		background: var(--paper);
		padding: 20px var(--gutter) 24px;
		box-shadow: var(--shadow);
		color: var(--text-soft);
	}
	body.has-urgency .nav.is-open .nav__links { top: calc(var(--nav-h) + var(--safe-top)); max-height: calc(100dvh - var(--nav-h) - var(--safe-top)); }
	.nav.is-open .nav__links a { font-size: 1.08rem; }
	.nav.is-open .nav__links a::after { display: none; }
	.nav.is-open .nav__links .nav__cta-mobile {
		display: inline-flex;
		width: 100%;
		justify-content: center;
		margin-top: 6px;
	}
	.brand { font-size: 1.02rem; }
	.brand__logo { width: 66px; height: 36px; }
	.brand__core { left: 16px; width: 32px; height: 32px; }
	.brand__core svg { width: 20px; height: 20px; }
	.brand__side--woo { left: -6px; width: 28px; height: 28px; font-size: 0.64rem; letter-spacing: -0.045em; transform: translateY(-50%) rotate(-10deg); z-index: 0; }
	.brand__side--tt { left: 38px; right: auto; width: 28px; height: 28px; font-size: 0.52rem; letter-spacing: -0.062em; transform: translateY(-50%) rotate(10deg); z-index: 0; }
	.brand:hover .brand__side--woo { left: -6px; transform: translateY(-50%) rotate(-10deg); }
	.brand:hover .brand__side--tt { left: 38px; transform: translateY(-50%) rotate(10deg); }
	.urgency {
		padding: calc(15px + var(--safe-top)) 0 15px;
	}
	.urgency__inner { padding: 0 36px 0 8px; text-align: center; line-height: 1.45; font-size: 0.8rem; }
	.urgency__close { top: 50%; transform: translateY(-50%); right: 4px; }
	.hero {
		min-height: auto;
		padding-top: calc(var(--nav-h) + var(--safe-top) + 36px);
		padding-bottom: 56px;
	}
	body.has-urgency .hero { padding-top: 28px; }
	.hero__grid { gap: 32px; }
	.hero__title .gradient { white-space: normal; }
	.hero__cta-row .btn { flex: 1 1 auto; min-width: 0; }
	.hero__cta-row .btn--ghost-light { display: none; }
	.hero__trust-chips { gap: 12px; font-size: 0.68rem; }
	.pain-grid, .benefits-grid { grid-template-columns: 1fr; }
	.benefit-card { border-bottom: 1px solid var(--line); }
	.benefit-card:last-child { border-bottom: none; }
	.benefit-card:last-child { border-bottom: none; }
	.pain-card, .benefit-card, .steps__item { padding: 26px 22px; }
	.lead-form__row--2 { grid-template-columns: 1fr; }
	.lead-form input,
	.lead-form select { font-size: 16px; }
	.lead-card { padding: 24px 20px; }
	.section { padding: 72px 0; }
	.about { padding-top: 64px; padding-bottom: 56px; }
	.about__grid {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 40px;
	}
	.about__brand { min-height: 220px; padding: 32px 24px; }
	.about__logo-link { max-width: 200px; margin-bottom: 22px; }
	.about__clients-label { margin-bottom: 14px; }
	.about__stats {
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 10px;
		margin-bottom: 24px;
	}
	.about__stats li {
		flex: 1 1 0;
		min-width: 0;
		text-align: center;
	}
	.about__stats li strong {
		font-size: clamp(0.92rem, 3.4vw, 1.2rem);
		margin-bottom: 3px;
	}
	.about__stats li span {
		font-size: 0.56rem;
		line-height: 1.35;
		letter-spacing: 0.04em;
	}
	.tts-market__stats {
		grid-template-columns: repeat(3, 1fr);
		margin-bottom: 32px;
	}
	.tts-market__stat {
		padding: 14px 8px;
		border-right: 1px solid var(--line);
		border-bottom: none;
	}
	.tts-market__stat:last-child { border-right: none; }
	.tts-market__stat strong {
		font-size: clamp(1rem, 4.2vw, 1.55rem);
		margin-bottom: 5px;
	}
	.tts-market__stat span {
		font-size: 0.52rem;
		letter-spacing: 0.03em;
		max-width: none;
		line-height: 1.32;
	}
	.quote__stats {
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 8px;
		width: 100%;
	}
	.quote__stats div {
		flex: 1 1 0;
		min-width: 0;
		text-align: center;
	}
	.quote__stats div strong {
		font-size: clamp(0.92rem, 3.6vw, 1.3rem);
	}
	.quote__stats div span {
		font-size: 0.52rem;
		line-height: 1.32;
		display: block;
	}
	.clients-marquee { margin-top: 0; }
	.clients-marquee__item { min-width: 180px; padding: 14px 16px; }
	.section__title,
	.section__head--center .section__title { max-width: none; }
	.section__lead { margin-bottom: 36px; }
	.cta-band {
		flex-direction: column;
		align-items: stretch;
		padding: 24px 22px;
		gap: 18px;
	}
	.cta-band .btn { width: 100%; }
	.compare-col { padding: 28px 22px; }
	.compare-col__tag {
		position: static;
		display: inline-block;
		margin-bottom: 14px;
	}
	.showcase__frame-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 14px 16px;
	}
	.showcase__frame-body { padding: 18px 16px; min-height: auto; }
	.showcase__frame-body--flush { padding: 0; overflow: hidden; }
	.showcase__tabs {
		flex-direction: column;
		overflow-x: visible;
		scroll-snap-type: none;
		gap: 2px;
		padding-bottom: 0;
		margin-bottom: 4px;
	}
	.showcase__tab {
		flex: none;
		width: 100%;
		min-width: 0;
		scroll-snap-align: none;
		border-left: 2px solid rgba(255,255,255,0.12);
		border-bottom: none;
		border-radius: 0;
	}
	.showcase__tab.is-active {
		border-left-color: var(--cyan-bright);
		border-bottom-color: transparent;
	}
	.woo-bulk-bar {
		flex-direction: column;
		align-items: stretch;
	}
	.woo-bulk-bar__btn {
		white-space: normal;
		justify-content: center;
		text-align: center;
		line-height: 1.35;
	}

	/* ── Showcase tabele → karty RWD (bez poziomego scrolla) ── */
	.woo-shot:not(.woo-shot--pipeline) {
		overflow-x: hidden;
	}
	.woo-table,
	.woo-table--products,
	.woo-table--returns {
		width: 100%;
		max-width: 100%;
		min-width: 0 !important;
	}
	.woo-table thead { display: none; }
	.woo-table tbody { display: block; }
	.woo-table tbody td {
		padding: 0;
		border: none;
	}
	.woo-table tbody tr:not(.woo-return-detail) {
		display: block;
		padding: 14px 16px;
		border-bottom: 1px solid #f0f0f1;
	}
	.woo-table tbody tr:hover { background: #f6f7f7; }
	.woo-table tbody tr.is-highlight { background: #f0f6fc; }
	.woo-table tbody tr.is-highlight:hover { background: #e8f2fa; }
	.woo-product { min-width: 0; }
	.woo-product__info { min-width: 0; overflow-wrap: anywhere; }
	.woo-date,
	.woo-amount,
	.woo-stock,
	.woo-score { white-space: normal; }
	.woo-order { word-break: break-word; }
	.woo-order span { white-space: normal; }

	/* Produkty */
	.woo-table--products tbody tr {
		display: grid;
		grid-template-columns: 24px 1fr auto;
		grid-template-rows: auto auto auto;
		gap: 6px 10px;
		align-items: start;
	}
	.woo-table--products tbody td { display: block; }
	.woo-table--products tbody td:nth-child(1) {
		grid-column: 1;
		grid-row: 1 / 3;
		padding-top: 6px;
	}
	.woo-table--products tbody td:nth-child(2) {
		grid-column: 2 / 4;
		grid-row: 1;
	}
	.woo-table--products tbody td:nth-child(3) {
		grid-column: 2;
		grid-row: 2;
		font-size: 0.76rem;
		color: #50575e;
	}
	.woo-table--products tbody td:nth-child(3)::before {
		content: "SKU · ";
		font-weight: 600;
		color: #787c82;
	}
	.woo-table--products tbody td:nth-child(4) {
		grid-column: 3;
		grid-row: 2;
		text-align: right;
		font-size: 0.76rem;
	}
	.woo-table--products tbody td:nth-child(4)::before {
		content: "Stan · ";
		font-weight: 600;
		color: #787c82;
	}
	.woo-table--products tbody td:nth-child(5) {
		grid-column: 2;
		grid-row: 3;
		font-size: 0.76rem;
	}
	.woo-table--products tbody td:nth-child(5)::before {
		content: "TikTok Shop · ";
		font-weight: 600;
		color: #787c82;
	}
	.woo-table--products tbody td:nth-child(6) {
		grid-column: 3;
		grid-row: 3;
		text-align: right;
		font-size: 0.82rem;
	}
	.woo-table--products tbody td:nth-child(6)::before {
		content: "Zgodność · ";
		font-weight: 600;
		color: #787c82;
		font-size: 0.76rem;
	}

	/* Zamówienia */
	.woo-table:not(.woo-table--products):not(.woo-table--returns) tbody tr {
		display: grid;
		grid-template-columns: 24px 1fr auto;
		grid-template-rows: auto auto auto;
		gap: 6px 10px;
		align-items: start;
	}
	.woo-table:not(.woo-table--products):not(.woo-table--returns) tbody td { display: block; }
	.woo-table:not(.woo-table--products):not(.woo-table--returns) tbody td:nth-child(1) {
		grid-column: 1;
		grid-row: 1;
		padding-top: 2px;
	}
	.woo-table:not(.woo-table--products):not(.woo-table--returns) tbody td:nth-child(2) {
		grid-column: 2;
		grid-row: 1;
		min-width: 0;
	}
	.woo-table:not(.woo-table--products):not(.woo-table--returns) tbody td:nth-child(6) {
		grid-column: 3;
		grid-row: 1;
		text-align: right;
		align-self: start;
	}
	.woo-table:not(.woo-table--products):not(.woo-table--returns) tbody td:nth-child(3) {
		grid-column: 2 / 4;
		grid-row: 2;
		font-size: 0.76rem;
		color: #646970;
	}
	.woo-table:not(.woo-table--products):not(.woo-table--returns) tbody td:nth-child(4) {
		grid-column: 2;
		grid-row: 3;
	}
	.woo-table:not(.woo-table--products):not(.woo-table--returns) tbody td:nth-child(5) {
		grid-column: 3;
		grid-row: 3;
		justify-self: end;
	}
	.woo-row-incoming.is-visible td { background: transparent; }
	.woo-row-incoming.is-visible { background: #edfaef; }

	/* Zwroty */
	.woo-table--returns tbody tr.woo-return-row {
		display: grid;
		grid-template-columns: 1fr auto 18px;
		grid-template-rows: auto auto auto auto;
		gap: 6px 8px;
		align-items: start;
	}
	.woo-table--returns tbody tr.woo-return-row td { display: block; }
	.woo-table--returns .woo-return-id {
		grid-column: 1;
		grid-row: 1;
	}
	.woo-table--returns .woo-return-expand {
		grid-column: 3;
		grid-row: 1 / 3;
		align-self: start;
		justify-self: end;
		padding: 0;
	}
	.woo-table--returns .woo-return-row td.woo-product {
		grid-column: 1 / 3;
		grid-row: 2;
	}
	.woo-table--returns .woo-return-row td.woo-amount {
		grid-column: 1;
		grid-row: 3;
		text-align: left;
		font-size: 0.82rem;
	}
	.woo-table--returns .woo-return-row td.woo-amount::before {
		content: "Kwota · ";
		font-weight: 600;
		color: #787c82;
		font-size: 0.76rem;
	}
	.woo-table--returns .woo-return-row td:nth-child(4) {
		grid-column: 2 / 4;
		grid-row: 3;
		justify-self: end;
	}
	.woo-table--returns .woo-return-row td:nth-child(5) {
		grid-column: 1 / 4;
		grid-row: 4;
	}
	.woo-return-detail {
		display: block;
		padding: 0;
		border-bottom: 1px solid #f0f0f1;
		background: #f9fafb;
	}
	.woo-return-detail td {
		display: block;
		width: 100%;
		background: transparent !important;
	}
	.woo-return-detail__inner { padding: 14px 16px 16px; }
	.woo-return-actions { justify-content: flex-start; flex-wrap: wrap; }
	.woo-return-btn { flex: 1 1 auto; min-width: 0; }

	.woo-pipeline-action { white-space: normal; text-align: right; }
	.woo-pipeline-bar { flex-direction: column; align-items: stretch; }
	.woo-pipeline-product { min-width: 0; }
	.woo-pipeline,
	.woo-pipeline.has-stage {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 16px 12px 20px;
	}
	.woo-pipeline__arrow {
		transform: rotate(90deg);
		padding: 4px 0;
	}
	.sync-flow {
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
		margin-bottom: 16px;
	}
	.sync-node { flex: none; display: flex; align-items: center; gap: 12px; text-align: left; padding: 12px 14px; }
	.sync-node__icon { margin: 0; flex-shrink: 0; }
	.sync-node__label { font-size: 0.78rem; }
	.sync-arrow {
		width: 12px;
		height: 20px;
		margin: 0 auto;
		transform: rotate(90deg);
	}
	.steps__cta { gap: 18px; }
	.cta-final { padding: 72px 0; }
	.cta-final__contact { flex-direction: column; }
	.contact-chip { width: 100%; }
	.footer { padding-bottom: calc(100px + var(--safe-bottom)); }
	.footer__inner { flex-direction: column; text-align: center; }
	.quote { padding: 36px 22px 32px; }
	.quote__text { max-width: none; }
	.quote__mark { font-size: 6rem; right: 12px; top: 0; }
	.quote__foot { flex-direction: column; align-items: flex-start; gap: 24px; }
	.quote__stats { gap: 22px; flex-wrap: wrap; width: 100%; }
	.faq-item__q { font-size: 0.98rem; padding: 18px 0; }
	.sticky-cta { padding: 10px 0 calc(10px + var(--safe-bottom)); }
	.sticky-cta__inner { gap: 12px; }
	.chat-fab { left: 16px; right: auto; width: 54px; height: 54px; }
	.chat-fab__bubble {
		right: auto;
		left: 50%;
		bottom: calc(100% + 10px);
		transform: translateX(-50%);
		font-size: 0.76rem;
		max-width: min(220px, calc(100vw - 48px));
		white-space: normal;
		text-align: center;
	}
	.chat-fab__bubble::after {
		right: auto;
		left: 50%;
		top: 100%;
		margin-top: 0;
		margin-left: -6px;
		border: 6px solid transparent;
		border-top-color: var(--ink);
		border-left-color: transparent;
	}
	.chat-fab--raised { bottom: calc(92px + var(--safe-bottom)); }
	.chat-modal { padding: 12px; padding-bottom: calc(12px + var(--safe-bottom)); }
}

@media (max-width: 480px) {
	:root { --gutter: 14px; }
	.hero__title { font-size: clamp(1.75rem, 8.5vw, 2.1rem); }
	.hero__lead { font-size: 1rem; }
	.hero__cta-row { flex-direction: column; }
	.hero__cta-row .btn { width: 100%; }
	.hero__steps li { font-size: 0.92rem; gap: 12px; padding: 12px 0; }
	.urgency__inner { font-size: 0.68rem; padding-right: 32px; }
	.mock-row { flex-direction: column; align-items: flex-start; gap: 8px; }
	.steps__cta { flex-direction: column; text-align: center; }
	.steps__cta .btn { width: 100%; }
	.sticky-cta__inner {
		flex-direction: column;
		text-align: center;
	}
	.sticky-cta__inner .btn { width: 100%; }
	.sticky-cta__inner span { font-size: 0.82rem; line-height: 1.35; }
	.quote__stats div { flex: 1 1 0; min-width: 0; }
}
