:root {
	--bsa-bg: #040814;
	--bsa-ink: #ffffff;
	--bsa-muted: #b8c5dd;
	--bsa-soft: rgba(255, 255, 255, 0.08);
	--bsa-line: rgba(120, 155, 255, 0.22);
	--bsa-card: rgba(9, 19, 48, 0.86);
	--bsa-card-strong: rgba(13, 31, 76, 0.92);
	--bsa-blue: #2c7dff;
	--bsa-cyan: #20ddff;
	--bsa-purple: #783dff;
	--bsa-orange: #ff9a2b;
	--bsa-green: #28d998;
	--bsa-red: #ff4f69;
	--bsa-radius: 28px;
	--bsa-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bsa-bg);
	color: var(--bsa-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

.bsa-page {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	background:
		radial-gradient(circle at 12% 12%, rgba(117, 53, 255, 0.24), transparent 34%),
		radial-gradient(circle at 88% 18%, rgba(19, 210, 255, 0.18), transparent 35%),
		linear-gradient(135deg, #060419 0%, #071431 48%, #031525 100%);
}

.bsa-page::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(106, 146, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(106, 146, 255, 0.07) 1px, transparent 1px);
	background-size: 88px 88px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 88%);
}

.bsa-orbit {
	position: absolute;
	border: 1px solid rgba(63, 143, 255, 0.18);
	border-radius: 999px;
	pointer-events: none;
	filter: blur(0.2px);
}

.bsa-orbit-one {
	width: 720px;
	height: 720px;
	top: 210px;
	right: -260px;
	animation: bsaRotate 34s linear infinite;
}

.bsa-orbit-two {
	width: 520px;
	height: 520px;
	left: -240px;
	top: 470px;
	animation: bsaRotate 26s linear infinite reverse;
}

.bsa-data-lines {
	position: fixed;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

.bsa-data-lines span {
	position: absolute;
	width: 34vw;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--bsa-purple), var(--bsa-cyan), transparent);
	box-shadow: 0 0 18px rgba(32, 221, 255, 0.45);
	animation: bsaDataFlow 8s ease-in-out infinite;
	opacity: 0.55;
}

.bsa-data-lines span:nth-child(1) { top: 20%; left: -38vw; animation-delay: 0s; }
.bsa-data-lines span:nth-child(2) { top: 36%; right: -38vw; animation-delay: 1.2s; animation-direction: reverse; }
.bsa-data-lines span:nth-child(3) { top: 62%; left: -38vw; animation-delay: 2.4s; }
.bsa-data-lines span:nth-child(4) { top: 78%; right: -38vw; animation-delay: 3.6s; animation-direction: reverse; }
.bsa-data-lines span:nth-child(5) { top: 50%; left: -38vw; animation-delay: 4.8s; }

.bsa-shell {
	width: min(1180px, calc(100% - 36px));
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.bsa-hero {
	padding: 76px 0 42px;
	text-align: center;
}

.bsa-kicker {
	margin: 0 0 14px;
	color: var(--bsa-orange);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.78rem;
	font-weight: 900;
}

.bsa-hero h1,
.bsa-panel h2,
.bsa-seo-section h2,
.bsa-city-section h2,
.bsa-services-section h2 {
	margin: 0;
	letter-spacing: 0;
	color: #fff;
}

.bsa-hero h1 {
	max-width: 980px;
	margin: 0 auto;
	font-size: clamp(3.1rem, 8vw, 6.8rem);
	line-height: 0.95;
	font-weight: 950;
	text-wrap: balance;
}

.bsa-hero-copy {
	width: min(880px, 100%);
	margin: 28px auto 0;
	color: #d8e2ff;
	font-size: clamp(1.08rem, 2.2vw, 1.36rem);
	line-height: 1.65;
}

.bsa-hero-actions,
.bsa-form-actions,
.bsa-report-actions,
.bsa-nav-row {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.bsa-hero-actions {
	justify-content: center;
	margin-top: 30px;
}

.bsa-btn {
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 18px;
	padding: 15px 22px;
	color: #fff;
	text-decoration: none;
	font: inherit;
	font-weight: 900;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bsa-btn:hover {
	transform: translateY(-2px);
}

.bsa-btn:focus-visible,
.bsa-form input:focus-visible,
.bsa-choice:focus-visible {
	outline: 3px solid rgba(32, 221, 255, 0.7);
	outline-offset: 3px;
}

.bsa-btn-primary {
	background: linear-gradient(135deg, var(--bsa-purple), var(--bsa-blue) 55%, var(--bsa-cyan));
	box-shadow: 0 20px 48px rgba(44, 125, 255, 0.34);
}

.bsa-btn-ghost {
	background: rgba(255, 255, 255, 0.06);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bsa-btn.is-loading {
	opacity: 0.84;
	pointer-events: none;
}

.bsa-btn.is-loading::before {
	content: "";
	width: 16px;
	height: 16px;
	margin-right: 10px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	animation: bsaSpin 750ms linear infinite;
}

.bsa-proof-row {
	margin: 28px auto 0;
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.bsa-proof-row span {
	border: 1px solid rgba(75, 136, 255, 0.32);
	background: rgba(20, 43, 96, 0.62);
	color: #eaf1ff;
	border-radius: 999px;
	padding: 10px 16px;
	font-weight: 850;
	font-size: 0.94rem;
}

.bsa-flow-card {
	margin: 56px auto 0;
	min-height: 280px;
	display: grid;
	grid-template-columns: 1.15fr 0.48fr 1.08fr 0.86fr 0.82fr;
	gap: 22px;
	align-items: center;
	text-align: left;
}

.bsa-flow-sources {
	display: grid;
	gap: 14px;
}

.bsa-flow-sources div,
.bsa-flow-engine,
.bsa-flow-checks,
.bsa-flow-score {
	background: rgba(6, 14, 38, 0.72);
	border: 1px solid rgba(73, 124, 255, 0.34);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 24px 60px rgba(0, 0, 0, 0.24);
	border-radius: 22px;
}

.bsa-flow-sources div {
	display: grid;
	grid-template-columns: 52px 1fr;
	grid-template-areas: "icon title" "icon copy";
	gap: 4px 14px;
	padding: 15px 18px;
	animation: bsaFloat 4s ease-in-out infinite;
}

.bsa-flow-sources div:nth-child(2) { animation-delay: 0.3s; }
.bsa-flow-sources div:nth-child(3) { animation-delay: 0.6s; }
.bsa-flow-sources div:nth-child(4) { animation-delay: 0.9s; }

.bsa-flow-sources i {
	grid-area: icon;
	width: 48px;
	height: 48px;
	border-radius: 15px;
	box-shadow: 0 0 28px rgba(32, 221, 255, 0.28);
}

.bsa-flow-sources div:nth-child(1) i { background: linear-gradient(135deg, #853aff, #c28cff); }
.bsa-flow-sources div:nth-child(2) i { background: linear-gradient(135deg, #116dff, #4fe0ff); }
.bsa-flow-sources div:nth-child(3) i { background: linear-gradient(135deg, #00b8ff, #23f2ff); }
.bsa-flow-sources div:nth-child(4) i { background: linear-gradient(135deg, #ff7f22, #ffd18b); }

.bsa-flow-sources strong {
	grid-area: title;
	font-size: 0.98rem;
}

.bsa-flow-sources small {
	grid-area: copy;
	color: var(--bsa-muted);
	font-weight: 750;
}

.bsa-flow-stream {
	display: grid;
	gap: 16px;
}

.bsa-flow-stream span {
	height: 4px;
	border-radius: 99px;
	background: linear-gradient(90deg, transparent, var(--bsa-purple), var(--bsa-cyan));
	box-shadow: 0 0 18px rgba(32, 221, 255, 0.5);
	animation: bsaPulseLine 1.8s ease-in-out infinite;
}

.bsa-flow-stream span:nth-child(2) { animation-delay: 0.25s; }
.bsa-flow-stream span:nth-child(3) { animation-delay: 0.5s; background: linear-gradient(90deg, transparent, var(--bsa-orange), var(--bsa-cyan)); }

.bsa-flow-engine,
.bsa-flow-checks {
	padding: 22px;
}

.bsa-flow-engine p,
.bsa-flow-checks p {
	margin: 0 0 16px;
	color: #cfd8f3;
	font-size: 0.82rem;
	letter-spacing: 0.16em;
	font-weight: 950;
}

.bsa-flow-engine div {
	display: grid;
	grid-template-columns: 48px 1fr;
	align-items: center;
	gap: 12px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	margin-top: 11px;
}

.bsa-flow-engine strong {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--bsa-purple), var(--bsa-blue));
}

.bsa-flow-engine span {
	color: #e8efff;
	font-size: 0.9rem;
	font-weight: 850;
}

.bsa-flow-checks span {
	display: block;
	position: relative;
	padding-left: 28px;
	margin-top: 12px;
	font-weight: 900;
	color: #eaf1ff;
}

.bsa-flow-checks span::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--bsa-blue), var(--bsa-cyan));
	display: grid;
	place-items: center;
	font-size: 0.72rem;
}

.bsa-flow-score {
	aspect-ratio: 1;
	border-radius: 50%;
	display: grid;
	place-items: center;
	align-content: center;
	text-align: center;
	box-shadow: inset 0 0 0 16px rgba(44, 125, 255, 0.06), 0 0 54px rgba(44, 125, 255, 0.18);
}

.bsa-flow-score strong {
	font-size: clamp(2.4rem, 5vw, 4rem);
	font-weight: 950;
	line-height: 1;
	min-width: 2ch;
}

.bsa-flow-score small {
	color: var(--bsa-cyan);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-weight: 950;
}

.bsa-assessment-section {
	padding: 26px 0 72px;
}

.bsa-panel {
	background: linear-gradient(145deg, rgba(10, 22, 55, 0.92), rgba(16, 38, 92, 0.92));
	border: 1px solid rgba(110, 148, 255, 0.32);
	border-radius: var(--bsa-radius);
	box-shadow: var(--bsa-shadow);
	padding: clamp(22px, 4vw, 44px);
}

.bsa-panel.is-hidden,
.is-hidden {
	display: none !important;
}

.bsa-stepper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 32px;
}

.bsa-stepper span {
	position: relative;
	display: grid;
	place-items: center;
	text-align: center;
	min-height: 46px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #aebbd4;
	font-size: 0.82rem;
	font-weight: 950;
}

.bsa-stepper .is-active {
	color: #fff;
	background: linear-gradient(135deg, var(--bsa-purple), var(--bsa-blue));
}

.bsa-stepper .is-done {
	color: #031525;
	background: linear-gradient(135deg, var(--bsa-green), var(--bsa-cyan));
}

.bsa-panel-head {
	max-width: 880px;
}

.bsa-panel h2 {
	font-size: clamp(2rem, 5vw, 3.6rem);
	line-height: 1.05;
	font-weight: 950;
	text-wrap: balance;
}

.bsa-panel-head p:not(.bsa-kicker) {
	color: #d5dff4;
	font-size: 1.05rem;
	line-height: 1.7;
}

.bsa-grid-two {
	margin-top: 28px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.bsa-form label {
	display: grid;
	gap: 8px;
	color: #f0f5ff;
	font-weight: 850;
	font-size: 0.92rem;
}

.bsa-form input {
	width: 100%;
	min-height: 56px;
	border-radius: 14px;
	border: 1px solid rgba(130, 162, 255, 0.26);
	background: rgba(3, 10, 29, 0.82);
	color: #fff;
	padding: 0 16px;
	font: inherit;
}

.bsa-consent {
	margin-top: 20px;
	display: flex !important;
	grid-template-columns: none !important;
	flex-direction: row;
	align-items: flex-start;
	gap: 12px !important;
	color: #dbe6ff !important;
	line-height: 1.55;
}

.bsa-consent input {
	width: 22px;
	min-width: 22px;
	height: 22px;
	min-height: 22px;
	margin-top: 2px;
	accent-color: var(--bsa-cyan);
}

.bsa-form-actions {
	margin-top: 24px;
}

.bsa-note,
.bsa-message {
	margin: 0;
	color: var(--bsa-muted);
	font-size: 0.94rem;
}

.bsa-message {
	margin-top: 14px;
	min-height: 24px;
}

.bsa-progress-box {
	margin: 28px 0 26px;
	padding: 18px;
	background: rgba(3, 10, 29, 0.74);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
}

.bsa-progress-box strong {
	display: block;
	font-size: 1.02rem;
	margin-bottom: 12px;
}

.bsa-progress-box div {
	height: 10px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
}

.bsa-progress-box span {
	display: block;
	height: 100%;
	width: 0%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--bsa-orange), var(--bsa-purple), var(--bsa-blue), var(--bsa-cyan));
	transition: width 260ms ease;
}

.bsa-question-card {
	min-height: 360px;
	padding: clamp(20px, 4vw, 34px);
	border-radius: 24px;
	border: 1px solid rgba(129, 163, 255, 0.26);
	background: linear-gradient(145deg, rgba(5, 14, 39, 0.9), rgba(12, 31, 74, 0.86));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bsa-question-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.bsa-question-number {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: rgba(44, 125, 255, 0.22);
	border: 1px solid rgba(32, 221, 255, 0.32);
	font-weight: 950;
}

.bsa-question-category {
	color: var(--bsa-orange);
	font-weight: 950;
	font-size: 0.9rem;
}

.bsa-question-text {
	margin: 0;
	color: #fff;
	font-size: clamp(1.35rem, 2.5vw, 2.1rem);
	line-height: 1.25;
	font-weight: 900;
	text-wrap: balance;
	max-width: 960px;
}

.bsa-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 30px;
}

.bsa-choice {
	min-height: 66px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font: inherit;
	font-size: 1rem;
	font-weight: 900;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.bsa-choice:hover {
	transform: translateY(-1px);
	border-color: rgba(32, 221, 255, 0.62);
}

.bsa-choice.is-selected {
	background: linear-gradient(135deg, rgba(120, 61, 255, 0.92), rgba(44, 125, 255, 0.92), rgba(32, 221, 255, 0.84));
	border-color: rgba(255, 255, 255, 0.36);
	box-shadow: 0 18px 42px rgba(44, 125, 255, 0.24);
}

.bsa-nav-row {
	justify-content: space-between;
	margin-top: 24px;
}

.bsa-report-grid {
	margin-top: 28px;
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 24px;
	align-items: stretch;
}

.bsa-score-ring,
.bsa-report-summary,
.bsa-breakdown,
.bsa-recommendations,
.bsa-seo-side,
.bsa-final-cta {
	border: 1px solid rgba(120, 155, 255, 0.26);
	background: rgba(4, 13, 36, 0.68);
	border-radius: 24px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bsa-score-ring {
	min-height: 310px;
	display: grid;
	place-items: center;
	align-content: center;
	text-align: center;
	box-shadow: inset 0 0 0 18px rgba(44, 125, 255, 0.08), 0 22px 54px rgba(0, 0, 0, 0.22);
}

.bsa-score-ring strong {
	font-size: 5rem;
	line-height: 1;
	font-weight: 950;
}

.bsa-score-ring span,
.bsa-score-ring small {
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 950;
	color: var(--bsa-cyan);
}

.bsa-score-ring small {
	margin-top: 8px;
	color: #fff;
}

.bsa-report-summary {
	padding: 28px;
}

.bsa-report-summary h3,
.bsa-seo-main h3,
.bsa-seo-side h3,
.bsa-final-cta h3 {
	margin: 0 0 12px;
	font-size: 1.45rem;
}

.bsa-report-summary p,
.bsa-seo-main p,
.bsa-services-section p,
.bsa-final-cta p {
	color: #d7e2f7;
	line-height: 1.72;
}

.bsa-score-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 24px;
}

.bsa-score-stats span {
	display: grid;
	gap: 4px;
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.07);
	color: var(--bsa-muted);
	font-weight: 850;
}

.bsa-score-stats strong {
	color: #fff;
	font-size: 1.8rem;
}

.bsa-breakdown,
.bsa-recommendations {
	margin-top: 24px;
	padding: 24px;
}

.bsa-breakdown h3,
.bsa-recommendations h3 {
	margin: 0 0 16px;
}

.bsa-breakdown-row {
	display: grid;
	grid-template-columns: minmax(160px, 260px) 1fr 58px;
	gap: 16px;
	align-items: center;
	margin: 14px 0;
	color: #eef4ff;
	font-weight: 850;
}

.bsa-breakdown-track {
	height: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

.bsa-breakdown-track span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--bsa-red), var(--bsa-orange), var(--bsa-green), var(--bsa-cyan));
}

.bsa-recommendations ul,
.bsa-seo-main ul {
	margin: 0;
	padding-left: 20px;
	color: #dce7fb;
	line-height: 1.7;
}

.bsa-recommendations li {
	margin-top: 12px;
	padding: 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
}

.bsa-report-actions {
	margin-top: 24px;
}

.bsa-seo-section,
.bsa-city-section,
.bsa-services-section {
	padding: 72px 0;
	position: relative;
	z-index: 1;
}

.bsa-content-grid {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 32px;
	align-items: start;
}

.bsa-seo-main h2,
.bsa-city-section h2,
.bsa-services-section h2 {
	font-size: clamp(2rem, 4.4vw, 3.7rem);
	line-height: 1.08;
	font-weight: 930;
	text-wrap: balance;
}

.bsa-seo-main h3 {
	margin-top: 32px;
}

.bsa-seo-side {
	position: sticky;
	top: 20px;
	padding: 24px;
}

.bsa-chip-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 18px 0 22px;
}

.bsa-chip-cloud span {
	padding: 9px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #dce7fb;
	font-weight: 850;
	font-size: 0.9rem;
}

.bsa-city-grid,
.bsa-services-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 28px;
}

.bsa-city-grid div,
.bsa-services-grid div {
	padding: 20px;
	border: 1px solid rgba(120, 155, 255, 0.22);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-weight: 950;
}

.bsa-city-grid span,
.bsa-services-grid span {
	display: block;
	margin-top: 8px;
	color: var(--bsa-muted);
	font-weight: 700;
	line-height: 1.55;
}

.bsa-final-cta {
	margin-top: 28px;
	padding: clamp(24px, 4vw, 38px);
	background:
		radial-gradient(circle at 12% 20%, rgba(120, 61, 255, 0.22), transparent 40%),
		rgba(4, 13, 36, 0.72);
}

@keyframes bsaDataFlow {
	0% { transform: translateX(0); opacity: 0; }
	18% { opacity: 0.72; }
	100% { transform: translateX(176vw); opacity: 0; }
}

@keyframes bsaPulseLine {
	0%, 100% { transform: scaleX(0.72); opacity: 0.55; }
	50% { transform: scaleX(1); opacity: 1; }
}

@keyframes bsaRotate {
	to { transform: rotate(360deg); }
}

@keyframes bsaFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

@keyframes bsaSpin {
	to { transform: rotate(360deg); }
}

@keyframes bsaScorePop {
	0% { transform: scale(0.92); opacity: 0.6; }
	60% { transform: scale(1.08); opacity: 1; }
	100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 1040px) {
	.bsa-flow-card {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.bsa-flow-stream {
		grid-template-columns: repeat(3, 1fr);
	}

	.bsa-flow-score {
		width: min(260px, 100%);
		justify-self: center;
	}

	.bsa-content-grid,
	.bsa-report-grid {
		grid-template-columns: 1fr;
	}

	.bsa-seo-side {
		position: static;
	}

	.bsa-city-grid,
	.bsa-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.bsa-shell {
		width: min(100% - 24px, 1180px);
	}

	.bsa-hero {
		padding-top: 48px;
	}

	.bsa-hero h1 {
		font-size: clamp(2.6rem, 14vw, 4.3rem);
	}

	.bsa-panel {
		border-radius: 22px;
	}

	.bsa-stepper {
		grid-template-columns: 1fr 1fr;
	}

	.bsa-grid-two,
	.bsa-choice-grid,
	.bsa-score-stats,
	.bsa-city-grid,
	.bsa-services-grid {
		grid-template-columns: 1fr;
	}

	.bsa-question-card {
		min-height: 330px;
	}

	.bsa-question-text {
		font-size: clamp(1.2rem, 6vw, 1.55rem);
	}

	.bsa-breakdown-row {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.bsa-nav-row .bsa-btn,
	.bsa-hero-actions .bsa-btn,
	.bsa-form-actions .bsa-btn,
	.bsa-report-actions .bsa-btn {
		width: 100%;
	}
}

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