.hxyx-form-wrap,
.hxyx-review-page {
	--hxyx-bg: #ffffff;
	--hxyx-surface: #f8f6f1;
	--hxyx-text: #1c211e;
	--hxyx-muted: #5b625c;
	--hxyx-border: #d9ddd7;
	--hxyx-accent: #8f2027;
	--hxyx-accent-strong: #68151a;
	--hxyx-error: #b42318;
	--hxyx-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
	color: var(--hxyx-text);
	font: 400 16px/1.6 "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

.hxyx-form-wrap,
.hxyx-review-card,
.hxyx-404-card {
	background: var(--hxyx-bg);
	border: 1px solid var(--hxyx-border);
	border-radius: 4px;
	box-shadow: var(--hxyx-shadow);
}

.hxyx-form-wrap {
	max-width: 860px;
	margin: 0 auto;
	padding: 32px;
}

.hxyx-form-header h2,
.hxyx-404-card h1 {
	margin: 0 0 12px;
	font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 1.1;
}

.hxyx-form-header p,
.hxyx-404-card p,
.hxyx-field-hint {
	color: var(--hxyx-muted);
}

.hxyx-form {
	margin-top: 28px;
}

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

.hxyx-field,
.hxyx-field-full {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hxyx-field-full {
	grid-column: 1 / -1;
}

.hxyx-field label,
.hxyx-checkbox label {
	font-weight: 600;
}

.hxyx-field input,
.hxyx-field textarea,
.hxyx-field select {
	width: 100%;
	padding: 14px 16px;
	background: var(--hxyx-bg);
	border: 1px solid var(--hxyx-border);
	border-radius: 3px;
	color: var(--hxyx-text);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hxyx-field input:focus,
.hxyx-field textarea:focus,
.hxyx-field select:focus,
.hxyx-button:focus,
.hxyx-review-actions a:focus {
	outline: 3px solid rgba(15, 95, 156, 0.2);
	outline-offset: 2px;
	border-color: var(--hxyx-accent);
	box-shadow: 0 0 0 4px rgba(15, 95, 156, 0.12);
}

.hxyx-field input:hover,
.hxyx-field textarea:hover,
.hxyx-field select:hover {
	border-color: #b7c3cf;
}

.hxyx-field.has-error input,
.hxyx-field.has-error textarea,
.hxyx-field.has-error select,
.hxyx-field-full.has-error .hxyx-checkbox {
	border-color: var(--hxyx-error);
}

.hxyx-field textarea {
	min-height: 140px;
	resize: vertical;
}

.hxyx-field-hint,
.hxyx-form-error {
	margin: 0;
	font-size: 0.925rem;
}

.hxyx-form-error {
	color: var(--hxyx-error);
}

.hxyx-checkbox {
	display: flex;
	gap: 12px;
	padding: 16px;
	background: var(--hxyx-surface);
	border: 1px solid var(--hxyx-border);
	border-radius: 3px;
}

.hxyx-checkbox input {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin-top: 4px;
	padding: 0;
	border-radius: 2px;
	box-shadow: none;
}

.hxyx-checkbox label {
	min-width: 0;
	font-weight: 400;
}

.hxyx-form-notice {
	margin-top: 20px;
	padding: 16px 18px;
	border-radius: 3px;
}

.hxyx-form-notice-error {
	background: #fef3f2;
	border: 1px solid #fecdca;
	color: #7a271a;
}

.hxyx-form-actions,
.hxyx-review-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.hxyx-button,
.hxyx-review-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	background: var(--hxyx-accent);
	border: 1px solid transparent;
	border-radius: 3px;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.hxyx-button:hover,
.hxyx-review-actions a:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(15, 95, 156, 0.18);
}

.hxyx-review-page {
	max-width: 920px;
	margin: 24px 0;
}

.hxyx-review-card,
.hxyx-404-card {
	padding: 28px;
}

.hxyx-review-grid {
	display: grid;
	grid-template-columns: minmax(170px, 220px) 1fr;
	gap: 12px 18px;
	margin: 0;
}

.hxyx-review-grid dt {
	font-weight: 700;
}

.hxyx-review-grid dd {
	margin: 0;
	color: var(--hxyx-muted);
	word-break: break-word;
}

.hxyx-404-shell {
	padding: 48px 20px 72px;
}

.hxyx-404-card {
	max-width: 900px;
	margin: 0 auto;
}

.hxyx-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (max-width: 782px) {
	.hxyx-form-wrap,
	.hxyx-review-card,
	.hxyx-404-card {
		padding: 22px;
	}

	.hxyx-form-grid,
	.hxyx-review-grid {
		grid-template-columns: 1fr;
	}

	.hxyx-form-header h2,
	.hxyx-404-card h1 {
		font-size: 1.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hxyx-field input,
	.hxyx-field textarea,
	.hxyx-button,
	.hxyx-review-actions a {
		transition: none;
	}
}

/* W31 brand and visual refresh. */
.hxyx-v3 {
	--v3-ink: #20231f;
	--v3-muted: #62675f;
	--v3-paper: #f8f5ed;
	--v3-soft: #eef1ea;
	--v3-white: #fff;
	--v3-red: #8f2027;
	--v3-red-dark: #68151a;
	--v3-gold: #b18a3b;
	--v3-line: #d8d8cf;
	--v3-dark: #202821;
	color: var(--v3-ink);
	font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

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

.hxyx-v3-section,
.hxyx-v3-proof {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.hxyx-v3-section {
	padding-block: 104px;
}

.hxyx-v3 h1,
.hxyx-v3 h2,
.hxyx-v3 h3,
.hxyx-v3 p {
	margin-top: 0;
}

.hxyx-v3 h1,
.hxyx-v3 h2,
.hxyx-v3 h3 {
	color: var(--v3-ink);
	font-family: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
	font-weight: 500;
	letter-spacing: -.025em;
}

.hxyx-v3 h1 {
	max-width: 780px;
	margin-bottom: 24px;
	font-size: clamp(3.15rem, 4.35vw, 4.7rem);
	line-height: 1;
}

.hxyx-v3 h2 {
	max-width: 760px;
	margin-bottom: 22px;
	font-size: clamp(2.35rem, 4vw, 4.25rem);
	line-height: 1.04;
}

.hxyx-v3 h3 {
	margin-bottom: 13px;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	line-height: 1.15;
}

.hxyx-v3 p {
	color: var(--v3-muted);
	font-size: 17px;
	line-height: 1.75;
}

.hxyx-v3-kicker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px !important;
	color: var(--v3-red) !important;
	font-size: 11px !important;
	font-weight: 800;
	letter-spacing: .14em;
	line-height: 1.4 !important;
	text-transform: uppercase;
}

.hxyx-v3-kicker::before {
	width: 28px;
	height: 2px;
	background: var(--v3-red);
	content: "";
}

.hxyx-v3-lead {
	max-width: 710px;
	margin-bottom: 34px !important;
	font-size: clamp(1.08rem, 1.6vw, 1.3rem) !important;
	line-height: 1.7 !important;
}

.hxyx-v3-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.hxyx-v3-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 27px;
	border: 1px solid var(--v3-red);
	border-radius: 3px;
	background: var(--v3-red);
	color: #fff !important;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .03em;
	text-decoration: none !important;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.hxyx-v3-button:hover {
	border-color: var(--v3-red-dark);
	background: var(--v3-red-dark);
	transform: translateY(-2px);
}

.hxyx-v3-button-outline {
	background: transparent;
	color: var(--v3-red) !important;
}

.hxyx-v3-button-outline:hover {
	color: #fff !important;
}

.hxyx-v3-button-dark {
	border-color: var(--v3-dark);
	background: var(--v3-dark);
}

.hxyx-v3-button-dark:hover {
	border-color: #111510;
	background: #111510;
}

.hxyx-v3-text-link,
.hxyx-v3-card-link {
	color: var(--v3-red) !important;
	font-weight: 750;
	text-decoration: none !important;
}

.hxyx-v3-text-link {
	display: inline-block;
	margin-top: 24px;
	font-size: 14px;
}

.hxyx-v3-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	font-size: 13px;
}

.hxyx-v3-text-link:hover,
.hxyx-v3-card-link:hover {
	text-decoration: underline !important;
}

.hxyx-v3-button:focus-visible,
.hxyx-v3-text-link:focus-visible,
.hxyx-v3-card-link:focus-visible {
	outline: 3px solid rgba(177, 138, 59, .55);
	outline-offset: 4px;
}

.hxyx-v3-hero {
	padding-top: 64px;
	padding-bottom: 70px;
}

.hxyx-v3-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
	align-items: center;
	gap: 58px;
}

.hxyx-v3-hero-copy {
	position: relative;
	z-index: 1;
	padding-left: 28px;
}

.hxyx-v3-hero-copy::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1px;
	background: var(--v3-line);
	content: "";
}

.hxyx-v3-picture {
	position: relative;
	overflow: hidden;
	margin: 0;
	background: #e8e3d8;
}

.hxyx-v3-picture img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hxyx-v3-hero-picture {
	min-height: 540px;
	border-radius: 2px 2px 42px 2px;
	box-shadow: 0 26px 60px rgba(32, 35, 31, .13);
}

.hxyx-v3-hero-picture::before {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 34px;
	width: 74px;
	height: 5px;
	background: var(--v3-red);
	content: "";
}

.hxyx-v3-proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-block: 1px solid var(--v3-line);
}

.hxyx-v3-proof div {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 28px 30px;
	border-left: 1px solid var(--v3-line);
}

.hxyx-v3-proof div:first-child {
	border-left: 0;
}

.hxyx-v3-proof strong {
	color: var(--v3-ink);
	font-family: "Iowan Old Style", Baskerville, Georgia, serif;
	font-size: 20px;
	font-weight: 500;
}

.hxyx-v3-proof span {
	color: var(--v3-muted);
	font-size: 12px;
}

.hxyx-v3-section-head {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
	align-items: end;
	gap: 54px;
	margin-bottom: 50px;
}

.hxyx-v3-section-head p:last-child {
	margin-bottom: 25px;
}

.hxyx-v3-products,
.hxyx-v3-process {
	position: relative;
}

.hxyx-v3-products::before,
.hxyx-v3-process::before {
	position: absolute;
	z-index: -1;
	top: 0;
	right: 50%;
	bottom: 0;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: var(--v3-paper);
	content: "";
}

.hxyx-v3-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 15px;
}

.hxyx-v3-card {
	position: relative;
	min-height: 255px;
	padding: 30px 28px 26px;
	border: 1px solid var(--v3-line);
	background: rgba(255, 255, 255, .78);
	transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.hxyx-v3-card:hover {
	border-color: #b9b9ae;
	background: var(--v3-white);
	transform: translateY(-3px);
}

.hxyx-v3-card::after {
	position: absolute;
	top: -1px;
	right: -1px;
	width: 32px;
	height: 3px;
	background: var(--v3-gold);
	content: "";
}

.hxyx-v3-index {
	display: block;
	margin-bottom: 28px;
	color: var(--v3-red);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .14em;
}

.hxyx-v3-card p {
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.7;
}

.hxyx-v3-feature,
.hxyx-v3-packaging {
	padding-block: 92px;
}

.hxyx-v3-feature-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
	min-height: 610px;
	background: var(--v3-soft);
}

.hxyx-v3-packaging .hxyx-v3-feature-grid {
	grid-template-columns: minmax(380px, .82fr) minmax(0, 1.18fr);
	background: var(--v3-paper);
}

.hxyx-v3-feature-picture {
	min-height: 520px;
}

.hxyx-v3-feature-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(38px, 6vw, 78px);
}

.hxyx-v3-feature-copy > p:not(.hxyx-v3-kicker) {
	max-width: 590px;
}

.hxyx-v3-checks {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 26px;
	width: 100%;
	margin: 14px 0 34px;
	padding: 0;
	list-style: none;
}

.hxyx-v3-checks li {
	position: relative;
	padding: 13px 0 13px 19px;
	border-top: 1px solid rgba(32, 35, 31, .15);
	color: #444a43;
	font-size: 13px;
}

.hxyx-v3-checks li::before {
	position: absolute;
	top: 19px;
	left: 1px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--v3-red);
	content: "";
}

.hxyx-v3-route-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	border: 1px solid var(--v3-line);
}

.hxyx-v3-route-grid .hxyx-v3-card {
	min-height: 300px;
	border-width: 0 0 0 1px;
	background: var(--v3-white);
}

.hxyx-v3-route-grid .hxyx-v3-card:first-child {
	border-left: 0;
}

.hxyx-v3-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin: 0;
	padding: 1px;
	background: var(--v3-line);
	list-style: none;
}

.hxyx-v3-steps li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	min-height: 190px;
	padding: 28px 24px;
	background: var(--v3-paper);
}

.hxyx-v3-steps li > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--v3-red);
	border-radius: 50%;
	color: var(--v3-red);
	font-size: 10px;
	font-weight: 800;
}

.hxyx-v3-steps h3 {
	margin: 3px 0 10px;
	font-size: 21px;
}

.hxyx-v3-steps p {
	margin-bottom: 0;
	font-size: 13px;
	line-height: 1.65;
}

.hxyx-v3-audience {
	padding-block: 86px;
}

.hxyx-v3-audience-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-block: 1px solid var(--v3-line);
}

.hxyx-v3-audience-grid div {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 28px 24px;
	border-left: 1px solid var(--v3-line);
}

.hxyx-v3-audience-grid div:first-child {
	border-left: 0;
}

.hxyx-v3-audience-grid strong {
	font-family: "Iowan Old Style", Baskerville, Georgia, serif;
	font-size: 20px;
	font-weight: 500;
}

.hxyx-v3-audience-grid span {
	color: var(--v3-muted);
	font-size: 12px;
	line-height: 1.6;
}

.hxyx-v3-final {
	position: relative;
	width: min(1180px, calc(100% - 48px));
	margin-bottom: 94px;
	padding: 84px max(30px, 8vw);
	background: var(--v3-dark);
	text-align: center;
}

.hxyx-v3-final::before {
	position: absolute;
	top: 0;
	left: 50%;
	width: 110px;
	height: 4px;
	background: var(--v3-gold);
	content: "";
	transform: translateX(-50%);
}

.hxyx-v3-final h2,
.hxyx-v3-final p {
	max-width: 760px;
	margin-inline: auto;
	color: #fff;
}

.hxyx-v3-final .hxyx-v3-kicker {
	justify-content: center;
	color: #d9bd77 !important;
}

.hxyx-v3-final .hxyx-v3-kicker::before {
	background: #d9bd77;
}

.hxyx-v3-final .hxyx-v3-actions {
	justify-content: center;
}

.hxyx-v3-final .hxyx-v3-button-outline {
	border-color: #fff;
	color: #fff !important;
}

.hxyx-v3-inner-hero {
	padding-top: 100px;
	padding-bottom: 96px;
	border-bottom: 1px solid var(--v3-line);
}

.hxyx-v3-inner-hero h1 {
	max-width: 930px;
	font-size: clamp(3.25rem, 6vw, 6rem);
}

.hxyx-v3-visuals {
	padding-top: 86px;
	padding-bottom: 92px;
}

.hxyx-v3-media-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.hxyx-v3-media-grid-two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hxyx-v3-media-card {
	overflow: hidden;
	border: 1px solid var(--v3-line);
	background: rgba(255, 255, 255, .82);
}

.hxyx-v3-gallery-picture {
	aspect-ratio: 3 / 2;
}

.hxyx-v3-gallery-picture img {
	height: 100% !important;
}

.hxyx-v3-media-copy {
	padding: 26px 28px 30px;
}

.hxyx-v3-media-copy > span {
	display: block;
	margin-bottom: 12px;
	color: var(--v3-red);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.hxyx-v3-media-copy h3 {
	margin-bottom: 10px;
}

.hxyx-v3-media-copy p {
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.7;
}

@media (max-width: 1000px) {
	.hxyx-v3-section {
		padding-block: 78px;
	}

	.hxyx-v3-hero-grid,
	.hxyx-v3-feature-grid,
	.hxyx-v3-packaging .hxyx-v3-feature-grid {
		grid-template-columns: 1fr;
	}

	.hxyx-v3-hero-picture {
		min-height: 500px;
	}

	.hxyx-v3-feature-picture {
		min-height: 430px;
	}

	.hxyx-v3-packaging .hxyx-v3-feature-picture {
		order: -1;
	}

	.hxyx-v3-card-grid,
	.hxyx-v3-steps,
	.hxyx-v3-media-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hxyx-v3-audience-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hxyx-v3-audience-grid div:nth-child(3) {
		border-top: 1px solid var(--v3-line);
		border-left: 0;
	}

	.hxyx-v3-audience-grid div:nth-child(4) {
		border-top: 1px solid var(--v3-line);
	}
}

@media (max-width: 720px) {
	.hxyx-v3-section,
	.hxyx-v3-proof,
	.hxyx-v3-final {
		width: min(100% - 32px, 1180px);
	}

	.hxyx-v3-section {
		padding-block: 58px;
	}

	.hxyx-v3-hero {
		padding-top: 28px;
	}

	.hxyx-v3-hero-picture {
		order: -1;
		min-height: 0;
		aspect-ratio: 3 / 2;
		border-radius: 2px 2px 26px 2px;
	}

	.hxyx-v3-hero-picture img {
		height: 100% !important;
	}

	.hxyx-v3-hero-copy {
		padding-left: 0;
	}

	.hxyx-v3-hero-copy::before {
		display: none;
	}

	.hxyx-v3 h1 {
		font-size: clamp(2.4rem, 11vw, 3.3rem);
	}

	.hxyx-v3 h2 {
		font-size: clamp(2.1rem, 10vw, 3rem);
	}

	.hxyx-v3-actions {
		flex-direction: column;
	}

	.hxyx-v3-button {
		width: 100%;
	}

	.hxyx-v3-proof,
	.hxyx-v3-section-head,
	.hxyx-v3-card-grid,
	.hxyx-v3-route-grid,
	.hxyx-v3-steps,
	.hxyx-v3-audience-grid,
	.hxyx-v3-media-grid,
	.hxyx-v3-media-grid-two {
		grid-template-columns: 1fr;
	}

	.hxyx-v3-proof div,
	.hxyx-v3-proof div:first-child,
	.hxyx-v3-audience-grid div,
	.hxyx-v3-audience-grid div:first-child,
	.hxyx-v3-audience-grid div:nth-child(3),
	.hxyx-v3-audience-grid div:nth-child(4) {
		border-top: 1px solid var(--v3-line);
		border-left: 0;
	}

	.hxyx-v3-proof div:first-child,
	.hxyx-v3-audience-grid div:first-child {
		border-top: 0;
	}

	.hxyx-v3-section-head {
		gap: 0;
		margin-bottom: 32px;
	}

	.hxyx-v3-card {
		min-height: 0;
	}

	.hxyx-v3-route-grid .hxyx-v3-card,
	.hxyx-v3-route-grid .hxyx-v3-card:first-child {
		min-height: 0;
		border-top: 1px solid var(--v3-line);
		border-left: 0;
	}

	.hxyx-v3-route-grid .hxyx-v3-card:first-child {
		border-top: 0;
	}

	.hxyx-v3-feature,
	.hxyx-v3-packaging {
		padding-block: 36px;
	}

	.hxyx-v3-feature-picture {
		min-height: 290px;
	}

	.hxyx-v3-feature-copy {
		padding: 34px 24px 40px;
	}

	.hxyx-v3-checks {
		grid-template-columns: 1fr;
	}

	.hxyx-v3-steps li {
		min-height: 0;
	}

	.hxyx-v3-final {
		margin-bottom: 50px;
		padding: 62px 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hxyx-v3-button,
	.hxyx-v3-card {
		transition: none;
	}
}

/* W32 review fixes: sticky navigation state and native select readability. */
.ast-primary-sticky-header-active .main-header-menu > .current-menu-item > .menu-link,
.ast-primary-sticky-header-active .main-header-menu > .current_page_item > .menu-link {
	position: relative;
	text-decoration: none !important;
}

.ast-primary-sticky-header-active .main-header-menu > .current-menu-item > .menu-link::after,
.ast-primary-sticky-header-active .main-header-menu > .current_page_item > .menu-link::after {
	top: auto !important;
	bottom: 0 !important;
	height: 1px !important;
	transform: none !important;
}

.hxyx-field select {
	box-sizing: border-box;
	height: auto !important;
	min-height: 54px;
	line-height: 1.35 !important;
	overflow: visible;
}

/* W33 SEO/GEO content patterns: extractable comparison and FAQ answers. */
.hxyx-v3-table-wrap {
	margin-top: 42px;
	overflow-x: auto;
	border: 1px solid var(--v3-line);
	background: #fff;
}

.hxyx-v3-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
	font-size: 0.94rem;
}

.hxyx-v3-table caption {
	padding: 18px 20px;
	font-weight: 700;
	text-align: left;
	color: var(--v3-ink);
	background: var(--v3-cream);
}

.hxyx-v3-table th,
.hxyx-v3-table td {
	padding: 18px 20px;
	border-top: 1px solid var(--v3-line);
	text-align: left;
	vertical-align: top;
}

.hxyx-v3-table thead th,
.hxyx-v3-table tbody th {
	font-weight: 700;
	color: var(--v3-ink);
}

.hxyx-v3-faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.hxyx-v3-faq-list details {
	padding: 0 22px;
	border: 1px solid var(--v3-line);
	background: #fff;
}

.hxyx-v3-faq-list summary {
	padding: 20px 30px 20px 0;
	font-weight: 700;
	line-height: 1.4;
	color: var(--v3-ink);
	cursor: pointer;
}

.hxyx-v3-faq-list p {
	margin: -2px 0 22px;
	color: var(--v3-muted);
}

@media (max-width: 720px) {
	.hxyx-v3-faq-list {
		grid-template-columns: 1fr;
	}
}
