
.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em .5em 1em;
	padding: .2em 1em;
	border: 2px solid #00a0d2;
}

.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900;
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232;
	/* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d;
	/* Dark Gray 800 */
	opacity: .75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: "";
	position: absolute;
	background-color: #fbfbfc;
	/* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	
	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}
	
	50% {
		opacity: 1;
	}
	
	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: .5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}

/*
  Visual refresh (design-only):
  - Cleaner typography and spacing
  - Softer, more "product" style cards
  - Form fields + radio options styled like a professional landing
  - Keeps existing classes and functionality intact
*/
:root {
	--bg: #fff;
	--tint: #fff3f3;
	--panel: #f7f8fc;
	--card: #fff;
	--ink: #101828;
	--muted: #475467;
	--border: rgba(16, 24, 40, .1);
	--primary: #e10600;
	--primary-ink: #fff;
	--ring: rgba(225, 6, 0, .18);
	--radius: 18px;
	--shadow: 0 18px 45px rgba(16, 24, 40, .1);
	--shadow-soft: 0 10px 24px rgba(16, 24, 40, .08);
}

html, body {
	background: var(--bg);
	color: var(--ink);
}

.fhm-wrap {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 22px;
}

/* Hero */
.fhm-hero.light {
	background: linear-gradient(180deg, var(--tint) 0%, #fff 85%);
	color: var(--ink);
	padding: 56px 0;
}

.fhm-hero .fhm-wrap {
	display: grid;
	gap: 34px;
	grid-template-columns: 1.05fr 1fr;
	align-items: center;
}

.fhm-hero h1 {
	font-size: 52px;
	letter-spacing: -.02em;
	line-height: 1.05;
	margin: 10px 0 14px;
}

.fhm-hero .lead {
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0 0 16px;
}

.fhm-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid rgba(225, 6, 0, .18);
	color: #7a0e0a;
	padding: 7px 12px;
	border-radius: 999px;
	font-weight: 600;
	box-shadow: 0 6px 18px rgba(225, 6, 0, .08);
}

.fhm-bullets {
	list-style: none;
	padding: 0;
	margin: 18px 0 0;
	display: grid;
	gap: 8px;
	color: var(--ink);
}

.fhm-bullets li {
	color: var(--muted);
}

.fhm-hero-quiz .fhm-quiz-box {
	background: rgba(255, 255, 255, .92);
	border: 1px solid var(--border);
	border-radius: 22px;
	box-shadow: var(--shadow);
	padding: 22px;
	position: relative;
	min-height: 560px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	backdrop-filter: saturate(140%) blur(6px);
}

/* Sections */
.fhm-section {
	padding: 64px 0;
	background: #fff;
}

.fhm-section:nth-child(even) {
	background: #fbfbfe;
}

.fhm-section h2 {
	font-size: 34px;
	letter-spacing: -.015em;
	margin: 0 0 18px;
	color: var(--ink);
}

.fhm-grid-3 {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.fhm-grid-2 {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, 1fr);
}

.fhm-feature, .fhm-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
	box-shadow: var(--shadow-soft);
	color: var(--ink);
}

.fhm-feature h3, .fhm-card h3 {
	margin: 0 0 8px;
	letter-spacing: -.01em;
}

.fhm-feature p, .fhm-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
}

.fhm-steps-list {
	counter-reset: c;
	display: grid;
	gap: 10px;
}

.fhm-steps-list li {
	counter-increment: c;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 16px;
	box-shadow: var(--shadow-soft);
	color: var(--ink);
}

.fhm-steps-list li::before {
	content: counter(c);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: var(--primary);
	color: #fff;
	margin-right: 8px;
	font-weight: 700;
}

@media (max-width:980px) {
	.fhm-hero .fhm-wrap {
		grid-template-columns: 1fr;
	}
	
	.fhm-hero.light {
		padding: 42px 0;
	}
}

@media (max-width:680px) {
	.fhm-grid-3, .fhm-grid-2 {
		grid-template-columns: 1fr;
	}
	
	.fhm-hero h1 {
		font-size: 38px;
	}
	
	.fhm-hero-quiz .fhm-quiz-box {
		min-height: 600px;
	}
}

/* Quiz core */
.fhm-mmq {
	color: var(--ink);
}

.fhm-mmq h2 {
	font-size: 22px;
	margin: 0 0 8px;
	color: var(--ink);
}

.fhm-mmq p.lead {
	font-size: 15px;
	color: #394255;
	margin: 0 0 12px;
}

.fhm-mmq .muted {
	color: var(--muted);
	font-size: 13px;
}

.fhm-btn, .fhm-btn:link, .fhm-btn:visited {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	border: 0;
	border-radius: 14px;
	padding: 12px 16px;
	cursor: pointer;
	background: var(--primary);
	color: #fff !important;
	font-weight: 600;
	box-shadow: 0 10px 22px var(--ring);
	text-decoration: none;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.fhm-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px var(--ring);
}

.fhm-btn:active {
	transform: translateY(0);
}

.fhm-btn.alt {
	background: #fff;
	color: var(--primary) !important;
	border: 1px solid rgba(225, 6, 0, .22);
	box-shadow: none;
}

.fhm-btn.alt:hover {
	box-shadow: 0 10px 18px rgba(16, 24, 40, .08);
}

.fhm-btn:disabled {
	opacity: .65;
	cursor: not-allowed;
}

.fhm-card-inline {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 18px;
	margin: 0;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	min-height: 520px;
}

.fhm-prog {
	height: 8px;
	background: #eef2f7;
	border-radius: 99px;
	overflow: hidden;
	margin: 6px 0 12px;
}

.fhm-prog > span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--primary), #ff6a61);
	width: 0%;
}

.fhm-two {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
	margin-top: auto;
}

@media (max-width:560px) {
	.fhm-two {
		grid-template-columns: 1fr;
	}
}

.fhm-opts {
	display: grid;
	gap: 10px;
	margin-top: 12px;
	margin-bottom: 22px;
}

.fhm-opt {
	border: 1px solid rgba(16, 24, 40, .14);
	border-radius: 14px;
	padding: 12px 12px;
	color: var(--ink);
	background: #fff;
	display: flex;
	gap: 10px;
	align-items: flex-start;
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.fhm-opt:hover {
	border-color: rgba(225, 6, 0, .26);
	box-shadow: 0 12px 22px rgba(16, 24, 40, .08);
	transform: translateY(-1px);
}

.fhm-opt input {
	margin-top: 3px;
	accent-color: var(--primary);
}

/* Selected state (supported in modern browsers) */
.fhm-opt:has(input:checked) {
	border-color: rgba(225, 6, 0, .38);
	box-shadow: 0 0 0 4px rgba(225, 6, 0, .12);
}

.fhm-badge {
	display: inline-block;
	background: #ffe6e4;
	color: #9b120e;
	border-radius: 999px;
	padding: 6px 10px;
	font-weight: 700;
}

.fhm-pillars .row {
	display: grid;
	grid-template-columns: 180px 1fr 40px;
	gap: 12px;
	align-items: center;
	margin: 8px 0;
}

.fhm-bar {
	height: 12px;
	background: #eef2f7;
	border-radius: 99px;
	overflow: hidden;
}

.fhm-bar > span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--primary), #ff6a61);
	width: 0%;
}

.fhm-gate {
	border-top: 1px dashed #d9dde3;
	margin-top: 14px;
	padding-top: 14px;
	color: var(--ink);
}

.fhm-small {
	font-size: 12px;
	color: #666;
}

.fhm-note {
	font-size: 13px;
	color: #444;
}

.fhm-share {
	margin-top: 12px;
}

.fhm-alert {
	padding: 10px 12px;
	border: 1px solid #ffd6a0;
	background: #fff8e7;
	border-radius: 8px;
	color: #7a4d00;
}

/* Lead form fields */
.fhm-gate form {
	margin-top: 10px;
}

.fhm-gate p {
	margin: 0 0 10px;
}

.fhm-gate label {
	font-size: 13px;
	color: var(--muted);
	display: block;
}

.fhm-gate input[type="text"], .fhm-gate input[type="email"], .fhm-gate select {
	width: 100%;
	margin-top: 6px;
	padding: 12px 12px;
	border-radius: 14px;
	border: 1px solid rgba(16, 24, 40, .14);
	background: #fff;
	color: var(--ink);
	outline: none;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.fhm-gate select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, rgba(16, 24, 40, .55) 50%), linear-gradient(135deg, rgba(16, 24, 40, .55) 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(1em + 3px), calc(100% - 13px) calc(1em + 3px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 34px;
}

.fhm-gate input:focus, .fhm-gate select:focus {
	border-color: rgba(225, 6, 0, .4);
	box-shadow: 0 0 0 4px rgba(225, 6, 0, .12);
}

.fhm-gate input[type="checkbox"] {
	accent-color: var(--primary);
}

/* Results section layout */
.fhm-results {
	background: linear-gradient(180deg, #fff 0%, #fbfbfe 100%);
}

.fhm-results-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	align-items: start;
}

.fhm-results-wrap .summary, .fhm-results-wrap .card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 22px;
	box-shadow: var(--shadow-soft);
}

.fhm-results-wrap .summary {
	padding: 22px;
}

.fhm-results-wrap .card {
	padding: 22px;
}

.fhm-results-wrap .summary .top {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.fhm-results-wrap .summary .badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(225, 6, 0, .1);
	border: 1px solid rgba(225, 6, 0, .18);
	padding: 7px 12px;
	border-radius: 999px;
	color: #7a0e0a;
	font-weight: 600;
}

.fhm-results-wrap .summary .score {
	font-size: 64px;
	line-height: 1;
	letter-spacing: -.03em;
	font-weight: 700;
	margin: 10px 0 6px;
}

.fhm-results-wrap .summary .band {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 6px;
}

.fhm-results-wrap .pillars {
	margin-top: 14px;
}

.fhm-results-wrap .card h3 {
	margin: 0 0 10px;
}

.fhm-results-wrap .card ul {
	margin: 0 0 10px;
	padding-left: 18px;
	color: var(--muted);
}

.fhm-results-wrap .cta-row {
	margin-top: 14px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

@media (max-width:920px) {
	.fhm-results-wrap {
		grid-template-columns: 1fr;
	}
}

/* Accordion */
.fhm-accordion .acc-item {
	border: 1px solid var(--border);
	border-radius: 16px;
	margin: 10px 0;
	background: #fff;
	box-shadow: var(--shadow-soft);
	color: var(--ink);
}

.fhm-accordion .acc-q {
	width: 100%;
	text-align: left;
	padding: 14px 16px;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #eef2f7;
	font-weight: 700;
	cursor: pointer;
	color: var(--ink);
}

.fhm-accordion .acc-a {
	display: none;
	padding: 14px 16px;
	color: var(--ink);
	background: #fff;
}

.fhm-accordion .acc-item.open .acc-a {
	display: block;
}

.fhm-accordion .acc-item.open .acc-q {
	border-bottom: 1px solid #e3e7f0;
}

/* Marquee */
.fhm-logos.bleed {
	padding: 40px 0;
}

.fhm-logos.bleed .fhm-wrap {
	max-width: 1140px;
	padding: 0 20px;
}

.logo-marquee.full {
	position: relative;
	overflow: hidden;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	background: #fff;
	border-top: 1px solid #f1d4d2;
	border-bottom: 1px solid #f1d4d2;
}

.logo-marquee.full .track {
	display: flex;
	gap: 48px;
	white-space: nowrap;
	will-change: transform;
	padding: 16px 20px;
}

.logo-marquee.full.animating .track {
	animation: scroll var(--marquee-speed, 30s) linear infinite;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}
	
	to {
		transform: translateX(-50%);
	}
}

/* Reveal */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .5s ease, transform .5s ease;
}

.reveal.in {
	opacity: 1;
	transform: none;
}

/* Start card extras */
.fhm-start-list {
	list-style: none;
	margin: 10px 0 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.fhm-start-list li {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.fhm-start-list .icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
	border-radius: 4px;
	background: var(--primary);
	align-items: center;
	justify-content: center;
	flex: 0 0 18px;
}

.fhm-start-list .icon svg {
	fill: #fff;
}

/* Tabs */
.fhm-deep[data-variant="tabs"] {
	background: linear-gradient(180deg, #fafbfe 0, #fff 100%);
}

.fhm-deep .tab-nav {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.fhm-deep .tab-btn {
	border: 1px solid #e8ebf3;
	background: #fff;
	border-radius: 999px;
	padding: 8px 12px;
	cursor: pointer;
}

.fhm-deep .tab-btn.active {
	background: var(--primary);
	color: #fff;
	border-color: #ffb6b1;
}

.fhm-deep .tab-panel {
	display: none;
}

.fhm-deep .tab-panel.active {
	display: block;
}

/* Who this helps */
.fhm-usecases .persona {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.fhm-usecases .avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #ffe6e4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	color: #9b120e;
	font-size: 18px;
}

.fhm-usecases .persona .content {
	min-width: 0;
}

.fhm-usecases .mini-list {
	margin: 0;
	padding-left: 18px;
	color: var(--ink);
}

/* v1.9.4 CTA row inside results card */
.fhm-results .cta-row {
	margin-top: 14px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
