:root {
	--navy-950: #0b1f3a;
	--navy-900: #10294d;
	--navy-700: #1c4478;
	--navy-600: #245a9c;
	--navy-100: #e3ebf5;
	--cream: #f8f7f3;
	--ink: #1d2530;
	--muted: #5b6673;
	--line: #dde3ea;
	--gold: #e0a83a;
	--gold-dark: #b8842a;
	--green: #1f7a4d;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 4.5rem; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition: none !important; }
}
body {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--ink);
	background: var(--cream);
	line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 2px;
}
.skip-link {
	position: absolute;
	left: -9999px;
	background: var(--gold);
	color: var(--navy-950);
	padding: .6rem 1rem;
	z-index: 100;
}
.skip-link:focus { left: .5rem; top: .5rem; }
.wrap { max-width: 68rem; margin: 0 auto; padding: 0 1.25rem; }

/* Header / nav */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--navy-950);
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 4rem;
	flex-wrap: wrap;
	padding-top: .4rem;
	padding-bottom: .4rem;
}
.brand {
	display: flex;
	align-items: center;
	gap: .65rem;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: .02em;
}
.brand img { width: 38px; height: 38px; }
.site-nav { display: flex; align-items: center; gap: .1rem; }
.site-nav a {
	color: #e6ecf5;
	text-decoration: none;
	font-size: .95rem;
	padding: .35rem .6rem;
	border-radius: .35rem;
}
.site-nav a:hover { background: rgba(255,255,255,.12); }
.nav-call {
	background: var(--gold);
	color: var(--navy-950) !important;
	font-weight: 700;
	white-space: nowrap;
	margin-left: .4rem;
}
.site-nav a.nav-call:hover, .site-nav a.nav-call:focus-visible { background: #f2c14e; color: var(--navy-950) !important; }
.nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: .6rem;
	border-radius: .35rem;
	cursor: pointer;
}
.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	border-radius: 1px;
	transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
	.nav-toggle { display: block; }
	.site-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		background: var(--navy-950);
		border-bottom: 1px solid rgba(255,255,255,.08);
		padding: .5rem 1.25rem 1rem;
		box-shadow: 0 12px 24px rgba(0,0,0,.3);
	}
	.nav-toggle[aria-expanded="true"] + .site-nav { display: flex; }
	.site-nav a { padding: .75rem .6rem; font-size: 1.05rem; }
	.nav-call { margin: .4rem 0 0; text-align: center; }
}
@media (scripting: none) {
	.nav-toggle { display: none; }
	.site-nav {
		display: flex;
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		padding: 0;
		border-bottom: 0;
		box-shadow: none;
	}
}

/* Hero */
.hero {
	background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-700) 100%);
	color: #fff;
	padding: 3.5rem 0 4rem;
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: center; }
.hero h1 {
	font-size: clamp(1.85rem, 4.5vw, 2.9rem);
	line-height: 1.15;
	margin: 0 0 .9rem;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.lede { margin: 0 0 1.5rem; font-size: 1.12rem; color: #d3ddeb; max-width: 36rem; }
.hero .proof { list-style: none; display: grid; grid-template-columns: repeat(2, max-content); gap: .55rem 2rem; margin: 0 0 1.75rem; font-size: 1rem; line-height: 1.4; color: #e6ecf5; }
.hero .proof li { display: flex; align-items: baseline; gap: .6rem; white-space: nowrap; }
.hero .proof li::before { content: "✓"; color: var(--gold); font-weight: 800; flex: none; width: 1em; text-align: center; }
.hero .sub-contact { margin-top: 1.2rem; font-size: .95rem; color: #b9c7da; }
.hero .sub-contact a { color: #fff; }
.cta-row {
	display: flex;
	gap: .9rem;
	flex-wrap: wrap;
}
.btn {
	display: inline-block;
	padding: .85rem 1.6rem;
	border-radius: .5rem;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.05rem;
	text-align: center;
}
.btn-gold { background: var(--gold); color: var(--navy-950); border: 2px solid transparent; }
.offer-card .btn-gold, .offer-section .btn-gold, .contact-form .btn-gold { border-color: var(--navy-700); }
.btn-gold:hover { filter: brightness(1.08); }
.btn-ghost { border: 2px solid #ffffffb3; color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-navy { background: var(--navy-700); color: #fff; }
.btn-navy:hover { background: var(--navy-600); }
@media (max-width: 860px) {
	.hero .wrap { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.hero .proof { grid-template-columns: 1fr; }
	.hero .proof li { white-space: normal; }
}

/* Offer form card (hero + bottom) */
.offer-card {
	background: #fff;
	color: var(--ink);
	border-radius: .9rem;
	padding: 1.6rem 1.5rem;
	box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.offer-card h2, .offer-card h3 { color: var(--navy-900); font-size: 1.3rem; margin-bottom: .25rem; }
.offer-card .form-intro { color: var(--muted); font-size: .93rem; margin-bottom: 1rem; }
.contact-form label { display: flex; flex-direction: column; justify-content: flex-end; font-size: .88rem; font-weight: 600; color: var(--navy-900); margin-bottom: .8rem; line-height: 1.3; }
.contact-form input, .contact-form textarea, .contact-form select {
	display: block; width: 100%; margin-top: .3rem; padding: .7rem .85rem; border-radius: .5rem;
	border: 1px solid #7d8794; background: var(--cream); color: var(--ink); font: inherit; font-weight: 400;
}
.contact-form textarea { resize: vertical; }
.contact-form select {
	appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 2.4rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M3 6l5 5 5-5' fill='none' stroke='%231c4478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right .8rem center; background-size: 16px 16px;
}
.cf-grid label { min-height: 100%; }
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid var(--navy-700); outline-offset: 0; border-color: transparent; background: #fff; }
.contact-form select:focus { outline: 3px solid var(--navy-700); outline-offset: 0; border-color: transparent; background-color: #fff; }
.contact-form .btn:focus-visible, .offer-card a:focus-visible { outline-color: var(--navy-700); }
.contact-form ::placeholder { color: #6b7684; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 .9rem; align-items: end; }
.cf-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: .25rem; }
.contact-form .btn { border: 0; cursor: pointer; font: inherit; font-weight: 700; width: 100%; }
.cf-fine { font-size: .84rem; color: var(--muted); margin: .6rem 0 0; }
.cf-error { color: #a33a2c; font-size: .9rem; font-weight: 600; margin: 0 0 .6rem; }
.contact-form input:user-invalid { border-color: #a33a2c; background: #fff6f4; }
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile, .cf-turnstile-modal { margin-bottom: .8rem; min-height: 65px; }
@media (max-width: 520px) { .cf-grid { grid-template-columns: 1fr; } .offer-card { padding: 1.25rem 1rem; } }

/* Trust bar */
.trust-bar { background: #fff; border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.trust-bar ul { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem 1rem; }
.trust-bar li { display: flex; align-items: center; justify-content: center; gap: .55rem; font-size: .9rem; white-space: nowrap; font-weight: 600; color: var(--navy-900); line-height: 1.25; text-align: left; }
.trust-bar .ico { flex: none; width: 2rem; height: 2rem; border-radius: 50%; background: var(--navy-100); display: grid; place-items: center; }
.trust-bar svg { width: 20px; height: 20px; fill: none; stroke: var(--navy-700); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 960px) { .trust-bar ul { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem 1.75rem; } }
@media (max-width: 600px) { .trust-bar ul { gap: .6rem 1.1rem; } .trust-bar li { font-size: .86rem; } .trust-bar .ico { width: 1.75rem; height: 1.75rem; } .trust-bar svg { width: 17px; height: 17px; } }

/* Sections */
section { padding: 3.75rem 0; }
section.alt { background: #fff; }
h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--navy-900);
	margin-bottom: .5rem;
	line-height: 1.25;
}
.section-intro { max-width: 48rem; color: var(--muted); margin-bottom: 2rem; }
h3 { color: var(--navy-700); margin-bottom: .4rem; font-size: 1.15rem; }
.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* Cards */
.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
	gap: 1.25rem;
}
.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: .75rem;
	padding: 1.4rem 1.5rem;
}
section.alt .card { background: var(--cream); }
.card p { font-size: .97rem; color: #3b4652; }
.card .icon { width: 40px; height: 40px; border-radius: .6rem; background: var(--navy-100); display: grid; place-items: center; margin-bottom: .8rem; color: var(--navy-700); font-size: 1.3rem; }
a.card { text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease; }
a.card p { flex: 1 1 auto; }
a.card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11,31,58,.09); border-color: var(--navy-600); }
a.card .more { color: var(--navy-700); font-weight: 700; font-size: .92rem; margin-top: .9rem; display: block; align-self: flex-start; }

/* Steps */
.steps { list-style: none; counter-reset: step; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.steps li {
	counter-increment: step;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: .75rem;
	padding: 1.1rem 1.25rem 1.1rem 4rem;
	position: relative;
	color: #3b4652;
	font-size: .97rem;
}
section.alt .steps li { background: var(--cream); }
.steps li::before {
	content: counter(step);
	position: absolute;
	left: 1.1rem;
	top: 1.05rem;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--navy-700);
	color: #fff;
	font-weight: 700;
	display: grid;
	place-items: center;
}
.steps h3 { margin-bottom: .25rem; }

/* Comparison table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: .75rem; background: #fff; }
table.compare { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 38rem; }
table.compare th, table.compare td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.compare thead th { background: var(--navy-900); color: #fff; font-weight: 700; }
table.compare thead th:nth-child(2) { background: var(--navy-700); }
table.compare tbody th { font-weight: 600; color: var(--navy-900); width: 32%; }
table.compare tbody tr:last-child td, table.compare tbody tr:last-child th { border-bottom: 0; }
table.compare td.us { background: #f2f7fd; font-weight: 600; color: var(--navy-900); }
.table-note { font-size: .86rem; color: var(--muted); margin-top: .7rem; }

/* Situations */
.situations { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: .9rem; }

/* Service area */
.area-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 1.5rem; align-items: start; }
.area-grid img { max-height: 13rem; width: auto; margin-bottom: .75rem; }
.towns { font-size: .93rem; color: #3b4652; margin-bottom: .9rem; }
.towns a { color: var(--navy-700); text-decoration: none; }
.towns a:hover { text-decoration: underline; }
.area-more { margin-top: 1.25rem; font-weight: 700; }
@media (max-width: 760px) { .area-grid { grid-template-columns: 1fr; } }

/* Numbers strip */
.numbers { display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); gap: 1rem; text-align: center; }
.numbers div { background: #fff; border: 1px solid var(--line); border-radius: .75rem; padding: 1.2rem 1rem; }
section.alt .numbers div { background: var(--cream); }
.numbers strong { display: block; font-size: 1.9rem; color: var(--navy-700); line-height: 1.1; }
.numbers span { color: var(--muted); font-size: .9rem; }

/* FAQ (native <details>; single column, chevron on the right, aligned answer text) */
.faq { max-width: 52rem; }
.faq details {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: .6rem;
	margin-bottom: .6rem;
	transition: border-color .15s ease, box-shadow .15s ease;
}
section.alt .faq details { background: var(--cream); }
.faq details:hover { border-color: var(--navy-600); }
.faq details[open] { border-color: var(--navy-600); box-shadow: 0 6px 18px rgba(11,31,58,.07); }
.faq summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	font-weight: 700;
	color: var(--navy-900);
	padding: .95rem 1.15rem;
	line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "";
	flex: none;
	width: 1.5rem; height: 1.5rem;
	margin-top: .05rem;
	border-radius: 50%;
	background: var(--navy-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M3 6l5 5 5-5' fill='none' stroke='%231c4478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
	transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details p { padding: .85rem 1.15rem 1rem; color: #3b4652; }
.faq details p + p { padding-top: 0; margin-top: -.25rem; }
.faq summary:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; border-radius: .6rem; }
.faq-cols { columns: auto; column-count: 1; }

/* Contact band */
.contact {
	background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
	color: #fff;
	text-align: center;
}
.contact h2 { color: #fff; }
.contact p { max-width: 42rem; margin: 0 auto 1.5rem; color: #d3ddeb; }
.contact .phone-big {
	display: inline-block;
	font-size: clamp(1.6rem, 4vw, 2.3rem);
	font-weight: 800;
	color: #fff;
	text-decoration: none;
	margin-bottom: .4rem;
}
.contact .email-line a { color: #fff; }
.contact .cta-row { justify-content: center; }
/* Bottom offer form section */
.offer-section { background: var(--cream) !important; }
.offer-section .offer-card { max-width: 46rem; margin: 0 auto; box-shadow: 0 10px 30px rgba(11,31,58,.08); border: 1px solid var(--line); }
.offer-section .offer-card h2 { text-align: center; font-size: clamp(1.4rem, 3vw, 1.8rem); }
.offer-section .form-intro { text-align: center; }

/* Footer */
footer {
	background: var(--navy-950);
	color: #b9c7da;
	padding: 2.25rem 0 5rem;
	font-size: .9rem;
}
footer .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; text-align: left; }
footer h4 { color: #fff; font-size: .95rem; margin-bottom: .5rem; }
footer ul { list-style: none; }
footer li { margin-bottom: .3rem; }
footer a { color: #e6ecf5; }
footer .socials { display: flex; gap: 1.1rem; margin-top: .8rem; }
footer .socials a { color: #e6ecf5; display: inline-flex; }
footer .socials svg { width: 24px; height: 24px; fill: currentColor; }
footer .socials a:hover { color: var(--gold); }
footer .foot-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1rem; text-align: center; }
footer .legal-links a { margin: 0 .3rem; }
footer .disclaimer { font-size: .8rem; color: #8d9db3; max-width: 52rem; margin: .6rem auto 0; }
@media (max-width: 800px) { footer .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { footer .foot-grid { grid-template-columns: 1fr; } }

/* Sticky mobile call/offer bar */
.mobile-bar { display: none; }
@media (max-width: 720px) {
	.mobile-bar {
		display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
		position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
		background: var(--navy-950); padding: .55rem .75rem calc(.55rem + env(safe-area-inset-bottom));
		border-top: 1px solid rgba(255,255,255,.12);
	}
	.mobile-bar .btn { padding: .7rem .5rem; font-size: .95rem; }
	.mobile-bar .btn-ghost { border-color: #ffffffaa; }
}

/* ---- Inner pages ---- */
.breadcrumb {
	background: #fff;
	border-bottom: 1px solid var(--line);
	font-size: .88rem;
	padding: .55rem 0;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; }
.breadcrumb li + li::before { content: "›"; margin-right: .35rem; color: var(--muted); }
.breadcrumb a { color: var(--navy-700); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--muted); }

.page-hero {
	background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-700) 100%);
	color: #fff;
	padding: 3rem 0 3.25rem;
}
.page-hero h1 {
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	line-height: 1.2;
	max-width: 48rem;
	margin-bottom: .8rem;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p.lede { max-width: 46rem; color: #d3ddeb; margin-bottom: 1.6rem; font-size: 1.08rem; }
.page-hero .meta { color: #b9c7da; font-size: .9rem; margin-top: 1rem; }

.cta-band {
	background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
	color: #fff;
	border-radius: .9rem;
	padding: 1.75rem 1.5rem;
	text-align: center;
	margin-top: 2.5rem;
}
.cta-band p { color: #d3ddeb; margin-bottom: 1rem; }
.cta-band strong { color: #fff; }
.cta-band .cta-row { justify-content: center; }

.service-bullets { margin: .75rem 0 0 1.25rem; color: #3b4652; }
.service-bullets li { margin-bottom: .35rem; }
.steps-mini { list-style: decimal; margin-left: 1.4rem; color: #3b4652; max-width: 44rem; }
.steps-mini li { margin-bottom: .4rem; }

.nearby-grid { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.nearby-grid a {
	display: inline-block;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 2rem;
	padding: .45rem 1rem;
	font-size: .92rem;
	text-decoration: none;
	color: var(--navy-700);
}
.nearby-grid a:hover { border-color: var(--navy-600); background: var(--navy-100); }

.county-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
	gap: .5rem .9rem;
	list-style: none;
	margin-top: .9rem;
}
.county-grid a { text-decoration: none; color: var(--navy-700); }
.county-grid a:hover { text-decoration: underline; }
.county-block { margin-bottom: 2.25rem; }
.county-block p { color: var(--muted); max-width: 48rem; }
.h2-gap { margin-top: 2.5rem; }
.more-link { margin-top: .9rem; }

/* Fact box + two-col content on town / situation / guide pages */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: .9rem; margin: 1.25rem 0 0; }
.facts div { background: #fff; border: 1px solid var(--line); border-radius: .7rem; padding: .9rem 1rem; }
section.alt .facts div { background: var(--cream); }
.facts dt { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.facts dd { font-weight: 700; color: var(--navy-900); font-size: 1.05rem; }
.prose { max-width: 48rem; }
.prose p { margin-bottom: 1rem; color: #2f3944; }
.prose h2 { margin-top: 2.25rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul, .prose ol { margin: 0 0 1rem 1.3rem; color: #2f3944; }
.prose li { margin-bottom: .4rem; }
.prose table { border-collapse: collapse; width: 100%; font-size: .95rem; margin-bottom: 1.2rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: .55rem .75rem; text-align: left; vertical-align: top; }
.prose th { background: var(--navy-100); color: var(--navy-900); }
.prose .table-scroll { overflow-x: auto; }
.callout { background: var(--navy-100); border-left: 4px solid var(--navy-700); border-radius: .5rem; padding: 1rem 1.2rem; margin: 1.25rem 0; color: var(--navy-900); }
.callout strong { color: var(--navy-900); }
.sources { font-size: .85rem; color: var(--muted); margin-top: 2rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.sources ol { margin-left: 1.2rem; }
.sources a { word-break: break-all; }
.toc { background: #fff; border: 1px solid var(--line); border-radius: .7rem; padding: 1rem 1.25rem; margin: 0 0 1.5rem; font-size: .93rem; }
section.alt .toc { background: var(--cream); }
.toc strong { display: block; color: var(--navy-900); margin-bottom: .3rem; }
.toc ol { margin-left: 1.2rem; }
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }
.guide-list { list-style: none; display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.guide-list a { display: block; background: #fff; border: 1px solid var(--line); border-radius: .75rem; padding: 1.1rem 1.25rem; text-decoration: none; color: inherit; }
.guide-list a:hover { border-color: var(--navy-600); }
.guide-list h3 { margin-bottom: .25rem; }
.guide-list p { font-size: .92rem; color: var(--muted); }
.tag { display: inline-block; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--navy-700); background: var(--navy-100); border-radius: 2rem; padding: .15rem .65rem; margin-bottom: .5rem; }

/* Legal pages (privacy, terms) */
.legal { padding: 2.75rem 0 3.5rem; }
.legal .wrap { max-width: 46rem; }
.legal h1 { font-size: clamp(1.7rem, 4vw, 2.3rem); color: var(--navy-900); margin-bottom: .35rem; }
.legal .updated { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }
.legal .lede { font-size: 1.05rem; margin-bottom: .5rem; }
.legal h2 { font-size: 1.2rem; color: var(--navy-700); margin: 2rem 0 .55rem; }
.legal p { margin-bottom: .9rem; }
.legal ul { margin: 0 0 1rem 1.2rem; }
.legal li { margin-bottom: .45rem; }

/* Full-screen offer modal (native <dialog>; opened by any "Get My Cash Offer" link) */
.offer-modal {
	width: 100vw; height: 100dvh; max-width: none; max-height: none;
	margin: 0; padding: 1.25rem; border: 0; inset: 0;
	background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-700) 100%);
	color: var(--ink);
	display: none; overflow-y: auto; overscroll-behavior: contain;
}
.offer-modal[open], .offer-modal:target { display: grid; place-items: center; }
.offer-section:empty { display: none; padding: 0; }
.offer-modal::backdrop { background: rgba(11, 31, 58, .6); }
.offer-modal-body { width: 100%; max-width: 44rem; margin: 3rem auto; }
.offer-modal .offer-card { box-shadow: 0 30px 60px rgba(0,0,0,.4); }
.offer-modal-close {
	position: fixed; top: .9rem; right: .9rem; z-index: 2;
	width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 2px solid #ffffff88;
	background: rgba(11, 31, 58, .55); color: #fff; font-size: 1.1rem; font-weight: 700; cursor: pointer;
}
.offer-modal-close:hover { border-color: #fff; background: rgba(255,255,255,.12); }
body:has(.offer-modal[open]) { overflow: hidden; }
@media (max-width: 520px) { .offer-modal { padding: .75rem; } .offer-modal-body { margin: 3.25rem auto 1rem; } }

/* Tables become stacked cards on narrow screens (no sideways scrolling) */
@media (max-width: 720px) {
	.compare-wrap { overflow: visible; border: 0; background: none; }
	table.compare { min-width: 0; display: block; }
	table.compare thead { display: none; }
	table.compare tbody, table.compare tr { display: block; }
	table.compare tr { background: #fff; border: 1px solid var(--line); border-radius: .7rem; margin-bottom: .75rem; overflow: hidden; }
	table.compare tbody th { display: block; width: auto; background: var(--navy-900); color: #fff; padding: .6rem .9rem; border: 0; }
	table.compare td { display: grid; grid-template-columns: 7.5rem 1fr; gap: .5rem; padding: .6rem .9rem; border-bottom: 1px solid var(--line); }
	table.compare td::before { content: attr(data-label); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 700; padding-top: .15rem; }
	table.compare td.us { background: #f2f7fd; }
	table.compare td.us::before { color: var(--navy-700); }
	table.compare tr:last-child td:last-child { border-bottom: 0; }

	.prose .table-scroll { overflow: visible; }
	.prose table.cards-sm, .prose table.cards-sm tbody, .prose table.cards-sm tr { display: block; width: 100%; }
	.prose table.cards-sm thead { display: none; }
	.prose table.cards-sm tr { border: 1px solid var(--line); border-radius: .6rem; margin-bottom: .7rem; background: #fff; overflow: hidden; }
	.prose table.cards-sm td { display: grid; grid-template-columns: minmax(6rem, 40%) 1fr; gap: .5rem; border: 0; border-bottom: 1px solid var(--line); padding: .5rem .8rem; }
	.prose table.cards-sm tr td:last-child { border-bottom: 0; }
	.prose table.cards-sm td::before { content: attr(data-label); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 700; padding-top: .1rem; }
	.prose table.cards-sm td:first-child { background: var(--navy-100); font-weight: 700; color: var(--navy-900); }
}
