.bfspa {
	--bfspa-green: #16a06f;
	--bfspa-green-soft: #e7f8f1;
	--bfspa-blue: #1c6fd1;
	--bfspa-ink: #0b1720;
	--bfspa-muted: #657482;
	--bfspa-line: rgba(14, 43, 64, .12);
	--bfspa-surface: rgba(255, 255, 255, .82);
	color: var(--bfspa-ink);
	container-type: inline-size;
	font-family: inherit;
	margin: 0 auto;
	max-width: 1280px;
	padding: clamp(14px, 2.4vw, 32px);
	position: relative;
}

.bfspa *,
.bfspa *::before,
.bfspa *::after {
	box-sizing: border-box;
}

.bfspa button,
.bfspa input,
.bfspa textarea {
	font: inherit;
}

.bfspa-app {
	background:
		radial-gradient(circle at 6% 8%, rgba(80, 216, 159, .24), transparent 26%),
		radial-gradient(circle at 93% 18%, rgba(28, 111, 209, .18), transparent 28%),
		linear-gradient(135deg, rgba(248, 255, 252, .96), rgba(240, 248, 255, .96) 52%, rgba(255, 255, 255, .94));
	border: 1px solid rgba(255, 255, 255, .78);
	border-radius: 28px;
	box-shadow: 0 26px 74px rgba(10, 42, 65, .13);
	min-height: min(720px, calc(100vh - 96px));
	overflow: hidden;
	padding: clamp(20px, 3.2vw, 42px);
	position: relative;
}

.bfspa-ambient,
.bfspa-orbit {
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.bfspa-orbit {
	background: linear-gradient(135deg, rgba(22, 160, 111, .18), rgba(28, 111, 209, .12));
	border: 1px solid rgba(255, 255, 255, .7);
	border-radius: 24px;
	height: 92px;
	opacity: .85;
	transform: translate3d(var(--bfspa-x, 0), var(--bfspa-y, 0), 0) rotate(18deg);
	width: 92px;
}

.bfspa-orbit--one {
	left: 3%;
	top: 8%;
}

.bfspa-orbit--two {
	height: 64px;
	left: 58%;
	top: 9%;
	transform: translate3d(calc(var(--bfspa-x, 0) * -1), var(--bfspa-y, 0), 0) rotate(42deg);
	width: 64px;
}

.bfspa-orbit--three {
	bottom: 8%;
	height: 130px;
	right: 6%;
	top: auto;
	transform: translate3d(var(--bfspa-y, 0), calc(var(--bfspa-x, 0) * -1), 0) rotate(8deg);
	width: 130px;
}

.bfspa-stage,
.bfspa-workspace,
.bfspa-modal__panel {
	position: relative;
	z-index: 2;
}

.bfspa-stage {
	display: none;
}

.bfspa-stage.is-active {
	animation: bfspa-stage-in .46s cubic-bezier(.2, .8, .2, 1) both;
	display: block;
}

.bfspa-intro {
	align-items: center;
	display: grid;
	gap: clamp(22px, 4vw, 48px);
	grid-template-columns: minmax(0, 1fr) minmax(320px, .76fr);
	min-height: clamp(520px, 62vh, 640px);
}

.bfspa-eyebrow,
.bfspa-step-label {
	color: var(--bfspa-green);
	font-size: .74rem;
	font-weight: 850;
	letter-spacing: .12em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.bfspa h1,
.bfspa h2,
.bfspa h3,
.bfspa h4,
.bfspa p {
	letter-spacing: 0;
}

.bfspa h1 {
	font-size: clamp(2.5rem, 5vw, 4.85rem);
	line-height: .98;
	margin: 0;
	max-width: 720px;
}

.bfspa-intro__lead {
	color: #405360;
	font-size: clamp(1.06rem, 1.5vw, 1.28rem);
	line-height: 1.55;
	margin: 18px 0 22px;
	max-width: 620px;
}

.bfspa-trust-points {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 0 28px;
	max-width: 640px;
}

.bfspa-trust-points span,
.bfspa-info-card__meta span,
.bfspa-tags span {
	align-items: center;
	background: rgba(255, 255, 255, .72);
	border: 1px solid var(--bfspa-line);
	border-radius: 999px;
	color: #203746;
	display: inline-flex;
	font-size: .92rem;
	font-weight: 760;
	gap: 8px;
	padding: 9px 13px;
}

.bfspa-trust-points span::before,
.bfspa-info-card__meta span::before {
	background: var(--bfspa-green);
	border-radius: 99px;
	content: "";
	height: 7px;
	width: 7px;
}

.bfspa-intro__side {
	display: grid;
	gap: 18px;
}

.bfspa-info-card,
.bfspa-trust-card,
.bfspa-summary,
.bfspa-support,
.bfspa-compare,
.bfspa-modal__panel {
	background: rgba(255, 255, 255, .78);
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 22px;
	box-shadow: 0 18px 44px rgba(12, 45, 70, .1);
	backdrop-filter: blur(16px);
}

.bfspa-info-card {
	padding: 24px;
}

.bfspa-info-card h2 {
	font-size: clamp(1.35rem, 2vw, 1.9rem);
	line-height: 1.08;
	margin: 0 0 12px;
}

.bfspa-info-card p,
.bfspa-trust-card span,
.bfspa-support p {
	color: var(--bfspa-muted);
	line-height: 1.62;
	margin: 0;
}

.bfspa-info-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 18px;
}

.bfspa-illustration {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 220px;
	transform: translate3d(calc(var(--bfspa-x, 0) * -.5), calc(var(--bfspa-y, 0) * -.5), 0);
}

.bfspa-window {
	filter: drop-shadow(0 26px 38px rgba(12, 58, 94, .18));
	max-width: min(340px, 100%);
}

.bfspa-trust-card {
	align-items: center;
	display: grid;
	gap: 8px;
	grid-template-columns: 210px 1fr;
	margin-top: -18px;
	padding: 18px 22px;
}

.bfspa-button {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--bfspa-line);
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(15, 48, 70, .08);
	color: var(--bfspa-ink);
	cursor: pointer;
	display: inline-flex;
	font-weight: 850;
	gap: 10px;
	justify-content: center;
	min-height: 48px;
	overflow: hidden;
	padding: 12px 20px;
	position: relative;
	text-decoration: none;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
	white-space: nowrap;
}

.bfspa-button:hover,
.bfspa-button:focus-visible {
	border-color: rgba(22, 160, 111, .42);
	box-shadow: 0 18px 38px rgba(22, 111, 92, .16);
	outline: 3px solid rgba(80, 216, 159, .22);
	transform: translateY(-2px);
}

.bfspa-button--primary {
	background: linear-gradient(135deg, var(--bfspa-green), var(--bfspa-blue));
	border-color: transparent;
	color: #ffffff;
}

.bfspa-button--ghost {
	background: rgba(255, 255, 255, .7);
}

.bfspa-ripple {
	animation: bfspa-ripple .65s ease-out;
	background: rgba(255, 255, 255, .38);
	border-radius: 999px;
	height: 14px;
	pointer-events: none;
	position: absolute;
	transform: translate(-50%, -50%) scale(1);
	width: 14px;
}

.bfspa-workspace {
	display: grid;
	gap: 26px;
}

.bfspa-progress {
	align-items: center;
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bfspa-progress__item {
	align-items: center;
	background: rgba(255, 255, 255, .62);
	border: 1px solid var(--bfspa-line);
	border-radius: 18px;
	display: flex;
	gap: 10px;
	min-height: 58px;
	padding: 10px;
	transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.bfspa-progress__item i {
	align-items: center;
	background: rgba(10, 35, 52, .06);
	border-radius: 14px;
	color: #314655;
	display: flex;
	flex: 0 0 34px;
	font-size: .88rem;
	font-style: normal;
	font-weight: 900;
	height: 34px;
	justify-content: center;
	width: 34px;
}

.bfspa-progress__item svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.4;
	width: 18px;
}

.bfspa-progress__item b {
	font-size: .88rem;
	line-height: 1.2;
}

.bfspa-progress__item.is-active,
.bfspa-progress__item.is-done {
	background: rgba(255, 255, 255, .92);
	border-color: rgba(22, 160, 111, .28);
	transform: translateY(-1px);
}

.bfspa-progress__item.is-active i,
.bfspa-progress__item.is-done i {
	background: linear-gradient(135deg, var(--bfspa-green), var(--bfspa-blue));
	color: #ffffff;
}

.bfspa-stage__header {
	margin-bottom: 22px;
	max-width: 820px;
}

.bfspa-stage__header h2,
.bfspa-results__header h2,
.bfspa-analyzing h2 {
	font-size: clamp(1.8rem, 3.4vw, 3.15rem);
	line-height: 1.04;
	margin: 0;
}

.bfspa-stage__header p:not(.bfspa-step-label) {
	color: var(--bfspa-muted);
	font-size: 1rem;
	line-height: 1.65;
	margin: 12px 0 0;
}

.bfspa-country {
	display: grid;
	gap: 16px;
	max-width: 920px;
}

.bfspa-country__search,
.bfspa-modal input,
.bfspa-modal textarea {
	background: rgba(255, 255, 255, .88);
	border: 1px solid var(--bfspa-line);
	border-radius: 16px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
	color: var(--bfspa-ink);
	min-height: 54px;
	padding: 0 16px;
	width: 100%;
}

.bfspa-modal textarea {
	min-height: 112px;
	padding-top: 12px;
	resize: vertical;
}

.bfspa-country__search:focus,
.bfspa-modal input:focus,
.bfspa-modal textarea:focus {
	border-color: var(--bfspa-green);
	box-shadow: 0 0 0 4px rgba(80, 216, 159, .18);
	outline: none;
}

.bfspa-country__list,
.bfspa-option-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
}

.bfspa-country__option,
.bfspa-card-option {
	background: var(--bfspa-surface);
	border: 1px solid var(--bfspa-line);
	border-radius: 20px;
	box-shadow: 0 12px 32px rgba(15, 45, 69, .075);
	color: var(--bfspa-ink);
	cursor: pointer;
	min-height: 72px;
	padding: 16px;
	text-align: left;
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.bfspa-country__option {
	align-items: center;
	display: flex;
	gap: 12px;
}

.bfspa-country__option span {
	align-items: center;
	background: linear-gradient(135deg, rgba(22, 160, 111, .13), rgba(28, 111, 209, .12));
	border-radius: 13px;
	color: #13654d;
	display: flex;
	font-size: .78rem;
	font-weight: 900;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.bfspa-country__option b {
	font-size: .98rem;
}

.bfspa-country__option:hover,
.bfspa-country__option:focus-visible,
.bfspa-country__option[aria-selected="true"],
.bfspa-card-option:hover,
.bfspa-card-option:focus-visible,
.bfspa-card-option[aria-pressed="true"] {
	background: #ffffff;
	border-color: rgba(22, 160, 111, .42);
	box-shadow: 0 20px 46px rgba(12, 70, 82, .13);
	outline: none;
	transform: translateY(-3px);
}

.bfspa-card-option {
	display: grid;
	gap: 11px;
	min-height: 184px;
}

.bfspa-card-option__icon {
	align-items: center;
	background: linear-gradient(135deg, rgba(22, 160, 111, .14), rgba(28, 111, 209, .12));
	border-radius: 16px;
	color: var(--bfspa-green);
	display: flex;
	height: 50px;
	justify-content: center;
	width: 50px;
}

.bfspa-card-option svg,
.bfspa-advantages svg {
	fill: none;
	height: 24px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	width: 24px;
}

.bfspa-card-option__label {
	font-size: 1.08rem;
	font-weight: 850;
}

.bfspa-card-option__text {
	color: var(--bfspa-muted);
	line-height: 1.5;
}

.bfspa-nav {
	margin-top: 4px;
}

.bfspa-analyzing {
	align-items: center;
	display: grid;
	justify-items: center;
	min-height: 430px;
	text-align: center;
}

.bfspa-analyzing__pulse {
	animation: bfspa-orb 1.6s ease-in-out infinite;
	background:
		radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .9), transparent 28%),
		linear-gradient(135deg, var(--bfspa-green), var(--bfspa-blue));
	border-radius: 999px;
	box-shadow: 0 18px 52px rgba(22, 111, 92, .22);
	height: 82px;
	width: 82px;
}

.bfspa-analyzing ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
}

.bfspa-analyzing li {
	background: rgba(255, 255, 255, .72);
	border: 1px solid rgba(22, 160, 111, .18);
	border-radius: 999px;
	color: #244251;
	font-weight: 780;
	padding: 9px 13px;
}

.bfspa-results__header {
	align-items: stretch;
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, .45fr);
	margin-bottom: 18px;
}

.bfspa-summary {
	box-shadow: 0 14px 34px rgba(12, 45, 70, .075);
	padding: 16px;
}

.bfspa-summary > div {
	display: grid;
	gap: 8px;
}

.bfspa-summary span {
	color: var(--bfspa-muted);
	display: grid;
	font-size: .92rem;
	gap: 2px;
}

.bfspa-summary b {
	color: var(--bfspa-ink);
	font-size: .78rem;
	text-transform: uppercase;
}

.bfspa-product {
	background: rgba(255, 255, 255, .86);
	border: 1px solid var(--bfspa-line);
	border-radius: 24px;
	box-shadow: 0 20px 54px rgba(12, 45, 70, .11);
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(220px, .56fr) minmax(0, 1fr);
	margin-bottom: 18px;
	overflow: hidden;
	padding: clamp(16px, 2.4vw, 24px);
	transition: transform .25s ease, box-shadow .25s ease;
}

.bfspa-product.is-inspected {
	box-shadow: 0 24px 68px rgba(22, 160, 111, .2);
	transform: translateY(-3px) scale(1.006);
}

.bfspa-product--featured {
	border-color: rgba(22, 160, 111, .3);
}

.bfspa-product__image {
	align-items: center;
	background:
		radial-gradient(circle at 32% 26%, rgba(80, 216, 159, .2), transparent 28%),
		linear-gradient(135deg, #ecfbf7, #eef6ff);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	min-height: 258px;
	overflow: hidden;
	position: relative;
}

.bfspa-product__frame {
	background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(178, 228, 218, .72));
	border: 12px solid rgba(255, 255, 255, .94);
	border-radius: 24px;
	box-shadow: 0 20px 38px rgba(16, 70, 95, .15);
	height: 188px;
	position: relative;
	width: 142px;
	z-index: 2;
}

.bfspa-product__frame::before,
.bfspa-product__frame::after {
	background: rgba(255, 255, 255, .8);
	content: "";
	position: absolute;
}

.bfspa-product__frame::before {
	height: 100%;
	left: 50%;
	top: 0;
	width: 9px;
}

.bfspa-product__frame::after {
	height: 9px;
	left: 0;
	top: 49%;
	width: 100%;
}

.bfspa-product__glint {
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .62), transparent);
	height: 160%;
	left: -40%;
	position: absolute;
	top: -30%;
	transform: rotate(22deg);
	width: 32%;
}

.bfspa-product__topline,
.bfspa-scoreline,
.bfspa-actions,
.bfspa-tags {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
}

.bfspa-product h3 {
	font-size: clamp(1.65rem, 2.6vw, 2.55rem);
	line-height: 1.02;
	margin: 0 0 10px;
}

.bfspa-product p {
	color: var(--bfspa-muted);
	line-height: 1.58;
	margin: 0 0 14px;
}

.bfspa-match {
	align-items: baseline;
	background: linear-gradient(135deg, rgba(22, 160, 111, .12), rgba(28, 111, 209, .1));
	border: 1px solid rgba(22, 160, 111, .18);
	border-radius: 18px;
	display: inline-flex;
	gap: 2px;
	padding: 8px 12px;
}

.bfspa-match strong {
	font-size: 2.1rem;
	font-weight: 950;
	line-height: 1;
}

.bfspa-match span {
	color: var(--bfspa-green);
	font-weight: 900;
}

.bfspa-match--small strong {
	font-size: 1.45rem;
}

.bfspa-scoreline {
	justify-content: flex-start;
	margin-bottom: 14px;
}

.bfspa-scoreline b {
	font-size: 1rem;
}

.bfspa-scoreline span {
	color: var(--bfspa-muted);
	font-size: .9rem;
	font-weight: 760;
}

.bfspa-meters {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 14px 0;
}

.bfspa-meter {
	display: grid;
	gap: 6px;
	grid-template-columns: 1fr auto;
}

.bfspa-meter span,
.bfspa-meter strong {
	font-size: .86rem;
	font-weight: 850;
}

.bfspa-meter div {
	background: rgba(12, 42, 64, .08);
	border-radius: 999px;
	grid-column: 1 / -1;
	height: 8px;
	overflow: hidden;
}

.bfspa-meter i {
	background: linear-gradient(90deg, var(--bfspa-green), var(--bfspa-blue));
	border-radius: inherit;
	display: block;
	height: 100%;
	transition: width 1s cubic-bezier(.2, .8, .2, 1);
}

.bfspa-advantages {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	margin: 14px 0;
	padding: 0;
}

.bfspa-advantages li {
	align-items: center;
	background: rgba(255, 255, 255, .62);
	border: 1px solid rgba(14, 43, 64, .08);
	border-radius: 14px;
	display: flex;
	gap: 9px;
	min-height: 48px;
	padding: 10px;
}

.bfspa-advantages span {
	align-items: center;
	background: var(--bfspa-green-soft);
	border-radius: 11px;
	color: var(--bfspa-green);
	display: flex;
	flex: 0 0 30px;
	height: 30px;
	justify-content: center;
	width: 30px;
}

.bfspa-advantages svg {
	height: 17px;
	width: 17px;
}

.bfspa-advantages b {
	font-size: .9rem;
	line-height: 1.25;
}

.bfspa-tags {
	justify-content: flex-start;
	margin-top: 8px;
}

.bfspa-tags span {
	color: #0d6d50;
	font-size: .84rem;
	padding: 7px 10px;
}

.bfspa-actions {
	justify-content: flex-start;
	margin-top: 16px;
}

.bfspa-alternatives {
	margin-top: 26px;
}

.bfspa-alternatives > h3 {
	font-size: 1.3rem;
	margin: 0 0 14px;
}

.bfspa-alternatives .bfspa-product {
	grid-template-columns: 180px minmax(0, 1fr);
}

.bfspa-alternatives .bfspa-product__image {
	min-height: 210px;
}

.bfspa-alternatives .bfspa-product__frame {
	height: 148px;
	width: 112px;
}

.bfspa-compare {
	margin: 18px 0;
	padding: 18px;
}

.bfspa-compare__header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 14px;
}

.bfspa-compare__header h3,
.bfspa-support h3 {
	margin: 0;
}

.bfspa-compare__grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.bfspa-compare__product {
	background: rgba(255, 255, 255, .65);
	border: 1px solid rgba(14, 43, 64, .08);
	border-radius: 16px;
	padding: 14px;
}

.bfspa-compare__product h4 {
	margin: 0 0 10px;
}

.bfspa-compare__product .bfspa-meters {
	grid-template-columns: 1fr;
}

.bfspa-support {
	align-items: center;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin: 24px 0 14px;
	padding: 20px;
}

.bfspa .bfspa-modal[hidden],
.bfspa .bfspa-workspace[hidden],
.bfspa [hidden] {
	display: none !important;
}

.bfspa-product__details {
	animation: bfspa-stage-in .28s ease both;
	background: rgba(231, 248, 241, .72);
	border: 1px solid rgba(22, 160, 111, .18);
	border-radius: 16px;
	color: var(--bfspa-muted);
	display: grid;
	gap: 5px;
	margin-top: 14px;
	padding: 13px 14px;
}

.bfspa-product__details strong {
	color: var(--bfspa-ink);
}

.bfspa-modal {
	inset: 0;
	position: fixed;
	z-index: 99999;
}

.bfspa-modal__backdrop {
	background: rgba(4, 18, 28, .48);
	backdrop-filter: blur(10px);
	inset: 0;
	position: absolute;
}

.bfspa-modal__panel {
	left: 50%;
	max-height: calc(100vh - 40px);
	max-width: 760px;
	overflow: auto;
	padding: 26px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 32px);
}

.bfspa-modal__panel h2 {
	font-size: clamp(1.7rem, 3vw, 2.45rem);
	margin: 0 0 18px;
}

.bfspa-modal__close {
	align-items: center;
	background: rgba(255, 255, 255, .82);
	border: 1px solid var(--bfspa-line);
	border-radius: 999px;
	cursor: pointer;
	display: flex;
	font-size: 24px;
	height: 40px;
	justify-content: center;
	position: absolute;
	right: 18px;
	top: 18px;
	width: 40px;
}

.bfspa-form-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bfspa-form-grid label {
	display: grid;
	gap: 7px;
}

.bfspa-form-grid label span {
	font-size: .86rem;
	font-weight: 820;
}

.bfspa-form-grid__wide {
	grid-column: 1 / -1;
}

.bfspa-form-status {
	color: var(--bfspa-green);
	font-weight: 800;
	margin: 12px 0 0;
}

.bfspa-error {
	background: #fff5f5;
	border: 1px solid #ffd1d1;
	border-radius: 18px;
	color: #8d1f1f;
	padding: 18px;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

@keyframes bfspa-stage-in {
	from {
		opacity: 0;
		transform: translateY(14px) scale(.992);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes bfspa-ripple {
	to {
		opacity: 0;
		transform: translate(-50%, -50%) scale(18);
	}
}

@keyframes bfspa-orb {
	0%, 100% {
		transform: scale(.96);
	}
	50% {
		transform: scale(1.05);
	}
}

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

@media (max-width: 1020px) {
	.bfspa-app {
		min-height: auto;
	}

	.bfspa-intro,
	.bfspa-results__header,
	.bfspa-product,
	.bfspa-alternatives .bfspa-product {
		grid-template-columns: 1fr;
	}

	.bfspa-intro {
		min-height: auto;
	}

	.bfspa-trust-card {
		grid-template-columns: 1fr;
		margin-top: 18px;
	}

	.bfspa-product__image {
		min-height: 220px;
	}
}

@media (max-width: 760px) {
	.bfspa {
		padding: 10px;
	}

	.bfspa-app {
		border-radius: 22px;
		padding: 18px;
	}

	.bfspa-trust-points,
	.bfspa-progress,
	.bfspa-meters,
	.bfspa-advantages,
	.bfspa-form-grid {
		grid-template-columns: 1fr;
	}

	.bfspa-progress__item {
		min-height: 50px;
	}

	.bfspa-support {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.bfspa h1 {
		font-size: clamp(2.25rem, 12vw, 3.4rem);
	}

	.bfspa-country__list,
	.bfspa-option-grid {
		grid-template-columns: 1fr;
	}

	.bfspa-button {
		min-width: 100%;
		white-space: normal;
	}

	.bfspa-actions .bfspa-button {
		flex: 1 1 100%;
	}
}
