/* GS1 Transitional Format Validator — tool styles. Brand palette matches the prototype. */
:root {
	--bcg-gs1tfv-brand: #130231;
	--bcg-gs1tfv-brand-90: rgba(19, 2, 49, 0.90);
	--bcg-gs1tfv-brand-12: rgba(19, 2, 49, 0.12);
	--bcg-gs1tfv-brand-06: rgba(19, 2, 49, 0.06);
	--bcg-gs1tfv-brand-03: rgba(19, 2, 49, 0.03);
	--bcg-gs1tfv-gray-900: #1c1c22;
	--bcg-gs1tfv-gray-700: #4a4a55;
	--bcg-gs1tfv-gray-500: #757582;
	--bcg-gs1tfv-gray-300: #c9c9d0;
	--bcg-gs1tfv-gray-200: #e2e2e8;
	--bcg-gs1tfv-gray-100: #eef0f3;
	--bcg-gs1tfv-gray-50: #f6f7f9;
	--bcg-gs1tfv-bg: #ffffff;
	--bcg-gs1tfv-pass: #2f8a3a;
	--bcg-gs1tfv-pass-bg: #e9f6ec;
	--bcg-gs1tfv-fail: #b32a2a;
	--bcg-gs1tfv-fail-bg: #fbeaea;
	--bcg-gs1tfv-warn: #a26b00;
	--bcg-gs1tfv-warn-bg: #fdf3dd;
	--bcg-gs1tfv-radius: 6px;
	--bcg-gs1tfv-radius-lg: 10px;
	--bcg-gs1tfv-shadow-sm: 0 1px 2px rgba(19, 2, 49, 0.05);
	--bcg-gs1tfv-shadow-md: 0 4px 16px rgba(19, 2, 49, 0.08);
}

.bcg-gs1tfv, .bcg-gs1tfv * {
	box-sizing: border-box;
}

/* Root: explicit, !important on inheritable properties so theme typography
   can't bleed in and override us mid-component. No outer chrome — the tool
   sits naturally inside the theme's content area. */
.bcg-gs1tfv {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
	font-size: 16px !important;
	line-height: 1.55 !important;
	color: var(--bcg-gs1tfv-gray-900) !important;
	margin: 0;
}
.bcg-gs1tfv p,
.bcg-gs1tfv h1,
.bcg-gs1tfv h2,
.bcg-gs1tfv label,
.bcg-gs1tfv span,
.bcg-gs1tfv div,
.bcg-gs1tfv a,
.bcg-gs1tfv strong {
	font-family: inherit;
}
.bcg-gs1tfv h1,
.bcg-gs1tfv h2 {
	margin: 0;
	padding: 0;
	letter-spacing: normal;
	text-transform: none;
}

.bcg-gs1tfv-banner {
	padding: 12px 18px;
	border-radius: var(--bcg-gs1tfv-radius);
	font-size: 13px;
	margin-bottom: 18px;
}
.bcg-gs1tfv-banner--free {
	background: var(--bcg-gs1tfv-warn-bg);
	border: 1px solid rgba(162, 107, 0, 0.35);
	color: var(--bcg-gs1tfv-warn);
}
.bcg-gs1tfv-banner--free strong { display: inline-block; margin-right: 6px; }

/* ── TITLE BAND ─────────────────────────────────────────────── */
.bcg-gs1tfv-titleband {
	background: var(--bcg-gs1tfv-brand-03);
	border: 1px solid var(--bcg-gs1tfv-gray-200);
	border-radius: var(--bcg-gs1tfv-radius-lg);
	padding: 28px;
	margin-bottom: 24px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.bcg-gs1tfv-titleband__text { flex: 1 1 480px; min-width: 0; }
.bcg-gs1tfv-titleband h1 {
	font-size: 29px !important;
	font-weight: 700 !important;
	letter-spacing: -0.01em;
	color: var(--bcg-gs1tfv-brand) !important;
	margin: 0 0 8px !important;
	line-height: 1.2;
	font-family: inherit;
}
.bcg-gs1tfv-lede {
	font-size: 16px !important;
	color: var(--bcg-gs1tfv-gray-700) !important;
	max-width: 780px;
	margin: 0 !important;
	font-family: inherit;
	font-weight: 400;
}

.bcg-gs1tfv-balance {
	background: var(--bcg-gs1tfv-bg);
	border: 1px solid var(--bcg-gs1tfv-gray-200);
	border-radius: var(--bcg-gs1tfv-radius);
	padding: 8px 14px;
	display: flex;
	align-items: baseline;
	gap: 6px;
}
.bcg-gs1tfv-balance__count {
	font-size: 20px;
	font-weight: 700;
	color: var(--bcg-gs1tfv-brand);
}
.bcg-gs1tfv-balance__label {
	font-size: 12px;
	color: var(--bcg-gs1tfv-gray-500);
}

.bcg-gs1tfv-main {
	display: grid;
	grid-template-columns: 360px minmax(0, 1fr);
	gap: 24px;
}
@media (max-width: 960px) {
	.bcg-gs1tfv-main { grid-template-columns: 1fr; }
}
.bcg-gs1tfv-left { display: flex; flex-direction: column; gap: 20px; }

.bcg-gs1tfv-panel {
	background: var(--bcg-gs1tfv-bg);
	border: 1px solid var(--bcg-gs1tfv-gray-200);
	border-radius: var(--bcg-gs1tfv-radius-lg);
	box-shadow: var(--bcg-gs1tfv-shadow-sm);
}
.bcg-gs1tfv-panel__header {
	padding: 16px 18px 12px;
	border-bottom: 1px solid var(--bcg-gs1tfv-gray-200);
}
.bcg-gs1tfv-panel__header h2 {
	font-size: 15px !important;
	font-weight: 600 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	color: var(--bcg-gs1tfv-gray-500) !important;
	margin: 0 !important;
}
.bcg-gs1tfv-panel__body { padding: 18px; }
.bcg-gs1tfv-stage-wrap { padding: 14px; }

.bcg-gs1tfv-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 14px;
}
.bcg-gs1tfv-field label {
	font-size: 14px;
	font-weight: 500;
	color: var(--bcg-gs1tfv-gray-700);
}
.bcg-gs1tfv-hint {
	font-size: 13px;
	color: var(--bcg-gs1tfv-gray-500);
}

.bcg-gs1tfv-field input[type="number"],
.bcg-gs1tfv-field input[type="file"],
.bcg-gs1tfv-field select {
	width: 100%;
	font: inherit;
	font-size: 16px;
	padding: 9px 12px;
	border: 1px solid var(--bcg-gs1tfv-gray-300);
	border-radius: var(--bcg-gs1tfv-radius);
	background: var(--bcg-gs1tfv-bg);
	color: var(--bcg-gs1tfv-gray-900);
}
.bcg-gs1tfv-field select:focus { outline: none; border-color: var(--bcg-gs1tfv-brand); box-shadow: 0 0 0 3px var(--bcg-gs1tfv-brand-12); }

/* Advanced settings: subtle collapsible below the Analyze button. */
.bcg-gs1tfv-advanced {
	margin-top: 14px;
	border-top: 1px dashed var(--bcg-gs1tfv-gray-200);
	padding-top: 12px;
}
.bcg-gs1tfv-advanced > summary {
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--bcg-gs1tfv-gray-500);
	list-style: none;
	user-select: none;
	padding: 4px 0;
}
.bcg-gs1tfv-advanced > summary::-webkit-details-marker { display: none; }
.bcg-gs1tfv-advanced > summary::before {
	content: '▸';
	display: inline-block;
	margin-right: 6px;
	transition: transform 120ms;
	color: var(--bcg-gs1tfv-gray-500);
}
.bcg-gs1tfv-advanced[open] > summary::before { transform: rotate(90deg); }
.bcg-gs1tfv-advanced > summary:hover { color: var(--bcg-gs1tfv-gray-700); }
.bcg-gs1tfv-advanced__body { padding-top: 10px; }
.bcg-gs1tfv-advanced__body .bcg-gs1tfv-field:last-child { margin-bottom: 0; }
.bcg-gs1tfv-field input[type="file"] { padding: 7px 10px; cursor: pointer; }
.bcg-gs1tfv-field input[type="file"]::file-selector-button {
	background: var(--bcg-gs1tfv-brand);
	color: #fff;
	border: 0;
	border-radius: 4px;
	padding: 6px 12px;
	margin-right: 10px;
	font: inherit;
	font-weight: 500;
	font-size: 13px;
	cursor: pointer;
}
.bcg-gs1tfv-field input:focus {
	outline: none;
	border-color: var(--bcg-gs1tfv-brand);
	box-shadow: 0 0 0 3px var(--bcg-gs1tfv-brand-12);
}

.bcg-gs1tfv-btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 11px 16px !important;
	background: var(--bcg-gs1tfv-brand) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: var(--bcg-gs1tfv-radius) !important;
	font-family: inherit !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	line-height: 1.2 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	cursor: pointer;
	box-shadow: none;
	text-decoration: none;
	transition: background 120ms;
}
.bcg-gs1tfv-btn:hover  { background: var(--bcg-gs1tfv-brand-90) !important; color: #fff !important; }
.bcg-gs1tfv-btn:focus  { background: var(--bcg-gs1tfv-brand-90) !important; color: #fff !important; outline: 3px solid var(--bcg-gs1tfv-brand-12); outline-offset: 1px; }
.bcg-gs1tfv-btn:disabled { background: var(--bcg-gs1tfv-gray-300) !important; color: var(--bcg-gs1tfv-gray-500) !important; cursor: not-allowed; }

.bcg-gs1tfv-stage {
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: repeating-conic-gradient(var(--bcg-gs1tfv-gray-50) 0% 25%, #fff 0% 50%) 0 0 / 16px 16px;
	border-radius: var(--bcg-gs1tfv-radius-lg);
	overflow: auto;
	padding: 18px;
}
.bcg-gs1tfv-empty {
	color: var(--bcg-gs1tfv-gray-500);
	text-align: center;
	font-size: 16px;
	padding: 36px;
}

/* Indeterminate spinner — hidden by default, sits above the placeholder text
   when `.bcg-gs1tfv-stage.is-loading` is set, so the user still sees the
   "Upload artwork to preview..." copy with a clear "working on it" cue. */
.bcg-gs1tfv-spinner {
	display: none;
	width: 36px;
	height: 36px;
	margin: 0 auto 14px;
	border: 3px solid var(--bcg-gs1tfv-brand-12);
	border-top-color: var(--bcg-gs1tfv-brand);
	border-radius: 50%;
	animation: bcg-gs1tfv-spin 0.9s linear infinite;
}
.bcg-gs1tfv-stage.is-loading .bcg-gs1tfv-spinner { display: block; }
@keyframes bcg-gs1tfv-spin { to { transform: rotate(360deg); } }
.bcg-gs1tfv-canvas-wrap { display: inline-block; background: #fff; box-shadow: var(--bcg-gs1tfv-shadow-md); line-height: 0; max-width: 100%; }
.bcg-gs1tfv-canvas-wrap canvas,
#bcg-gs1tfv-page-canvas { display: block; max-width: 100%; height: auto; }

.bcg-gs1tfv-verdict {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border-radius: var(--bcg-gs1tfv-radius);
	border: 1px solid var(--bcg-gs1tfv-gray-200);
	margin-bottom: 14px;
}
.bcg-gs1tfv-verdict.is-pass { background: var(--bcg-gs1tfv-pass-bg); border-color: rgba(47, 138, 58, 0.35); }
.bcg-gs1tfv-verdict.is-fail { background: var(--bcg-gs1tfv-fail-bg); border-color: rgba(179, 42, 42, 0.35); }
.bcg-gs1tfv-verdict.is-warn { background: var(--bcg-gs1tfv-warn-bg); border-color: rgba(162, 107, 0, 0.35); }
.bcg-gs1tfv-verdict__icon {
	width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; color: #fff; font-size: 14px;
}
.bcg-gs1tfv-verdict.is-pass .bcg-gs1tfv-verdict__icon { background: var(--bcg-gs1tfv-pass); }
.bcg-gs1tfv-verdict.is-fail .bcg-gs1tfv-verdict__icon { background: var(--bcg-gs1tfv-fail); }
.bcg-gs1tfv-verdict.is-warn .bcg-gs1tfv-verdict__icon { background: var(--bcg-gs1tfv-warn); }
.bcg-gs1tfv-verdict__label { font-weight: 700; font-size: 18px; }
.bcg-gs1tfv-verdict.is-pass .bcg-gs1tfv-verdict__label { color: var(--bcg-gs1tfv-pass); }
.bcg-gs1tfv-verdict.is-fail .bcg-gs1tfv-verdict__label { color: var(--bcg-gs1tfv-fail); }
.bcg-gs1tfv-verdict.is-warn .bcg-gs1tfv-verdict__label { color: var(--bcg-gs1tfv-warn); }
.bcg-gs1tfv-verdict__meta { font-size: 14px; color: var(--bcg-gs1tfv-gray-700); }

.bcg-gs1tfv-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	padding: 12px 0;
	border-top: 1px solid var(--bcg-gs1tfv-gray-200);
}
.bcg-gs1tfv-row:first-child { border-top: 0; }
.bcg-gs1tfv-row .bcg-gs1tfv-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Pair rows stack vertically (single column) so the long "Measured against …"
   text doesn't collide with the badge or get squeezed to one char per line. */
.bcg-gs1tfv-row--pair { grid-template-columns: 1fr; gap: 6px; }
.bcg-gs1tfv-row--pair .bcg-gs1tfv-head { justify-content: space-between; }
.bcg-gs1tfv-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
}
.bcg-gs1tfv-badge--linear { background: var(--bcg-gs1tfv-brand-06); color: var(--bcg-gs1tfv-brand); border: 1px solid var(--bcg-gs1tfv-brand-12); }
.bcg-gs1tfv-badge--twod   { background: var(--bcg-gs1tfv-gray-100); color: var(--bcg-gs1tfv-gray-700); border: 1px solid var(--bcg-gs1tfv-gray-200); }
.bcg-gs1tfv-badge--pass   { background: var(--bcg-gs1tfv-pass-bg); color: var(--bcg-gs1tfv-pass); border: 1px solid rgba(47, 138, 58, 0.3); }
.bcg-gs1tfv-badge--fail   { background: var(--bcg-gs1tfv-fail-bg); color: var(--bcg-gs1tfv-fail); border: 1px solid rgba(179, 42, 42, 0.3); }
.bcg-gs1tfv-payload {
	font-family: ui-monospace, "SF Mono", Menlo, monospace;
	font-size: 14px;
	color: var(--bcg-gs1tfv-gray-900);
	word-break: break-all;
	grid-column: 1 / -1;
	background: var(--bcg-gs1tfv-gray-50);
	padding: 8px 10px;
	border-radius: 4px;
	margin-top: 4px;
}
.bcg-gs1tfv-meta { font-size: 13px; color: var(--bcg-gs1tfv-gray-500); }

.bcg-gs1tfv-errbox {
	background: var(--bcg-gs1tfv-fail-bg);
	border: 1px solid rgba(179, 42, 42, 0.3);
	color: var(--bcg-gs1tfv-gray-900);
	padding: 12px 14px;
	border-radius: var(--bcg-gs1tfv-radius);
	margin-bottom: 14px;
	font-size: 13px;
}
.bcg-gs1tfv-errbox strong { color: var(--bcg-gs1tfv-fail); display: block; margin-bottom: 4px; }

.bcg-gs1tfv-log-details {
	margin-top: 24px;
	border: 1px solid var(--bcg-gs1tfv-gray-200);
	border-radius: var(--bcg-gs1tfv-radius-lg);
	background: var(--bcg-gs1tfv-gray-50);
	overflow: hidden;
}
.bcg-gs1tfv-log-details summary {
	cursor: pointer;
	padding: 10px 16px;
	font-size: 12px;
	font-weight: 500;
	color: var(--bcg-gs1tfv-gray-700);
}
.bcg-gs1tfv-log {
	max-height: 200px;
	overflow: auto;
	padding: 8px 16px 14px;
	font-family: ui-monospace, monospace;
	font-size: 11px;
	color: var(--bcg-gs1tfv-gray-700);
	background: var(--bcg-gs1tfv-bg);
	border-top: 1px solid var(--bcg-gs1tfv-gray-200);
}
.bcg-gs1tfv-log .is-err { color: var(--bcg-gs1tfv-fail); }
.bcg-gs1tfv-log .is-ok  { color: var(--bcg-gs1tfv-pass); }

/* Subtle "small" line under the empty-state copy in the Preview panel. */
.bcg-gs1tfv-empty__small {
	display: block;
	font-size: 12px;
	color: var(--bcg-gs1tfv-gray-500);
	margin-top: 6px;
}

/* ── HERO (logged-out view) ──────────────────────────────────────── */
.bcg-gs1tfv-hero {
	background:
		radial-gradient(circle at 90% 10%, rgba(19, 2, 49, 0.05), transparent 50%),
		var(--bcg-gs1tfv-bg);
	border: 1px solid var(--bcg-gs1tfv-gray-200);
	border-radius: var(--bcg-gs1tfv-radius-lg);
	padding: 40px 32px 32px;
	margin-bottom: 28px;
}
.bcg-gs1tfv-hero__row {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) 440px;
	gap: 40px;
	align-items: start;
}
@media (max-width: 900px) {
	.bcg-gs1tfv-hero__row { grid-template-columns: 1fr; gap: 28px; }
	.bcg-gs1tfv-hero      { padding: 28px 20px; }
}
.bcg-gs1tfv-eyebrow {
	display: inline-block;
	padding: 4px 12px;
	background: var(--bcg-gs1tfv-brand-06);
	color: var(--bcg-gs1tfv-brand);
	border: 1px solid var(--bcg-gs1tfv-brand-12);
	border-radius: 999px;
	font-size: 12px !important;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.bcg-gs1tfv-hero__title {
	font-size: 36px !important;
	font-weight: 800 !important;
	line-height: 1.12 !important;
	letter-spacing: -0.02em;
	color: var(--bcg-gs1tfv-brand) !important;
	margin: 0 0 16px !important;
	font-family: inherit;
}
.bcg-gs1tfv-hero__title em {
	font-style: normal;
	background: linear-gradient(transparent 65%, rgba(214, 59, 31, 0.18) 65%);
	padding: 0 4px;
}
.bcg-gs1tfv-hero__lede {
	font-size: 19px !important;
	color: var(--bcg-gs1tfv-gray-700) !important;
	margin: 0 0 24px !important;
	max-width: 560px;
	font-weight: 400;
	font-family: inherit;
}
.bcg-gs1tfv-benefits {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 0 28px !important;
	display: grid;
	gap: 10px;
}
.bcg-gs1tfv-benefits li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: var(--bcg-gs1tfv-gray-900);
}
.bcg-gs1tfv-benefits li::before {
	content: "";
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	background: var(--bcg-gs1tfv-brand);
	mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.5 11.5L3 8l1.4-1.4L6.5 8.7l5.1-5.1L13 5z" fill="black"/></svg>') no-repeat center / contain;
	-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.5 11.5L3 8l1.4-1.4L6.5 8.7l5.1-5.1L13 5z" fill="black"/></svg>') no-repeat center / contain;
	margin-top: 4px;
}
.bcg-gs1tfv-hero__illo {
	margin-top: 8px;
	max-width: 520px;
}
.bcg-gs1tfv-hero__illo svg { width: 100%; height: auto; display: block; }

/* ── SIGN-IN CARD (inside hero on the validator page) ─────────────── */
.bcg-gs1tfv-signin-card {
	background: #fff;
	border: 1px solid var(--bcg-gs1tfv-gray-200);
	border-radius: var(--bcg-gs1tfv-radius-lg);
	padding: 28px 28px 24px;
	box-shadow: var(--bcg-gs1tfv-shadow-md);
}
.bcg-gs1tfv-signin-card__title {
	font-size: 22px !important;
	font-weight: 700 !important;
	color: var(--bcg-gs1tfv-brand) !important;
	letter-spacing: -0.01em;
	margin: 0 0 8px !important;
	font-family: inherit;
}
.bcg-gs1tfv-signin-card__desc {
	font-size: 14px !important;
	color: var(--bcg-gs1tfv-gray-700) !important;
	margin: 0 0 18px !important;
	font-family: inherit;
}
.bcg-gs1tfv-signin-card__form .bcg-gs1tfv-field { margin-bottom: 16px; }
.bcg-gs1tfv-signin-card input[type="email"] {
	width: 100%;
	font: inherit;
	font-size: 15px;
	padding: 11px 14px;
	border: 1px solid var(--bcg-gs1tfv-gray-300);
	border-radius: var(--bcg-gs1tfv-radius);
	background: #fff;
	color: var(--bcg-gs1tfv-gray-900);
}
.bcg-gs1tfv-signin-card input[type="email"]:focus {
	outline: none;
	border-color: var(--bcg-gs1tfv-brand);
	box-shadow: 0 0 0 3px var(--bcg-gs1tfv-brand-12);
}
.bcg-gs1tfv-btn--full { width: 100%; }
/* Sign-in button inside the hero card needs to feel a bit beefier than the
   default tool .btn — bump font-size and padding here only. */
.bcg-gs1tfv-signin-card .bcg-gs1tfv-btn {
	font-size: 17px !important;
	padding: 14px 20px !important;
}
.bcg-gs1tfv-signin-card__foot {
	font-size: 13px;
	color: var(--bcg-gs1tfv-gray-500);
	margin-top: 16px !important;
	padding-top: 16px;
	border-top: 1px solid var(--bcg-gs1tfv-gray-100);
}
.bcg-gs1tfv-signin-card__foot strong { color: var(--bcg-gs1tfv-gray-900); }
.bcg-gs1tfv-login__captcha { margin-bottom: 14px; min-height: 65px; }
/* `white-space: pre-line` lets us deliver a multi-line success message via
   textContent without resorting to innerHTML. */
.bcg-gs1tfv-login__msg {
	margin-top: 12px;
	font-size: 13px;
	min-height: 1.2em;
	white-space: pre-line;
	line-height: 1.45;
}
.bcg-gs1tfv-login__msg.is-success { color: var(--bcg-gs1tfv-pass); }
.bcg-gs1tfv-login__msg.is-error   { color: var(--bcg-gs1tfv-fail); }

/* ── SECTION HEADS (How It Works / Related Services) ──────────────── */
.bcg-gs1tfv-section,
.bcg-gs1tfv-related {
	margin-top: 36px;
}
.bcg-gs1tfv-related {
	background: var(--bcg-gs1tfv-gray-50);
	border-top: 1px solid var(--bcg-gs1tfv-gray-200);
	border-bottom: 1px solid var(--bcg-gs1tfv-gray-200);
	border-radius: var(--bcg-gs1tfv-radius-lg);
	padding: 36px 24px;
}
.bcg-gs1tfv-section__head {
	max-width: 720px;
	margin: 0 auto 28px;
	text-align: center;
}
.bcg-gs1tfv-section__eyebrow {
	display: inline-block;
	font-size: 15px !important;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--bcg-gs1tfv-brand);
	margin-bottom: 8px;
}
.bcg-gs1tfv-section__head h2 {
	font-size: 27px !important;
	font-weight: 700 !important;
	color: var(--bcg-gs1tfv-gray-900) !important;
	letter-spacing: -0.01em;
	margin: 0 0 8px !important;
	font-family: inherit;
}
.bcg-gs1tfv-section__head p {
	font-size: 18px !important;
	color: var(--bcg-gs1tfv-gray-700) !important;
	margin: 0 !important;
	font-family: inherit;
}

/* ── HOW IT WORKS (3 steps) ───────────────────────────────────────── */
.bcg-gs1tfv-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 800px) {
	.bcg-gs1tfv-steps { grid-template-columns: 1fr; }
}
.bcg-gs1tfv-step {
	background: #fff;
	border: 1px solid var(--bcg-gs1tfv-gray-200);
	border-radius: var(--bcg-gs1tfv-radius-lg);
	padding: 22px;
}
.bcg-gs1tfv-step__num {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: var(--bcg-gs1tfv-brand);
	background: var(--bcg-gs1tfv-brand-06);
	padding: 2px 8px;
	border-radius: 999px;
	margin-bottom: 10px;
}
.bcg-gs1tfv-step__icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: var(--bcg-gs1tfv-brand-06);
	color: var(--bcg-gs1tfv-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}
.bcg-gs1tfv-step h3 {
	font-size: 18px !important;
	font-weight: 700 !important;
	margin: 0 0 6px !important;
	color: var(--bcg-gs1tfv-gray-900) !important;
	font-family: inherit;
}
.bcg-gs1tfv-step p {
	font-size: 17px !important;
	color: var(--bcg-gs1tfv-gray-700) !important;
	margin: 0 !important;
	font-family: inherit;
}

/* ── TIPS STRIP (logged-in view, under the tool) ──────────────────── */
.bcg-gs1tfv-tips {
	margin-top: 24px;
	padding: 18px 22px;
	background: var(--bcg-gs1tfv-brand-03);
	border: 1px solid var(--bcg-gs1tfv-gray-200);
	border-radius: var(--bcg-gs1tfv-radius-lg);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 800px) {
	.bcg-gs1tfv-tips { grid-template-columns: 1fr; }
}
.bcg-gs1tfv-tip h4 {
	font-size: 16px !important;
	font-weight: 700 !important;
	margin: 0 0 4px !important;
	color: var(--bcg-gs1tfv-brand) !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	font-family: inherit;
}
.bcg-gs1tfv-tip p {
	font-size: 16px !important;
	color: var(--bcg-gs1tfv-gray-700) !important;
	margin: 0 !important;
	font-family: inherit;
}

/* ── RELATED SERVICES (logged-in view, bottom) ────────────────────── */
.bcg-gs1tfv-related__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	max-width: 1000px;
	margin: 0 auto;
}
@media (max-width: 800px) {
	.bcg-gs1tfv-related__grid { grid-template-columns: 1fr; }
}
.bcg-gs1tfv-related__card {
	background: #fff !important;
	border: 1px solid var(--bcg-gs1tfv-gray-200);
	border-radius: var(--bcg-gs1tfv-radius-lg);
	padding: 20px 20px 18px;
	transition: border-color 120ms, transform 120ms;
	display: flex !important;
	flex-direction: column;
	gap: 8px;
	text-decoration: none !important;
	color: var(--bcg-gs1tfv-gray-900) !important;
	box-shadow: none;
}
.bcg-gs1tfv-related__card:hover {
	border-color: var(--bcg-gs1tfv-brand);
	transform: translateY(-2px);
	text-decoration: none !important;
	color: var(--bcg-gs1tfv-gray-900) !important;
}
.bcg-gs1tfv-related__icon {
	width: 36px;
	height: 36px;
	background: var(--bcg-gs1tfv-brand-06);
	color: var(--bcg-gs1tfv-brand);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
}
.bcg-gs1tfv-related__card h3 {
	font-size: 18px !important;
	font-weight: 700 !important;
	margin: 0 !important;
	color: var(--bcg-gs1tfv-gray-900) !important;
	font-family: inherit;
}
.bcg-gs1tfv-related__card p {
	font-size: 16px !important;
	color: var(--bcg-gs1tfv-gray-700) !important;
	margin: 0 !important;
	font-family: inherit;
}
.bcg-gs1tfv-related__more {
	font-size: 16px;
	font-weight: 600;
	color: var(--bcg-gs1tfv-brand);
	margin-top: auto;
	padding-top: 8px;
}

/* "Please Note" callout below the tool — sits where the diagnostic log used
   to live (same shaded look, no collapse). */
.bcg-gs1tfv-note {
	margin-top: 24px;
	border: 1px solid var(--bcg-gs1tfv-gray-200);
	border-radius: var(--bcg-gs1tfv-radius-lg);
	background: var(--bcg-gs1tfv-gray-50);
	padding: 16px 20px;
	font-size: 16px;
	color: var(--bcg-gs1tfv-gray-700);
	line-height: 1.5;
}
.bcg-gs1tfv-note strong { color: var(--bcg-gs1tfv-gray-900); margin-right: 4px; }
