
: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,.04), 0 8px 32px rgba(0,0,0,.06);
  --sh-l: 0 16px 56px rgba(0,0,0,.10);
  --r: 12px;
  --r-l: 20px;
  --t: 0.18s ease;
}

@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;
}

.btn:not(.btn-mid, .btn--new) {
	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, .btn--new) {
	height: 40px;
	padding: 0 18px;
	border-radius: 10px;
	font-size: 14px;
}
.btn-md:not(.btn-mid, .btn--new) {
	padding: 0 28px;
}
.btn-lg:not(.btn-mid, .btn--new) {
	padding: 0 36px;
	font-size: 17px;
}
.btn-blk:not(.btn-mid, .btn--new) {
	background: var(--ink);
	color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.btn-blk:not(.btn-mid, .btn--new):hover {
	opacity: 0.88;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.btn-grn:not(.btn-mid, .btn--new) {
	background: var(--green);
	color: #fff;
	box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}
.btn-grn:not(.btn-mid, .btn--new):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--new, .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, .btn--new) {
	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, .btn--new):hover {
	border-color: #999;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-1px);
}

.hero-micro span {
	display: flex;
	align-items: center;
	gap: 3px;
}

.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.01rem;
}
.as-l {
	font-size: 8.5px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 2px;
	line-height: 1.3;
}

.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 {
	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;
}

.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 {
	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;
}

.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 {
	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.01rem;
	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: -0.01rem;
	line-height: 1;
	margin-bottom: 6px;
}
.blue .big-n {
	color: #fff;
}
.big-h {
	font-size: clamp(22px, 2.4vw, 32px) !important;
	letter-spacing: -0.01rem !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;
}

.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;
	line-height: 1;
}

.feat-page .text-left > .stars { margin-bottom: 4px; }
.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 {
	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.01rem;
	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-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: -0.01rem;
	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-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.01rem;
	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;
}

.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: -0.01rem;
	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);
}

@media (max-width: 960px) {
	.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) {
	.hero-actions .btn:not(.btn-mid, .btn--new) {
		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, .btn--new) {
		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;
	}
}

.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: -0.01rem;
	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;
}

.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;
}

.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;
}

.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.01rem;
	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: -0.01rem;
	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.01rem;
	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;
	}
}

.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,
.product-play-btn:not(.btn-mid) svg path,
.rounded-full.bg-white:not(.inline-flex) > svg,
.rounded-full.bg-white:not(.inline-flex) > svg path {
	display: block;
	fill: #0a0a0a;
}
.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 {
	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 {
	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;
}

.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 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-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;
}

.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: -0.01rem;
	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);
}

.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.01rem;
	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);
}

.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.01rem;
	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;
	}
}

@media (max-width: 768px) {
	
	.wrap {
		padding: 0 16px;
	}

	.hero-actions > div {
		width: 100%;
	}
	.hero-actions > div button,
	.hero-actions > button {
		width: 100%;
		justify-content: center;
	}

	.screen-wrap {
		margin-top: 16px;
	}

	.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 {
		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-scroll-wrap {
		margin-top: 24px;
	}

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

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

	.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-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: -0.01rem;
	}
	.slider-cta-col {
		padding-left: 0 !important;
		border-left: none !important;
	}
	.slider-cta-box {
		position: static;
	}
	.slider-source {
		padding-left: 0 !important;
	}

	.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-q {
		padding: 16px 18px;
		font-size: 14px;
	}
	.faq-a {
		padding: 0 18px 16px;
		font-size: 13px;
	}

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

	.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-grid {
		grid-template-columns: 1fr !important;
		padding: 48px 20px !important;
		gap: 24px !important;
	}
}

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

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;
      }
}

  .emp { font-style: normal; font-weight: 700; color: #3476e9; }

  .display {
    font-weight: 700;
    letter-spacing: -0.01rem;
    line-height: .98;
  }
  
  .display-md {
    font-weight: 700;
    letter-spacing: -0.01rem;
    line-height: 1.15;
  }

  .sec-label-light {
    font-size: 11px; font-weight: 700;
    letter-spacing: .09em; text-transform: uppercase;
    color: #7ca6f2; margin-bottom: 8px;
    display: block;
  }

  .btn-grn, .btn-out {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    border-radius: 12px; font-weight: 500; font-size: 1rem;
    position: relative; overflow: hidden;   
    padding: 1rem 1.6rem; border: none; cursor: pointer;
    text-decoration: none;
    transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  }

  .btn-dark {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    padding: 1rem 1.6rem; border-radius: 12px;
    background: #0a0a0a; color: #fff; font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    transition: all .2s var(--ease);
  }
  .btn-dark:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.25); }

  .btn-ghost-dark {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    padding: .95rem 1.5rem; border-radius: 12px; cursor: pointer;
    background: rgba(255,255,255,.06); color: #fff;
    border: 1px solid rgba(255,255,255,.15); font-weight: 500;
    transition: all .25s var(--ease);
  }
  .btn-ghost-dark:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.3);
    transform: translateY(-1px);
  }

  .mesh-dark {
    background:
      radial-gradient(60% 60% at 12% 10%, rgba(52,118,233,.22) 0%, transparent 60%),
      radial-gradient(45% 55% at 95% 20%, rgba(96,144,238,.18) 0%, transparent 60%),
      radial-gradient(60% 60% at 80% 100%, rgba(52,118,233,.14) 0%, transparent 60%),
      linear-gradient(180deg, #07091A 0%, #0A0D24 55%, #0B1030 100%);
  }
  .grid-lines {
    background-image:
      linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 64px 64px;
  }

  .view-tab {
    padding: .6rem 1.1rem; border-radius: 10px;
    font-weight: 500; font-size: .9rem; color: #6b7280;
    transition: all .2s var(--ease); white-space: nowrap;
    border: 1px solid transparent; background: transparent;
    cursor: pointer; font-family: 'Poppins', sans-serif;
  }
  .view-tab:hover { color: #0a0a0a; background: rgba(0,0,0,.03); }
  .view-tab.active {
    background: #fff; color: #0a0a0a;
    border-color: rgba(0,0,0,.08);
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
  }
  .view-panel { display: none; animation: fadeIn .35s var(--ease); }
  .view-panel.active { display: block; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .device-frame {
    border-radius: 18px; background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 40px 80px -20px rgba(10,13,36,.25), 0 20px 40px -10px rgba(10,13,36,.15);
    overflow: hidden;
  }
  .window-bar {
    display: flex; align-items: center; gap: .4rem;
    padding: .75rem 1rem; background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .dot { width: 10px; height: 10px; border-radius: 999px; display: inline-block; }

  .avi {
    width: 28px; height: 28px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; color: #fff;
    border: 2px solid #fff;
  }

  details[open] summary .plus { transform: rotate(45deg); }
  summary::-webkit-details-marker { display: none; }
  .faq-wrap {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 20px; overflow: hidden; background: #fff;
  }
  .faq-wrap details { border-bottom: 1px solid rgba(0,0,0,.08); transition: background .2s var(--ease); }
  .faq-wrap details:last-child { border-bottom: none; }
  .faq-wrap details:hover { background: #f7f7f8; }
  .faq-wrap details[open] { background: #fff; }
  .faq-wrap details summary {
    cursor: pointer; padding: 1.4rem 1.75rem;
    display: flex; justify-content: space-between; align-items: center; gap: 2rem;
    font-weight: 500; font-size: 1rem; color: #0a0a0a;
  }
  .faq-wrap details summary:hover { color: #3476e9; }
  .plus { transition: transform .3s var(--ease); flex: 0 0 auto; }
  .faq-wrap details .answer { padding: 0 1.75rem 1.4rem; color: #374151; line-height: 1.75; font-size: .92rem; max-width: 75ch; }

  .before-bar, .after-bar {
    display: flex; align-items: center; gap: .8rem;
    padding: .9rem 1.1rem; border-radius: 12px;
    font-size: .95rem; font-weight: 500;
  }
  .before-bar { background: #FEF2F2; color: #7F1D1D; border: 1px solid rgba(239,68,68,.2); }
  .after-bar  { background: #dcfce7; color: #14532D; border: 1px solid rgba(22,163,74,.2); }

  .pulse-dot { position: relative; }
  .pulse-dot::before {
    content: ''; position: absolute; inset: -6px; border-radius: 999px;
    border: 2px solid rgba(52,118,233,.35);
    animation: pulse 2.4s var(--ease) infinite;
  }
  @keyframes pulse {
    0% { transform: scale(.8); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
  }

  input[type=range].slider {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 6px; border-radius: 999px;
    background: linear-gradient(to right, #3476e9 0%, #3476e9 var(--p,50%), #e7e7e7 var(--p,50%), #e7e7e7 100%);
    outline: none; cursor: pointer;
  }
  input[type=range].slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 26px; height: 26px; border-radius: 999px;
    background: #fff; border: 3px solid #3476e9; cursor: pointer;
    box-shadow: 0 4px 12px rgba(52,118,233,.3);
    transition: transform .2s var(--ease);
  }
  input[type=range].slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
  input[type=range].slider::-moz-range-thumb {
    width: 26px; height: 26px; border-radius: 999px;
    background: #fff; border: 3px solid #3476e9; cursor: pointer;
    box-shadow: 0 4px 12px rgba(52,118,233,.3);
  }

  .promise-card { transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
  .promise-card:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(0,0,0,.12); }

  .float-badge-anim { animation: floatY 5s ease-in-out infinite; }

  @media (max-width: 768px) {
    .display { letter-spacing: -0.01rem; }
    .display-md { letter-spacing: -0.01rem; }
  }

  .scroll-mobile {
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 1.25rem;
  }
  .scroll-mobile::-webkit-scrollbar { display: none; }
  .scroll-mobile { scrollbar-width: none; -ms-overflow-style: none; }

  .mobile-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding: 0 1.25rem 0.75rem;
    scroll-padding-left: 1.25rem;
  }
  .mobile-carousel::-webkit-scrollbar { display: none; }
  .mobile-carousel { scrollbar-width: none; -ms-overflow-style: none; }
  .mobile-carousel > * {
    flex-shrink: 0;
    width: 85%;
    scroll-snap-align: start;
  }
  @media (min-width: 768px) {
    .mobile-carousel {
      overflow: visible;
      margin: 0;
      padding: 0;
      scroll-snap-type: none;
    }
    .mobile-carousel > * {
      width: auto;
      flex-shrink: 1;
      scroll-snap-align: none;
    }
    .mobile-carousel-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
    }
    .mobile-carousel-4 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }
  }
  @media (min-width: 1024px) {
    .mobile-carousel-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

:root { --ease: cubic-bezier(.22,.61,.36,1); }
html { scroll-behavior: smooth; }

html {
  font-size: 16px;
}

.feat-page section {
  margin: 0;
  
}
.feat-page h1,
.feat-page h2,
.feat-page h3,
.feat-page h4,
.feat-page h5,
.feat-page h6,
.feat-page ul,
.feat-page ol,
.feat-page li {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.feat-page ul,
.feat-page ol {
  list-style: none;
}

.feat-page a {
  color: inherit;
  text-decoration: none;
}

.feat-page *,
.feat-page ::before,
.feat-page ::after {
  border-style: solid;
  border-color: #e7e7e7;
}

.emp { font-style: normal; font-weight: 700; color: #3476e9; }

.display {
  font-weight: 700;
  letter-spacing: -0.01rem;
  line-height: .98;
}

.display-md {
  font-weight: 700;
  letter-spacing: -0.01rem;
  line-height: 1.15;
}

:root .feat-page .display { line-height: .98 !important; letter-spacing: -0.01rem !important; }
.feat-page .display-md    { line-height: 1.15; }

@media (min-width: 768px) {
  :root .feat-page .md\:border-ink-400 { border-color: #e7e7e7 !important; }
}

.sec-label-light {
  font-size: 11px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: #7ca6f2; margin-bottom: 0.5rem;
  display: block;
}

.btn-grn, .btn-out {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  border-radius: 12px; font-weight: 500; font-size: 1rem;
  position: relative; overflow: hidden;
  padding: 1rem 1.6rem; border: 1px solid transparent; cursor: pointer;
  text-decoration: none;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.6rem; border-radius: 12px;
  background: #0a0a0a; color: #fff; font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: all .2s var(--ease);
}
.btn-dark:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.25); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.6rem; border-radius: 12px; font-size: 1rem; font-weight: 500;
  line-height: 1.5; cursor: pointer;
  background: rgba(255,255,255,.06); color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  text-decoration: none; transition: all .25s var(--ease);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }

.feat-page .mesh-dark .flex { align-items: stretch; }

.feat-page .overflow-hidden > div.absolute.rounded-full { display: none !important; }

.mesh-dark,
.feat-page .mesh-dark {
  background:
    radial-gradient(60% 60% at 12% 10%, rgba(52,118,233,.22) 0%, transparent 60%),
    radial-gradient(45% 55% at 95% 20%, rgba(96,144,238,.18) 0%, transparent 60%),
    radial-gradient(60% 60% at 80% 100%, rgba(52,118,233,.14) 0%, transparent 60%),
    linear-gradient(180deg, #07091A 0%, #0A0D24 55%, #0B1030 100%) !important;
  color: #ffffff !important;
}
.grid-lines {
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.view-tab {
  padding: .6rem 1.1rem; border-radius: 10px;
  font-weight: 500; font-size: .9rem; color: #6b7280;
  transition: all .2s var(--ease); white-space: nowrap;
  border: 1px solid transparent; background: transparent;
  cursor: pointer; font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}
.view-tab:hover { color: #0a0a0a; background: rgba(0,0,0,.03); }
.view-tab.active {
  background: #fff; color: #0a0a0a;
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.view-panel { display: none; animation: fadeIn .35s var(--ease); }
.view-panel.active { display: block; }

@media (max-width: 768px) {
  .feat-page div.inline-flex:has(> .view-tab) {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .feat-page div.inline-flex:has(> .view-tab)::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 768px) {
  .feat-page .flex-col > .btn-grn,
  .feat-page .flex-col > .btn-out,
  .feat-page .flex-col > .btn-ghost-dark,
  .feat-page .flex-col > .btn-dark {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.feat-page .stat-pair,
.feat-page .flex.items-baseline:has(> .display),
.feat-page .flex.items-center:has(> .display) {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: .25rem !important;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.device-frame {
  border-radius: 18px; background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 40px 80px -20px rgba(10,13,36,.25), 0 20px 40px -10px rgba(10,13,36,.15);
  overflow: hidden;
}
.window-bar {
  display: flex; align-items: center; gap: .4rem;
  padding: .75rem 1rem; background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.dot { width: 10px; height: 10px; border-radius: 999px; display: inline-block; }

.avi {
  width: 28px; height: 28px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  border: 2px solid #fff;
}

details[open] summary .plus { transform: rotate(45deg); }
summary::-webkit-details-marker { display: none; }
.faq-wrap {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px; overflow: hidden; background: #fff;
}
.faq-wrap details { border-bottom: 1px solid rgba(0,0,0,.08); transition: background .2s var(--ease); }
.faq-wrap details:last-child { border-bottom: none; }
.faq-wrap details:hover { background: #f7f7f8; }
.faq-wrap details[open] { background: #fff; }
.faq-wrap details summary {
  cursor: pointer; padding: 1.4rem 1.75rem;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  font-weight: 500; font-size: 1rem; color: #0a0a0a;
}
.faq-wrap details summary:hover { color: #3476e9; }
.plus { transition: transform .3s var(--ease); flex: 0 0 auto; }
.faq-wrap details .answer { padding: 0 1.75rem 1.4rem; color: #374151; line-height: 1.75; font-size: .92rem; max-width: 75ch; }

.before-bar, .after-bar {
  display: flex; align-items: center; gap: .8rem;
  padding: .9rem 1.1rem; border-radius: 12px;
  font-size: .95rem; font-weight: 500;
}
.before-bar { background: #FEF2F2; color: #7F1D1D; border: 1px solid rgba(239,68,68,.2); }
.after-bar  { background: #dcfce7; color: #14532D; border: 1px solid rgba(22,163,74,.2); }

.pulse-dot { position: relative; }
.pulse-dot::before {
  content: ''; position: absolute; inset: -6px; border-radius: 999px;
  border: 2px solid rgba(52,118,233,.35);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { transform: scale(.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

input[type=range].slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 999px;
  background: linear-gradient(to right, #3476e9 0%, #3476e9 var(--p,50%), #e7e7e7 var(--p,50%), #e7e7e7 100%);
  outline: none; cursor: pointer;
}
input[type=range].slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 999px;
  background: #fff; border: 3px solid #3476e9; cursor: pointer;
  box-shadow: 0 4px 12px rgba(52,118,233,.3);
  transition: transform .2s var(--ease);
}
input[type=range].slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type=range].slider::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 999px;
  background: #fff; border: 3px solid #3476e9; cursor: pointer;
  box-shadow: 0 4px 12px rgba(52,118,233,.3);
}

.promise-card { transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.promise-card:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(0,0,0,.12); }

.float-badge-anim { animation: floatY 5s ease-in-out infinite; }

@media (max-width: 768px) {
  .display   { letter-spacing: -0.01rem; }
  .display-md { letter-spacing: -0.01rem; }
}

.scroll-mobile {
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 1.25rem;
}
.scroll-mobile::-webkit-scrollbar { display: none; }
.scroll-mobile { scrollbar-width: none; -ms-overflow-style: none; }

.mobile-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  padding: 0 1.25rem 0.75rem;
  scroll-padding-left: 1.25rem;
}
.mobile-carousel::-webkit-scrollbar { display: none; }
.mobile-carousel { scrollbar-width: none; -ms-overflow-style: none; }
.mobile-carousel > * {
  flex-shrink: 0;
  width: 85%;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .mobile-carousel {
    overflow: visible;
    margin: 0;
    padding: 0;
    scroll-snap-type: none;
  }
  .mobile-carousel > * {
    width: auto;
    flex-shrink: 1;
    scroll-snap-align: none;
  }
  .mobile-carousel-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .mobile-carousel-4 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .mobile-carousel-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.feat-page section:not(.sec) {
  padding: 0 !important;
  margin: 0 !important;
}
.feat-page section.sec {
  margin: 0 !important; 
}
.feat-page section:not(.sec) h2 {
  margin-bottom: 0 !important;
}

mb-* classes)
.feat-page h1,
.feat-page h2,
.feat-page h3,
.feat-page h4 {
  margin: 0;
  letter-spacing: normal;
}

.feat-page p {
  letter-spacing: normal;
}

.feat-page a:not([class]) {
  font-size: inherit;
}

@media (max-width: 768px) {
  .feat-page .flex:not(.flex-col):not(.flex-column):not(.stat-pair):not(.items-baseline):not(.items-center):not(.flex-wrap) {
    flex-direction: row !important;
  }
  .feat-page .stat-pair,
  .feat-page .flex.items-baseline:has(> .display),
  .feat-page .flex.items-center:has(> .display) {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .25rem !important;
  }
}

.bank-logos-inner > div {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

@media (max-width: 767px) {
  .bank-logos-inner {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    padding: 0.875rem 1rem !important;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .bank-logos-inner::-webkit-scrollbar { display: none; }
  .bank-logos-inner .bank-logos-label {
    flex-shrink: 0;
    margin-right: 1.25rem;
  }
  .bank-logos-inner > div {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 1.75rem !important;
    flex-shrink: 0;
  }
}
.bank-logos-inner > div > span {
  display: flex !important;
  align-items: center;
  flex-shrink: 0;
  filter: grayscale(1) contrast(0.9);
  transition: opacity 0.18s;
}
.bank-logos-inner > div > span:hover {
  opacity: 1 !important;
}

.feat-page #comparison span.rounded-full {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 1.5rem !important;   
  height: 1.5rem !important;  
  border-radius: 9999px !important;
  font-size: 0.75rem !important; 
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1;
}

.feat-page #comparison .bg-ok-500,
.feat-page #comparison [class*="bg-ok-500"] {
  background-color: #16a34a !important;
}
.feat-page #comparison .bg-ok-500\/80 {
  background-color: rgba(22,163,74,0.8) !important;
}

.feat-page #comparison span.rounded-full:empty::before {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(45deg) translate(-1px, -2px);
}

@media (max-width: 767px) {
  .feat-page #comparison table {
    min-width: 860px !important;
  }
  .feat-page #comparison table th:first-child,
  .feat-page #comparison table td:first-child {
    min-width: 220px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .feat-page #comparison table th:not(:first-child),
  .feat-page #comparison table td:not(:first-child) {
    min-width: 155px;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  
  .feat-page #comparison .overflow-x-auto {
    border-radius: 0 !important;
  }
  .feat-page #comparison table th:last-child {
    border-top-right-radius: 0 !important;
  }
}

.testi-face > div {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.roi-slider-wrap {
  min-height: 1.75rem;
}

@media (max-width: 767px) {
  .feat-page section.bg-ink-50.border-b > div > .flex-col {
    align-items: flex-start !important;
  }
}

@media (max-width: 767px) {
  .mobile-carousel {
    overflow-x: auto !important;
    touch-action: pan-x pinch-zoom;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
  }
}

.feat-page section.mesh-dark {
  overflow: visible !important;
}

.feat-page section:has(.mobile-carousel) {
  overflow-x: visible !important;
}

@media (max-width: 767px) {
  .feat-page .border-t.border-ink-100.text-center {
    margin-top: 1.25rem !important;
  }
  .feat-page .border-t.border-ink-100.text-center > p {
    line-height: 1.625 !important;
  }
  .feat-page .border-t.border-ink-100.text-center > p > span {
    display: inline !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 767px) {
  .feat-page div.before-bar,
  .feat-page div.after-bar {
    font-size: 0.9rem !important;
    line-height: 1.25rem !important;
  }
  .faq-wrap details summary {
    font-size: 0.9rem !important;
    line-height: 1.25rem !important;
  }
}

.feat-page .border-t.border-ink-100.flex.items-center {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.25rem !important;
}

@media (max-width: 767px) {
  .feat-page .flex-col > .flex-shrink-0.text-right {
    align-self: flex-end;
  }
}

@media (min-width: 768px) {
  .feat-page h2.display-md {
    line-height: 2.65rem;
  }
}

@media (max-width: 767px) {
  .feat-page h2.display-md,
  .feat-page .sec-h {
    font-size: 1.875rem !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: -0.01rem !important;
  }
}

@media (max-width: 768px) {
  .feat-page .rounded-2xl.shadow-card.border.border-ink-100 {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
  }
  .feat-page .rounded-2xl.shadow-card.border.border-ink-100 > * {
    grid-column: 2;
  }
  .feat-page .rounded-2xl.shadow-card.border.border-ink-100 > .w-12,
  .feat-page .rounded-2xl.shadow-card.border.border-ink-100 > .w-11 {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin-bottom: 0 !important;
  }
}
