/* ── TOKENS ── */
:root {
	--ink: #0a0a0a;
	--ink2: #374151;
	--gray: #6b7280;
	--faint: #9ca3af;
	--light: #f7f7f8;
	--border: #e7e7e7;
	--green: #16a34a;
	--green-h: #15803d;
	--green-l: #dcfce7;
	--blue: #3476e9;
	--blue-l: #eaf1fd;
	--red: #dc2626;
	--sh: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
	--sh-l: 0 16px 56px rgba(0, 0, 0, 0.1);
	--r: 12px;
	--r-l: 20px;
	--t: 0.18s ease;
}
/* ── ANIMATIONS ── */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.35;
		transform: scale(1.55);
	}
}
@keyframes floatY {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}
@keyframes shimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 150%;
	}
}

.a0 {
	animation: fadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}
.a1 {
	animation: fadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.a2 {
	animation: fadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}
.a3 {
	animation: fadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}
.a4 {
	animation: fadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}
.a5 {
	animation: fadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both;
}

/* ── NAV ── */
header {
	/* position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	padding: 0 40px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: space-between; */
}

/* Buttons */
.btn:not(.btn-mid) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	height: 52px;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition:
		transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
		background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	text-decoration: none;
	letter-spacing: 0.01em;
	font-size: 16px;
}
.btn-sm:not(.btn-mid) {
	height: 40px;
	padding: 0 18px;
	border-radius: 10px;
	font-size: 14px;
}
.btn-md:not(.btn-mid) {
	padding: 0 28px;
}
.btn-lg:not(.btn-mid) {
	padding: 0 36px;
	font-size: 17px;
}
.btn-blk:not(.btn-mid) {
	background: var(--ink);
	color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.btn-blk:not(.btn-mid):hover {
	opacity: 0.88;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.btn-grn:not(.btn-mid) {
	background: var(--green);
	color: #fff;
	box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}
.btn-grn:not(.btn-mid):hover {
	background: var(--green-h);
	box-shadow: 0 6px 20px rgba(22, 163, 74, 0.38);
	transform: translateY(-1px);
}
.btn-grn:not(.btn-mid, .btn-no-glow)::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
	animation: shimmer 3.5s 1.5s infinite;
}
.btn-out:not(.btn-mid) {
	background: #fff;
	color: var(--ink);
	border: 1.5px solid var(--border);
	box-shadow: 0 2px 8px rgba(52, 118, 233, 0.08);
}
.btn-out:not(.btn-mid):hover {
	border-color: #999;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-1px);
}

/* ── HERO ── */
.hero-wrap {
	max-width: 760px;
	margin: 0 auto;
	padding: 60px 24px 0;
	text-align: center;
}

.hero-micro {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 11px;
	color: var(--faint);
	margin-bottom: 10px;
}
.hero-micro span {
	display: flex;
	align-items: center;
	gap: 3px;
}

h1 {
	font-size: clamp(32px, 5.5vw, 58px);
	font-weight: 700;
	letter-spacing: -1.8px;
	line-height: 1.1;
	color: var(--ink);
	margin-bottom: 20px;
}
h1 em {
	font-style: normal;
	color: var(--blue);
}

.hero-sub {
	font-size: clamp(16px, 1.7vw, 19px);
	color: var(--ink2);
	line-height: 1.6;
	font-weight: 400;
	max-width: 560px;
	margin: 0 auto 32px;
}

.hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.hero-chips {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}
.chip {
	font-size: 12px;
	font-weight: 500;
	color: var(--gray);
	border: 1px solid var(--border);
	padding: 5px 13px;
	border-radius: 999px;
	background: #fff;
}

/* ── MOCKUP ── */
.mockup-wrap {
	max-width: 900px;
	margin: 14px auto 0;
	padding: 0 24px 16px;
	position: relative;
}
.float-badge {
	position: absolute;
	background: #fff;
	border-radius: 12px;
	padding: 8px 12px;
	display: flex;
	align-items: center;
	gap: 7px;
	box-shadow:
		0 8px 28px rgba(0, 0, 0, 0.11),
		0 0 0 1px rgba(0, 0, 0, 0.06);
	font-size: 11.5px;
	font-weight: 600;
	color: var(--ink);
	z-index: 2;
}
.float-badge small {
	display: block;
	font-size: 9.5px;
	color: var(--faint);
	font-weight: 400;
	margin-top: 1px;
}
.fb-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
	animation: pulse 2s infinite;
	flex-shrink: 0;
}
.fb-l {
	top: 28px;
	left: 4px;
	animation: floatY 3.5s 0.4s ease-in-out infinite;
}
.fb-r {
	bottom: 72px;
	right: 4px;
	animation: floatY 3.8s 1s ease-in-out infinite;
}

.app-win {
	background: #fff;
	border-radius: 16px;
	box-shadow:
		0 32px 80px rgba(0, 0, 0, 0.13),
		0 4px 16px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	animation: floatY 5s ease-in-out infinite;
}
.app-bar {
	height: 40px;
	background: #1a1a2e;
	display: flex;
	align-items: center;
	padding: 0 16px;
	gap: 6px;
}
.app-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
}
.app-bar-t {
	color: rgba(255, 255, 255, 0.5);
	font-size: 11px;
	margin-left: 8px;
	flex: 1;
}
.kpill {
	background: var(--green);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	padding: 2px 9px;
	border-radius: 20px;
	letter-spacing: 0.04em;
}
.app-body {
	padding: 16px 20px;
}
.app-tabs {
	display: flex;
	gap: 2px;
	margin-bottom: 14px;
}
.app-tab {
	font-size: 11px;
	font-weight: 500;
	padding: 5px 12px;
	border-radius: 7px;
	color: var(--faint);
}
.app-tab.on {
	background: var(--blue-l);
	color: var(--blue);
}
.inv-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 12px;
}
.inv-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--light);
	border-radius: 10px;
	padding: 10px 14px;
}
.inv-l {
	display: flex;
	align-items: center;
	gap: 10px;
}
.inv-ico {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}
.inv-name {
	font-size: 12px;
	font-weight: 600;
}
.inv-meta {
	font-size: 10px;
	color: var(--faint);
	margin-top: 1px;
}
.inv-r {
	text-align: right;
}
.inv-amt {
	font-size: 12.5px;
	font-weight: 700;
}
.bdg {
	font-size: 9px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 20px;
	display: inline-block;
	margin-top: 2px;
}
.bdg-g {
	background: rgba(22, 163, 74, 0.12);
	color: #15803d;
}
.bdg-b {
	background: var(--blue-l);
	color: var(--blue);
}
.bdg-o {
	background: rgba(245, 158, 11, 0.1);
	color: #92400e;
}
.app-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}
.app-stat {
	background: #1a1a2e;
	border-radius: 9px;
	padding: 10px 12px;
	text-align: center;
}
.as-n {
	font-size: 18px;
	font-weight: 700;
	color: #fbbf24;
	display: block;
	letter-spacing: -0.5px;
}
.as-l {
	font-size: 8.5px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 2px;
	line-height: 1.3;
}

/* ── SHARED ── */
.wrap {
	max-width: 1250px;
	margin: 0 auto;
	padding: 0;
}
.sec {
	padding: 56px 0;
  margin: 0;
}
.alt {
	background: var(--light);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.sec-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 8px;
}
.sec-h {
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1.12;
	color: var(--ink);
	margin-bottom: 12px;
}
.sec-sub {
	font-size: 15px;
	color: var(--gray);
	line-height: 1.65;
	max-width: 480px;
}
.center {
	text-align: center;
}
.center .sec-sub {
	margin: 0 auto;
}

/* ── STATS BAR ── */
.stats-bar {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: #fff;
	margin-top: 0;
}
.stat {
	text-align: center;
	padding: 24px 52px;
	border-right: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.stat:last-child {
	border-right: none;
}
.stat-n {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: .5px;
	color: var(--ink);
	line-height: 1;
}
.stat-l {
	font-size: 12.5px;
	color: var(--gray);
	margin-top: 5px;
	font-weight: 500;
}

/* ── PROBLEM CARDS ── */
.prob-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 40px;
}
.prob-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-l);
	padding: 24px;
	box-shadow: var(--sh);
}
.prob-icon {
	font-size: 24px;
	margin-bottom: 12px;
	display: block;
}
.prob-card h3 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--ink);
}
.prob-card p {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.6;
}

/* ── PROCESS STEPS ── */
.process {
	display: grid;
	gap: 0;
	margin-top: 44px;
}
.proc-step {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 0 20px;
	position: relative;
	padding-bottom: 32px;
}
.proc-step:last-child {
	padding-bottom: 0;
}
.proc-left {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.proc-num {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	flex-shrink: 0;
	z-index: 1;
}
.proc-line {
	width: 2px;
	flex: 1;
	background: var(--border);
	margin-top: 8px;
}
.proc-step:last-child .proc-line {
	display: none;
}
.proc-content {
	padding-top: 8px;
	padding-bottom: 8px;
}
.proc-content h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 4px;
}
.proc-content p {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.6;
}
.proc-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 8px;
	font-size: 11px;
	font-weight: 600;
	color: var(--green);
	background: var(--green-l);
	padding: 3px 10px;
	border-radius: 20px;
}

/* ── COMPARISON CARDS ── */
.compare-cards {
	margin-top: 40px;
	border: 1px solid var(--border);
	border-radius: var(--r-l);
	overflow: hidden;
	box-shadow: var(--sh);
}
.cc-header {
	display: grid;
	grid-template-columns: 200px 1fr 1fr;
}
.cc-h-empty {
	background: var(--light);
	border-right: 1px solid var(--border);
}
.cc-h-bad {
	background: #fef2f2;
	border-right: 1px solid var(--border);
	padding: 14px 20px;
}
.cc-h-good {
	background: #f0fdf4;
	padding: 14px 20px;
}
.cc-h-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
}
.cc-h-bad .cc-h-label {
	color: var(--red);
}
.cc-h-good .cc-h-label {
	color: var(--green);
}
.cc-row {
	display: grid;
	grid-template-columns: 200px 1fr 1fr;
	border-top: 1px solid var(--border);
}
.cc-row:nth-child(even) .cc-topic {
	background: var(--light);
}
.cc-row:nth-child(even) .cc-bad-cell {
	background: #fffbfb;
}
.cc-row:nth-child(even) .cc-good-cell {
	background: #fafffe;
}
.cc-topic {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 18px;
	background: #fafafa;
	border-right: 1px solid var(--border);
}
.cc-icon {
	font-size: 18px;
	flex-shrink: 0;
}
.cc-name {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--ink);
}
.cc-bad-cell {
	padding: 15px 20px;
	font-size: 13px;
	color: #555;
	line-height: 1.5;
	border-right: 1px solid var(--border);
	background: #fff;
}
.cc-good-cell {
	padding: 15px 20px;
	font-size: 13px;
	color: var(--ink2);
	font-weight: 500;
	line-height: 1.5;
	background: #fff;
}
.cc-bad-cell::before {
	content: '✕ ';
	color: var(--red);
	font-weight: 700;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.cc-good-cell::before {
	content: '✓ ';
	color: var(--green);
	font-weight: 700;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* ── BENTO FEATURES ── */
.bento {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 40px;
}
.bcard {
	background: #fff;
	border-radius: var(--r-l);
	padding: 28px;
	border: 1px solid var(--border);
	box-shadow: var(--sh);
	transition:
		transform var(--t),
		box-shadow var(--t);
	overflow: hidden;
}
.bcard:hover {
	transform: translateY(-3px);
	box-shadow: var(--sh-l);
}
.bcard.dark {
	background: #1a1a2e;
}
.bcard.blue {
	background: var(--blue);
}
.bcard.warm {
	background: var(--light);
	box-shadow: none;
}
.bcard.c2 {
	grid-column: span 2;
}
.b-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	margin-bottom: 14px;
	background: var(--light);
}
.dark .b-icon,
.blue .b-icon {
	background: rgba(255, 255, 255, 0.12);
}
.bcard h3 {
	font-size: 15.5px;
	font-weight: 600;
	letter-spacing: -0.2px;
	line-height: 1.25;
	margin-bottom: 8px;
}
.bcard p {
	font-size: 13px;
	line-height: 1.65;
	color: var(--gray);
}
.dark h3,
.blue h3 {
	color: #fff;
}
.dark p,
.blue p {
	color: rgba(255, 255, 255, 0.6);
}
.big-n {
	font-size: clamp(44px, 5vw, 64px);
	font-weight: 700;
	letter-spacing: -2.5px;
	line-height: 1;
	margin-bottom: 6px;
}
.blue .big-n {
	color: #fff;
}
.big-h {
	font-size: clamp(22px, 2.4vw, 32px) !important;
	letter-spacing: -0.5px !important;
	line-height: 1.15 !important;
}
.kbadge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(22, 163, 74, 0.22);
	color: #16a34a;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 12px;
}
.dark .kbadge {
	background: rgba(22, 163, 74, 0.25);
	color: #4ade80;
}
.vbadge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(52, 118, 233, 0.1);
	color: var(--blue);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 12px;
}
.tag-row {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 14px;
}
.btag {
	background: #fff;
	border: 1px solid var(--border);
	color: var(--gray);
	font-size: 10.5px;
	font-weight: 600;
	padding: 3px 9px;
	border-radius: 6px;
}
.mini-inv {
	background: rgba(255, 255, 255, 0.07);
	border-radius: 10px;
	padding: 10px 14px;
	margin-top: 14px;
}
.mi-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mi-row:last-child {
	border-bottom: none;
}
.mi-name {
	font-size: 11.5px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
}
.mi-meta {
	font-size: 9.5px;
	color: rgba(255, 255, 255, 0.4);
}
.mi-amt {
	font-size: 11.5px;
	font-weight: 700;
	color: #fff;
}

/* ── TESTIMONIALS ── */
.testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 40px;
	align-items: stretch;
}
.testi {
	background: #fff;
	border-radius: var(--r-l);
	padding: 24px;
	border: 1px solid var(--border);
	box-shadow: var(--sh);
	transition: transform var(--t);
	display: flex;
	flex-direction: column;
}
.testi:hover {
	transform: translateY(-2px);
}
.stars {
	color: #f59e0b;
	font-size: 12px;
	letter-spacing: 1.5px;
	margin-bottom: 10px;
}
.testi-q {
	font-size: 13px;
	line-height: 1.68;
	color: var(--ink2);
	margin-bottom: 16px;
	font-style: italic;
	flex: 1;
}
.testi-au {
	display: flex;
	align-items: center;
	gap: 9px;
}
.testi-face {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	flex-shrink: 0;
	overflow: hidden;
	position: relative;
}
.testi-face svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.au-name {
	font-size: 12.5px;
	font-weight: 600;
}
.au-role {
	font-size: 11px;
	color: var(--faint);
}

/* ── STEPS (jak działa) ── */
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 44px;
	margin-top: 48px;
	position: relative;
}
.steps::before {
	content: '';
	position: absolute;
	top: 25px;
	left: 17%;
	right: 17%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.step {
	text-align: center;
}
.step-n {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--blue);
	margin: 0 auto 18px;
	position: relative;
	z-index: 1;
	box-shadow: var(--sh);
}
.step h3 {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.2px;
	margin-bottom: 8px;
}
.step p {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.6;
	margin-bottom: 12px;
}
.step-pills {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin: 7px 0 10px;
	flex-wrap: wrap;
}
.step-pill {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	background: var(--light);
	border: 1px solid var(--border);
	font-size: 10px;
	font-weight: 500;
	padding: 3px 9px;
	border-radius: 20px;
}
.step-time {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	color: var(--blue);
	background: var(--blue-l);
	padding: 3px 10px;
	border-radius: 20px;
}

/* ── PRICING ── */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 40px;
	align-items: stretch;
}
.plan {
	background: #fff;
	border-radius: var(--r-l);
	padding: 24px;
	border: 1.5px solid var(--border);
	box-shadow: var(--sh);
	transition: all var(--t);
	position: relative;
	display: flex;
	flex-direction: column;
}
.plan .pb {
	margin-top: auto;
}
.plan .plan-micro {
	margin-top: 8px;
}
.plan:hover {
	transform: translateY(-3px);
	box-shadow: var(--sh-l);
}
.plan.ent {
	border-color: var(--green);
	box-shadow:
		0 0 10px transparent,
		0 0 0 1px var(--green);
}
.plan.ent:hover {
	transform: translateY(-3px);
	box-shadow:
		var(--sh-l), 0 0 0 1px var(--green)
}
.plan.free-p {
	padding-top: 24px;
}
.plan-tag {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 20px;
	white-space: nowrap;
}
.pt-green {
	background: var(--green);
	color: #fff;
	box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}
.pt-gray {
	background: var(--gray);
	color: #fff;
}
.plan-tier {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--faint);
	margin-bottom: 8px;
}
.plan-price {
	font-size: 34px;
	font-weight: 700;
	letter-spacing: -1.2px;
	color: var(--ink);
	line-height: 1;
	margin-bottom: 2px;
}
.plan-per {
	font-size: 12px;
	color: var(--faint);
	font-weight: 500;
	letter-spacing: 0;
}
.plan-desc {
	font-size: 12px;
	color: var(--faint);
	margin: 10px 0 16px;
	line-height: 1.5;
	min-height: 38px;
}
.plan-feats {
	list-style: none;
	border-top: 1px solid var(--border);
	padding-top: 12px;
	margin-bottom: 20px;
}
.plan .pb {
	margin-top: auto;
}
.plan-feats li {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	font-size: 12px;
	color: var(--ink2);
	padding: 5px 0;
	border-bottom: 1px solid var(--border);
}
.plan-feats li:last-child {
	border-bottom: none;
}
.plan-feats li::before {
	content: '✓';
	color: var(--green);
	font-weight: 700;
	flex-shrink: 0;
	font-size: 11px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.pb {
	display: block;
	text-align: center;
	height: 44px;
	line-height: 44px;
	border-radius: var(--r);
	font-size: 13px;
	font-weight: 600;
	transition: all var(--t);
}
.pb-outline {
	border: 1.5px solid var(--border);
	color: var(--ink2);
}
.pb-outline:hover {
	border-color: var(--ink);
	color: var(--ink);
}
.pb-blk {
	background: var(--ink);
	color: #fff;
}
.pb-blk:hover {
	opacity: 0.85;
}
.pb-grn {
	background: var(--green);
	color: #fff;
	box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}
.pb-grn:hover {
	background: var(--green-h);
}
.pb-ent {
	background: var(--green);
	color: #fff;
}
.pb-ent:hover {
	background: var(--green-h);
	transform: translateY(-1px);
}

/* ── FAQ ── */
.faq-list {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
}
.faq-item {
	border-bottom: 1px solid var(--border);
	background: #fff;
	transition: background var(--t);
}
.faq-item:last-child {
	border-bottom: none;
}
.faq-item:hover {
	background: var(--light);
}
.faq-item.open {
	background: #fff;
}
.faq-item.open:hover {
	background: #fff;
}
.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 28px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.2px;
	color: var(--ink);
	gap: 16px;
	user-select: none;
	background: transparent;
}
.faq-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1.5px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--gray);
	font-size: 16px;
	transition:
		transform var(--t),
		background var(--t),
		border-color var(--t),
		color var(--t);
}
.faq-item.open .faq-icon {
	transform: rotate(45deg);
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
}
.faq-a {
	display: none;
	padding: 0 28px 22px;
	font-size: 14px;
	color: var(--gray);
	line-height: 1.75;
	max-width: 720px;
}
.faq-item.open .faq-a {
	display: block;
}

/* ── FINAL CTA ── */
.cta-final-sec {
	background: var(--light);
	border-radius: 24px;
	padding: 48px 48px;
	text-align: center;
	margin: 56px 0;
}
.cta-final-sec h2 {
	font-size: clamp(26px, 3.8vw, 46px);
	font-weight: 700;
	letter-spacing: -1.5px;
	line-height: 1.1;
	max-width: 520px;
	margin: 0 auto 12px;
	color: var(--ink);
}
.cta-final-sec p {
	color: var(--gray);
	margin-bottom: 28px;
	font-size: 15px;
}
.cta-form {
	display: flex;
	gap: 8px;
	max-width: 420px;
	margin: 0 auto 12px;
	background: #fff;
	border-radius: 12px;
	border: 1.5px solid var(--border);
	padding: 5px 5px 5px 20px;
	box-shadow: var(--sh);
	transition: border-color var(--t);
}
.cta-form:focus-within {
	border-color: var(--blue);
}
.cta-form input {
	flex: 1;
	border: none;
	outline: none;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	background: transparent;
	min-width: 0;
}
.cta-form input::placeholder {
	color: var(--faint);
}
.cta-micro {
	font-size: 11.5px;
	color: var(--faint);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
	.nav-center {
		display: none;
	}
	.nav-burger {
		display: flex;
	}
	.nav-login {
		display: none;
	}
	.wrap {
		padding: 0 24px;
	}
	.sec {
		padding: 40px 0;
	}
	.mockup-wrap {
		padding: 0 16px;
	}
	.float-badge {
		display: none;
	}
	.prob-grid {
		grid-template-columns: 1fr;
	}
	.cc-header {
		display: none;
	}
	.cc-row {
		grid-template-columns: 1fr;
	}
	.cc-topic {
		border-right: none;
		background: #f3f4f6;
	}
	.cc-row:nth-child(even) .cc-topic {
		background: #efefef;
	}
	.cc-bad-cell {
		border-right: none;
		border-top: 1px solid var(--border);
		background: #fff;
	}
	.cc-good-cell {
		border-top: 1px solid var(--border);
		background: #f0fdf4;
	}
	.bento {
		grid-template-columns: 1fr;
	}
	.bcard.c2 {
		grid-column: span 1;
	}
	.steps {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.steps::before {
		display: none;
	}
	.pricing-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.testi-grid {
		grid-template-columns: 1fr;
	}
	.ft {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
	}
	.stats-bar {
		flex-wrap: wrap;
	}
	.stat {
		flex: 1 1 45%;
		padding: 16px 20px;
	}
	.stat:nth-child(2n) {
		border-right: none;
	}
	.stat:nth-child(n + 3) {
		border-top: 1px solid var(--border);
	}
	.cta-final-sec {
		padding: 32px 24px;
		margin: 40px 0;
	}
	.process {
		gap: 0;
	}
}
@media (max-width: 600px) {
	h1 {
		font-size: clamp(28px, 7.5vw, 38px);
		letter-spacing: -1.2px;
	}
	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.hero-actions .btn:not(.btn-mid) {
		justify-content: center;
	}
	.pricing-grid {
		grid-template-columns: 1fr;
	}
	.ft {
		grid-template-columns: 1fr;
	}
	.ft-bottom {
		flex-direction: column;
		text-align: center;
	}
	.legal {
		flex-wrap: wrap;
		justify-content: center;
	}
	.cta-form {
		flex-direction: column;
		border-radius: var(--r);
		padding: 12px;
		gap: 8px;
	}
	.cta-form input {
		font-size: 16px;
	}
	.cta-form .btn-sm:not(.btn-mid) {
		border-radius: var(--r);
		padding: 12px;
		justify-content: center;
	}
	.bank-logos {
		padding: 18px 20px;
	}
	.bank-logos-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.bank-logos-grid {
		grid-template-columns: repeat(3, 1fr);
		width: 100%;
		gap: 8px;
	}
	.bank-logo-item {
		height: 36px;
	}
	.slider-box {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 24px;
	}
	.slider-right {
		border-top: 1px solid var(--border);
		padding-top: 24px;
	}
	.legal-hero {
		grid-template-columns: 1fr;
		padding: 28px 24px;
	}
	.legal-val-box {
		text-align: left;
	}
	.legal-cards {
		grid-template-columns: 1fr;
	}
	.legal-card {
		border-right: none;
		border-bottom: 1px solid var(--border);
	}
	.legal-card:last-child {
		border-bottom: none;
	}
	.legal-plan-note {
		padding: 14px 24px;
	}
}
/* ── TIME SLIDER ── */
.slider-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 20px;
	margin-top: 36px;
	align-items: start;
}
.slider-box {
	background: #fff;
	border-radius: var(--r-l);
	padding: 28px 32px;
	border: 1px solid var(--border);
	box-shadow: var(--sh);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: center;
}
.slider-left {
	min-width: 0;
}
.slider-right {
	text-align: center;
	padding-left: 24px;
	border-left: 1px solid var(--border);
}
.slider-label-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 12px;
	gap: 12px;
}
.slider-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--ink2);
}
.slider-current {
	font-size: 22px;
	font-weight: 700;
	color: var(--blue);
	white-space: nowrap;
	flex-shrink: 0;
}
.time-slider {
	-webkit-appearance: none;
	width: 100%;
	height: 4px;
	background: #e5e5e7;
	border-radius: 4px;
	outline: none;
	cursor: pointer;
}
.time-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	background: #fff;
	border: 2px solid var(--blue);
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.time-slider::-moz-range-thumb {
	width: 20px;
	height: 20px;
	background: #fff;
	border: 2px solid var(--blue);
	border-radius: 50%;
	cursor: pointer;
}
.slider-result-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--faint);
	margin-bottom: 8px;
}
.slider-result-val {
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 700;
	letter-spacing: -2px;
	color: var(--ink);
	line-height: 1;
	white-space: nowrap;
}
.slider-result-unit {
	font-size: 12px;
	font-weight: 500;
	color: var(--gray);
	margin-top: 4px;
	white-space: nowrap;
}
.slider-result-sub {
	font-size: 13px;
	color: var(--ink2);
	margin-top: 10px;
	line-height: 1.55;
	font-weight: 500;
}
.slider-source {
	font-size: 11px;
	color: var(--faint);
	margin-top: 10px;
	line-height: 1.55;
	display: flex;
	align-items: flex-start;
	gap: 5px;
	padding-left: 0;
}
.slider-cta-box {
	background: transparent;
	border: none;
	border-radius: var(--r-l);
	padding: 4px 0 0 0;
	position: sticky;
	top: 72px;
}

/* ── MIZZOX LEGAL v2 ── */
.legal-v2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
	margin-top: 48px;
}
.legal-v2-left {
	background: linear-gradient(160deg, #0d1117 0%, #161b27 50%, #0d1a2e 100%);
	padding: 48px 44px;
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
	overflow: hidden;
}
/* subtle grid pattern */
.legal-v2-left::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(52, 118, 233, 0.07) 1px, transparent 1px);
	background-size: 28px 28px;
	pointer-events: none;
}
/* blue glow top-right */
.legal-v2-left::after {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(52, 118, 233, 0.18) 0%, transparent 70%);
	pointer-events: none;
}
.legal-v2-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 28px;
	position: relative;
}
.legal-v2-title {
	font-size: clamp(24px, 2.8vw, 36px);
	font-weight: 700;
	letter-spacing: -0.6px;
	line-height: 1.15;
	color: #fff;
	margin-bottom: 20px;
	position: relative;
}
.legal-v2-title span {
	color: rgba(255, 255, 255, 0.4);
}
.legal-v2-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.7;
	max-width: 340px;
	margin-bottom: 40px;
	position: relative;
}
.legal-v2-value {
	margin-top: auto;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
}
.legal-v2-value-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.25);
	margin-bottom: 8px;
}
.legal-v2-value-num {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: -2px;
	color: #fff;
	line-height: 1;
}
.legal-v2-value-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);
	margin-top: 6px;
}
.legal-v2-right {
	background: #fff;
	display: flex;
	flex-direction: column;
}
.legal-v2-card {
	padding: 36px 40px;
	display: flex;
	gap: 18px;
	align-items: flex-start;
	flex: 1;
	transition: background var(--t);
}
.legal-v2-card:hover {
	background: var(--light);
}
.legal-v2-card-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--blue-l);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}
.legal-v2-card-body {
	flex: 1;
}
.legal-v2-card-title {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.2px;
	color: var(--ink);
	margin-bottom: 8px;
}
.legal-v2-card-desc {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.65;
	margin-bottom: 12px;
}
.legal-v2-pill {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 600;
	color: var(--green);
	background: var(--green-l);
	padding: 3px 10px;
	border-radius: 20px;
}
.legal-v2-note {
	border-top: 1px solid var(--border);
	padding: 14px 40px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	color: var(--faint);
}
.legal-v2-note strong {
	color: var(--ink);
}
@media (max-width: 768px) {
	.legal-v2 {
		grid-template-columns: 1fr;
	}
	.legal-v2-left {
		padding: 36px 28px;
	}
	.legal-v2-card {
		padding: 28px;
	}
	.legal-v2-note {
		padding: 14px 28px;
	}
}

/* ── PRODUCT SCREENSHOT ── */
.screen-wrap {
	max-width: 960px;
	margin: 28px auto 20px;
	padding: 0;
	text-align: center;
}
.product-screen {
	width: 100%;
	height: auto;
	border-radius: 16px;
	display: block;
}
.product-video-wrap {
	position: relative;
	display: inline-block;
	cursor: pointer;
	width: 100%;
	max-width: 960px;
}
.product-play-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	pointer-events: none;
}
.product-play-btn:not(.btn-mid) {
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
	transform: scale(1);
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease;
	pointer-events: none;
}
.product-play-btn:not(.btn-mid) svg {
	display: block;
}
.product-video-wrap:hover .product-play-btn:not(.btn-mid) {
	transform: scale(1.12);
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}
.product-play-ripple {
	position: absolute;
	inset: -12px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.35);
	animation: ripple 2.2s ease-out infinite;
}
@keyframes ripple {
	0% {
		transform: scale(1);
		opacity: 0.5;
	}
	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

/* ── BANK LOGOS (B&W, wyszarzone) ── */
.bank-logos {
	border-bottom: 1px solid var(--border);
	background: #fff;
	padding: 24px 40px;
}
.bank-logos-inner {
	max-width: 1250px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.bank-logos-label {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--faint);
	white-space: nowrap;
	flex-shrink: 0;
}
.bank-logos-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	flex: 1;
	min-width: 0;
	align-items: center;
}
.bank-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 8px;
	filter: grayscale(1) contrast(0.65) brightness(1.05);
	opacity: 0.45;
	transition:
		opacity var(--t),
		filter var(--t);
}
.bank-logo-item:hover {
	filter: grayscale(1) contrast(0.8);
	opacity: 0.75;
}
.bank-logo-item img {
	max-width: 100%;
	max-height: 22px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}
.bank-logo-item.bank-more {
	opacity: 1;
	filter: none;
}
.bank-logo-item.bank-more span {
	font-size: 11px;
	font-weight: 600;
	color: var(--faint);
	white-space: nowrap;
}

/* ── MEDIA STRIP ── */
.media-strip {
	background: var(--light);
	border-top: 1px solid var(--border);
	padding: 20px 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
}

/* Dots indicator */
.bento-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 20px;
}
.bento-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--border);
	transition: all 0.2s ease;
	cursor: pointer;
}
.bento-dot.active {
	width: 20px;
	border-radius: 4px;
	background: var(--blue);
}

/* ── TESTI FACE WITH IMG ── */
.testi-face img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.testi-company {
	font-size: 10px;
	color: var(--faint);
	margin-top: 1px;
}

@media (max-width: 960px) {
	.screen-wrap {
		padding: 0 16px 0;
	}
	.bank-logos {
		padding: 20px 24px;
	}
	.bank-logos-inner {
		gap: 16px;
	}
	.bank-logos-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 6px;
	}
	.media-strip {
		padding: 16px 24px;
	}
}
/* ── BENTO FLOW (JAK DZIAŁA) — Apple style ── */
.bento-scroll-wrap {
	position: relative;
	margin-top: 48px;
}
.bento-flow {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
	cursor: grab;
}
.bento-flow:active {
	cursor: grabbing;
}
.bento-flow::-webkit-scrollbar {
	display: none;
}

.bf-card {
	border-radius: 22px;
	padding: 32px 28px 28px;
	position: relative;
	overflow: hidden;
	scroll-snap-align: start;
	flex-shrink: 0;
	width: 320px;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	gap: 0;
	transition:
		background 0.28s ease,
		box-shadow 0.28s ease;
}
.bf-card:hover {
	transform: none;
}

.bf-dark {
	background: var(--ink);
	box-shadow: none;
}
.bf-blue {
	background: var(--blue);
	box-shadow: none;
}
.bf-light {
	background: var(--light);
	border: 1px solid var(--border);
	box-shadow: none;
}
.bf-green {
	background: #0a4a25;
	box-shadow: none;
}
.bf-white {
	background: #fff;
	border: 1px solid var(--border);
	box-shadow: none;
}

/* Simple darken on hover — no border, no shadow, no movement */
.bf-card {
	transition: filter 0.2s ease;
}
.bf-dark:hover {
	background: var(--ink);
	filter: brightness(1.15);
	outline: none;
}
.bf-blue:hover {
	background: var(--blue);
	filter: brightness(1.12);
	outline: none;
}
.bf-light:hover {
	background: var(--light);
	filter: brightness(0.96);
	outline: none;
}
.bf-green:hover {
	background: #0a4a25;
	filter: brightness(1.18);
	outline: none;
}
.bf-white:hover {
	background: #fff;
	filter: brightness(0.97);
	outline: none;
}

.bf-num {
	font-size: 88px;
	font-weight: 800;
	letter-spacing: -5px;
	line-height: 0.85;
	color: rgba(255, 255, 255, 0.08);
	pointer-events: none;
	user-select: none;
	display: block;
	margin-bottom: -8px;
	flex-shrink: 0;
}
.bf-light .bf-num,
.bf-white .bf-num {
	color: rgba(0, 0, 0, 0.05);
}

/* Fixed-height top: num+badge row, then title always top-aligned */
.bf-top {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-height: 130px;
	margin-bottom: 0;
}
.bf-top-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 16px;
}
.bf-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 20px;
	background: #fff;
	color: var(--ink);
	flex-shrink: 0;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.bf-dark .bf-badge,
.bf-blue .bf-badge,
.bf-green .bf-badge,
.bf-light .bf-badge,
.bf-white .bf-badge {
	background: #fff;
	color: var(--ink);
}

.bf-title {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.4px;
	line-height: 1.2;
	color: var(--ink);
	margin-top: 0;
	flex: 1;
	display: flex;
	align-items: flex-start;
}
.bf-dark .bf-title,
.bf-blue .bf-title,
.bf-green .bf-title {
	color: #fff;
}

.bf-list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.09);
	padding-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin-top: 20px;
}
.bf-dark .bf-list,
.bf-blue .bf-list,
.bf-green .bf-list {
	border-top-color: rgba(255, 255, 255, 0.12);
}
.bf-list li {
	font-size: 13px;
	line-height: 1.5;
	color: var(--gray);
	padding-left: 20px;
	position: relative;
}
.bf-dark .bf-list li,
.bf-blue .bf-list li,
.bf-green .bf-list li {
	color: rgba(255, 255, 255, 0.65);
}
/* Checkmark zamiast kropki */
.bf-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	font-size: 12px;
	line-height: 1.5;
	color: var(--green);
	font-weight: 700;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.bf-dark .bf-list li::before {
	color: #4ade80;
}
.bf-blue .bf-list li::before {
	color: #bfdbfe;
}
.bf-green .bf-list li::before {
	color: #86efac;
}

@media (max-width: 640px) {
	.bf-card {
		width: calc(100vw - 56px);
		min-height: 260px;
		padding: 24px 20px;
	}
	.bf-title {
		font-size: 16px;
	}
	.bf-top {
		min-height: 80px;
	}
}
.flow {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 48px;
}
.flow-step {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 24px 28px;
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 20px;
	align-items: flex-start;
	box-shadow: var(--sh);
	transition:
		transform var(--t),
		box-shadow var(--t),
		border-color var(--t);
}
.flow-step:hover {
	transform: translateY(-2px);
	box-shadow: var(--sh-l);
	border-color: #d5d5d5;
}
.flow-num-col {
	display: flex;
	align-items: center;
	justify-content: center;
}
.flow-num {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--ink);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	flex-shrink: 0;
}
.flow-body {
}
.flow-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}
.flow-icon {
	font-size: 20px;
}
.flow-icon-svg {
	flex-shrink: 0;
}
.flow-title {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.2px;
	color: var(--ink);
	line-height: 1.3;
}
.flow-desc {
	font-size: 13.5px;
	color: var(--gray);
	line-height: 1.6;
	margin: 0;
	max-width: 620px;
}
.flow-list {
	list-style: none;
	margin: 4px 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 0;
}
.flow-list li {
	font-size: 13.5px;
	color: var(--gray);
	line-height: 1.6;
	padding-left: 16px;
	position: relative;
}
.flow-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--blue);
	font-weight: 700;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@media (max-width: 960px) {
	.flow-step {
		grid-template-columns: 44px 1fr;
		padding: 20px 22px;
		gap: 14px;
	}
	.flow-num {
		width: 38px;
		height: 38px;
		font-size: 14px;
	}
}
@media (max-width: 600px) {
	.flow-step {
		grid-template-columns: 38px 1fr;
		padding: 18px 18px;
		gap: 12px;
	}
	.flow-title {
		font-size: 15px;
	}
	.flow-desc {
		font-size: 13px;
	}
	.flow-num {
		width: 34px;
		height: 34px;
		font-size: 13px;
	}
	.flow-icon {
		font-size: 17px;
	}
}

/* ═══════════════════════════════
   MOBILE — kompleksowe poprawki
   ═══════════════════════════════ */
@media (max-width: 768px) {
	/* WRAP */
	.wrap {
		padding: 0 16px;
	}

	/* HERO */
	.hero-wrap {
		padding: 28px 16px 0;
	}
	h1 {
		font-size: clamp(28px, 8vw, 38px);
		letter-spacing: 0.5px;
	}
	.hero-sub {
		font-size: 15px;
		margin-bottom: 20px;
	}
	.hero-actions {
		flex-direction: column;
		align-items: center !important;
		gap: 10px;
	}
	.hero-actions > div {
		width: 100%;
	}
	.hero-actions > div button,
	.hero-actions > button {
		width: 100%;
		justify-content: center;
	}

	/* SCREEN WRAP */
	.screen-wrap {
		margin-top: 16px;
	}

	/* STATS BAR */
	.stats-bar {
		flex-wrap: wrap;
	}
	.stat {
		flex: 1 1 50%;
		padding: 18px 8px;
	}
	.stat:nth-child(2n) {
		border-right: none;
	}
	.stat:nth-child(n + 3) {
		border-top: 1px solid var(--border);
	}
	.stat-n {
		font-size: 22px;
	}
	.stat-l {
		font-size: 11px;
	}

	/* BANK LOGOS */
	.bank-logos {
		padding: 14px 16px;
	}
	.bank-logos-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.bank-logos-grid {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 6px;
		width: 100%;
	}

	/* BENTO */
	.bento-scroll-wrap {
		margin-top: 24px;
	}

	/* SECTIONS */
	.sec {
		padding-top: 36px;
		padding-bottom: 36px;
	}
	.sec-h {
		font-size: clamp(20px, 5.5vw, 30px);
	}
	.sec-sub {
		font-size: 14px;
	}

	/* TESTIMONIALS */
	.testi-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	/* PRICING */
	.pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        padding-bottom: 4px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
	}

	.pricing-grid::-webkit-scrollbar {
	display: none;
	}
	.pricing-grid {
		padding-top: 20px;
		margin-left: 0 !important;
		padding-left: 16px !important;
		padding-bottom: 30px;
		margin-bottom: -50px;
	}

	.plan {
	flex-shrink: 0;
	width: calc(100vw - 64px);
	scroll-snap-align: start;
	}

	.plan.ent {
	transform: none;
	}

	.plan.ent:hover {
		transform: none;
	}
	.plan:not(.ent):hover{
		box-shadow: var(--sh);
	}

	.plan-tag {
	font-size: 9px;
	}
	.plan-tag {
		position: relative !important;
		top: auto !important;
		margin-bottom: 8px;
		display: inline-flex;
		transform: none;
		width: max-content;
		left: 0;
	}

	/* SLIDER */
	.slider-layout {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.slider-box {
		display: flex;
		flex-direction: column;
		gap: 20px;
		padding: 20px 18px;
	}
	.slider-left{
		width: 100%;
		min-width: 0;
	}
	.slider-right {
		border-left: none;
		padding-left: 0;
		border-top: 1px solid var(--border);
		padding-top: 16px;
		width: 100%;
		text-align: left;
	}
	.slider-result-val {
		font-size: 34px;
		letter-spacing: -1.5px;
	}
	.slider-cta-col {
		padding-left: 0 !important;
		border-left: none !important;
	}
	.slider-cta-box {
		position: static;
	}
	.slider-source {
		padding-left: 0 !important;
	}

	/* LEGAL v2 */
	.legal-v2 {
		grid-template-columns: 1fr;
		margin-top: 0;
	}
	.legal-v2-left {
		padding: 28px 20px;
	}
	.legal-v2-title {
		font-size: 22px;
	}
	.legal-v2-card {
		padding: 20px;
		flex-direction: column;
		gap: 10px;
	}
	.legal-v2-note {
		padding: 12px 20px;
	}

	/* FAQ */
	.faq-q {
		padding: 16px 18px;
		font-size: 14px;
	}
	.faq-a {
		padding: 0 18px 16px;
		font-size: 13px;
	}

	/* CTA FINAL */
	.cta-final-sec {
		padding: 36px 16px;
		margin: 20px 0;
	}
	.cta-final-sec h2 {
		font-size: clamp(22px, 6vw, 32px);
	}

	/* FOOTER */
	.ft {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
	.ft > div:first-child {
		grid-column: 1/-1;
	}
	.ft-bottom {
		flex-direction: column;
		gap: 6px;
		text-align: center;
	}

	/* FINAL CTA dark */
	.final-cta-grid {
		grid-template-columns: 1fr !important;
		padding: 48px 20px !important;
		gap: 24px !important;
	}
}

@media (max-width: 480px) {
	/* .stat {
		flex: 1 1 100%;
		border: none !important;
		border-bottom: 1px solid var(--border) !important;
	}
	.stat:last-child{
		border-bottom: none !important;
	} */
	.ft {
		grid-template-columns: 1fr;
	}
}

/* Fixy Albert */
main{
	padding-top: 52px;
}
@media(max-width: 576px){
	main{
		padding-top: 7rem;
	}
}
p{
	font-weight: 400;
	letter-spacing: unset;
}
body{
	line-height: unset;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.btn svg{
	transform: none !important;
	fill: none;
}
.faq-item{
	width: 100%;
	padding: 0 !important;
	border-radius: 0px;
	border: none;
	border-bottom: 1px solid var(--border);
}
svg{
	fill: none;
}
@media (max-width: 768px) {
    [style*="align-items:flex-start"][style*="gap:20px"] .btn, [style*="align-items:flex-start"][style*="gap:20px"] a.btn, [style*="align-items:flex-start"][style*="gap:20px"] > div
 	{
        width: 100% !important;
    }
	.testi-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        padding-bottom: 4px;
        padding-left: 16px;
        padding-right: 16px;
		padding-bottom: 30px;
		padding-top: 30px;
		margin-top: -30px;
		margin-bottom: -30px;
      }

      .testi-grid::-webkit-scrollbar {
        display: none;
      }

      .testi {
        flex-shrink: 0;
        width: calc(100vw - 64px);
        scroll-snap-align: start;
      }
}
@media(max-width:600px){
	 .bank-logos-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        gap: 15px;
        padding-bottom: 4px;
      }

      .bank-logos-grid::-webkit-scrollbar {
        display: none;
      }

      .bank-logo-item {
        flex-shrink: 0;
      }

      .bank-logos-inner>div[style*="display:flex"] {
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        gap: 32px !important;
        width: 100%;
        padding-bottom: 4px;
        padding-left: 4px !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }

      .bank-logos-inner>div[style*="display:flex"]::-webkit-scrollbar {
        display: none;
      }
}