/* Never Claimed Landlord Claims Hub — scoped to .nclh-root */

.nclh-root {
	--nclh-navy: #002956;
	--nclh-navy-2: #003d7a;
	--nclh-gold: #e8b923;
	--nclh-gold-2: #c99a12;
	--nclh-text: #3d3d3d;
	--nclh-muted: #5c6570;
	--nclh-bg: #f4f6fa;
	--nclh-card: #ffffff;
	--nclh-line: #d9dee7;
	--nclh-ok: #1b6b4a;
	--nclh-radius: 14px;
	--nclh-shadow: 0 10px 30px rgba(0, 41, 86, 0.08);
	/* Shared vertical rhythm */
	--nclh-space-xs: 0.5rem;
	--nclh-space-sm: 0.75rem;
	--nclh-space-md: 1.25rem;
	--nclh-space-lg: 2rem;
	--nclh-space-xl: 2.75rem;
	--nclh-page-pad-top: 0;
	--nclh-page-pad-bottom: 0.5rem;
	color: var(--nclh-text);
	font-size: 1.05rem;
	line-height: 1.6;
	max-width: 1100px;
	margin: var(--nclh-page-pad-top) auto var(--nclh-page-pad-bottom);
	box-sizing: border-box;
}

.nclh-landing {
	--nclh-page-pad-top: 0;
}

/* Match Ultima content padding on plugin pages only — does not affect the homepage. */
body.nclh-active .qodef-content .qodef-content-inner > .qodef-container > .qodef-container-inner {
	padding-top: 40px;
	padding-bottom: 48px;
}

.nclh-root *,
.nclh-root *::before,
.nclh-root *::after {
	box-sizing: border-box;
}

.nclh-root h2,
.nclh-root h3,
.nclh-root h4 {
	color: var(--nclh-navy);
	line-height: 1.25;
	margin: 0 0 var(--nclh-space-sm);
}

.nclh-root h3,
.nclh-root h4 {
	margin-bottom: var(--nclh-space-xs);
}

.nclh-root p {
	margin: 0 0 var(--nclh-space-md);
}

.nclh-hub > * + *,
.nclh-section-page > * + *,
.nclh-landing .nclh-hub > * + * {
	margin-top: var(--nclh-space-xl);
}

.nclh-tool > * + * {
	margin-top: var(--nclh-space-lg);
}

.nclh-tool__intro > :last-child,
.nclh-section > :last-child,
.nclh-hero__inner > :last-child,
.nclh-callout > :last-child,
.nclh-result__panel > :last-child,
.nclh-assessment-cta > :last-child {
	margin-bottom: 0;
}

.nclh-tool__intro h2,
.nclh-hero h2 {
	font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.nclh-kicker {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--nclh-gold-2);
	margin: 0 0 var(--nclh-space-xs);
}

.nclh-lede {
	font-size: 1.15rem;
	max-width: 42rem;
}

.nclh-hero {
	background: linear-gradient(145deg, #001a38 0%, var(--nclh-navy) 55%, var(--nclh-navy-2) 100%);
	color: #fff;
	border-radius: 20px;
	padding: clamp(1.5rem, 4vw, 2.75rem);
	margin: 0;
	box-shadow: var(--nclh-shadow);
}

.nclh-hero h2,
.nclh-hero .nclh-lede,
.nclh-hero .nclh-disclaimer {
	color: #fff;
}

.nclh-hero .nclh-disclaimer {
	opacity: 0.85;
	font-size: 0.9rem;
}

.nclh-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--nclh-space-sm);
	margin: var(--nclh-space-md) 0 var(--nclh-space-sm);
}

.nclh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.75rem 1.35rem;
	border-radius: 999px;
	border: 2px solid transparent;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	font-size: 1rem;
	line-height: 1.2;
}

.nclh-btn--primary {
	background: var(--nclh-gold);
	color: var(--nclh-navy);
	border-color: var(--nclh-gold);
}

.nclh-btn--primary:hover,
.nclh-btn--primary:focus {
	background: #ffd24a;
	color: var(--nclh-navy);
}

.nclh-btn--ghost {
	background: transparent;
	color: inherit;
	border-color: currentColor;
}

.nclh-hero .nclh-btn--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
}

.nclh-section {
	margin: 0;
	padding: 0;
}

.nclh-section--tint {
	background: var(--nclh-bg);
	border-radius: var(--nclh-radius);
	padding: var(--nclh-space-lg);
}

.nclh-section--split {
	display: grid;
	gap: var(--nclh-space-lg);
}

@media (min-width: 800px) {
	.nclh-section--split {
		grid-template-columns: 1fr 1fr;
	}
}

.nclh-section--cta {
	text-align: center;
	background: var(--nclh-navy);
	color: #fff;
	border-radius: var(--nclh-radius);
	padding: var(--nclh-space-lg) var(--nclh-space-md);
}

.nclh-section--cta h2 {
	color: #fff;
}

.nclh-cards {
	display: grid;
	gap: var(--nclh-space-md);
}

.nclh-cards--2 {
	grid-template-columns: 1fr;
}

.nclh-cards--3 {
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.nclh-cards--2 {
		grid-template-columns: 1fr 1fr;
	}
	.nclh-cards--3 {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 980px) {
	.nclh-cards--3 {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.nclh-card,
.nclh-problem,
.nclh-topic {
	display: block;
	background: var(--nclh-card);
	border: 1px solid var(--nclh-line);
	border-radius: var(--nclh-radius);
	padding: var(--nclh-space-md);
	text-decoration: none;
	color: inherit;
	box-shadow: var(--nclh-shadow);
	height: 100%;
	transition: transform 0.15s ease, border-color 0.15s ease;
}

.nclh-card:hover,
.nclh-problem:hover,
.nclh-topic:hover {
	transform: translateY(-2px);
	border-color: var(--nclh-navy);
}

.nclh-card h3,
.nclh-problem strong,
.nclh-topic strong {
	display: block;
	color: var(--nclh-navy);
	margin-bottom: var(--nclh-space-xs);
}

.nclh-topic--title-only {
	display: flex;
	align-items: center;
	min-height: 3.25rem;
}

.nclh-topic--title-only strong {
	margin-bottom: 0;
}

.nclh-problems,
.nclh-topics,
.nclh-list,
.nclh-link-list,
.nclh-timeframes,
.nclh-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--nclh-space-sm);
}

.nclh-problems {
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.nclh-problems,
	.nclh-topics {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 980px) {
	.nclh-topics {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.nclh-list li,
.nclh-timeframes li {
	padding-left: 1.2rem;
	position: relative;
}

.nclh-list li::before,
.nclh-timeframes li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--nclh-gold);
	position: absolute;
	left: 0;
	top: 0.55em;
}

.nclh-timeframes li {
	background: var(--nclh-bg);
	border-radius: 12px;
	padding: var(--nclh-space-sm) var(--nclh-space-sm) var(--nclh-space-sm) 1.6rem;
}

.nclh-timeframes strong {
	display: block;
	color: var(--nclh-navy);
}

.nclh-link {
	color: var(--nclh-navy);
	font-weight: 700;
}

.nclh-disclaimer,
.nclh-note,
.nclh-consent-note {
	font-size: 0.92rem;
	color: var(--nclh-muted);
}

.nclh-tool__intro {
	margin: 0;
}

.nclh-progress {
	height: 8px;
	background: var(--nclh-line);
	border-radius: 99px;
	margin: 0 0 var(--nclh-space-md);
	position: relative;
	overflow: hidden;
}

.nclh-progress__bar {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--nclh-navy), var(--nclh-gold));
	transition: width 0.25s ease;
}

.nclh-progress__label {
	font-size: 0.85rem;
	margin: var(--nclh-space-xs) 0 0;
	color: var(--nclh-muted);
}

.nclh-wizard.is-enhanced .nclh-step {
	display: none;
}

.nclh-wizard.is-enhanced .nclh-step.is-active {
	display: block;
}

.nclh-step,
.nclh-timeline-editor {
	background: var(--nclh-card);
	border: 1px solid var(--nclh-line);
	border-radius: var(--nclh-radius);
	padding: var(--nclh-space-md);
	margin-bottom: var(--nclh-space-md);
}

.nclh-step legend,
.nclh-sublegend {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--nclh-navy);
	padding: 0;
	margin-bottom: var(--nclh-space-sm);
}

.nclh-choices {
	display: grid;
	gap: var(--nclh-space-sm);
	margin-bottom: var(--nclh-space-md);
}

.nclh-choices--grid {
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.nclh-choices--grid {
		grid-template-columns: 1fr 1fr;
	}
}

.nclh-choice {
	display: flex;
	gap: var(--nclh-space-sm);
	align-items: flex-start;
	border: 1px solid var(--nclh-line);
	border-radius: 12px;
	padding: 0.85rem 1rem;
	cursor: pointer;
	background: #fff;
}

.nclh-choice:has(input:checked) {
	border-color: var(--nclh-navy);
	background: #eef3f9;
	box-shadow: inset 0 0 0 1px var(--nclh-navy);
}

.nclh-choice input {
	margin-top: 0.25rem;
	accent-color: var(--nclh-navy);
}

.nclh-field {
	display: flex;
	flex-direction: column;
	gap: var(--nclh-space-xs);
	margin-bottom: var(--nclh-space-sm);
	font-weight: 600;
}

.nclh-field input,
.nclh-field select,
.nclh-field textarea,
.nclh-timeline-editor input,
.nclh-timeline-editor textarea {
	font: inherit;
	font-weight: 400;
	padding: 0.7rem 0.8rem;
	border: 1px solid var(--nclh-line);
	border-radius: 10px;
	width: 100%;
}

.nclh-field input:focus,
.nclh-field select:focus,
.nclh-field textarea:focus {
	outline: 2px solid var(--nclh-navy);
	border-color: var(--nclh-navy);
}

.nclh-grid-2 {
	display: grid;
	gap: var(--nclh-space-sm);
}

@media (min-width: 700px) {
	.nclh-grid-2 {
		grid-template-columns: 1fr 1fr;
	}
}

.nclh-nav {
	display: flex;
	flex-wrap: wrap;
	gap: var(--nclh-space-sm);
	margin-top: var(--nclh-space-xs);
}

.nclh-hp {
	position: absolute;
	left: -10000px;
	height: 0;
	overflow: hidden;
}

.nclh-consent {
	margin: var(--nclh-space-md) 0;
}

.nclh-check {
	display: flex;
	gap: var(--nclh-space-sm);
	align-items: flex-start;
}

.nclh-result__panel,
.nclh-callout,
.nclh-success {
	background: #eef3f9;
	border-left: 4px solid var(--nclh-gold);
	padding: var(--nclh-space-md);
	border-radius: 8px;
	margin: 0;
}

.nclh-faq {
	border-bottom: 1px solid var(--nclh-line);
	padding: var(--nclh-space-sm) 0 var(--nclh-space-md);
}

.nclh-faq:first-of-type {
	padding-top: 0;
}

.nclh-factor {
	border: 1px solid var(--nclh-line);
	border-radius: 12px;
	padding: var(--nclh-space-md);
	margin-bottom: var(--nclh-space-sm);
}

.nclh-factor.is-relevant {
	border-color: var(--nclh-navy);
	background: #eef3f9;
}

.nclh-timeline-list {
	list-style: none;
	padding: 0;
	margin: var(--nclh-space-lg) 0;
	border-left: 3px solid var(--nclh-navy);
}

.nclh-timeline-list li {
	padding: var(--nclh-space-xs) 0 var(--nclh-space-md) var(--nclh-space-md);
	position: relative;
}

.nclh-timeline-list li::before {
	content: "";
	position: absolute;
	left: -7px;
	top: 0.55rem;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--nclh-gold);
	border: 2px solid var(--nclh-navy);
}

.nclh-tl-actions {
	display: flex;
	gap: var(--nclh-space-xs);
	margin-top: var(--nclh-space-xs);
}

.nclh-error {
	color: #8a1f1f;
	font-size: 0.92rem;
}

.nclh-prose {
	max-width: 48rem;
}

.nclh-btn[disabled] {
	opacity: 0.65;
	cursor: wait;
}

.nclh-lead-capture {
	margin-top: var(--nclh-space-lg);
	padding: var(--nclh-space-md) var(--nclh-space-lg);
	border-radius: var(--nclh-radius);
	background: linear-gradient(180deg, #fff 0%, #eef3f9 100%);
	border: 2px solid var(--nclh-navy);
	box-shadow: var(--nclh-shadow);
}

.nclh-lead-capture__heading {
	font-size: 1.25rem;
}

.nclh-lead-capture .nclh-submit {
	margin-top: var(--nclh-space-xs);
}

.nclh-lead-capture__alt,
.nclh-lead-capture__secondary {
	margin-top: var(--nclh-space-sm);
}

.nclh-known-contact {
	background: #fff;
	border: 1px dashed var(--nclh-line);
	border-radius: 10px;
	padding: var(--nclh-space-sm) var(--nclh-space-md);
	margin-bottom: var(--nclh-space-sm);
}

.nclh-edit-contact {
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	cursor: pointer;
	margin-left: var(--nclh-space-xs);
}

.nclh-assessment-cta {
	background: var(--nclh-navy);
	color: #fff;
	border-radius: var(--nclh-radius);
	padding: clamp(1.5rem, 4vw, 2.25rem);
	text-align: left;
	box-shadow: var(--nclh-shadow);
	margin: 0;
}

.nclh-assessment-cta h2,
.nclh-assessment-cta p,
.nclh-assessment-cta .nclh-kicker {
	color: #fff;
}

.nclh-assessment-cta .nclh-kicker {
	color: var(--nclh-gold);
}

.nclh-assessment-cta .nclh-btn--primary {
	margin-top: var(--nclh-space-xs);
}

.nclh-guide-followup {
	margin-top: var(--nclh-space-xl);
}

.nclh-guide__meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--nclh-space-xs) var(--nclh-space-md);
	color: var(--nclh-muted);
	font-size: 0.92rem;
}

.nclh-toc {
	background: var(--nclh-bg);
	border: 1px solid var(--nclh-line);
	border-left: 4px solid var(--nclh-gold);
	border-radius: var(--nclh-radius);
	padding: var(--nclh-space-md) var(--nclh-space-lg);
}

.nclh-toc__heading {
	font-weight: 700;
	color: var(--nclh-navy);
	margin: 0 0 var(--nclh-space-sm);
}

.nclh-toc ol {
	margin: 0;
	padding-left: 1.2rem;
}

.nclh-toc a {
	color: var(--nclh-navy);
	font-weight: 600;
}

.nclh-answer {
	background: #eef3f9;
	border-left: 4px solid var(--nclh-navy);
	border-radius: 8px;
	padding: var(--nclh-space-md);
	margin: 0 0 var(--nclh-space-lg);
}

.nclh-upcoming {
	background: #fff8e6;
	border: 1px solid var(--nclh-gold);
	border-radius: var(--nclh-radius);
	padding: var(--nclh-space-md);
	margin: 0 0 var(--nclh-space-lg);
}

.nclh-table-wrap {
	width: 100%;
	overflow-x: auto;
	margin: 0 0 var(--nclh-space-lg);
	-webkit-overflow-scrolling: touch;
}

.nclh-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 32rem;
	font-size: 0.98rem;
}

.nclh-table th,
.nclh-table td {
	border: 1px solid var(--nclh-line);
	padding: 0.7rem 0.85rem;
	text-align: left;
	vertical-align: top;
}

.nclh-table th {
	background: var(--nclh-navy);
	color: #fff;
	font-weight: 700;
}

.nclh-table tr:nth-child(even) td {
	background: var(--nclh-bg);
}

.nclh-flow {
	list-style: none;
	margin: 0 0 var(--nclh-space-lg);
	padding: 0;
	border-left: 3px solid var(--nclh-navy);
}

.nclh-flow li {
	position: relative;
	padding: 0 0 var(--nclh-space-md) var(--nclh-space-lg);
}

.nclh-flow li::before {
	content: "";
	position: absolute;
	left: -7px;
	top: 0.35rem;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--nclh-gold);
	border: 2px solid var(--nclh-navy);
}

.nclh-flow strong {
	display: block;
	color: var(--nclh-navy);
}

.nclh-faqs details {
	border-bottom: 1px solid var(--nclh-line);
	padding: var(--nclh-space-sm) 0;
}

.nclh-faqs summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--nclh-navy);
	padding: var(--nclh-space-xs) 0;
}

.nclh-faqs details p:last-child {
	margin-bottom: 0;
}

.nclh-inline-cta {
	background: #fff;
	border: 1px solid var(--nclh-line);
	border-left: 4px solid var(--nclh-gold);
	border-radius: 10px;
	padding: var(--nclh-space-md);
	margin: var(--nclh-space-lg) 0;
}

.nclh-inline-cta__heading {
	margin-bottom: var(--nclh-space-xs);
	color: var(--nclh-navy);
}

.nclh-guide .nclh-prose {
	max-width: 48rem;
}

.nclh-guide h2[id],
.nclh-guide h3[id],
.nclh-toc {
	scroll-margin-top: 5.5rem;
}

.nclh-related {
	margin-top: var(--nclh-space-xl);
}

.nclh-guide__disclaimer {
	margin-top: var(--nclh-space-lg);
}

.nclh-guide .nclh-table-wrap,
.nclh-guide .nclh-flow,
.nclh-guide .nclh-inline-cta {
	max-width: 100%;
}

@media (max-width: 640px) {
	.nclh-root {
		--nclh-space-lg: 1.35rem;
		--nclh-space-xl: 1.75rem;
		--nclh-page-pad-top: 0;
		--nclh-page-pad-bottom: 0.25rem;
	}

	.nclh-landing {
		--nclh-page-pad-top: 0;
	}

	body.nclh-active .qodef-content .qodef-content-inner > .qodef-container > .qodef-container-inner {
		padding-top: 28px;
		padding-bottom: 36px;
	}

	.nclh-hero,
	.nclh-section--tint,
	.nclh-step,
	.nclh-timeline-editor,
	.nclh-assessment-cta,
	.nclh-lead-capture {
		border-radius: 12px;
	}

	.nclh-lead-capture {
		padding: var(--nclh-space-md);
	}

	.nclh-btn {
		width: 100%;
	}

	.nclh-hero__actions .nclh-btn,
	.nclh-nav .nclh-btn {
		width: auto;
		flex: 1 1 auto;
		min-height: 48px;
	}

	.nclh-choice {
		padding: 0.8rem 0.9rem;
	}

	.nclh-table {
		min-width: 28rem;
	}

	.nclh-guide__meta {
		flex-direction: column;
		gap: 0.2rem;
	}
}
