/*!
 * Black Solar – Calculator Casa Verde Baterii 2026
 * Toate stilurile sunt izolate sub .bscv, ca să nu intre în conflict cu tema sau Elementor.
 */

.bscv {
	--bscv-green: #94b447;
	--bscv-green-hover: #a5c35a;
	--bscv-green-700: #658811;
	--bscv-green-ink: #4a6410;
	--bscv-green-50: #f3f7ea;
	--bscv-green-100: #e4edcf;
	--bscv-black: #1e2227;
	--bscv-black-2: #2b3137;
	--bscv-ink: #252525;
	--bscv-muted: #54595f;
	--bscv-line: #e1e5dc;
	--bscv-bg: #f6f8f2;
	--bscv-white: #fff;
	--bscv-warn: #7a4a00;
	--bscv-warn-bg: #fff4dc;
	--bscv-bad: #a8201a;
	--bscv-bad-bg: #fdeceb;
	--bscv-info: #1d4b73;
	--bscv-info-bg: #eaf2fa;
	--bscv-radius: 14px;
	--bscv-radius-sm: 10px;
	--bscv-head: "Montserrat", "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--bscv-body: "Roboto", "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
	--bscv-sticky-top: 110px;

	box-sizing: border-box;
	max-width: 1200px;
	margin: 0 auto;
	padding-inline: 16px;
	color: var(--bscv-ink);
	font-family: var(--bscv-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.bscv *,
.bscv *::before,
.bscv *::after {
	box-sizing: inherit;
}

.bscv [hidden] {
	display: none !important;
}

.bscv h1,
.bscv h2,
.bscv h3,
.bscv h4 {
	margin: 0 0 .5em;
	color: var(--bscv-black);
	font-family: var(--bscv-head);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.01em;
	text-transform: none;
}

.bscv h2 {
	font-size: clamp(24px, 3vw, 34px);
}

.bscv h3 {
	font-size: clamp(18px, 2vw, 20px);
	font-weight: 700;
}

.bscv h4 {
	font-size: 16px;
	font-weight: 700;
}

.bscv p {
	margin: 0 0 1em;
}

.bscv a {
	color: var(--bscv-green-ink);
	text-underline-offset: 3px;
}

.bscv :focus-visible {
	outline: 3px solid var(--bscv-green-700);
	outline-offset: 2px;
}

.bscv section,
.bscv article > footer {
	margin-block: clamp(40px, 6vw, 72px);
}

/* ---------- Butoane ---------- */

.bscv .bscv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	margin: 0;
	padding: 12px 22px;
	border: 2px solid transparent;
	border-radius: 999px;
	background: var(--bscv-green);
	box-shadow: none;
	color: var(--bscv-black);
	font: 700 16px/1.2 var(--bscv-head);
	letter-spacing: 0;
	text-align: center;
	text-decoration: none;
	text-transform: none;
	cursor: pointer;
	transition: background-color .15s ease, border-color .15s ease;
}

.bscv .bscv-btn:hover {
	background: var(--bscv-green-hover);
	color: var(--bscv-black);
}

.bscv .bscv-btn:disabled {
	opacity: .6;
	cursor: wait;
}

.bscv .bscv-btn--ghost {
	border-color: rgba(255, 255, 255, .35);
	background: transparent;
	color: #fff;
}

.bscv .bscv-btn--ghost:hover {
	border-color: var(--bscv-green);
	background: transparent;
	color: #fff;
}

.bscv .bscv-btn--outline {
	border-color: var(--bscv-line);
	background: var(--bscv-white);
	color: var(--bscv-black);
}

.bscv .bscv-btn--outline:hover {
	border-color: var(--bscv-green);
	background: var(--bscv-green-50);
}

.bscv .bscv-btn--dark {
	background: var(--bscv-black);
	color: #fff;
}

.bscv .bscv-btn--dark:hover {
	background: var(--bscv-black-2);
	color: #fff;
}

.bscv .bscv-btn--sm {
	min-height: 38px;
	padding: 7px 14px;
	font-size: 14px;
}

.bscv .bscv-btn--block {
	width: 100%;
}

.bscv .bscv-link {
	display: inline;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
	color: var(--bscv-green-ink);
	font: inherit;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-transform: none;
	cursor: pointer;
}

/* ---------- Antet ---------- */

.bscv-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
	margin-top: 24px;
	padding: clamp(28px, 5vw, 56px);
	border-radius: 20px;
	background: var(--bscv-black);
	color: #dfe4da;
}

.bscv .bscv-hero__meta {
	margin: 0 0 12px;
	color: #9aa394;
	font-size: 14px;
}

.bscv .bscv-hero__title {
	margin-bottom: 16px;
	color: #fff;
	font-size: clamp(30px, 4.4vw, 50px);
	line-height: 1.1;
}

.bscv .bscv-hero__title span {
	display: block;
	color: var(--bscv-green);
}

.bscv .bscv-hero__lead {
	max-width: 52ch;
	color: #c9d0c4;
	font-size: clamp(16px, 1.6vw, 18px);
}

.bscv-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 24px 0;
}

.bscv .bscv-trust {
	margin: 0;
	color: #9aa394;
	font-size: 14px;
}

.bscv-hero__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border-radius: var(--bscv-radius);
	background: rgba(255, 255, 255, .1);
	list-style: none;
}

.bscv-hero__stats li {
	margin: 0;
	padding: 20px;
	background: var(--bscv-black);
}

.bscv-hero__stats strong {
	display: block;
	color: #fff;
	font: 800 clamp(22px, 2.4vw, 28px)/1.1 var(--bscv-head);
	white-space: nowrap;
}

.bscv-hero__stats span {
	display: block;
	margin-top: 6px;
	color: #9aa394;
	font-size: 14px;
	line-height: 1.35;
}

/* ---------- Regulile programului ---------- */

.bscv-summary {
	padding: clamp(22px, 4vw, 40px);
	border: 1px solid var(--bscv-line);
	border-radius: var(--bscv-radius);
	background: var(--bscv-bg);
}

.bscv-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 40px;
	margin: 8px 0 0;
}

.bscv-facts > div {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid var(--bscv-line);
}

.bscv-facts dt {
	color: var(--bscv-black);
	font: 700 14px/1.5 var(--bscv-head);
}

.bscv-facts dd {
	margin: 0;
	font-size: 15px;
}

/* ---------- Calculator ---------- */

.bscv-section-head {
	margin-bottom: 20px;
}

.bscv-app {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
	gap: 24px;
	align-items: start;
}

.bscv-form {
	display: grid;
	gap: 14px;
	margin: 0;
}

.bscv-step {
	min-width: 0;
	margin: 0;
	padding: 22px;
	border: 1px solid var(--bscv-line);
	border-radius: var(--bscv-radius);
	background: var(--bscv-white);
}

.bscv-step legend {
	display: flex;
	align-items: center;
	gap: 10px;
	float: left;
	width: 100%;
	margin: 0 0 16px;
	padding: 0;
	color: var(--bscv-black);
	font: 700 17px/1.3 var(--bscv-head);
}

.bscv-step legend + * {
	clear: both;
}

.bscv-step__n {
	display: inline-grid;
	flex: none;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--bscv-black);
	color: #fff;
	font-size: 14px;
}

.bscv-question {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 16px;
	padding: 12px 0;
	border-top: 1px solid var(--bscv-line);
}

.bscv-question:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.bscv-question__label {
	flex: 1 1 240px;
	font-size: 15px;
}

.bscv-choices {
	display: inline-flex;
	gap: 6px;
}

.bscv-choice,
.bscv-segment label {
	position: relative;
	margin: 0;
	cursor: pointer;
}

.bscv-choice input,
.bscv-segment input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.bscv-choice span {
	display: inline-block;
	min-width: 58px;
	padding: 7px 14px;
	border: 1.5px solid var(--bscv-line);
	border-radius: 999px;
	background: var(--bscv-white);
	font-weight: 600;
	font-size: 14px;
	text-align: center;
}

.bscv-choice input:checked + span {
	border-color: var(--bscv-green-700);
	background: var(--bscv-green);
	color: var(--bscv-black);
}

.bscv-choice--no input:checked + span {
	border-color: var(--bscv-bad);
	background: var(--bscv-bad-bg);
	color: var(--bscv-bad);
}

.bscv-choice input:focus-visible + span,
.bscv-segment input:focus-visible + span {
	outline: 3px solid var(--bscv-green-700);
	outline-offset: 2px;
}

.bscv-field {
	display: grid;
	gap: 6px;
	margin-bottom: 12px;
}

.bscv .bscv-field label {
	margin: 0;
	color: var(--bscv-black);
	font-weight: 600;
	font-size: 15px;
}

.bscv-field small {
	color: var(--bscv-muted);
	font-weight: 400;
}

.bscv-tag {
	display: inline-block;
	margin-left: 6px;
	padding: 1px 8px;
	border-radius: 999px;
	background: var(--bscv-warn-bg);
	color: var(--bscv-warn);
	font-style: normal;
	font-weight: 600;
	font-size: 12px;
	vertical-align: middle;
}

.bscv-input-unit {
	display: flex;
	align-items: stretch;
	overflow: hidden;
	border: 1.5px solid var(--bscv-line);
	border-radius: var(--bscv-radius-sm);
	background: var(--bscv-white);
}

.bscv-input-unit:focus-within {
	border-color: var(--bscv-green-700);
	box-shadow: 0 0 0 3px rgba(148, 180, 71, .25);
}

.bscv .bscv-input-unit input {
	flex: 1;
	width: 100%;
	min-width: 0;
	height: 50px;
	margin: 0;
	padding: 0 14px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--bscv-black);
	font: 700 19px/1 var(--bscv-head);
	outline: none;
}

.bscv-input-unit span {
	display: grid;
	place-items: center;
	padding: 0 16px;
	background: var(--bscv-bg);
	color: var(--bscv-muted);
	font-weight: 600;
}

.bscv .bscv-range {
	width: 100%;
	height: 28px;
	margin: 2px 0 8px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	accent-color: var(--bscv-green-700);
	cursor: pointer;
}

.bscv-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 4px 0 10px;
}

.bscv .bscv-chip {
	margin: 0;
	padding: 6px 14px;
	border: 1.5px solid var(--bscv-line);
	border-radius: 999px;
	background: var(--bscv-white);
	box-shadow: none;
	color: var(--bscv-black);
	font: 600 14px/1.3 var(--bscv-body);
	text-transform: none;
	cursor: pointer;
}

.bscv .bscv-chip:hover {
	border-color: var(--bscv-green);
	background: var(--bscv-green-50);
}

.bscv .bscv-hint {
	margin: 0 0 12px;
	color: var(--bscv-muted);
	font-size: 14px;
}

.bscv-segment {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.bscv-segment span {
	display: grid;
	gap: 2px;
	height: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--bscv-line);
	border-radius: var(--bscv-radius-sm);
	background: var(--bscv-white);
}

.bscv-segment strong {
	color: var(--bscv-black);
	font-family: var(--bscv-head);
	font-size: 15px;
}

.bscv-segment small {
	color: var(--bscv-muted);
	font-size: 13px;
	line-height: 1.35;
}

.bscv-segment input:checked + span {
	border-color: var(--bscv-green-700);
	background: var(--bscv-green-50);
	box-shadow: inset 0 0 0 1px var(--bscv-green-700);
}

.bscv-manual {
	margin-top: 16px;
}

/* ---------- Rezultat ---------- */

.bscv-result {
	position: sticky;
	top: var(--bscv-sticky-top);
}

.bscv-result__card {
	padding: 24px;
	border: 1px solid var(--bscv-line);
	border-radius: var(--bscv-radius);
	background: var(--bscv-white);
}

.bscv .bscv-result__title {
	margin-bottom: 12px;
	font-size: 18px;
}

.bscv-score {
	position: relative !important;
	display: block !important;
	width: 170px !important;
	height: 170px !important;
	min-width: 170px !important;
	min-height: 170px !important;
	margin: 0 auto 14px !important;
	padding: 0 !important;
}

.bscv-ring {
	position: absolute !important;
	inset: 0 !important;
	display: block !important;
	width: 170px !important;
	height: 170px !important;
	margin: 0 !important;
	padding: 0 !important;
	transform: rotate(-90deg);
}

.bscv-ring circle {
	fill: none;
	stroke-width: 10;
}

.bscv-ring__track {
	stroke: var(--bscv-green-100);
}

.bscv-ring__value {
	stroke: var(--bscv-green-700);
	stroke-linecap: round;
	transition: stroke-dashoffset .4s ease;
}

.bscv-result[data-tier="mid"] .bscv-ring__value { stroke: #c08a1b; }
.bscv-result[data-tier="low"] .bscv-ring__value,
.bscv-result[data-tier="bad"] .bscv-ring__value { stroke: var(--bscv-bad); }

.bscv .bscv-score__value {
	position: absolute !important;
	inset: 0 !important;
	z-index: 2 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	width: 170px !important;
	height: 170px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	transform: none !important;
	text-align: center !important;
	pointer-events: none;
}

/* Resetăm explicit stilurile temei/Elementor pentru textele din cerc. */
.bscv .bscv-score__value > strong {
	all: unset !important;
	display: block !important;
	position: static !important;
	box-sizing: border-box !important;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--bscv-black) !important;
	font-family: var(--bscv-head) !important;
	font-size: 46px !important;
	font-style: normal !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	letter-spacing: -.02em !important;
	text-align: center !important;
}

.bscv .bscv-score__value > span {
	all: unset !important;
	display: block !important;
	position: static !important;
	box-sizing: border-box !important;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--bscv-muted) !important;
	font-family: var(--bscv-body) !important;
	font-size: 13px !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: 1.2 !important;
	letter-spacing: normal !important;
	text-align: center !important;
	white-space: nowrap !important;
}

.bscv-verdict {
	display: grid;
	gap: 2px;
	margin-bottom: 16px;
	padding: 10px 14px;
	border-radius: var(--bscv-radius-sm);
	background: var(--bscv-green-50);
	font-size: 14px;
	line-height: 1.45;
	text-align: center;
}

.bscv-verdict span:empty {
	display: none;
}

.bscv-verdict strong {
	color: var(--bscv-black);
	font-family: var(--bscv-head);
	font-size: 16px;
}

.bscv-verdict--mid { background: var(--bscv-warn-bg); }
.bscv-verdict--low,
.bscv-verdict--bad { background: var(--bscv-bad-bg); }
.bscv-verdict--bad strong { color: var(--bscv-bad); }

.bscv-bars {
	display: grid;
	gap: 12px;
	margin-bottom: 16px;
}

.bscv-bar__label {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 6px;
	font-size: 14px;
}

.bscv-bar__label b {
	color: var(--bscv-black);
	font-family: var(--bscv-head);
}

.bscv-bar__track {
	height: 8px;
	overflow: hidden;
	border-radius: 999px;
	background: var(--bscv-green-100);
}

.bscv-bar__track span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--bscv-green-700);
	transition: width .4s ease;
}

.bscv-money {
	margin: 0 0 12px;
	border-top: 1px solid var(--bscv-line);
}

.bscv-money > div {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 0;
	border-bottom: 1px solid var(--bscv-line);
	font-size: 15px;
}

.bscv-money dt {
	color: var(--bscv-muted);
}

.bscv-money dd {
	margin: 0;
	color: var(--bscv-black);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.bscv-money__main dd {
	color: var(--bscv-green-ink);
	font: 800 22px/1.2 var(--bscv-head);
}

.bscv-money__main dt,
.bscv-money__total dt {
	color: var(--bscv-black);
	font-weight: 700;
}

.bscv-money__total dd {
	font-size: 18px;
}

.bscv .bscv-binding {
	margin-bottom: 14px;
	color: var(--bscv-muted);
	font-size: 13px;
}

.bscv-tips {
	display: grid;
	gap: 8px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.bscv-tip {
	display: grid;
	gap: 8px;
	justify-items: start;
	margin: 0;
	padding: 12px 14px;
	border-left: 3px solid var(--bscv-green-700);
	border-radius: 0 var(--bscv-radius-sm) var(--bscv-radius-sm) 0;
	background: var(--bscv-green-50);
	font-size: 14px;
	line-height: 1.45;
}

.bscv-tip--warn {
	border-left-color: #c08a1b;
	background: var(--bscv-warn-bg);
}

.bscv-tip--bad {
	border-left-color: var(--bscv-bad);
	background: var(--bscv-bad-bg);
	color: #5c1410;
}

.bscv-tip--info {
	border-left-color: var(--bscv-info);
	background: var(--bscv-info-bg);
}

.bscv-compare {
	margin-bottom: 16px;
	padding: 14px;
	border-radius: var(--bscv-radius-sm);
	background: var(--bscv-bg);
}

.bscv-compare h4 {
	margin-bottom: 8px;
}

.bscv-compare table {
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	font-size: 14px;
}

.bscv-compare th,
.bscv-compare td {
	padding: 6px 4px;
	border: 0;
	border-bottom: 1px solid var(--bscv-line);
	background: transparent;
	text-align: right;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.bscv-compare th[scope="row"],
.bscv-compare thead th:first-child {
	color: var(--bscv-muted);
	font-weight: 400;
	text-align: left;
}

.bscv-compare thead th {
	color: var(--bscv-black);
	font: 700 13px/1.3 var(--bscv-head);
}

.bscv .bscv-compare__note {
	margin: 8px 0 0;
	color: var(--bscv-green-ink);
	font-weight: 600;
	font-size: 13px;
}

.bscv-result__actions {
	display: grid;
	gap: 10px;
}

.bscv-result__row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.bscv-result__row > * {
	flex: 1 1 auto;
}

.bscv .bscv-disclaimer {
	margin: 12px 0 0;
	color: var(--bscv-muted);
	font-size: 12px;
	line-height: 1.45;
	text-align: center;
}

.bscv-mobilebar {
	display: none;
}

/* ---------- Cerere ofertă ---------- */

.bscv-lead {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: clamp(24px, 4vw, 48px);
	padding: clamp(22px, 4vw, 48px);
	border: 1px solid var(--bscv-line);
	border-radius: 20px;
	background: var(--bscv-bg);
}

.bscv .bscv-lead__contact {
	margin-top: 16px;
	font-size: 15px;
}

.bscv-lead__contact a {
	font-weight: 700;
}

.bscv-lead__form {
	padding: clamp(18px, 3vw, 28px);
	border: 1px solid var(--bscv-line);
	border-radius: var(--bscv-radius);
	background: var(--bscv-white);
}

.bscv-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 14px;
}

.bscv .bscv-lead__form input[type="text"],
.bscv .bscv-lead__form input[type="tel"],
.bscv .bscv-lead__form input[type="email"],
.bscv .bscv-lead__form textarea {
	width: 100%;
	margin: 0;
	padding: 12px 14px;
	border: 1.5px solid var(--bscv-line);
	border-radius: var(--bscv-radius-sm);
	background: var(--bscv-white);
	box-shadow: none;
	color: var(--bscv-black);
	font: 16px/1.4 var(--bscv-body);
}

.bscv .bscv-lead__form input:focus,
.bscv .bscv-lead__form textarea:focus {
	border-color: var(--bscv-green-700);
	box-shadow: 0 0 0 3px rgba(148, 180, 71, .25);
	outline: none;
}

.bscv-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.bscv-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 6px 0 16px;
	color: var(--bscv-muted);
	font-size: 14px;
	line-height: 1.45;
	cursor: pointer;
}

.bscv-consent input {
	flex: none;
	width: 20px;
	height: 20px;
	margin: 1px 0 0;
	accent-color: var(--bscv-green-700);
}

.bscv .bscv-form-msg {
	margin: 12px 0 0;
	font-weight: 600;
	font-size: 15px;
}

.bscv-form-msg:empty {
	display: none;
}

.bscv-form-msg.is-ok {
	color: var(--bscv-green-ink);
}

.bscv-form-msg.is-error {
	color: var(--bscv-bad);
}

.bscv .bscv-form-note {
	margin: 10px 0 0;
	color: var(--bscv-muted);
	font-size: 13px;
	text-align: center;
}

/* ---------- Conținut ---------- */

.bscv-content {
	max-width: 1040px;
	margin-inline: auto;
}

.bscv-content > section > p,
.bscv-content > footer > p {
	max-width: 78ch;
}

.bscv-list {
	display: grid;
	gap: 6px;
	margin: 0 0 1em;
	padding-left: 1.4em;
}

.bscv-list li {
	margin: 0;
	padding-left: 4px;
}

.bscv-list li::marker {
	color: var(--bscv-green-700);
	font-weight: 700;
}

.bscv-list--docs {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 40px;
}

.bscv .bscv-note {
	margin-top: 16px;
	padding: 12px 16px;
	border-left: 3px solid var(--bscv-green-700);
	background: var(--bscv-bg);
}

.bscv-formulas,
.bscv-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 20px 0;
}

.bscv-formula {
	padding: 22px;
	border: 1px solid var(--bscv-line);
	border-radius: var(--bscv-radius);
	background: var(--bscv-white);
}

.bscv .bscv-formula h3 small {
	display: block;
	margin-top: 4px;
	color: var(--bscv-muted);
	font: 600 13px/1.3 var(--bscv-body);
}

.bscv .bscv-formula__eq {
	padding: 10px 14px;
	border-radius: var(--bscv-radius-sm);
	background: var(--bscv-green-50);
	color: var(--bscv-green-ink);
	font: 700 16px/1.4 var(--bscv-head);
}

.bscv-formula p:last-child {
	margin-bottom: 0;
}

.bscv-table-wrap {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.bscv .bscv-table {
	width: 100%;
	min-width: 640px;
	margin: 0;
	border: 1px solid var(--bscv-line);
	border-collapse: separate;
	border-spacing: 0;
	border-radius: var(--bscv-radius-sm);
	overflow: hidden;
	font-size: 15px;
}

.bscv .bscv-table th,
.bscv .bscv-table td {
	padding: 11px 14px;
	border: 0;
	border-bottom: 1px solid var(--bscv-line);
	background: var(--bscv-white);
	text-align: right;
	font-variant-numeric: tabular-nums;
	vertical-align: middle;
}

.bscv .bscv-table thead th {
	background: var(--bscv-bg);
	color: var(--bscv-black);
	font: 700 13px/1.3 var(--bscv-head);
	white-space: nowrap;
}

.bscv .bscv-table th[scope="row"],
.bscv .bscv-table thead th:first-child {
	text-align: left;
}

.bscv .bscv-table tbody th {
	font-weight: 600;
}

.bscv .bscv-table tbody tr:last-child > * {
	border-bottom: 0;
}

.bscv .bscv-table tr.is-highlight > * {
	background: var(--bscv-green-50);
}

.bscv .bscv-table--specs {
	min-width: 0;
}

.bscv .bscv-table--specs td {
	text-align: left;
}

.bscv-steps {
	display: grid;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
	counter-reset: bscv-step;
}

.bscv-steps li {
	position: relative;
	margin: 0;
	padding: 0 0 20px 52px;
	counter-increment: bscv-step;
}

.bscv-steps li::before {
	content: counter(bscv-step);
	position: absolute;
	top: 0;
	left: 0;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--bscv-black);
	color: #fff;
	font: 700 15px/1 var(--bscv-head);
}

.bscv-steps li:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 38px;
	bottom: 4px;
	left: 16px;
	width: 2px;
	background: var(--bscv-line);
}

.bscv .bscv-steps h3 {
	margin: 4px 0 4px;
	font-size: 17px;
}

.bscv-steps p {
	margin: 0;
	color: var(--bscv-muted);
}

.bscv-faq {
	display: grid;
	gap: 8px;
	margin-top: 20px;
}

.bscv-faq details {
	border: 1px solid var(--bscv-line);
	border-radius: var(--bscv-radius-sm);
	background: var(--bscv-white);
}

.bscv-faq summary {
	position: relative;
	padding: 14px 48px 14px 18px;
	list-style: none;
	cursor: pointer;
}

.bscv-faq summary::-webkit-details-marker {
	display: none;
}

.bscv-faq summary::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--bscv-muted);
	border-bottom: 2px solid var(--bscv-muted);
	transform: translateY(-70%) rotate(45deg);
}

.bscv-faq details[open] summary::after {
	transform: translateY(-30%) rotate(-135deg);
}

.bscv .bscv-faq summary h3 {
	display: inline;
	margin: 0;
	font-size: 16px;
}

.bscv-faq details p {
	margin: 0;
	padding: 0 18px 16px;
	color: #3c4046;
}

.bscv-sources {
	padding-top: 24px;
	border-top: 1px solid var(--bscv-line);
	color: var(--bscv-muted);
	font-size: 14px;
}

.bscv .bscv-sources h2 {
	font-size: 18px;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
	.bscv-hero,
	.bscv-app,
	.bscv-lead {
		grid-template-columns: minmax(0, 1fr);
	}

	.bscv-result {
		position: static;
	}

	.bscv-facts {
		grid-template-columns: minmax(0, 1fr);
	}

	.bscv-mobilebar {
		position: fixed;
		right: 12px;
		bottom: calc(12px + env(safe-area-inset-bottom, 0px));
		left: 12px;
		z-index: 9990;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		padding: 12px 16px;
		border-radius: 12px;
		background: var(--bscv-black);
		color: #dfe4da;
		font-size: 14px;
		opacity: 0;
		pointer-events: none;
		transition: opacity .2s ease;
	}

	.bscv-mobilebar.is-visible {
		opacity: 1;
		pointer-events: auto;
	}

	.bscv-mobilebar b {
		color: var(--bscv-green);
		font-family: var(--bscv-head);
	}

	.bscv-mobilebar a {
		color: #fff;
		font-weight: 700;
	}
}

@media (max-width: 640px) {
	.bscv-hero__stats li {
		padding: 14px;
	}

	.bscv-hero__actions .bscv-btn {
		width: 100%;
	}

	.bscv-facts > div {
		grid-template-columns: minmax(0, 1fr);
		gap: 2px;
	}

	.bscv-step,
	.bscv-result__card {
		padding: 18px;
	}

	.bscv-segment,
	.bscv-grid-2,
	.bscv-formulas,
	.bscv-cols,
	.bscv-list--docs {
		grid-template-columns: minmax(0, 1fr);
	}

	.bscv-mobilebar a {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bscv *,
	.bscv *::before,
	.bscv *::after {
		transition: none !important;
	}
}

/* ---------- Printare: doar rezultatul ---------- */

@media print {
	body * {
		visibility: hidden !important;
	}

	.bscv-result,
	.bscv-result * {
		visibility: visible !important;
	}

	.bscv-result {
		position: absolute !important;
		top: 0;
		left: 0;
		width: 100%;
	}

	.bscv-result__card {
		border: 0;
	}

	.bscv-result__actions,
	.bscv-tip .bscv-btn,
	.bscv-mobilebar {
		display: none !important;
	}
}
