/* BCSC — front-end styles */
:root {
	--ink: #0f1f3d;
	--text: #1f2a44;
	--muted: #5b6478;
	--line: #e3e7ef;
	--soft: #f6f7fb;
	--brand: #13285a;
	--accent: #c8102e;
	--radius: 18px;
	--shadow: 0 6px 20px rgba(15, 31, 61, .06);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; font-size: 16px; line-height: 1.6; color: var(--text); background: var(--soft); }
img { max-width: 100%; height: auto; }
a { color: var(--brand); }
a:hover { color: var(--accent); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 16px; }
.site-main { min-height: 60vh; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255, 255, 255, .92); backdrop-filter: saturate(1.6) blur(10px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 72px; }
.custom-logo { display: block; width: auto; max-height: 48px; }
.site-brand__name { font-size: 20px; font-weight: 800; color: var(--ink); text-decoration: none; }
.site-nav__list { display: flex; gap: 24px; margin: 0; padding: 0; list-style: none; }
.site-nav__list a { font-size: 15px; font-weight: 600; color: var(--ink); text-decoration: none; }
.site-nav__list a:hover, .site-nav__list .current-menu-item a { color: var(--accent); }

/* Footer */
.site-footer { margin-top: 64px; padding: 28px 0; background: var(--ink); color: #c6cde0; font-size: 14px; }
.site-footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; }
.site-footer p { margin: 0; }
.site-footer__menu { display: flex; gap: 20px; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: #fff; text-decoration: none; }

/* Page */
div.page { padding-top: 40px; }
.page__head { margin-bottom: 28px; }
.page__title { margin: 0 0 8px; font-size: clamp(28px, 4vw, 40px); line-height: 1.15; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.page__lead { margin: 0; max-width: 680px; font-size: 17px; color: var(--muted); }
.entry { margin-bottom: 24px; }
.entry__media { display: block; width: min(100%, 760px); margin: 0 0 20px; overflow: hidden; border-radius: 16px; }
.entry__media img { display: block; width: 100%; height: auto; }
.empty { padding: 40px; text-align: center; color: var(--muted); background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); }

/* Company logo */
.company-logo { display: grid; place-items: center; flex: none; width: 64px; height: 64px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.company-logo--lg { width: 112px; height: 112px; border-radius: 24px; }
.company-logo__img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.company-logo__initials { font-weight: 800; font-size: 20px; color: var(--brand); }
.company-logo--lg .company-logo__initials { font-size: 34px; }

/* Cards */
.company-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
@media (max-width: 400px) { .company-grid { grid-template-columns: 1fr; } }
.company-card { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.company-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15, 31, 61, .1); }
.company-card__link { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.company-card__head { display: flex; align-items: center; gap: 14px; }
.company-card__name { margin: 0; font-size: 18px; line-height: 1.3; color: var(--ink); }
.company-card__meta, .company-card__ids { margin: 0; font-size: 14px; color: var(--muted); }
.company-card__short { margin: 0; font-size: 15px; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.tags li { padding: 4px 10px; font-size: 13px; color: var(--brand); background: #eef2fb; border-radius: 999px; }
.tags .tags__more { color: var(--muted); background: var(--soft); }

/* Company profile */
.back-link { display: inline-block; margin-bottom: 20px; font-size: 14px; font-weight: 600; text-decoration: none; }
.company__hero { display: flex; align-items: center; gap: 24px; margin-bottom: 28px; }
.company__location { margin: 0 0 8px; font-weight: 600; color: var(--muted); }
.company__layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: start; }
@media (max-width: 860px) {
	.company__layout { grid-template-columns: 1fr; }
	.company__hero { flex-direction: column; align-items: flex-start; }
}
.panel { margin-bottom: 20px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.panel h2 { margin: 0 0 14px; font-size: 18px; color: var(--ink); }
.panel--trust { border-top: 4px solid var(--brand); }
.facts { display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; margin: 0; font-size: 15px; }
.facts dt { color: var(--muted); }
.facts dd { margin: 0; overflow-wrap: anywhere; }
.entry__content > :first-child { margin-top: 0; }

/* Pagination */
.pagination { margin-top: 32px; }
.nav-links { display: flex; gap: 8px; }
.page-numbers { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; text-decoration: none; color: var(--ink); }
.page-numbers.current { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Plan badges */
.plan-badge { display: inline-block; margin-left: 8px; padding: 3px 10px; font-size: 12px; font-weight: 700; line-height: 1.5; letter-spacing: .02em; vertical-align: middle; border-radius: 999px; }
.plan-badge--pro { color: var(--brand); background: #e6ecfa; }
.plan-badge--premium { color: #fff; background: var(--accent); }
.company-card .plan-badge { position: absolute; top: 16px; right: 16px; margin: 0; }
.company-card--premium { border-color: #f1b6bf; box-shadow: 0 10px 28px rgba(200, 16, 46, .1); }
.company-card--premium .company-card__head, .company-card--pro .company-card__head { padding-right: 80px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px; font-size: 15px; font-weight: 700; text-decoration: none; border-radius: 14px; border: 1px solid transparent; transition: background .15s, border-color .15s, color .15s; }
.btn--primary { color: #fff; background: var(--accent); box-shadow: 0 8px 18px rgba(200, 16, 46, .25); }
.btn--primary:hover { color: #fff; background: #a90d27; }
.btn--outline { color: var(--brand); background: #fff; border-color: #c5ccda; }
.btn--outline:hover { color: var(--brand); border-color: var(--brand); }
.btn--disabled { color: var(--muted); background: var(--soft); border-color: var(--line); cursor: default; }

/* Pricing */
.pricing__head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.pricing__head .page__lead { margin: 0 auto; }
.eyebrow { margin: 0 0 10px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.pricing__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.plan { position: relative; display: flex; flex-direction: column; padding: 28px 24px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.plan--featured { border: 2px solid var(--accent); box-shadow: 0 16px 36px rgba(200, 16, 46, .12); }
.plan--current { border-color: var(--brand); }
.plan__ribbon { position: absolute; top: -13px; left: 24px; padding: 4px 12px; font-size: 12px; font-weight: 700; color: #fff; background: var(--accent); border-radius: 999px; }
.plan__name { margin: 0 0 6px; font-size: 22px; color: var(--ink); }
.plan__tagline { margin: 0 0 20px; color: var(--muted); font-size: 15px; }
.plan__price { margin: 0 0 20px; }
.plan__amount { font-size: 44px; font-weight: 800; line-height: 1; letter-spacing: -.02em; color: var(--ink); }
.plan__period { color: var(--muted); font-size: 15px; }
.plan__features { margin: 24px 0 0; padding: 20px 0 0; list-style: none; border-top: 1px solid var(--line); display: grid; gap: 10px; font-size: 15px; }
.plan__features li { position: relative; padding-left: 28px; }
.plan__features li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: #e3f4ea url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e7b4a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E") center / 12px no-repeat; }
.pricing__note { margin: 28px 0 0; text-align: center; font-size: 14px; color: var(--muted); }
.pricing__content { max-width: 760px; margin: 48px auto 0; }

/* Member pages (Paid Member Subscriptions forms) */
.page-template-default .entry__content .pms-form, .entry__content #pms_login, .entry__content .pms-account-navigation { max-width: 640px; }
.entry__content input[type=text], .entry__content input[type=email], .entry__content input[type=password] { width: 100%; min-height: 48px; padding: 12px 14px; font: inherit; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.entry__content input[type=submit], .entry__content button[type=submit] { min-height: 48px; padding: 12px 22px; font: inherit; font-weight: 700; color: #fff; background: var(--brand); border: 0; border-radius: 14px; cursor: pointer; }

/* Breadcrumbs */
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 20px; padding: 0; list-style: none; font-size: 14px; color: var(--muted); }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; color: #a0a8b8; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs [aria-current] { color: var(--text); }

/* Sections */
.section { margin-top: 44px; }
.section__title { margin: 0 0 16px; font-size: 24px; line-height: 1.25; color: var(--ink); letter-spacing: -.01em; }
.section__lead { margin: -8px 0 16px; color: var(--muted); }
.section__more { margin: 12px 0 0; color: var(--muted); font-size: 14px; }

/* Location head */
.location__head { max-width: 860px; }
.location__summary { margin: 12px 0 10px; font-size: 18px; line-height: 1.6; color: var(--text); }
.location__meta { margin: 0; font-size: 14px; color: var(--muted); }

.stat-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin: 28px 0 0; }
.stat-tiles > div { padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.stat-tiles dt { font-size: 13px; color: var(--muted); }
.stat-tiles dd { margin: 4px 0 0; font-size: 28px; font-weight: 800; color: var(--ink); line-height: 1.1; font-variant-numeric: tabular-nums; }

/* Link lists */
.link-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; margin: 0; padding: 0; list-style: none; }
.link-list li { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.link-list a { font-weight: 600; text-decoration: none; }
.link-list span { font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }
.link-list__all { background: transparent !important; border-style: dashed !important; }

.mini-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 8px; margin: 0; padding: 0; list-style: none; }
.mini-list li { display: grid; gap: 2px; padding: 12px 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.mini-list a { font-weight: 600; text-decoration: none; }
.mini-list span { font-size: 13px; color: var(--muted); }

/* Bars */
.bars { display: grid; gap: 10px; max-width: 760px; margin: 0; padding: 0; list-style: none; }
.bars li { display: grid; grid-template-columns: 220px 1fr 70px; align-items: center; gap: 12px; font-size: 14px; }
.bars__track { height: 10px; background: #e9edf5; border-radius: 999px; overflow: hidden; }
.bars__fill { display: block; height: 100%; background: var(--brand); border-radius: 999px; }
.bars__value { color: var(--muted); text-align: right; font-variant-numeric: tabular-nums; }
@media (max-width: 600px) { .bars li { grid-template-columns: 1fr 60px; } .bars__track { grid-column: 1 / -1; grid-row: 2; } }

/* Tables */
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th, .data-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.data-table thead th { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); background: var(--soft); }
.data-table tbody tr:last-child > * { border-bottom: 0; }
.data-table tbody th { font-weight: 600; }
.data-table a { text-decoration: none; }
.data-table td { font-variant-numeric: tabular-nums; }

/* FAQ */
.faq details { margin-bottom: 10px; padding: 0 18px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.faq summary { padding: 16px 0; font-weight: 600; color: var(--ink); cursor: pointer; }
.faq details p { margin: 0 0 16px; color: var(--text); }

/* Prose */
.prose { max-width: 760px; }
.prose h2, .prose h3 { color: var(--ink); line-height: 1.3; }
.prose p, .prose li { color: var(--text); }
.panel.prose { max-width: none; }

/* States grid */
.states-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 8px; margin: 0; padding: 0; list-style: none; }
.states-grid li > a, .states-grid li > span { display: grid; grid-template-columns: 36px 1fr; grid-template-rows: auto auto; column-gap: 10px; padding: 10px 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; text-decoration: none; color: var(--text); transition: border-color .15s, transform .15s; }
.states-grid li > a:hover { border-color: var(--brand); transform: translateY(-1px); }
.states-grid__code { grid-row: 1 / 3; display: grid; place-items: center; height: 36px; font-size: 13px; font-weight: 800; color: var(--brand); background: #eef2fb; border-radius: 10px; }
.states-grid__name { font-weight: 600; font-size: 14px; line-height: 1.3; }
.states-grid__count { font-size: 12px; color: var(--muted); }
.states-grid .is-empty > span { opacity: .55; }

/* Hero */
.hero { padding: 64px 0 48px; background: linear-gradient(180deg, #fff 0%, var(--soft) 100%); border-bottom: 1px solid var(--line); }
.hero__inner { max-width: 1180px; }
.hero__title { max-width: 760px; margin: 0 0 16px; font-size: clamp(34px, 5vw, 56px); line-height: 1.05; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.hero__lead { max-width: 680px; margin: 0 0 28px; font-size: 18px; color: var(--muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 32px; margin: 40px 0 0; }
.hero__stats dt { font-size: 13px; color: var(--muted); }
.hero__stats dd { margin: 0; font-size: 32px; font-weight: 800; color: var(--ink); }

.trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.trust > div { max-width: 720px; }
.trust p { margin: 0; color: var(--muted); }

/* Company page extras */
.company__location a { color: inherit; }
.company__facts { font-weight: 400; }
.tags--links a { text-decoration: none; color: inherit; }
.panel__note { margin: 14px 0 0; font-size: 13px; color: var(--muted); }

/* Mobile */
@media (max-width: 720px) {
	.site-header__inner { flex-wrap: wrap; gap: 4px 16px; min-height: 0; padding-top: 10px; padding-bottom: 10px; }
	.custom-logo { max-height: 38px; }
	.site-nav { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
	.site-nav::-webkit-scrollbar { display: none; }
	.site-nav__list { gap: 18px; white-space: nowrap; padding: 4px 0; }
	.site-nav__list a { font-size: 14px; }
	div.page { padding-top: 24px; }
	.stat-tiles { grid-template-columns: 1fr 1fr; }
	.stat-tiles dd { font-size: 24px; }
	.location__summary { font-size: 16px; }
	.section__title { font-size: 21px; }
}
.company-grid { grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr)); }
.link-list { grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr)); }
.mini-list { grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); }
.page__title, .company-card__name { overflow-wrap: anywhere; }

/* ================================================================== */
/* Home                                                                */
/* ================================================================== */
.i { width: 18px; height: 18px; flex: none; }
.container--narrow { max-width: 840px; }

/* Header CTA */
.site-nav__list { align-items: center; }
.site-nav__cta a { display: inline-block; padding: 8px 14px; color: var(--brand) !important; border: 1px solid #c5ccda; border-radius: 10px; }
.site-nav__cta a:hover { border-color: var(--brand); }

/* Hero */
.home-hero { position: relative; padding: 56px 0 64px; background:
	radial-gradient(900px 420px at 88% 0%, rgba(19, 40, 90, .07), transparent 70%),
	radial-gradient(700px 360px at 0% 100%, rgba(200, 16, 46, .05), transparent 70%),
	#fff; border-bottom: 1px solid var(--line); }
.home-hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 56px; align-items: center; }
.home-hero__title { margin: 0 0 18px; font-size: clamp(34px, 4.6vw, 54px); line-height: 1.06; font-weight: 800; letter-spacing: -.025em; color: var(--ink); }
.home-hero__lead { max-width: 580px; margin: 0 0 28px; font-size: 18px; line-height: 1.6; color: var(--muted); }
.home-hero__media { display: grid; gap: 16px; }

.search-card { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 18px 40px rgba(15, 31, 61, .08); }
.search-card--inline { margin-top: 24px; max-width: 860px; box-shadow: var(--shadow); }
.search-card__popular { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 14px 2px 0; font-size: 14px; }
.search-card__popular span { color: var(--muted); }
.search-card__popular a { font-weight: 600; text-decoration: none; }

.loc-search { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end; }
.loc-search__field { display: grid; gap: 6px; min-width: 0; }
.loc-search label { font-size: 13px; font-weight: 600; color: var(--ink); }
.loc-search label span { font-weight: 400; color: var(--muted); }
.loc-search select { width: 100%; min-height: 52px; padding: 0 40px 0 14px; font: inherit; font-size: 15px; color: var(--text); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6478' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center / 18px no-repeat; border: 1px solid #d5dbe6; border-radius: 14px; appearance: none; -webkit-appearance: none; cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.loc-search select:hover { border-color: #b7c0d1; }
.loc-search select:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(19, 40, 90, .12); }
.loc-search select:disabled { color: var(--muted); background-color: var(--soft); cursor: not-allowed; }
.loc-search__submit { gap: 8px; min-height: 52px; white-space: nowrap; border: 0; cursor: pointer; font-family: inherit; }

.trust-list { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 22px 0 0; padding: 0; list-style: none; font-size: 14px; color: var(--text); }
.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-list .i { color: #1e7b4a; }

.photo { margin: 0; }
.photo img { display: block; width: 100%; height: auto; border-radius: 22px; background: var(--soft); }
.photo figcaption { margin-top: 8px; font-size: 12px; color: var(--muted); }
.photo figcaption a { color: inherit; }
.photo--hero img { aspect-ratio: 1600 / 774; object-fit: cover; box-shadow: 0 24px 48px rgba(15, 31, 61, .16); }

.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0; }
.hero-facts > div { padding: 14px 16px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.hero-facts dt { font-size: 12px; line-height: 1.35; color: var(--muted); }
.hero-facts dd { margin: 4px 0 0; font-size: 26px; font-weight: 800; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }

/* Bands */
.band { padding: 72px 0; }
.band--white { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band__head { max-width: 760px; margin-bottom: 28px; }
.band__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.band__head h2 { margin: 0 0 10px; font-size: clamp(26px, 3vw, 34px); line-height: 1.2; font-weight: 800; letter-spacing: -.015em; color: var(--ink); }
.band__head p { margin: 0; font-size: 17px; color: var(--muted); }
.band__head p strong { color: var(--ink); }
.band__sub { margin: 40px 0 16px; font-size: 20px; color: var(--ink); }
.site-main > .band:last-child { border-bottom: 0; }

.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 56px; align-items: center; }
.split--top { align-items: start; }

/* Steps */
.steps { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps li { position: relative; padding: 18px 20px 18px 72px; background: var(--soft); border: 1px solid var(--line); border-radius: 18px; counter-increment: step; }
.steps li::before { content: counter(step); position: absolute; left: 20px; top: 18px; display: grid; place-items: center; width: 36px; height: 36px; font-weight: 800; color: #fff; background: var(--brand); border-radius: 12px; }
.steps h3 { margin: 0 0 4px; font-size: 17px; color: var(--ink); }
.steps p { margin: 0; font-size: 15px; color: var(--muted); }
.photo--side img { aspect-ratio: 1200 / 975; object-fit: cover; }

/* Cost */
.data-table caption { padding: 14px 14px 0; text-align: left; font-size: 13px; color: var(--muted); caption-side: top; }
.data-table .num { font-weight: 700; color: var(--ink); }
.data-table--cost td, .data-table--cost th, .data-table--compare td, .data-table--compare th { white-space: normal; }
.data-table--compare th[scope=row] { width: 18%; color: var(--muted); font-weight: 600; }
.data-table--compare thead th:not(:empty) { color: var(--ink); font-size: 13px; }
.note { margin: 12px 0 0; font-size: 14px; color: var(--muted); }
.factor-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.factor-grid li { padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.factor-grid h4 { margin: 0 0 6px; font-size: 16px; color: var(--ink); }
.factor-grid p { margin: 0; font-size: 14px; color: var(--muted); }

/* Carrier vs broker */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.duo__card { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.duo__tag { display: inline-block; margin: 0 0 12px; padding: 4px 10px; font-size: 12px; font-weight: 700; color: var(--brand); background: #eef2fb; border-radius: 999px; }
.duo__card h3 { margin: 0 0 8px; font-size: 20px; color: var(--ink); }
.duo__card p:last-child { margin: 0; color: var(--muted); }

/* Checklist */
.checklist { display: grid; gap: 14px; margin: 0 0 20px; padding: 0; list-style: none; }
.checklist li { display: flex; gap: 12px; font-size: 16px; color: var(--muted); }
.checklist li strong { color: var(--ink); }
.checklist .i { margin-top: 3px; padding: 3px; width: 22px; height: 22px; color: #1e7b4a; background: #e3f4ea; border-radius: 50%; }
.text-link { font-weight: 700; text-decoration: none; }
.redflags { padding: 26px; background: #fff7f8; border: 1px solid #f6c9d0; border-radius: 20px; }
.redflags h3 { margin: 0 0 12px; font-size: 18px; color: var(--accent); }
.redflags ul { display: grid; gap: 10px; margin: 0; padding-left: 20px; color: var(--text); }

/* Business CTA */
.biz-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 36px 40px; color: #dfe5f3; background: linear-gradient(135deg, #13285a 0%, #0f1f3d 100%); border-radius: 26px; }
.biz-cta h2 { margin: 0 0 8px; font-size: 28px; color: #fff; }
.biz-cta p { margin: 0; max-width: 620px; }
.eyebrow--light { color: #ff9aa9; }
.btn--light { color: var(--brand); background: #fff; }
.btn--light:hover { color: var(--brand); background: #eef2fb; }

@media (max-width: 960px) {
	.home-hero { padding: 32px 0 44px; }
	.home-hero__grid, .split { grid-template-columns: 1fr; gap: 32px; }
	.factor-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
	.loc-search { grid-template-columns: 1fr; }
	.search-card { padding: 16px; border-radius: 18px; }
	.hero-facts dd { font-size: 22px; }
	.band { padding: 52px 0; }
	.factor-grid, .duo { grid-template-columns: 1fr; }
	.biz-cta { padding: 28px 24px; }
	.steps li { padding-left: 64px; }
}
.states-more { margin-top: 12px; }
.states-more summary { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; font-weight: 700; color: var(--brand); background: #fff; border: 1px solid #c5ccda; border-radius: 12px; cursor: pointer; list-style: none; }
.states-more summary::-webkit-details-marker { display: none; }
.states-more summary::after { content: ""; width: 8px; height: 8px; margin-top: -3px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s; }
.states-more[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.states-more[open] summary { margin-bottom: 12px; }
@media (max-width: 720px) {
	.site-nav { mask-image: linear-gradient(90deg, #000 85%, transparent); -webkit-mask-image: linear-gradient(90deg, #000 85%, transparent); }
}

/* ================================================================== */
/* Video hero                                                          */
/* ================================================================== */
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.vhero { position: relative; isolation: isolate; display: grid; align-items: center; min-height: min(640px, 82vh); padding: 72px 0 88px; color: #fff; background: #0f1f3d; overflow: hidden; }
.vhero__media { position: absolute; inset: 0; z-index: -1; }
.vhero__video { width: 100%; height: 100%; object-fit: cover; }
.vhero__media::after { content: ""; position: absolute; inset: 0; background:
	linear-gradient(180deg, rgba(10, 20, 44, .72) 0%, rgba(10, 20, 44, .6) 45%, rgba(10, 20, 44, .85) 100%); }
.vhero__content { max-width: 880px; text-align: center; }
.vhero__title { margin: 0 0 14px; font-size: clamp(36px, 5.4vw, 64px); line-height: 1.04; font-weight: 800; letter-spacing: -.028em; color: #fff; text-wrap: balance; text-shadow: 0 2px 24px rgba(0, 0, 0, .25); }
.vhero__lead { margin: 0 auto 32px; max-width: 620px; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.5; color: rgba(255, 255, 255, .88); }

/* Search bar variant */
.loc-search--bar { grid-template-columns: 1fr 1fr auto; gap: 0; align-items: stretch; max-width: 760px; margin: 0 auto; padding: 8px; text-align: left; background: #fff; border-radius: 20px; box-shadow: 0 24px 60px rgba(0, 0, 0, .28); }
.loc-search--bar .loc-search__field { position: relative; gap: 0; padding: 8px 16px 6px; border-radius: 14px; transition: background .15s; }
.loc-search--bar .loc-search__field:hover { background: var(--soft); }
.loc-search--bar .loc-search__field + .loc-search__field::before { content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 1px; background: var(--line); }
.loc-search--bar label { font-size: 12px; font-weight: 700; letter-spacing: .02em; color: var(--ink); }
.loc-search--bar select { min-height: 30px; padding: 0 28px 0 0; font-size: 16px; font-weight: 500; background-color: transparent; background-position: right 0 center; border: 0; border-radius: 0; box-shadow: none !important; }
.loc-search--bar select:disabled { background-color: transparent; }
.loc-search--bar .loc-search__field:focus-within { background: var(--soft); box-shadow: inset 0 0 0 2px rgba(19, 40, 90, .18); }
.loc-search--bar .loc-search__submit { min-height: 60px; padding: 0 26px; font-size: 16px; border-radius: 14px; box-shadow: none; }

.vhero__popular { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; margin: 20px 0 0; font-size: 14px; color: rgba(255, 255, 255, .75); }
.vhero__popular a { color: #fff; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .35); }
.vhero__popular a:hover { border-bottom-color: #fff; color: #fff; }

.vhero__toggle { position: absolute; left: 16px; bottom: 14px; display: grid; place-items: center; width: 32px; height: 32px; padding: 0; color: #fff; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; cursor: pointer; backdrop-filter: blur(6px); transition: background .15s; }
.vhero__toggle:hover { background: rgba(255, 255, 255, .24); }
.vhero__toggle:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.vhero__toggle .i-play, .vhero__toggle.is-paused .i-pause { display: none; }
.vhero__toggle.is-paused .i-play { display: block; }
.vhero__credit { position: absolute; right: 16px; bottom: 12px; left: 64px; margin: 0; text-align: right; font-size: 11px; color: rgba(255, 255, 255, .6); }
.vhero__credit a { color: inherit; }

@media (prefers-reduced-motion: reduce) { .vhero__video { display: none; } .vhero__media { background: #0f1f3d url("../img/car-carrier-poster.jpg") center / cover; } }

/* Trust strip */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 36px; margin: 0 auto; padding-top: 16px; padding-bottom: 16px; list-style: none; font-size: 14px; font-weight: 500; color: var(--text); }
.trust-strip li { display: flex; align-items: center; gap: 8px; }
.trust-strip .i { color: #1e7b4a; }

@media (max-width: 720px) {
	.vhero { min-height: 0; padding: 48px 0 72px; }
	.vhero__lead { margin-bottom: 24px; }
	.loc-search--bar { grid-template-columns: 1fr; gap: 4px; padding: 8px; }
	.loc-search--bar .loc-search__field { padding: 10px 14px; background: var(--soft); }
	.loc-search--bar .loc-search__field + .loc-search__field::before { display: none; }
	.loc-search--bar .loc-search__submit { min-height: 54px; margin-top: 4px; }
	.vhero__credit { left: 56px; font-size: 10px; }
	.trust-strip ul { justify-content: flex-start; gap: 8px 20px; }
}
.site-footer__menu { flex-wrap: wrap; gap: 10px 22px; }
.site-footer__menu li { white-space: nowrap; }
@media (max-width: 720px) { .site-footer__inner { flex-direction: column; } }

/* ================================================================== */
/* Browse by state: tile map, ranking, cities                          */
/* ================================================================== */
.browse { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(280px, 1fr); gap: 20px; align-items: stretch; }
.browse__map, .browse__side { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.browse__map { padding: 28px 28px 22px; }
.browse__side { display: flex; flex-direction: column; padding: 24px; }
.browse__side h3 { margin: 0 0 14px; font-size: 16px; color: var(--ink); }
.browse__all { margin-top: auto; padding-top: 16px; font-weight: 700; text-decoration: none; }
.browse__all span { display: inline-block; transition: transform .15s; }
.browse__all:hover span { transform: translateX(3px); }

/* Tile map */
.usmap { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: repeat(8, auto); gap: 5px; margin: 0; padding: 0; list-style: none; }
.usmap__cell { position: relative; min-width: 0; }
.usmap__tile { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; aspect-ratio: 1; border-radius: 10px; text-decoration: none; line-height: 1; transition: transform .15s ease, box-shadow .15s ease, background .15s; }
.usmap__code { font-size: clamp(9px, 1.05vw, 13px); font-weight: 800; letter-spacing: .02em; }
.usmap__num { margin-top: 3px; font-size: clamp(8px, .85vw, 11px); font-weight: 600; opacity: .85; font-variant-numeric: tabular-nums; }
.usmap__tile.lvl-0 { color: #a3abbb; background: #f1f3f7; }
.usmap__tile.lvl-1 { color: var(--brand); background: #e4e9f4; }
.usmap__tile.lvl-2 { color: #fff; background: #7d8fb8; }
.usmap__tile.lvl-3 { color: #fff; background: #3e5690; }
.usmap__tile.lvl-4 { color: #fff; background: var(--brand); }
a.usmap__tile:hover, a.usmap__tile:focus-visible { z-index: 2; transform: scale(1.12); box-shadow: 0 10px 22px rgba(15, 31, 61, .25); outline: 0; }
a.usmap__tile:focus-visible { box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--accent); }
a.usmap__tile.lvl-1:hover { background: #d3dbee; }

/* Tooltip */
.usmap__tile[data-tip]::after { content: attr(data-tip); position: absolute; bottom: calc(100% + 8px); left: 50%; z-index: 5; padding: 7px 10px; font-size: 12px; font-weight: 600; line-height: 1.3; letter-spacing: 0; white-space: nowrap; color: #fff; background: var(--ink); border-radius: 8px; box-shadow: 0 8px 20px rgba(15, 31, 61, .25); opacity: 0; pointer-events: none; transform: translate(-50%, 4px); transition: opacity .15s, transform .15s; }
.usmap__tile[data-tip]:hover::after, .usmap__tile[data-tip]:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }
.usmap__cell:nth-child(-n+4) .usmap__tile::after { bottom: auto; top: calc(100% + 8px); }
@media (hover: none) { .usmap__tile[data-tip]::after { display: none; } }

.usmap-legend { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 20px 0 0; padding: 0; list-style: none; font-size: 13px; color: var(--muted); }
.usmap-legend li { display: flex; align-items: center; gap: 7px; }
.usmap-legend i { width: 14px; height: 14px; border-radius: 4px; }
.usmap-legend .lvl-4 { background: var(--brand); } .usmap-legend .lvl-3 { background: #3e5690; } .usmap-legend .lvl-2 { background: #7d8fb8; } .usmap-legend .lvl-1 { background: #e4e9f4; }

/* Ranking */
.rank { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }
.rank a { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 12px; padding: 10px 10px; text-decoration: none; color: var(--text); border-radius: 12px; transition: background .15s; }
.rank a:hover { background: var(--soft); }
.rank__pos { display: grid; place-items: center; width: 26px; height: 26px; font-size: 12px; font-weight: 800; color: var(--brand); background: #eef2fb; border-radius: 8px; }
.rank__body { display: grid; gap: 6px; min-width: 0; }
.rank__name { font-weight: 700; color: var(--ink); }
.rank__bar { height: 6px; background: #eef1f6; border-radius: 999px; overflow: hidden; }
.rank__bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), #3e5690); border-radius: inherit; }
.rank__count { min-width: 28px; font-size: 15px; font-weight: 800; color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }

/* Cities */
.browse__cities { margin-top: 44px; }
.browse__cities h3 { margin: 0 0 16px; font-size: 20px; color: var(--ink); }
.city-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.city-grid a { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 12px; row-gap: 10px; align-items: center; height: 100%; padding: 16px 18px; text-decoration: none; background: #fff; border: 1px solid var(--line); border-radius: 16px; transition: border-color .15s, transform .15s, box-shadow .15s; }
.city-grid a:hover { border-color: #b9c3d8; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(15, 31, 61, .08); }
.city-grid__pin { width: 36px; height: 36px; padding: 8px; color: var(--accent); background: #fdecef; border-radius: 10px; }
.city-grid__text { display: grid; min-width: 0; }
.city-grid__name { font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.city-grid__state { font-size: 13px; color: var(--muted); }
.city-grid__count { grid-column: 1 / -1; justify-self: start; padding: 4px 10px; font-size: 12px; font-weight: 700; color: var(--brand); background: #eef2fb; border-radius: 999px; }

@media (max-width: 1020px) {
	.browse { grid-template-columns: 1fr; }
	.city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
	.browse__map { padding: 16px 12px 16px; }
	.usmap { gap: 3px; }
	.usmap__tile { border-radius: 6px; }
	.usmap__num { display: none; }
	.city-grid { gap: 8px; }
	.city-grid a { padding: 12px; column-gap: 10px; }
	.city-grid__pin { width: 30px; height: 30px; padding: 6px; }
}

/* ================================================================== */
/* Home v2 — editorial sections                                        */
/* ================================================================== */
:root { --serif: "Fraunces", Georgia, "Times New Roman", serif; --asphalt: #2a3142; }

.kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.kicker::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.kicker--light { color: #ff9aa9; }
.display { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(30px, 3.6vw, 46px); font-weight: 600; line-height: 1.08; letter-spacing: -.015em; color: var(--ink); font-variation-settings: "opsz" 96; text-wrap: balance; }
.band__head .display { margin-bottom: 14px; }
.band--tight { padding: 56px 0; }

/* --- Journey (how it works) --- */
.journey { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: start; }
.journey__intro { position: sticky; top: 100px; }
.journey__lede { margin: 0 0 32px; font-size: 17px; color: var(--muted); max-width: 440px; }
.photo--tilt { max-width: 420px; padding: 10px 10px 0; background: #fff; border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 18px 40px rgba(15, 31, 61, .12); transform: rotate(-1.6deg); }
.photo--tilt img { border-radius: 3px; aspect-ratio: 1200 / 975; object-fit: cover; }
.photo--tilt figcaption { padding: 8px 2px 10px; }

.route { position: relative; margin: 0; padding: 8px 0 0; list-style: none; }
.route::before { content: ""; position: absolute; left: 17px; top: 14px; bottom: 26px; width: 12px; border-radius: 6px; background:
	repeating-linear-gradient(180deg, #fff 0 10px, transparent 10px 22px) center / 2px 100% no-repeat, var(--asphalt); }
.route__stop { position: relative; padding: 0 0 40px 72px; }
.route__stop::before { content: ""; position: absolute; left: 9px; top: 2px; width: 28px; height: 28px; background: #fff; border: 6px solid var(--brand); border-radius: 50%; box-shadow: 0 0 0 4px #fff; }
.route__stop--end::before { border-color: var(--accent); }
.route__stop--end { padding-bottom: 0; }
.route__when { display: inline-block; margin-bottom: 8px; padding: 3px 10px; font-size: 12px; font-weight: 700; letter-spacing: .03em; color: var(--brand); background: #eef2fb; border-radius: 6px; }
.route__stop--end .route__when { color: var(--accent); background: #fdecef; }
.route h3 { margin: 0 0 6px; font-size: 20px; line-height: 1.3; color: var(--ink); }
.route p { margin: 0; max-width: 520px; color: var(--muted); }

/* --- Estimator --- */
.estimator { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr); gap: 28px; align-items: start; }
.estimator__controls { display: grid; gap: 22px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.estimator fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.estimator legend { margin-bottom: 10px; padding: 0; font-size: 14px; font-weight: 700; color: var(--ink); }
.estimator__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.seg { display: flex; gap: 6px; padding: 5px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; }
.seg--wrap { flex-wrap: wrap; }
.seg label { flex: 1 1 auto; position: relative; }
.seg input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.seg span { display: block; padding: 10px 12px; font-size: 14px; font-weight: 600; text-align: center; white-space: nowrap; color: var(--text); border-radius: 10px; transition: background .15s, color .15s, box-shadow .15s; }
.seg label:hover span { background: #e9edf5; }
.seg input:checked + span { color: #fff; background: var(--brand); box-shadow: 0 4px 10px rgba(19, 40, 90, .25); }
.seg input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.toggle { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; }
.toggle input { position: absolute; opacity: 0; }
.toggle__ui { position: relative; width: 42px; height: 24px; background: #d5dbe6; border-radius: 999px; transition: background .15s; }
.toggle__ui::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0, 0, 0, .2); transition: transform .18s; }
.toggle input:checked + .toggle__ui { background: var(--brand); }
.toggle input:checked + .toggle__ui::after { transform: translateX(18px); }
.toggle input:focus-visible + .toggle__ui { outline: 2px solid var(--accent); outline-offset: 2px; }

.receipt { position: sticky; top: 100px; padding: 28px 28px 34px; background: #fffdf8; border: 1px solid #ece6d8; border-radius: 6px 6px 0 0; box-shadow: 0 20px 40px rgba(15, 31, 61, .1);
	-webkit-mask: conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) 50% / 18px 100%; mask: conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) 50% / 18px 100%; }
.receipt__head { display: flex; justify-content: space-between; gap: 12px; margin: 0 0 6px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.receipt__head span { font-weight: 500; letter-spacing: 0; text-transform: none; }
.receipt__total { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4vw, 52px); font-weight: 700; line-height: 1.05; color: var(--ink); font-variant-numeric: tabular-nums lining-nums; }
.estimator.is-bump .receipt__total { animation: bump .35s ease; }
@keyframes bump { from { opacity: .35; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.receipt__days { margin: 8px 0 18px; color: var(--muted); }
.receipt__days strong { color: var(--ink); }
.receipt__lines { margin: 0; padding: 14px 0 0; list-style: none; border-top: 2px dashed #ddd5c3; font-size: 14px; }
.receipt__lines li { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; }
.receipt__lines li span:last-child { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.receipt__note { margin: 14px 0 0; padding-top: 14px; border-top: 2px dashed #ddd5c3; font-size: 12px; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .estimator.is-bump .receipt__total { animation: none; } }

.price-table { margin-top: 24px; }
.price-table summary { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--brand); cursor: pointer; list-style: none; }
.price-table summary::-webkit-details-marker { display: none; }
.price-table summary::before { content: "+"; display: grid; place-items: center; width: 22px; height: 22px; font-size: 16px; line-height: 1; color: #fff; background: var(--brand); border-radius: 6px; }
.price-table[open] summary::before { content: "–"; }
.price-table .table-wrap { margin-top: 14px; }

/* --- Versus --- */
.versus { display: grid; grid-template-columns: 1fr 56px 1fr; align-items: stretch; }
.versus__side { padding: 28px 30px 30px; background: var(--soft); border: 1px solid var(--line); border-radius: 22px; }
.versus__side--dark { color: #cfd6e6; background: var(--ink); border-color: var(--ink); }
.versus__art { display: block; width: 100%; max-width: 300px; height: auto; margin: 0 0 18px; color: var(--brand); }
.versus__side--dark .versus__art { color: #fff; }
.versus__side h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); }
.versus__side--dark h3 { color: #fff; }
.versus__vs { align-self: center; justify-self: center; display: grid; place-items: center; width: 48px; height: 48px; margin: 0 -8px; z-index: 1; font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--accent); background: #fff; border: 1px solid var(--line); border-radius: 50%; box-shadow: var(--shadow); }
.spec { margin: 0; }
.spec > div { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; border-top: 1px solid rgba(15, 31, 61, .1); }
.versus__side--dark .spec > div { border-top-color: rgba(255, 255, 255, .14); }
.spec dt { flex: none; width: 110px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.versus__side--dark .spec dt { color: #8f9bb8; }
.spec dd { margin: 0; font-weight: 600; color: var(--ink); }
.versus__side--dark .spec dd { color: #fff; }
.versus__note { margin: 16px 0 0; font-size: 13px; color: #8f9bb8; }

/* --- Carrier vs broker flows --- */
.flows { display: grid; gap: 16px; }
.flow { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); grid-template-rows: auto 1fr; column-gap: 40px; padding: 26px 30px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.flow__title { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px; margin: 0 0 18px; font-size: 18px; color: var(--ink); }
.flow__title span { font-size: 13px; font-weight: 600; color: var(--muted); }
.flow__line { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.flow__line li { display: grid; padding: 10px 14px; font-weight: 700; color: var(--ink); background: var(--soft); border: 1px solid var(--line); border-radius: 12px; }
.flow__line li + li::before { content: "→"; position: absolute; margin: 0 0 0 -26px; align-self: center; color: #a3abbb; font-weight: 400; }
.flow__line li + li { position: relative; margin-left: 18px; }
.flow__line li.is-key { color: #fff; background: var(--brand); border-color: var(--brand); }
.flow__line small { font-size: 11px; font-weight: 500; opacity: .8; }
.flow > p:last-child { margin: 0; align-self: center; color: var(--muted); }

/* --- By the numbers (dark band) --- */
.band--ink { color: #c6cde0; background: var(--ink); }
.band--ink .display { color: #fff; }
.band--ink .band__head p { color: #aab4cc; }
.numbers { display: grid; grid-template-columns: 1.3fr 1fr 1fr; border-top: 1px solid rgba(255, 255, 255, .16); }
.numbers__item { padding: 26px 28px 28px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.numbers__item + .numbers__item { padding-left: 28px; border-left: 1px solid rgba(255, 255, 255, .16); }
.numbers__item:nth-child(4) { border-left: 0; padding-left: 0; }
.numbers__item--big { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; }
.numbers__item:nth-child(4), .numbers__item:nth-child(4) ~ .numbers__item { }
.numbers__value { margin: 0 0 8px; font-family: var(--serif); font-size: clamp(40px, 4.4vw, 60px); font-weight: 600; line-height: 1; color: #fff; font-variant-numeric: lining-nums; }
.numbers__value span { font-size: .5em; color: #ff9aa9; }
.numbers__item--big .numbers__value { font-size: clamp(80px, 10vw, 150px); letter-spacing: -.03em; }
.numbers__item p:last-child { margin: 0; max-width: 300px; }
.numbers__foot { margin: 22px 0 0; font-size: 13px; color: #8f9bb8; }
.numbers__foot a { color: #fff; }

/* --- Choose / checklist --- */
.choose { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 56px; align-items: start; }
.choose__lede { margin: 0 0 22px; color: var(--muted); }
.checks { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.checks label { display: flex; gap: 14px; padding: 16px 18px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; cursor: pointer; transition: background .15s, border-color .15s; }
.checks label:hover { border-color: #c5ccda; }
.checks input { position: absolute; opacity: 0; }
.checks__box { flex: none; width: 24px; height: 24px; margin-top: 1px; background: #fff; border: 2px solid #b7c0d1; border-radius: 7px; transition: background .15s, border-color .15s; }
.checks input:checked + .checks__box { border-color: #1e7b4a; background: #1e7b4a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4.5 4.5L19 7'/%3E%3C/svg%3E") center / 16px no-repeat; }
.checks input:focus-visible + .checks__box { outline: 2px solid var(--accent); outline-offset: 2px; }
.checks input:checked ~ span:last-child { color: var(--muted); }
.checks input:checked ~ span:last-child strong { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(30, 123, 74, .6); }
.checks label:has(input:checked) { background: #f1f9f4; border-color: #cfe9da; }
.checks strong { color: var(--ink); }
.checks__progress { margin: 14px 0 0; font-size: 14px; font-weight: 600; color: var(--muted); }
.checks__progress.is-done { color: #1e7b4a; }

.walkaway { position: sticky; top: 100px; padding: 30px 28px; background: #fff; border: 2px solid var(--accent); border-radius: 18px; }
.walkaway__stamp { display: inline-block; margin: 0 0 18px; padding: 6px 14px; font-family: var(--serif); font-size: 22px; font-weight: 700; font-style: italic; color: var(--accent); border: 2px solid var(--accent); border-radius: 8px; transform: rotate(-3deg); }
.walkaway ul { display: grid; gap: 12px; margin: 0 0 20px; padding: 0; list-style: none; }
.walkaway li { position: relative; padding-left: 26px; color: var(--text); }
.walkaway li::before { content: "✕"; position: absolute; left: 0; top: 0; font-weight: 800; color: var(--accent); }
.walkaway__link { font-size: 14px; font-weight: 700; text-decoration: none; }

/* --- FAQ split --- */
.faq-split { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 64px; align-items: start; }
.faq-split__head { position: sticky; top: 100px; }
.faq-split__head p:last-child { color: var(--muted); }
.faq--clean details { margin: 0; padding: 0; background: none; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.faq--clean details:first-child { border-top: 1px solid var(--line); }
.faq--clean summary { position: relative; padding: 22px 48px 22px 0; font-size: 18px; font-weight: 600; list-style: none; }
.faq--clean summary::-webkit-details-marker { display: none; }
.faq--clean summary::after { content: ""; position: absolute; right: 4px; top: 50%; width: 30px; height: 30px; margin-top: -15px; border-radius: 50%; background: var(--soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2313285a' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 16px no-repeat; transition: transform .2s, background-color .2s; }
.faq--clean details[open] summary::after { transform: rotate(45deg); background-color: #eef2fb; }
.faq--clean summary:hover { color: var(--brand); }
.faq--clean details p { margin: -6px 0 22px; max-width: 640px; font-size: 16px; line-height: 1.65; color: var(--muted); }

/* --- Business --- */
.biz { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 48px; align-items: center; padding: 44px 48px; background: var(--soft); border: 1px solid var(--line); border-radius: 26px; overflow: hidden; }
.biz h2 { margin: 0 0 10px; font-family: var(--serif); font-size: clamp(26px, 2.8vw, 34px); font-weight: 600; line-height: 1.15; color: var(--ink); }
.biz__copy p:not(.kicker) { margin: 0 0 22px; color: var(--muted); max-width: 480px; }
.biz__preview { position: relative; display: grid; place-items: center; min-height: 220px; }
.biz__preview::before { content: ""; position: absolute; inset: 10px 20px; border: 2px dashed #c9d1e1; border-radius: 22px; transform: rotate(3deg); }
.biz__card { position: relative; width: min(340px, 100%); padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 24px 48px rgba(15, 31, 61, .14); transform: rotate(-2deg); }
.biz__card .plan-badge { position: absolute; top: 16px; right: 16px; margin: 0; }
.biz__row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.biz__row .company-logo { width: 48px; height: 48px; border-radius: 12px; }
.biz__row .company-logo__initials { font-size: 16px; }
.biz__row strong { display: block; color: var(--ink); }
.biz__row small { color: var(--muted); }
.biz__card p { margin: 0 0 12px; font-size: 13px; color: var(--muted); }

/* --- Responsive --- */
@media (max-width: 1020px) {
	.journey, .estimator, .choose, .faq-split, .biz { grid-template-columns: 1fr; gap: 36px; }
	.journey__intro, .receipt, .walkaway, .faq-split__head { position: static; }
	.numbers { grid-template-columns: 1fr 1fr; }
	.numbers__item--big { grid-column: 1 / -1; grid-row: auto; }
	.numbers__item, .numbers__item + .numbers__item { padding: 22px 22px 22px 0; border-left: 0; }
	.numbers__item:nth-child(even) { padding-left: 22px; border-left: 1px solid rgba(255, 255, 255, .16); }
	.flow { grid-template-columns: 1fr; row-gap: 16px; }
}
@media (max-width: 720px) {
	.versus { grid-template-columns: 1fr; gap: 0; }
	.versus__vs { margin: -10px auto; }
	.estimator__controls { padding: 20px; }
	.estimator__row { grid-template-columns: 1fr; }
	.seg span { padding: 10px 8px; font-size: 13px; white-space: normal; }
	.route__stop { padding-left: 60px; }
	.photo--tilt { transform: none; }
	.spec dt { width: 96px; }
	.biz { padding: 28px 22px; }
	.faq--clean summary { font-size: 16px; }
}
@media (max-width: 480px) {
	.numbers { grid-template-columns: 1fr; }
	.numbers__item:nth-child(even) { padding-left: 0; border-left: 0; }
}
.band__head .kicker { margin: 0 0 14px; font-size: 13px; color: var(--accent); }
.band--ink .band__head .kicker { color: #ff9aa9; }
.display { letter-spacing: -.006em; }
.estimator legend span { font-weight: 500; color: var(--muted); }
.seg--5 { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
@media (max-width: 720px) { .seg--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.flow__title .flow__count { font-size: 13px; font-weight: 600; color: var(--muted); }
/* numbers: big figure + tidy 2×2 grid with hairlines */
.numbers { grid-template-columns: 1.25fr 1fr 1fr; grid-template-rows: auto auto; gap: 1px; background: rgba(255, 255, 255, .14); border: 0; border-top: 1px solid rgba(255, 255, 255, .14); border-bottom: 1px solid rgba(255, 255, 255, .14); }
.numbers__item, .numbers__item + .numbers__item, .numbers__item:nth-child(4) { padding: 30px 30px 32px; background: var(--ink); border: 0; }
.numbers__item--big { padding-left: 0 !important; grid-row: 1 / span 2; }
@media (max-width: 1020px) {
	.numbers { grid-template-columns: 1fr 1fr; }
	.numbers__item--big { grid-column: 1 / -1; grid-row: auto; }
	.numbers__item, .numbers__item:nth-child(even) { padding: 24px 22px 26px 0; border: 0; }
	.numbers__item:nth-child(odd):not(.numbers__item--big) { padding-left: 22px; }
}
@media (max-width: 480px) { .numbers { grid-template-columns: 1fr; } .numbers__item, .numbers__item:nth-child(odd):not(.numbers__item--big) { padding: 22px 0; } }
.versus__art { max-width: 320px; }
.flow__title > span:first-child { font-size: 18px; font-weight: 500; color: var(--ink); }
.estimator__peek { display: none; }
@media (max-width: 720px) {
	.estimator__peek { position: sticky; bottom: 12px; z-index: 3; display: flex; align-items: baseline; justify-content: space-between; margin: 4px -8px -8px; padding: 12px 16px; color: #c6cde0; background: var(--ink); border-radius: 14px; box-shadow: 0 12px 28px rgba(15, 31, 61, .3); }
	.estimator__peek span { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
	.estimator__peek strong { font-family: var(--serif); font-size: 24px; color: #fff; font-variant-numeric: tabular-nums lining-nums; }
	.flow__line { flex-direction: column; align-items: flex-start; gap: 0; }
	.flow__line li + li { margin: 26px 0 0; }
	.flow__line li + li::before { content: "↓"; margin: 0; top: -23px; left: 14px; }
}

/* ================================================================== */
/* Footer v2                                                           */
/* ================================================================== */
.site-footer { position: relative; margin-top: 0; padding: 0 0 28px; color: #aab4cc; background: var(--ink); font-size: 15px; }
.site-main + .site-footer { margin-top: 0; }
.site-footer__road { height: 14px; background: repeating-linear-gradient(90deg, #f2c94c 0 34px, transparent 34px 60px) center / 100% 3px no-repeat, var(--asphalt); }
.site-footer__top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 56px; padding: 64px 0 48px; }
.site-footer__logo { display: inline-block; padding: 10px 14px; background: #fff; border-radius: 12px; }
.site-footer__logo img { display: block; width: auto; height: 38px; }
.site-footer__quote { margin: 24px 0 10px; max-width: 320px; font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1.2; color: #fff; }
.site-footer__about { margin: 0; max-width: 320px; font-size: 14px; line-height: 1.6; }
.site-footer__cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.site-footer__cols h2 { margin: 0 0 16px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ff9aa9; }
.site-footer__cols ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: #dfe5f3; text-decoration: none; transition: color .15s; }
.site-footer__cols a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.site-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 13px; color: #8f9bb8; }
.site-footer__bottom p { margin: 0; max-width: 820px; }
.site-footer__legal { display: flex; gap: 18px; margin: 0; padding: 0; list-style: none; }
@media (max-width: 1020px) {
	.site-footer__top { grid-template-columns: 1fr; gap: 40px; padding-top: 52px; }
	.site-footer__quote, .site-footer__about { max-width: 520px; }
}
@media (max-width: 640px) {
	.site-footer__cols { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
	.site-footer__quote { font-size: 22px; }
}
.site-footer .site-footer__quote { margin: 26px 0 12px; }
.site-footer .site-footer__about { margin: 0; }

/* ================================================================== */
/* Header v2                                                           */
/* ================================================================== */
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; padding: 10px 16px; font-weight: 700; color: #fff; background: var(--ink); border-radius: 10px; transition: top .15s; }
.skip-link:focus { top: 12px; color: #fff; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .94); backdrop-filter: saturate(1.6) blur(12px); -webkit-backdrop-filter: saturate(1.6) blur(12px); border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(15, 31, 61, .08); }
.site-header__inner, .site-header .site-header__inner { display: flex; flex-wrap: nowrap; align-items: center; gap: 28px; min-height: 76px; padding-top: 0; padding-bottom: 0; transition: min-height .2s; }
.site-header.is-scrolled .site-header__inner { min-height: 62px; }
.site-header .custom-logo { max-height: 46px; transition: max-height .2s; }
.site-header.is-scrolled .custom-logo { max-height: 38px; }
.site-brand { flex: none; }

.mainnav { flex: 1; display: flex; justify-content: center; }
.mainnav__list { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.mainnav__link { position: relative; display: inline-flex; align-items: center; gap: 6px; padding: 10px 12px; font: inherit; font-size: 15px; font-weight: 600; color: var(--ink); text-decoration: none; background: none; border: 0; border-radius: 10px; cursor: pointer; transition: color .15s, background .15s; }
.mainnav__link::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; background: repeating-linear-gradient(90deg, var(--accent) 0 6px, transparent 6px 10px); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.mainnav__link:hover, .mainnav__link[aria-expanded="true"] { color: var(--brand); background: var(--soft); }
.mainnav__link:hover::after, .mainnav__link.is-current::after, .mainnav__link[aria-expanded="true"]::after { transform: scaleX(1); }
.mainnav__link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.mainnav__chev { transition: transform .2s; }
.mainnav__link[aria-expanded="true"] .mainnav__chev { transform: rotate(180deg); }

/* Mega panel spans the header width */
.mainnav__item--mega { position: static; }
.mega { position: absolute; left: 0; right: 0; top: 100%; visibility: hidden; opacity: 0; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility 0s .18s; }
.mega.is-open, [data-mega].is-open .mega { visibility: visible; opacity: 1; transform: none; transition: opacity .18s, transform .18s; }
.mega__inner { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 36px; max-width: 1180px; margin: 0 auto; padding: 28px 16px 32px; }
.mega::before { content: ""; position: absolute; inset: 0; z-index: -1; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: 0 24px 48px rgba(15, 31, 61, .12); }
.mega__title { margin: 0 0 10px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.mega__list { display: grid; gap: 2px; margin: 0 0 12px; padding: 0; list-style: none; }
.mega__list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 10px; margin: 0 -10px; font-weight: 600; color: var(--ink); text-decoration: none; border-radius: 10px; transition: background .15s; }
.mega__list a:hover { background: var(--soft); }
.mega__count { min-width: 26px; padding: 2px 8px; font-size: 12px; font-weight: 700; text-align: center; color: var(--brand); background: #eef2fb; border-radius: 999px; }
.mega__more { font-size: 14px; font-weight: 700; text-decoration: none; }
.mega__promo { display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; padding: 24px; color: #c6cde0; text-decoration: none; background:
	repeating-linear-gradient(90deg, #f2c94c 0 22px, transparent 22px 38px) left 24px bottom 88px / calc(100% - 48px) 2px no-repeat, var(--ink); border-radius: 18px; transition: transform .2s; }
.mega__promo:hover { transform: translateY(-2px); color: #c6cde0; }
.mega__promo-kicker { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ff9aa9; }
.mega__promo-title { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.2; color: #fff; }
.mega__promo-link { margin-top: 6px; font-weight: 700; color: #fff; }

/* Actions */
.site-header__actions { flex: none; display: flex; align-items: center; gap: 18px; }
.site-header__biz { font-size: 15px; font-weight: 600; color: var(--muted); text-decoration: none; }
.site-header__biz:hover, .site-header__biz.is-current { color: var(--ink); }
.site-header__cta { min-height: 44px; padding: 10px 18px; font-size: 15px; box-shadow: 0 6px 14px rgba(200, 16, 46, .22); }

/* Burger + drawer */
.burger { display: none; align-items: center; gap: 10px; padding: 9px 14px; font: inherit; font-size: 14px; font-weight: 700; color: var(--ink); background: #fff; border: 1px solid #d5dbe6; border-radius: 12px; cursor: pointer; }
.burger__icon { position: relative; display: grid; gap: 4px; width: 18px; }
.burger__icon i { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] .burger__icon i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__icon i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__icon i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer { position: absolute; left: 0; right: 0; top: 100%; height: calc(100dvh - 100%); background: rgba(15, 31, 61, .35); }
.drawer[hidden] { display: none; }
.drawer__panel { max-height: 100%; overflow-y: auto; padding: 20px 16px 28px; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 24px 48px rgba(15, 31, 61, .18); animation: drawer-in .22s ease; }
@keyframes drawer-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .drawer__panel { animation: none; } .mega, .mega.is-open { transition: none; } }
html.has-drawer, html.has-drawer body { overflow: hidden; }
.drawer__search { padding: 16px; background: var(--soft); border: 1px solid var(--line); border-radius: 18px; }
.drawer__title { margin: 0 0 12px; font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); }
.drawer__search .loc-search { grid-template-columns: 1fr; }
.drawer__links { margin: 10px 0 0; padding: 0; list-style: none; }
.drawer__links a { display: flex; justify-content: space-between; align-items: center; padding: 15px 2px; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.drawer__links a::after { content: "→"; font-family: Inter, sans-serif; font-size: 18px; color: var(--accent); }
.drawer__sub { margin: 22px 0 10px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.drawer__chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.drawer__chips a { display: inline-block; padding: 8px 12px; font-size: 14px; font-weight: 600; color: var(--brand); text-decoration: none; background: #eef2fb; border-radius: 999px; }
.drawer__biz { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 15px; font-weight: 700; }
.drawer__biz a { text-decoration: none; }

@media (max-width: 1100px) { .mainnav__link { padding: 10px 9px; font-size: 14px; } .site-header__inner { gap: 16px; } .site-header__biz { display: none; } }
@media (max-width: 960px) {
	.mainnav, .site-header__cta { display: none; }
	.burger { display: inline-flex; }
	.site-header__actions { margin-left: auto; }
	.site-header__inner, .site-header .site-header__inner { min-height: 64px; }
	.site-header .custom-logo { max-height: 38px; }
}
@media (min-width: 961px) { .drawer { display: none !important; } }
.mega__promo { background: repeating-linear-gradient(90deg, #f2c94c 0 22px, transparent 22px 38px) left 24px top 28px / calc(100% - 48px) 2px no-repeat, var(--ink); }

/* ================================================================== */
/* How we verify                                                       */
/* ================================================================== */
.display--xl { font-size: clamp(38px, 5vw, 64px); line-height: 1.02; }
.verify-hero { padding: 36px 0 72px; background: radial-gradient(800px 380px at 90% 10%, rgba(19, 40, 90, .07), transparent 70%), #fff; border-bottom: 1px solid var(--line); }
.verify-hero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 64px; align-items: center; margin-top: 24px; }
.verify-hero__lede { max-width: 620px; margin: 0 0 18px; font-size: 19px; line-height: 1.6; color: var(--muted); }
.verify-hero__meta { margin: 0; font-size: 14px; font-weight: 600; color: var(--text); }

.record { position: relative; padding: 26px 26px 30px; background: #fffdf8; border: 1px solid #ece6d8; border-radius: 6px; box-shadow: 0 24px 48px rgba(15, 31, 61, .12); transform: rotate(1.5deg); }
.record::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: repeating-linear-gradient(90deg, var(--brand) 0 18px, var(--accent) 18px 36px); border-radius: 6px 6px 0 0; }
.record__head { display: flex; justify-content: space-between; margin: 6px 0 14px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.record__name { margin: 0 0 16px; padding-bottom: 14px; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); border-bottom: 2px dashed #ddd5c3; }
.record__rows { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; font-size: 14px; color: var(--text); }
.record__rows li { display: flex; align-items: center; gap: 10px; }
.record__rows .i { width: 20px; height: 20px; padding: 3px; color: #fff; background: #1e7b4a; border-radius: 6px; }
.record__stamp { position: absolute; right: 18px; bottom: 18px; margin: 0; padding: 6px 14px; font-family: var(--serif); font-size: 22px; font-weight: 700; font-style: italic; letter-spacing: .04em; text-transform: uppercase; color: #1e7b4a; border: 3px double #1e7b4a; border-radius: 10px; opacity: .88; transform: rotate(-12deg); }

.steps-edit { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps-edit__item { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.steps-edit__num { font-family: var(--serif); font-size: 64px; font-weight: 600; line-height: .9; color: transparent; -webkit-text-stroke: 1.5px var(--brand); font-variant-numeric: lining-nums; }
.steps-edit__body h3 { margin: 4px 0 14px; font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--ink); }
.steps-edit__body dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin: 0; }
.steps-edit__body dt { margin-bottom: 6px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.steps-edit__body dd { margin: 0; color: var(--text); }
.source-chip { display: inline-block; padding: 4px 10px; font-size: 14px; font-weight: 600; color: var(--brand); background: #eef2fb; border-radius: 8px; }

.verify-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 64px; align-items: start; }
.verify-split__lede { margin: 0; font-size: 17px; color: var(--muted); }
.not-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.not-list li { position: relative; padding: 18px 20px 18px 56px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.not-list li::before { content: ""; position: absolute; left: 18px; top: 19px; width: 22px; height: 22px; border-radius: 50%; background: #fdecef url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8102e' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7 7 17'/%3E%3C/svg%3E") center / 12px no-repeat; }
.not-list strong { color: var(--ink); }

.lanes { display: grid; gap: 12px; }
.lanes__lane { display: grid; grid-template-columns: 160px minmax(0, 1fr) auto; align-items: center; gap: 24px; padding: 22px 26px; background: var(--soft); border: 1px solid var(--line); border-radius: 18px; }
.lanes__lane--alt { background: #fff; }
.lanes__label { margin: 0; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.lanes__value { margin: 0; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.lanes__plans { display: flex; flex-wrap: wrap; gap: 6px; }
.lanes__plans span { padding: 6px 12px; font-size: 13px; font-weight: 700; color: var(--brand); background: #fff; border: 1px solid var(--line); border-radius: 999px; }
.lanes__plans .is-premium { color: #fff; background: var(--accent); border-color: var(--accent); }
.lanes__plans .is-pro { background: #e6ecfa; border-color: #e6ecfa; }

.numbers--row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.numbers--row .numbers__item, .numbers--row .numbers__item + .numbers__item { padding: 28px 24px 30px; }
.numbers--row .numbers__item:first-child { padding-left: 0; }

.verify-cta { display: grid; gap: 22px; max-width: 860px; margin: 0 auto; padding: 40px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }
.verify-cta .display { margin-bottom: 8px; }
.verify-cta p { margin: 0; color: var(--muted); }
.verify-cta .loc-search { text-align: left; }
.verify-cta__biz { font-size: 14px; }
.verify-cta__biz a { font-weight: 700; text-decoration: none; }

@media (max-width: 1020px) {
	.verify-hero__grid, .verify-split { grid-template-columns: 1fr; gap: 40px; }
	.record { max-width: 440px; }
	.steps-edit__body dl { grid-template-columns: 1fr; gap: 14px; }
	.lanes__lane { grid-template-columns: 1fr; gap: 10px; }
	.numbers--row { grid-template-columns: 1fr 1fr; }
	.numbers--row .numbers__item:nth-child(odd) { padding-left: 0; }
}
@media (max-width: 640px) {
	.steps-edit__item { grid-template-columns: 1fr; gap: 6px; padding: 26px 0; }
	.steps-edit__num { font-size: 44px; }
	.steps-edit__body h3 { font-size: 24px; }
	.verify-cta { padding: 26px 18px; }
	.record { transform: none; }
}
.out-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.out-list li { position: relative; padding: 18px 20px 18px 56px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.out-list li::before { content: ""; position: absolute; left: 18px; top: 19px; width: 22px; height: 22px; border-radius: 50%; background: #fdecef url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8102e' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7 7 17'/%3E%3C/svg%3E") center / 12px no-repeat; }
.out-list strong { color: var(--ink); }
.diy { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.diy li { position: relative; padding: 28px 26px; background: var(--soft); border: 1px solid var(--line); border-radius: 20px; }
.diy li + li::before { content: "→"; position: absolute; left: -14px; top: 38px; display: grid; place-items: center; width: 26px; height: 26px; font-size: 14px; color: var(--accent); background: #fff; border: 1px solid var(--line); border-radius: 50%; }
.diy__num { display: block; margin-bottom: 14px; font-family: var(--serif); font-size: 44px; font-weight: 600; line-height: 1; color: var(--brand); }
.diy h3 { margin: 0 0 8px; font-size: 19px; color: var(--ink); }
.diy p { margin: 0; color: var(--muted); }
.diy a { font-weight: 700; }
@media (max-width: 860px) { .diy { grid-template-columns: 1fr; } .diy li + li::before { content: "↓"; left: 26px; top: -14px; } }

/* ================================================================== */
/* Location pages (state / city)                                       */
/* ================================================================== */
.loc-hero { padding: 32px 0 44px; background: radial-gradient(800px 360px at 92% 0%, rgba(19, 40, 90, .07), transparent 70%), #fff; border-bottom: 1px solid var(--line); }
.loc-hero .breadcrumbs ol { margin-bottom: 26px; }
.loc-hero .display--xl { max-width: 900px; }
.loc-hero__summary { max-width: 780px; margin: 0 0 12px; font-size: 19px; line-height: 1.6; color: var(--text); }
.loc-hero__meta { margin: 0; font-size: 14px; color: var(--muted); }
.loc-stats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 32px 0 0; border-top: 1px solid var(--line); }
.loc-stats > div { padding: 18px 20px 0 0; }
.loc-stats > div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.loc-stats dt { font-size: 13px; color: var(--muted); }
.loc-stats dd { margin: 4px 0 0; font-family: var(--serif); font-size: 38px; font-weight: 600; line-height: 1; color: var(--ink); font-variant-numeric: lining-nums; }
.loc-stats dd span { font-size: .55em; color: var(--accent); }

/* Finder layout */
.finder { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: 32px; align-items: start; }
.filters { position: sticky; top: 88px; max-height: calc(100vh - 110px); overflow-y: auto; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 20px; scrollbar-width: thin; }
.filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.filters__title { margin: 0; font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); }
.filters__reset { padding: 0; font: inherit; font-size: 14px; font-weight: 700; color: var(--accent); background: none; border: 0; cursor: pointer; }
.filters__group { margin: 0; padding: 18px 0 0; border: 0; border-top: 1px solid var(--line); margin-top: 16px; }
.filters__label { display: block; margin-bottom: 10px; padding: 0; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.filters__select { width: 100%; min-height: 44px; padding: 0 36px 0 12px; font: inherit; font-size: 15px; color: var(--ink); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6478' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 12px center / 16px no-repeat; border: 1px solid #d5dbe6; border-radius: 12px; appearance: none; -webkit-appearance: none; }
.filters__select:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(19, 40, 90, .12); }
.filters__done { display: none; }
.filters__group--serving .toggle { font-size: 14px; line-height: 1.4; align-items: flex-start; }
.filters__group--serving .toggle__ui { flex: none; margin-top: 1px; }

.fcheck { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 15px; color: var(--text); cursor: pointer; }
.fcheck input { position: absolute; opacity: 0; }
.fcheck__box { flex: none; width: 20px; height: 20px; background: #fff; border: 2px solid #b7c0d1; border-radius: 6px; transition: background .15s, border-color .15s; }
.fcheck input:checked + .fcheck__box { border-color: var(--brand); background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4.5 4.5L19 7'/%3E%3C/svg%3E") center / 13px no-repeat; }
.fcheck input:focus-visible + .fcheck__box { outline: 2px solid var(--accent); outline-offset: 2px; }
.fcheck__text { flex: 1; }
.fcheck__n { font-size: 12px; font-weight: 700; color: var(--muted); }
.fcheck:hover .fcheck__box { border-color: var(--brand); }

.fseg { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 4px; padding: 4px; background: var(--soft); border: 1px solid var(--line); border-radius: 12px; }
.fseg label { position: relative; }
.fseg input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.fseg span { display: block; padding: 8px 4px; font-size: 13px; font-weight: 700; text-align: center; color: var(--text); border-radius: 9px; transition: background .15s, color .15s; }
.fseg input:checked + span { color: #fff; background: var(--brand); }
.fseg input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Results */
.results__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.results__count { margin: 0; font-size: 16px; color: var(--muted); }
.results__count strong { font-family: var(--serif); font-size: 26px; color: var(--ink); }
.results__tools { display: flex; align-items: center; gap: 10px; }
.results__filter-btn { display: none; align-items: center; gap: 8px; min-height: 42px; padding: 0 14px; font: inherit; font-size: 14px; font-weight: 700; color: var(--ink); background: #fff; border: 1px solid #d5dbe6; border-radius: 12px; cursor: pointer; }
.results__filter-n { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 6px; font-size: 12px; color: #fff; background: var(--accent); border-radius: 999px; }
.results__filter-n[hidden] { display: none; }
.results__sort { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--muted); }
.results__sort select { min-height: 42px; padding: 0 34px 0 12px; font: inherit; font-size: 14px; font-weight: 700; color: var(--ink); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6478' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 10px center / 16px no-repeat; border: 1px solid #d5dbe6; border-radius: 12px; appearance: none; -webkit-appearance: none; cursor: pointer; }

.results__list { display: grid; gap: 12px; }
.crow { position: relative; display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 18px; align-items: start; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 20px; transition: border-color .15s, box-shadow .15s; }
.crow:hover { border-color: #c5ccda; box-shadow: 0 12px 28px rgba(15, 31, 61, .07); }
.crow[hidden] { display: none; }
.crow--premium { border-color: #f1b6bf; box-shadow: 0 8px 22px rgba(200, 16, 46, .07); }
.crow__logo.company-logo { width: 64px; height: 64px; }
.crow__title { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; }
.crow__title h3 { margin: 0; font-size: 19px; line-height: 1.3; }
.crow__title h3 a { color: var(--ink); text-decoration: none; }
.crow__title h3 a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.crow__title .plan-badge { margin: 0; }
.crow__meta { margin: 4px 0 0; font-size: 14px; color: var(--muted); }
.crow__from { font-weight: 600; color: var(--brand); }
.crow__short { margin: 10px 0 0; font-size: 15px; color: var(--text); }
.crow__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 0; padding: 0; list-style: none; }
.crow__tags li { padding: 4px 10px; font-size: 12px; font-weight: 600; color: var(--brand); background: #eef2fb; border-radius: 999px; }
.crow__tags .is-trust { color: #1e6a42; background: #e3f4ea; }
.crow__tags .is-more { color: var(--muted); background: var(--soft); }
.crow__cta { position: relative; z-index: 1; align-self: center; padding: 10px 14px; font-size: 14px; font-weight: 700; white-space: nowrap; text-decoration: none; color: var(--brand); border: 1px solid #d5dbe6; border-radius: 12px; transition: background .15s, border-color .15s; }
.crow:hover .crow__cta { border-color: var(--brand); background: #eef2fb; }

.results__empty { padding: 40px 24px; text-align: center; background: #fff; border: 1px dashed #c5ccda; border-radius: 20px; }
.results__empty[hidden] { display: none; }
.results__empty-title { margin: 0 0 6px; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.results__empty p { margin: 0 0 16px; color: var(--muted); }

/* Lower sections */
.loc-split { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 56px; align-items: center; }
.loc-split--top { align-items: start; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.loc-split__lede { margin: 0; color: var(--muted); }
.bars--v2 li { grid-template-columns: 240px 1fr 48px; }
.bars--v2 .bars__track { height: 12px; }
.bars--v2 .bars__fill { background: linear-gradient(90deg, var(--brand), #3e5690); }
.bars--v2 .bars__value { font-weight: 700; color: var(--ink); }
.display--sm { font-size: clamp(24px, 2.4vw, 30px); }
.loc-guide p { font-size: 17px; line-height: 1.7; }
.loc-routes { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.routes { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.routes li { display: grid; grid-template-columns: 1fr auto; gap: 2px 16px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.routes__to { font-weight: 700; color: var(--ink); }
.routes__to span { color: var(--accent); }
.routes__meta { grid-column: 1; font-size: 13px; color: var(--muted); }
.routes__price { grid-column: 2; grid-row: 1 / 3; align-self: center; font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); font-variant-numeric: lining-nums; }
.city-grid__all { background: var(--soft) !important; border-style: dashed !important; }
.city-grid__all .city-grid__count { background: #fff; }

@media (max-width: 1020px) {
	.loc-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.loc-stats > div:nth-child(4) { padding-left: 0; border-left: 0; }
	.loc-split, .loc-split--top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 900px) {
	.finder { grid-template-columns: 1fr; }
	.results__filter-btn { display: inline-flex; }
	.filters { position: fixed; inset: auto 0 0 0; top: auto; z-index: 60; max-height: 86vh; padding: 20px 18px 18px; border-radius: 22px 22px 0 0; box-shadow: 0 -20px 50px rgba(15, 31, 61, .25); transform: translateY(105%); transition: transform .25s ease; }
	.filters.is-open { transform: none; }
	.filters__done { display: flex; width: 100%; margin-top: 18px; position: sticky; bottom: 0; }
	html.has-sheet, html.has-sheet body { overflow: hidden; }
	html.has-sheet .site-main::after { content: ""; position: fixed; inset: 0; z-index: 55; background: rgba(15, 31, 61, .4); }
	.crow { grid-template-columns: 52px minmax(0, 1fr); gap: 14px; padding: 18px; }
	.crow__logo.company-logo { width: 52px; height: 52px; }
	.crow__cta { display: none; }
	.bars--v2 li { grid-template-columns: 1fr 44px; }
}
@media (max-width: 560px) {
	.loc-stats { grid-template-columns: 1fr 1fr; }
	.loc-stats > div, .loc-stats > div + div { padding: 14px 12px 0 0; border-left: 0; }
	.loc-stats dd { font-size: 30px; }
	.loc-hero__summary { font-size: 17px; }
	.results__count strong { font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) { .filters { transition: none; } }
.fcheck.is-zero { opacity: .45; }
.filters__group { margin-top: 14px; padding-top: 14px; }
.fcheck { padding: 5px 0; }
.prose .kicker, .loc-guide .kicker { margin: 0 0 14px; font-size: 13px; line-height: 1.4; color: var(--accent); }
.filters__group { border-top: 0; box-shadow: inset 0 1px 0 var(--line); }
@media (max-width: 900px) {
	.filters__done { box-shadow: 0 -14px 18px 6px #fff; }
	.filters { padding-bottom: 14px; }
}
.filters__group > legend { float: left; width: 100%; }
.filters__group > legend + * { clear: both; }

/* ================================================================== */
/* Company profile                                                     */
/* ================================================================== */
.profile-hero { padding: 32px 0 40px; background: radial-gradient(800px 360px at 92% 0%, rgba(19, 40, 90, .07), transparent 70%), #fff; border-bottom: 1px solid var(--line); }
.profile-hero .breadcrumbs ol { margin-bottom: 28px; }
.profile-hero__grid { display: grid; grid-template-columns: 128px minmax(0, 1fr); gap: 32px; align-items: start; }
.profile-hero__logo.company-logo { width: 128px; height: 128px; border-radius: 28px; box-shadow: var(--shadow); }
.profile-hero__logo .company-logo__initials { font-family: var(--serif); font-size: 44px; }
.profile-hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.profile-hero__badges .plan-badge { margin: 0; }
.verified-badge { display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px 3px 6px; font-size: 12px; font-weight: 700; color: #1e6a42; background: #e3f4ea; border-radius: 999px; }
.verified-badge .i { width: 16px; height: 16px; padding: 2px; color: #fff; background: #1e7b4a; border-radius: 50%; }
.type-badge { padding: 3px 10px; font-size: 12px; font-weight: 700; color: var(--ink); background: var(--soft); border: 1px solid var(--line); border-radius: 999px; }
.profile-hero__name { margin-bottom: 10px; }
.profile-hero__where { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 0; font-size: 16px; font-weight: 600; color: var(--text); }
.profile-hero__where svg { color: var(--accent); }
.profile-hero__where a { color: inherit; text-decoration-color: #c5ccda; text-underline-offset: 3px; }
.profile-hero__where a:hover { color: var(--accent); }
.profile-hero__dot { margin-left: 8px; padding-left: 12px; font-weight: 500; color: var(--muted); border-left: 1px solid var(--line); }
.profile-hero__lede { max-width: 720px; margin: 16px 0 0; font-size: 19px; line-height: 1.6; color: var(--muted); }
.profile-stats { margin-top: 32px; }

.profile-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: start; }
.profile-main { display: grid; gap: 20px; }
.profile-card { padding: 30px 32px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.profile-card .display--sm { margin-bottom: 16px; }
.profile-card__lede { margin: -6px 0 22px; color: var(--muted); }
.profile-card .prose { max-width: none; }
.profile-card .prose p { font-size: 17px; line-height: 1.7; }
.svc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 24px; margin: 0; padding: 0; list-style: none; }
.svc-grid li { display: flex; align-items: center; gap: 10px; padding: 12px 14px; font-weight: 600; color: var(--ink); background: var(--soft); border-radius: 12px; }
.svc-grid .i { flex: none; width: 22px; height: 22px; padding: 4px; color: #fff; background: var(--brand); border-radius: 7px; }
.usmap__tile.lvl-hq { color: #fff; background: var(--accent); }
.usmap__tile.lvl-on { color: #fff; background: var(--brand); }
.usmap-legend .lvl-hq { background: var(--accent); } .usmap-legend .lvl-on { background: var(--brand); } .usmap-legend .lvl-0 { background: #f1f3f7; border: 1px solid var(--line); }

.profile-side { position: sticky; top: 88px; display: grid; gap: 16px; }
.contact-card { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.contact-card__title { margin: 0 0 16px; font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1.25; color: var(--ink); }
.contact-card__btn { width: 100%; gap: 10px; margin-bottom: 10px; }
.contact-card__list { margin: 8px 0 0; }
.contact-card__list > div { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 10px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; }
.contact-card__list dt { color: var(--muted); }
.contact-card__list dd { margin: 0; overflow-wrap: anywhere; color: var(--ink); }
.contact-card__list a { text-decoration: none; }
.contact-card__tip { margin: 12px 0 0; padding: 12px 14px; font-size: 13px; color: var(--muted); background: var(--soft); border-radius: 12px; }

.record--flat { transform: none; padding: 22px 22px 20px; box-shadow: none; }
.vfacts { margin: 0 0 14px; }
.vfacts > div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px dashed #ddd5c3; font-size: 14px; }
.vfacts dt { color: var(--muted); }
.vfacts dd { display: inline-flex; align-items: center; gap: 6px; margin: 0; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.vfacts dd.is-ok { color: #1e6a42; }
.vfacts .i { width: 16px; height: 16px; padding: 2px; color: #fff; background: #1e7b4a; border-radius: 5px; }
.record__link { display: block; margin-top: 6px; font-size: 14px; font-weight: 700; text-decoration: none; }
.record__link--muted { font-weight: 600; color: var(--muted); }

.similar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.similar a { display: grid; gap: 4px; height: 100%; padding: 20px; text-decoration: none; background: var(--soft); border: 1px solid var(--line); border-radius: 18px; transition: border-color .15s, transform .15s, background .15s; }
.similar a:hover { background: #fff; border-color: #b9c3d8; transform: translateY(-2px); }
.similar .company-logo { width: 48px; height: 48px; margin-bottom: 10px; border-radius: 12px; }
.similar .company-logo__initials { font-size: 16px; }
.similar__name { font-weight: 700; color: var(--ink); }
.similar__meta { font-size: 14px; color: var(--muted); }
.similar__facts { font-size: 13px; color: var(--muted); }
.similar__all { display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 20px 0 0; font-weight: 700; }
.similar__all a { text-decoration: none; }

@media (max-width: 1020px) {
	.profile-grid { grid-template-columns: 1fr; }
	.profile-side { position: static; grid-row: 1; grid-template-columns: 1fr 1fr; align-items: start; }
	.similar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
	.profile-hero__grid { grid-template-columns: 1fr; gap: 18px; }
	.profile-hero__logo.company-logo { width: 88px; height: 88px; border-radius: 22px; }
	.profile-hero__logo .company-logo__initials { font-size: 30px; }
	.profile-side { grid-template-columns: 1fr; }
	.profile-card { padding: 22px 20px; }
	.svc-grid { grid-template-columns: 1fr; }
	.profile-hero__lede { font-size: 17px; }
	.profile-hero__dot { margin-left: 0; padding-left: 0; border-left: 0; width: 100%; }
}
@media (max-width: 480px) { .similar { grid-template-columns: 1fr; } }

/* ================================================================== */
/* Plans on cards + quote requests                                     */
/* ================================================================== */
.crow__actions { position: relative; z-index: 1; display: grid; gap: 8px; align-self: center; justify-items: stretch; min-width: 150px; }
.crow__actions .crow__cta { text-align: center; }
.crow__btn { min-height: 42px; padding: 10px 16px; font-size: 14px; }
.crow__btn--call { gap: 8px; color: var(--brand); }
.crow__sponsored { font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); cursor: help; }
.crow__title .verified-badge { font-size: 11px; }
.crow--premium { border: 1.5px solid #f1b6bf; background: linear-gradient(180deg, #fffafb 0%, #fff 40%); }
.crow--premium::before { content: ""; position: absolute; left: 22px; right: 22px; top: -1px; height: 3px; border-radius: 0 0 3px 3px; background: repeating-linear-gradient(90deg, var(--accent) 0 16px, transparent 16px 24px); }
.company-card .verified-badge { margin-top: 4px; font-size: 11px; }
.company-card__sponsored { position: absolute; top: 16px; right: 18px; }
@media (max-width: 900px) {
	.crow__actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; min-width: 0; }
	.crow__actions > :only-child { grid-column: 1 / -1; }
	.crow__actions .crow__cta { display: block; }
}

/* Quote dialog */
.quote-dialog { width: min(640px, calc(100vw - 24px)); max-height: calc(100dvh - 32px); padding: 0; color: var(--text); border: 0; border-radius: 24px; box-shadow: 0 40px 80px rgba(15, 31, 61, .35); }
.quote-dialog::backdrop { background: rgba(15, 31, 61, .55); backdrop-filter: blur(3px); }
.quote-dialog[open] { animation: dialog-in .2s ease; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.quote-dialog__head { position: sticky; top: 0; z-index: 1; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 24px 26px 18px; background: #fff; border-bottom: 1px solid var(--line); }
.quote-dialog__kicker { margin: 0 0 4px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.quote-dialog__title { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.2; color: var(--ink); }
.quote-dialog__close { flex: none; width: 36px; height: 36px; font-size: 22px; line-height: 1; color: var(--ink); background: var(--soft); border: 0; border-radius: 50%; cursor: pointer; }
.quote-dialog .quote-form, .quote-dialog .quote-done { padding: 20px 26px 26px; }

/* Quote form */
.quote-form__hp { position: absolute; left: -9999px; }
.quote-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.quote-form__field { display: grid; gap: 6px; min-width: 0; }
.quote-form__field.is-wide { grid-column: 1 / -1; }
.quote-form__field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.quote-form__field label span { color: var(--accent); }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; min-height: 46px; padding: 10px 12px; font: inherit; font-size: 15px; color: var(--ink); background: #fff; border: 1px solid #d5dbe6; border-radius: 12px; }
.quote-form textarea { min-height: 80px; resize: vertical; }
.quote-form select { padding-right: 34px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6478' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 10px center / 16px no-repeat; appearance: none; -webkit-appearance: none; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(19, 40, 90, .12); }
.quote-form .is-invalid { border-color: var(--accent); background-color: #fff7f8; }
.quote-form__error { margin: 14px 0 0; padding: 10px 14px; font-size: 14px; font-weight: 600; color: var(--accent); background: #fdecef; border-radius: 10px; }
.quote-form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 18px; }
.quote-form__submit { min-height: 50px; padding: 0 24px; border: 0; font-family: inherit; cursor: pointer; }
.quote-form__submit:disabled { opacity: .7; cursor: progress; }
.quote-form__legal { flex: 1; min-width: 200px; margin: 0; font-size: 12px; color: var(--muted); }
.quote-done { text-align: center; padding: 28px 10px; }
.quote-done[hidden] { display: none; }
.quote-done__icon { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 12px; font-size: 28px; font-weight: 800; color: #fff; background: #1e7b4a; border-radius: 50%; }
.quote-done__title { margin: 0 0 6px; font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); }
.quote-done__text { margin: 0 auto; max-width: 380px; color: var(--muted); }
.profile-card--quote { border: 1.5px solid #f1b6bf; scroll-margin-top: 90px; }
@media (max-width: 560px) {
	.quote-form__grid { grid-template-columns: 1fr; }
	.quote-dialog .quote-form, .quote-dialog .quote-done, .quote-dialog__head { padding-left: 18px; padding-right: 18px; }
	.quote-form__submit { width: 100%; }
}
@media (prefers-reduced-motion: reduce) { .quote-dialog[open] { animation: none; } }

/* Home business preview */
.biz__card .crow__sponsored { position: absolute; top: 18px; right: 18px; }
.biz__logo { display: grid; place-items: center; font-weight: 800; color: #fff !important; background: linear-gradient(135deg, var(--brand), #3e5690) !important; border: 0 !important; }
.biz__card p { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.biz__quote { width: 100%; min-height: 42px; font-size: 14px; pointer-events: none; }

/* ================================================================== */
/* Pricing v2                                                          */
/* ================================================================== */
.pr-hero { padding: 32px 0 48px; text-align: left; background: radial-gradient(800px 360px at 92% 0%, rgba(19, 40, 90, .07), transparent 70%), #fff; border-bottom: 1px solid var(--line); }
.pr-hero .breadcrumbs ol { margin-bottom: 26px; }
.pr-hero__lede { max-width: 700px; margin: 0 0 24px; font-size: 19px; line-height: 1.6; color: var(--muted); }
.pr-hero__facts { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 0; padding: 0; list-style: none; font-size: 15px; color: var(--muted); }
.pr-hero__facts strong { margin-right: 4px; font-family: var(--serif); font-size: 22px; color: var(--ink); }

.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.plan2 { position: relative; display: flex; flex-direction: column; padding: 30px 28px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.plan2--featured { border: 2px solid var(--accent); box-shadow: 0 22px 44px rgba(200, 16, 46, .12); }
.plan2--current { border-color: var(--brand); }
.plan2__ribbon { position: absolute; top: -14px; left: 28px; padding: 5px 12px; font-size: 12px; font-weight: 700; color: #fff; background: var(--accent); border-radius: 999px; }
.plan2__name { margin: 0 0 4px; font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--ink); }
.plan2__tagline { margin: 0 0 22px; min-height: 48px; color: var(--muted); }
.plan2__price { display: flex; align-items: baseline; gap: 8px; margin: 0 0 20px; }
.plan2__amount { font-family: var(--serif); font-size: 56px; font-weight: 600; line-height: 1; color: var(--ink); font-variant-numeric: lining-nums; letter-spacing: -.02em; }
.plan2__period { color: var(--muted); }
.plan2__cta { width: 100%; }
.plan2__best { margin: 18px 0 0; padding: 12px 14px; font-size: 14px; color: var(--text); background: var(--soft); border-radius: 12px; }
.plan2__features { display: grid; gap: 11px; margin: 20px 0 0; padding: 0; list-style: none; font-size: 15px; }
.plan2__features li { display: flex; gap: 10px; color: var(--text); }
.plan2__features .i { flex: none; width: 20px; height: 20px; margin-top: 1px; padding: 3px; color: #fff; background: var(--brand); border-radius: 6px; }
.plan2--featured .plan2__features .i { background: var(--accent); }
.plan2__features .is-inherit { font-weight: 700; color: var(--ink); }
.plan2__features .is-inherit .i { background: #c5ccda; }
.plans__note { margin: 20px 0 0; text-align: center; font-size: 14px; color: var(--muted); }

.mocks { display: grid; gap: 22px; }
.mock { display: grid; grid-template-columns: 110px minmax(0, 1fr) 260px; gap: 24px; align-items: center; }
.mock__label { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink); }
.mock__note { margin: 0; font-size: 15px; color: var(--muted); }
.crow--mock { pointer-events: none; }
.crow--mock:hover { box-shadow: none; border-color: var(--line); }
.crow--mock.crow--premium:hover { border-color: #f1b6bf; }
.mock__logo { color: #fff; background: linear-gradient(135deg, var(--brand), #3e5690); border-color: transparent; }
.mock__logo .company-logo__initials { color: #fff; }

.cmp-wrap { border-radius: 22px; }
.cmp { width: 100%; border-collapse: collapse; font-size: 15px; }
.cmp th, .cmp td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cmp thead th { position: sticky; top: 0; padding: 18px; background: #fff; border-bottom: 2px solid var(--line); }
.cmp__plan { display: block; font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); }
.cmp__price { display: block; margin-top: 2px; font-size: 13px; font-weight: 600; color: var(--muted); }
.cmp .cmp__feature { width: 46%; text-align: left; font-weight: 600; color: var(--ink); }
.cmp .cmp__feature span { display: block; margin-top: 3px; font-size: 13px; font-weight: 400; color: var(--muted); }
.cmp__group th { padding: 12px 18px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); background: var(--soft); }
.cmp .is-featured { background: #fff7f8; }
.cmp thead .is-featured { background: #fff7f8; box-shadow: inset 0 3px 0 var(--accent); }
.cmp__yes .i { width: 24px; height: 24px; padding: 4px; color: #fff; background: #1e7b4a; border-radius: 50%; }
.cmp__no { color: #b7c0d1; font-weight: 700; }
.cmp__text { font-size: 14px; font-weight: 700; color: var(--ink); }
.cmp tbody tr:last-child > * { border-bottom: 1px solid var(--line); }

.trust-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 56px; align-items: start; }
.trust-split__body p { margin: 0 0 16px; font-size: 17px; line-height: 1.7; color: #c6cde0; }
.trust-split__link { font-weight: 700; color: #fff; text-decoration: none; }
.trust-split__link:hover { color: #ff9aa9; }

.pr-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 40px 44px; background: var(--soft); border: 1px solid var(--line); border-radius: 26px; }
.pr-cta .display { margin-bottom: 6px; }
.pr-cta p { margin: 0; color: var(--muted); }
.pr-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 1020px) {
	.plans { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
	.plan2__tagline { min-height: 0; }
	.mock { grid-template-columns: 1fr; gap: 10px; }
	.trust-split { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 700px) {
	.cmp { font-size: 14px; }
	.cmp th, .cmp td { padding: 12px 10px; }
	.cmp .cmp__feature { width: auto; min-width: 180px; }
	.cmp__plan { font-size: 16px; }
	.pr-cta { padding: 28px 22px; }
	.pr-hero__lede { font-size: 17px; }
}
@media (max-width: 560px) {
	.cmp { table-layout: fixed; font-size: 13px; }
	.cmp th, .cmp td { padding: 11px 4px; }
	.cmp .cmp__feature { width: 46%; min-width: 0; padding-left: 12px; font-size: 13px; }
	.cmp .cmp__feature span { display: none; }
	.cmp thead th { padding: 12px 4px; }
	.cmp thead .cmp__feature { padding-left: 12px; }
	.cmp__plan { font-size: 15px; }
	.cmp__price { font-size: 11px; }
	.cmp__text { font-size: 11px; line-height: 1.25; }
	.cmp__yes .i { width: 20px; height: 20px; }
	.cmp__group th { padding: 10px 12px; }
}

/* ================================================================== */
/* Quote dialog + form v2                                              */
/* ================================================================== */
.quote-dialog { width: min(680px, calc(100vw - 24px)); background: var(--soft); border-radius: 26px; overflow: hidden; }
.quote-dialog[open] { display: flex; flex-direction: column; }
.quote-dialog__head { position: relative; flex: none; padding: 26px 28px 30px; color: #c6cde0; background: var(--ink); border-bottom: 0; }
.quote-dialog__head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 10px; background: repeating-linear-gradient(90deg, #f2c94c 0 28px, transparent 28px 48px) center / 100% 2px no-repeat, var(--asphalt); }
.quote-dialog__kicker { color: #ff9aa9; }
.quote-dialog__title { font-size: 28px; color: #fff; }
.quote-dialog__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 10px 0 0; font-size: 14px; color: #aab4cc; }
.quote-dialog__meta .verified-badge { color: #1e6a42; }
.quote-dialog__close { display: grid; place-items: center; color: #fff; background: rgba(255, 255, 255, .12); transition: background .15s; }
.quote-dialog__close:hover { background: rgba(255, 255, 255, .22); }
.quote-dialog .quote-form { display: flex; flex-direction: column; min-height: 0; flex: 1; padding: 0; }
.quote-dialog .quote-form__body { flex: 1; overflow-y: auto; padding: 22px 28px 8px; }
.quote-dialog .quote-form__error { margin: 0 28px 12px; }
.quote-dialog .quote-form__foot { flex: none; margin: 0; padding: 16px 28px 20px; background: #fff; border-top: 1px solid var(--line); }
.quote-dialog .quote-done { padding: 40px 28px 44px; background: #fff; }

.qstep { margin: 0 0 16px; padding: 18px 20px 20px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.qstep__title { float: left; width: 100%; display: flex; align-items: center; gap: 10px; margin: 0 0 14px; padding: 0; font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink); }
.qstep__title + * { clear: both; }
.qstep__num { display: grid; place-items: center; width: 26px; height: 26px; font-family: Inter, sans-serif; font-size: 13px; font-weight: 800; color: #fff; background: var(--brand); border-radius: 8px; }
.qstep__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.qstep--route .quote-form__field--from, .qstep--route .quote-form__field--to { position: relative; }
.qstep--route .quote-form__field--to::before { content: "→"; position: absolute; left: -15px; top: 38px; display: grid; place-items: center; width: 14px; font-weight: 700; color: var(--accent); }

.quote-form__label { font-size: 13px; font-weight: 700; color: var(--ink); }
.quote-form__label span { color: var(--accent); }
.quote-form__hint { font-size: 12px; color: var(--muted); }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #9aa3b5; }
.quote-form input[type=date]:invalid, .quote-form input[type=date]:not(:focus):placeholder-shown { color: #9aa3b5; }
.quote-form .fseg { background: var(--soft); }
.quote-form .fseg span { padding: 10px 6px; font-size: 14px; }
.quote-form__legal { display: flex; align-items: center; gap: 6px; }
.quote-form__legal svg { flex: none; color: #1e7b4a; }
.quote-form__submit span { transition: transform .15s; }
.quote-form__submit:hover span { transform: translateX(3px); }

/* Inline (profile) variant */
.quote-form--inline .qstep { background: var(--soft); border-color: transparent; }
.quote-form--inline .fseg { background: #fff; }

@media (max-width: 560px) {
	.quote-dialog { width: 100vw; max-width: 100vw; max-height: 100dvh; height: 100dvh; margin: 0; border-radius: 0; }
	.quote-dialog__head { padding: 20px 18px 24px; }
	.quote-dialog__title { font-size: 22px; }
	.quote-dialog .quote-form__body { padding: 16px 14px 4px; }
	.quote-dialog .quote-form__foot { padding: 12px 14px 16px; }
	.qstep { padding: 16px 14px; }
	.qstep__grid { grid-template-columns: 1fr; }
	.qstep--route .quote-form__field--to::before { display: none; }
	.quote-form__legal { font-size: 11px; }
}
.quote-form .fseg span { color: var(--text); }
.quote-form .fseg input:checked + span { color: #fff; }
.quote-form__submit { gap: 8px; }

/* ================================================================== */
/* Member pages: register / login / lost password / account            */
/* ================================================================== */
.auth { padding: 32px 0 72px; background: radial-gradient(900px 400px at 90% 0%, rgba(19, 40, 90, .07), transparent 70%), var(--soft); }
.auth .breadcrumbs ol { margin-bottom: 24px; }
.auth__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 28px; align-items: start; }
.auth__card { padding: 36px 40px 32px; background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }
.auth__card .display { margin-bottom: 10px; }
.auth__lede { margin: 0 0 26px; font-size: 16px; color: var(--muted); }
.auth__switch { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 15px; color: var(--muted); }
.auth__switch a { font-weight: 700; text-decoration: none; }
.auth__form { max-width: none; }
.auth__side { position: sticky; top: 96px; display: grid; gap: 16px; }

/* PMS form reset + fields */
.auth .pms-form { max-width: none; margin: 0; }
.auth .pms-form ul, .auth .pms-form-fields-wrapper { margin: 0; padding: 0; list-style: none; }
.auth .pms-account-section-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.auth .pms-field { margin: 0; padding: 0; list-style: none; }
.auth .pms-user-login-field, .auth .pms-user-email-field { grid-column: 1 / -1; }
.auth .pms-form label, .auth #pms_login label, .auth #pms_recover_password_form label { display: block; margin: 0 0 6px; font-size: 13px; font-weight: 700; color: var(--ink); }
.auth .pms-form input[type=text], .auth .pms-form input[type=email], .auth .pms-form input[type=password], .auth #pms_login .input, .auth .pms-form select {
	width: 100%; min-height: 50px; padding: 12px 14px; font: inherit; font-size: 15px; color: var(--ink); background: #fff; border: 1px solid #d5dbe6; border-radius: 12px; box-shadow: none; transition: border-color .15s, box-shadow .15s; }
.auth .pms-form input:focus, .auth #pms_login .input:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(19, 40, 90, .12); }
.auth .pms-field-subscriptions { grid-column: 1 / -1; margin-top: 22px; }
.auth--has-plan .pms-field-subscriptions { display: none; }
.auth .pms-subscription-plan { padding: 14px 16px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; }
.auth .pms-subscription-plan + .pms-subscription-plan { margin-top: 8px; }
.auth .pms-subscription-plan label { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 0; font-size: 15px; cursor: pointer; }
.auth .pms-subscription-plan-name { font-weight: 700; color: var(--ink); }
.auth .pms-subscription-plan-description { margin-top: 4px; font-size: 13px; color: var(--muted); }

/* Payment method */
.auth .pms-paygates-holder { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.auth .pms-paygates-holder > h3, .auth .pms-paygates-holder h4 { margin: 0 0 10px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.auth #pms-paygates-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.auth #pms-paygates-inner label { display: flex; align-items: center; gap: 10px; margin: 0; padding: 14px 16px; font-weight: 700; color: var(--ink); background: #fff; border: 1px solid #d5dbe6; border-radius: 14px; cursor: pointer; transition: border-color .15s, background .15s; }
.auth #pms-paygates-inner label:has(input:checked) { border-color: var(--brand); background: #eef2fb; box-shadow: 0 0 0 1px var(--brand); }
.auth #pms-paygates-inner input { accent-color: var(--brand); }
.auth #pms-gateways-not-available { margin-top: 12px; padding: 12px 14px; font-size: 14px; color: #8a5a00; background: #fff4d6; border: 1px solid #f3dfa6; border-radius: 12px; }

/* Submit */
.auth .pms-form input[type=submit], .auth #pms_login input[type=submit], .auth .pms-form-submit {
	display: block; width: 100%; min-height: 54px; margin-top: 24px; padding: 0 20px; font: inherit; font-size: 16px; font-weight: 700; color: #fff; background: var(--accent); border: 0; border-radius: 14px; box-shadow: 0 8px 18px rgba(200, 16, 46, .25); cursor: pointer; transition: background .15s; }
.auth .pms-form input[type=submit]:hover, .auth #pms_login input[type=submit]:hover { background: #a90d27; }

/* Login + lost password specifics */
.auth #pms_login p { margin: 0 0 16px; }
.auth #pms_login .login-remember label { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text); }
.auth #pms_login .login-remember input { width: 18px; height: 18px; accent-color: var(--brand); }
.auth #pms_login .login-submit { margin: 0; }
.auth #pms_login .login-extra { display: flex; justify-content: space-between; gap: 12px; margin: 18px 0 0; font-size: 14px; }
.auth #pms_login .login-extra a { font-weight: 700; text-decoration: none; }
.auth #pms_recover_password_form p { margin: 0 0 6px; color: var(--muted); }

/* Messages */
.auth .pms_field-errors-wrapper, .auth .pms-error, .auth .pms_errors-messages-wrapper { margin: 8px 0 0; padding: 10px 12px; font-size: 13px; font-weight: 600; color: var(--accent); background: #fdecef; border-radius: 10px; }
.auth .pms_field-errors-wrapper p, .auth .pms-error p { margin: 0; }
.auth .pms_success-messages-wrapper { margin: 0 0 18px; padding: 14px 16px; color: #1e6a42; background: #e3f4ea; border-radius: 12px; }
.auth .pms_success-messages-wrapper p { margin: 0; }

/* Account (logged in) */
.auth .pms-account-navigation ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 20px; padding: 5px; list-style: none; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; }
.auth .pms-account-navigation a { display: block; padding: 8px 14px; font-size: 14px; font-weight: 700; color: var(--text); text-decoration: none; border-radius: 10px; }
.auth .pms-account-navigation .pms-account-navigation-link--active a, .auth .pms-account-navigation a:hover { color: #fff; background: var(--brand); }
.auth table { width: 100%; border-collapse: collapse; font-size: 14px; }
.auth table th, .auth table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); }

/* Side cards */
.auth-plan { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.auth-plan--featured { border: 2px solid var(--accent); }
.auth-plan__label { margin: 0 0 12px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.auth-plan__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.auth-plan__name { margin: 0; font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--ink); }
.auth-plan__price { margin: 0; color: var(--muted); font-size: 14px; }
.auth-plan__price strong { font-family: var(--serif); font-size: 26px; color: var(--ink); }
.auth-plan__tagline { margin: 4px 0 16px; color: var(--muted); }
.auth-plan__features { display: grid; gap: 9px; margin: 0 0 18px; padding: 16px 0 0; list-style: none; border-top: 1px solid var(--line); font-size: 14px; }
.auth-plan__features li { display: flex; gap: 10px; }
.auth-plan__features .i { flex: none; width: 18px; height: 18px; padding: 3px; color: #fff; background: var(--brand); border-radius: 5px; }
.auth-plan--featured .auth-plan__features .i { background: var(--accent); }
.auth-plan__change { font-size: 14px; font-weight: 700; text-decoration: none; }
.auth-pick { display: grid; gap: 8px; margin: 0 0 16px; padding: 0; list-style: none; }
.auth-pick a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; text-decoration: none; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; transition: border-color .15s, background .15s; }
.auth-pick a:hover { background: #fff; border-color: var(--brand); }
.auth-pick strong { display: block; color: var(--ink); }
.auth-pick small { display: block; font-size: 13px; color: var(--muted); }
.auth-pick__price { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.auth-pick__price small { display: inline; font-family: Inter, sans-serif; font-size: 12px; }

.auth-next { padding: 24px 26px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.auth-next__title { margin: 0 0 14px; font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); }
.auth-next ol { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: an; }
.auth-next ol:not(.auth-links) li { position: relative; padding-left: 40px; counter-increment: an; }
.auth-next ol:not(.auth-links) li::before { content: counter(an); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 26px; height: 26px; font-size: 13px; font-weight: 800; color: #fff; background: var(--brand); border-radius: 8px; }
.auth-next strong { display: block; color: var(--ink); }
.auth-next span { font-size: 14px; color: var(--muted); }
.auth-links a { display: block; padding: 12px 14px; margin: 0 -14px; text-decoration: none; border-radius: 12px; }
.auth-links a:hover { background: var(--soft); }

.auth-join { position: relative; padding: 28px 26px 26px; color: #c6cde0; background: var(--ink); border-radius: 22px; overflow: hidden; }
.auth-join::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 8px; background: repeating-linear-gradient(90deg, #f2c94c 0 24px, transparent 24px 40px) center / 100% 2px no-repeat, var(--asphalt); }
.auth-join__kicker { margin: 0 0 6px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ff9aa9; }
.auth-join__title { margin: 0 0 16px; font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.2; color: #fff; }
.auth-join ul { display: grid; gap: 10px; margin: 0 0 20px; padding: 0; list-style: none; }
.auth-join li { display: flex; align-items: center; gap: 10px; }
.auth-join .i { width: 18px; height: 18px; padding: 3px; color: var(--ink); background: #f2c94c; border-radius: 5px; }
.auth-join .btn { margin-bottom: 8px; }
.auth-trust { display: flex; gap: 8px; margin: 0; padding: 0 6px; font-size: 13px; color: var(--muted); }
.auth-trust .i { flex: none; width: 16px; height: 16px; margin-top: 2px; color: #1e7b4a; }

@media (max-width: 960px) {
	.auth__grid { grid-template-columns: 1fr; }
	.auth__side { position: static; }
}
@media (max-width: 560px) {
	.auth__card { padding: 24px 18px 22px; border-radius: 20px; }
	.auth .pms-account-section-wrapper, .auth #pms-paygates-inner { grid-template-columns: 1fr; }
	.auth { padding-top: 20px; }
}
.auth #pms_login .login-extra { font-size: 0; }
.auth #pms_login .login-extra a { font-size: 14px; }

/* ================================================================== */
/* Owner dashboard + company form                                      */
/* ================================================================== */
.dash__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.dash__head .display { margin: 0; }
.dash__logout { font-size: 14px; font-weight: 700; color: var(--muted); text-decoration: none; }
.dash__logout:hover { color: var(--accent); }
.dash-flash { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding: 14px 18px; font-weight: 600; border-radius: 14px; }
.dash-flash.is-ok { color: #1e6a42; background: #e3f4ea; border: 1px solid #cfe9da; }
.dash-flash .i { width: 20px; height: 20px; padding: 3px; color: #fff; background: #1e7b4a; border-radius: 50%; }
.dash__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .8fr); gap: 24px; align-items: start; }
.dash__main { display: grid; gap: 20px; }
.dash__side { position: sticky; top: 96px; display: grid; gap: 16px; }

.dash-card { padding: 28px 30px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.dash-card__row { display: flex; align-items: center; justify-content: space-between; }
.dash-card__label { margin: 0 0 12px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.dash-card__title { margin: 0 0 6px; font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1.2; color: var(--ink); }
.dash-card__text { margin: 0 0 18px; color: var(--muted); }
.dash-count { min-width: 26px; padding: 2px 9px; font-size: 13px; font-weight: 800; text-align: center; color: #fff; background: var(--accent); border-radius: 999px; }
.dash-link { font-weight: 700; text-decoration: none; }

.dash-company { display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 16px; align-items: center; margin-bottom: 14px; }
.dash-company .company-logo { width: 64px; height: 64px; }
.dash-company__meta { margin: 0; font-size: 14px; color: var(--muted); }
.dash-status { padding: 6px 12px; font-size: 13px; font-weight: 800; border-radius: 999px; white-space: nowrap; }
.dash-status.is-pending { color: #8a5a00; background: #fff4d6; }
.dash-status.is-live { color: #1e6a42; background: #e3f4ea; }
.dash-status.is-changes { color: #1f4fa8; background: #e6eefc; }
.dash-status.is-rejected { color: #b00e28; background: #fde5e8; }
.dash-note { margin: 0 0 18px; padding: 14px 16px; font-size: 14px; color: var(--text); background: #f4f7fd; border-left: 4px solid #1f4fa8; border-radius: 10px; }
.dash-note--warn { background: #fff8e6; border-left-color: #d69e2e; }
.dash-steps { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0 0 20px; padding: 14px 16px; list-style: none; font-size: 14px; font-weight: 600; background: var(--soft); border-radius: 14px; }
.dash-steps li { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.dash-steps .is-done { color: #1e6a42; }
.dash-steps .is-done .i { width: 18px; height: 18px; padding: 3px; color: #fff; background: #1e7b4a; border-radius: 50%; }
.dash-steps .is-current { color: var(--ink); }
.dash-steps__dot { width: 18px; height: 18px; border: 3px solid #d69e2e; border-radius: 50%; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .dash-steps__dot { animation: none; } }
.dash-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.dash-quotes { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.dash-quotes li { padding: 16px 18px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; }
.dash-quotes__route { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 4px; color: var(--ink); }
.dash-quotes__route span { font-size: 13px; color: var(--muted); }
.dash-quotes p { margin: 0; font-size: 14px; color: var(--text); }
.dash-quotes__who { margin-top: 6px !important; }
.dash-quotes__who a { font-weight: 600; text-decoration: none; }
.dash-quotes__notes { margin-top: 6px !important; font-style: italic; color: var(--muted) !important; }

.dash-billing { background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.dash-billing summary { padding: 18px 22px; font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; }
.dash-billing summary::-webkit-details-marker { display: none; }
.dash-billing summary::after { content: "+"; float: right; font-size: 18px; color: var(--brand); }
.dash-billing[open] summary::after { content: "–"; }
.dash-billing .auth__form { padding: 0 22px 22px; font-size: 14px; }

/* Company form */
.owner__head { max-width: 760px; margin-bottom: 20px; }
.owner-form { max-width: 880px; }
.owner-form .qstep { padding: 24px 26px; }
.qstep__note { margin: -6px 0 14px; font-size: 14px; color: var(--muted); }
.owner-form .quote-form__field select { min-height: 46px; }
.owner-form .fseg { grid-auto-columns: 1fr; }
.owner-logo { display: flex; align-items: center; gap: 16px; }
.owner-logo__preview { width: 72px; height: 72px; flex: none; }
.owner-logo__preview img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.owner-logo__preview .company-logo__initials { font-size: 13px; color: var(--muted); }
.owner-logo input[type=file] { min-height: 0; padding: 8px; font-size: 14px; }
.owner-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.owner-chips--states { gap: 6px; }
.owner-chip { position: relative; }
.owner-chip input { position: absolute; opacity: 0; }
.owner-chip span { display: inline-block; padding: 8px 12px; font-size: 14px; font-weight: 600; color: var(--text); background: #fff; border: 1px solid #d5dbe6; border-radius: 10px; cursor: pointer; transition: all .15s; }
.owner-chips--states .owner-chip span { min-width: 44px; padding: 7px 8px; text-align: center; font-size: 13px; }
.owner-chip input:checked + span { color: #fff; background: var(--brand); border-color: var(--brand); }
.owner-chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.owner-link { margin-left: 8px; padding: 0; font: inherit; font-size: 13px; font-weight: 700; color: var(--brand); background: none; border: 0; text-decoration: underline; cursor: pointer; }
.owner-submit { position: sticky; bottom: 0; z-index: 5; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin: 8px 0 0; padding: 16px 0; background: linear-gradient(180deg, rgba(246, 247, 251, 0), var(--soft) 30%); }
.owner-errors { max-width: 880px; margin-bottom: 18px; padding: 16px 20px; color: var(--accent); background: #fdecef; border: 1px solid #f6c9d0; border-radius: 14px; }
.owner-errors p { margin: 0 0 6px; }
.owner-errors ul { margin: 0; padding-left: 20px; }
.owner-empty { max-width: 680px; }

@media (max-width: 960px) {
	.dash__grid { grid-template-columns: 1fr; }
	.dash__side { position: static; }
}
@media (max-width: 560px) {
	.dash-card { padding: 22px 18px; }
	.dash-company { grid-template-columns: 52px minmax(0, 1fr); }
	.dash-company .company-logo { width: 52px; height: 52px; }
	.dash-status { grid-column: 1 / -1; justify-self: start; }
	.owner-form .qstep { padding: 18px 16px; }
	.owner-form .fseg { grid-auto-flow: row; }
}
.quote-form .owner-chip span, .quote-form__field .owner-chip span { color: var(--text); }
.quote-form .owner-chip input:checked + span { color: #fff; }

/* ================================================================== */
/* Logged-in user menu                                                 */
/* ================================================================== */
.umenu { position: relative; }
.umenu__btn { display: inline-flex; align-items: center; gap: 10px; padding: 5px 12px 5px 5px; font: inherit; font-size: 15px; font-weight: 700; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.umenu__btn:hover, .umenu.is-open .umenu__btn { border-color: #c5ccda; box-shadow: 0 4px 12px rgba(15, 31, 61, .08); }
.umenu__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.umenu.is-open .mainnav__chev { transform: rotate(180deg); }
.umenu__avatar { display: grid; place-items: center; flex: none; width: 34px; height: 34px; font-size: 13px; font-weight: 800; letter-spacing: .02em; color: #fff; background: linear-gradient(135deg, var(--brand), #3e5690); border-radius: 50%; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .25); }
.umenu__avatar--lg { width: 46px; height: 46px; font-size: 16px; }
.umenu__name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.umenu__panel { position: absolute; right: 0; top: calc(100% + 10px); z-index: 60; width: 300px; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 24px 48px rgba(15, 31, 61, .16); visibility: hidden; opacity: 0; transform: translateY(-6px); transition: opacity .16s, transform .16s, visibility 0s .16s; }
.umenu.is-open .umenu__panel { visibility: visible; opacity: 1; transform: none; transition: opacity .16s, transform .16s; }
.umenu__who { display: flex; align-items: center; gap: 12px; padding: 12px 12px 14px; margin-bottom: 6px; border-bottom: 1px solid var(--line); }
.umenu__fullname { margin: 0; font-weight: 700; color: var(--ink); }
.umenu__email { margin: 0 0 4px; font-size: 13px; color: var(--muted); overflow-wrap: anywhere; }
.umenu__plan { display: inline-block; padding: 2px 8px; font-size: 11px; font-weight: 700; color: var(--brand); background: #eef2fb; border-radius: 999px; }
.umenu__links { margin: 0; padding: 0; list-style: none; }
.umenu__links a, .umenu__logout { display: flex; align-items: center; gap: 12px; padding: 10px 12px; font-size: 15px; font-weight: 600; color: var(--ink); text-decoration: none; border-radius: 12px; transition: background .12s; }
.umenu__links a:hover, .umenu__logout:hover { background: var(--soft); }
.umenu__links span:first-of-type { flex: 1; }
.umenu__icon { flex: none; color: var(--muted); }
.umenu__links a:hover .umenu__icon { color: var(--brand); }
.umenu__badge { min-width: 22px; padding: 1px 7px; font-size: 12px; font-weight: 800; text-align: center; color: #fff; background: var(--accent); border-radius: 999px; }
.umenu__logout { margin-top: 6px; padding-top: 12px; color: var(--accent); border-top: 1px solid var(--line); border-radius: 0 0 12px 12px; }
.umenu__logout .umenu__icon { color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .umenu__panel { transition: none; } }
@media (max-width: 1100px) { .umenu__name { display: none; } .umenu__btn { padding-right: 8px; } }
@media (max-width: 960px) { .umenu { display: none; } }

.drawer__user { margin-top: 24px; padding: 8px; background: var(--soft); border: 1px solid var(--line); border-radius: 18px; }
.drawer__user .umenu__links a { font-family: Inter, sans-serif; font-size: 15px; }

/* Blog index and article pages */
.blog-index { padding-top: 24px; padding-bottom: 80px; }
.blog-index > .breadcrumbs, .article-page > .breadcrumbs { margin-bottom: 26px; }
.blog-index__intro { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.blog-eyebrow { margin: 0 0 10px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }
.blog-index__title { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(38px, 5vw, 56px); font-weight: 600; line-height: 1.06; letter-spacing: -.025em; color: var(--ink); text-wrap: balance; }
.blog-index__lead { max-width: 660px; margin: 0 auto; font-size: 17px; line-height: 1.65; color: var(--muted); }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.blog-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.blog-card:hover { transform: translateY(-3px); border-color: #d2d9e6; box-shadow: 0 14px 32px rgba(15, 31, 61, .11); }
.blog-card__image { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: #e9edf4; }
.blog-card__image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s cubic-bezier(.23, 1, .32, 1); }
.blog-card:hover .blog-card__image img { transform: scale(1.025); }
.blog-card__image-placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #e8edf5, #d5deec); }
.blog-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 20px 22px 22px; }
.blog-card__meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.blog-card__title { margin: 0 0 10px; font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.24; letter-spacing: -.01em; color: var(--ink); text-wrap: pretty; }
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--accent); }
.blog-card__excerpt { display: -webkit-box; margin: 0 0 18px; overflow: hidden; color: var(--muted); font-size: 14px; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.blog-card__more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--brand); font-size: 14px; font-weight: 700; text-decoration: none; }
.blog-card__more span { transition: transform .16s ease-out; }
.blog-card__more:hover { color: var(--accent); }
.blog-card__more:hover span { transform: translateX(3px); }
.blog-empty { padding: 56px 24px; text-align: center; background: #fff; border: 1px dashed var(--line); border-radius: 20px; }
.blog-empty h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 28px; color: var(--ink); }
.blog-empty p { margin: 0; color: var(--muted); }
.article-page { padding-top: 24px; padding-bottom: 84px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 820px) minmax(240px, 300px); align-items: start; justify-content: center; gap: clamp(32px, 5vw, 72px); }
.article { min-width: 0; padding: clamp(24px, 4vw, 48px); background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.article__header { margin-bottom: 26px; }
.article__header .blog-eyebrow { margin-bottom: 12px; }
.article__title { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(34px, 4.5vw, 52px); font-weight: 600; line-height: 1.08; letter-spacing: -.025em; color: var(--ink); text-wrap: balance; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: var(--muted); font-size: 13px; }
.article__author-mark { display: grid; place-items: center; width: 30px; height: 30px; margin-right: 2px; color: #fff; background: linear-gradient(135deg, var(--brand), #3e5690); border-radius: 50%; font-size: 12px; font-weight: 800; }
.article__cover { margin: 0 0 32px; overflow: hidden; aspect-ratio: 16 / 9; background: #e9edf4; border-radius: 18px; }
.article__cover img { display: block; width: 100%; height: 100%; object-fit: cover; }
.article__content { max-width: 700px; margin: 0 auto; color: var(--text); font-size: 16px; line-height: 1.78; overflow-wrap: anywhere; }
.article__content > :first-child { margin-top: 0; }
.article__content > :last-child { margin-bottom: 0; }
.article__content p { margin: 0 0 1.25em; }
.article__content h2, .article__content h3 { margin: 1.8em 0 .65em; font-family: var(--serif); font-weight: 600; line-height: 1.2; color: var(--ink); text-wrap: balance; }
.article__content h2 { font-size: clamp(25px, 3vw, 32px); }
.article__content h3 { font-size: clamp(20px, 2.4vw, 24px); }
.article__content a { font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article__content ul, .article__content ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.article__content li { margin: .35em 0; padding-left: .2em; }
.article__content li::marker { color: var(--accent); }
.article__content strong { color: var(--ink); }
.article__content table { display: block; width: 100%; margin: 1.5em 0 1.8em; overflow-x: auto; border-collapse: collapse; font-size: 14px; line-height: 1.5; }
.article__content th, .article__content td { min-width: 110px; padding: 12px 14px; text-align: left; vertical-align: top; border: 1px solid var(--line); }
.article__content th { color: var(--ink); background: #f2f5fa; font-weight: 700; }
.article__content td p, .article__content th p { margin: 0; }
.article__content blockquote { margin: 1.5em 0; padding: 4px 0 4px 20px; color: var(--muted); border-left: 3px solid var(--accent); }
.article__back { margin: 36px auto 0; padding-top: 20px; max-width: 700px; border-top: 1px solid var(--line); }
.article__back a { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; text-decoration: none; }
.article-aside { position: sticky; top: 100px; display: grid; gap: 18px; }
.article-aside__card, .article-aside__latest { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.article-aside__card { border-top: 3px solid var(--accent); }
.article-aside__card h2, .article-aside__latest h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.2; color: var(--ink); }
.article-aside__card p:not(.blog-eyebrow) { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.article-aside__button { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 46px; padding: 0 14px; color: #fff; background: var(--brand); border-radius: 12px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background .15s ease-out, transform .15s ease-out; }
.article-aside__button:hover { color: #fff; background: #203b78; transform: translateY(-1px); }
.article-aside__latest h2 { margin-bottom: 14px; }
.article-aside__link { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 12px 0; color: var(--text); border-top: 1px solid var(--line); font-size: 14px; font-weight: 600; line-height: 1.45; text-decoration: none; }
.article-aside__link span { flex: none; color: var(--muted); }
.article-aside__link:hover { color: var(--accent); }
@media (max-width: 960px) {
	.blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.article-layout { grid-template-columns: minmax(0, 820px); }
	.article-aside { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
	.blog-index { padding-top: 14px; padding-bottom: 56px; }
	.blog-index__intro { margin-bottom: 30px; text-align: left; }
	.blog-index__lead { margin-left: 0; font-size: 16px; }
	.blog-grid { grid-template-columns: 1fr; gap: 16px; }
	.blog-card { border-radius: 17px; }
	.blog-card__body { padding: 17px 18px 19px; }
	.blog-card__title { font-size: 21px; }
	.article-page { padding-top: 14px; padding-bottom: 56px; }
	.article { padding: 22px 18px 24px; border-radius: 18px; }
	.article__title { font-size: clamp(32px, 9vw, 42px); }
	.article__cover { margin-bottom: 24px; border-radius: 14px; }
	.article__content { font-size: 16px; line-height: 1.72; }
	.article-aside { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	.blog-card, .blog-card__image img, .blog-card__more span, .article-aside__button { transition: none; }
}

/* ================================================================== */
/* Mega panel v2                                                       */
/* ================================================================== */
.mega__inner { display: block; max-width: 1180px; padding: 22px 16px 26px; }
.mega__intro { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 24px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.mega__lead { margin: 0; font-size: 15px; color: var(--muted); }
.mega__lead strong { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink); }
.mega__all { font-size: 14px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.mega__cols { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr); gap: 32px; }
.mega__col--help { padding-left: 28px; border-left: 1px solid var(--line); }
.mega__title { margin: 0 0 10px; }
.mega__states { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 12px; margin: 0; padding: 0; list-style: none; }
.mega__cities, .mega__help { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }
.mega__states a, .mega__cities a, .mega__help a { display: flex; align-items: center; gap: 12px; margin: 0 -10px; padding: 8px 10px; text-decoration: none; border-radius: 12px; transition: background .12s; }
.mega__states a:hover, .mega__cities a:hover, .mega__help a:hover { background: var(--soft); }
.mega__code { display: grid; place-items: center; flex: none; width: 36px; height: 36px; font-size: 12px; font-weight: 800; color: var(--brand); background: #eef2fb; border-radius: 10px; transition: background .12s, color .12s; }
.mega__states a:hover .mega__code { color: #fff; background: var(--brand); }
.mega__pin { display: grid; place-items: center; flex: none; width: 36px; height: 36px; color: var(--accent); background: #fdecef; border-radius: 10px; }
.mega__text { display: grid; min-width: 0; }
.mega__name { font-size: 15px; font-weight: 700; color: var(--ink); }
.mega__sub { font-size: 13px; color: var(--muted); }
.mega__help a { display: grid; gap: 1px; }
.mega__help a:hover .mega__name { color: var(--accent); }
.mega__browse { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 700; text-decoration: none; }

/* All companies */
.filters__search { padding-right: 12px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6478' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E"); background-position: right 12px center; }
.allco .filters__group:first-of-type { margin-top: 12px; padding-top: 12px; }
.glossary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; margin: 0; }
.glossary > div { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.glossary dt { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink); }
.glossary dd { margin: 0; color: var(--muted); }
.glossary a { font-weight: 700; text-decoration: none; }
@media (max-width: 900px) { .glossary { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .glossary > div { grid-template-columns: 1fr; gap: 4px; } }

/* Company comparison table: grouped by who actually hauls the car */
.dt-legend { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0 0 14px; font-size: 13px; color: var(--muted); }
.dt-legend > span { display: inline-flex; align-items: center; gap: 8px; }
.dt-type { display: inline-block; padding: 3px 10px; font-size: 12px; font-weight: 700; border-radius: 999px; white-space: nowrap; }
.dt-type--carrier { color: #1e6a42; background: #e3f4ea; }
.dt-type--broker { color: var(--brand); background: #e8ecf6; }
.data-table--companies .dt-group__head th { padding: 18px 14px 10px; background: var(--soft); border-bottom: 1px solid var(--line); white-space: normal; font-weight: 400; }
.data-table--companies tbody + tbody .dt-group__head th { border-top: 1px solid var(--line); }
.dt-group__head strong { font-size: 14px; color: var(--ink); }
.dt-group__n { display: inline-block; min-width: 22px; margin-left: 6px; padding: 1px 7px; font-size: 12px; font-weight: 700; text-align: center; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 999px; }
.dt-group__note { display: block; margin-top: 3px; font-size: 13px; color: var(--muted); }
.dt-group--none .dt-group__head strong, .dt-group--other .dt-group__head strong { color: var(--muted); }
.data-table--companies tbody tr:last-child > * { border-bottom: 1px solid var(--line); }
.data-table--companies tbody:last-child tr:last-child > * { border-bottom: 0; }
.dt-na { color: #98a0b3; font-size: 13px; }
.dt-sub { margin-left: 4px; font-size: 12px; color: var(--muted); }
.dt-yes { display: inline-flex; align-items: center; gap: 5px; color: #1e6a42; font-weight: 600; }
.dt-yes .i { width: 14px; height: 14px; }
.dt-dot { font-weight: 600; color: var(--brand); white-space: nowrap; }
.dt-dot:hover { color: var(--accent); }
.dt-group__inner { position: sticky; left: 14px; max-width: calc(100vw - 64px); }
.results__more { display: flex; margin: 18px auto 0; }
.results__more[hidden] { display: none; }
.dt-more { margin: 12px 0 0; font-size: 13px; color: var(--muted); }

/* Claim a listing */
.claim-search { display: flex; gap: 10px; margin: 22px 0 8px; }
.claim-search input { flex: 1; min-width: 0; padding: 13px 16px; font: inherit; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.claim-search input:focus { outline: 2px solid var(--brand); outline-offset: 1px; }
.claim-results { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.claim-results li { display: flex; align-items: center; gap: 14px; padding: 12px 14px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.claim-results .company-logo { width: 48px; height: 48px; border-radius: 12px; }
.claim-results .company-logo__initials { font-size: 15px; }
.claim-results__who { flex: 1; min-width: 0; }
.claim-results__who strong { display: block; color: var(--ink); }
.claim-results__who small { display: block; color: var(--muted); font-size: 13px; }
.claim-results__taken { font-size: 13px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.claim-results .btn { padding: 9px 18px; }
.claim-empty { margin-top: 18px; padding: 16px 18px; background: var(--soft); border-radius: 14px; }
.claim-empty p { margin: 0 0 4px; }
.claim-company { display: flex; align-items: center; gap: 16px; margin: 10px 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.claim-company .company-logo { width: 72px; height: 72px; border-radius: 18px; }
.claim-company__name { margin: 0 0 4px; font-family: var(--serif); font-size: clamp(24px, 3vw, 32px); line-height: 1.15; color: var(--ink); }
.claim-company p { margin: 0 0 4px; color: var(--muted); font-size: 14px; }
.claim-company a { font-size: 14px; font-weight: 600; }
.claim-sub { margin: 0 0 6px; font-family: var(--serif); font-size: 22px; color: var(--ink); }
.claim-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.claim-state { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 14px; background: var(--soft); }
.claim-state strong { display: block; color: var(--ink); }
.claim-state p { margin: 4px 0 0; color: var(--text); font-size: 15px; }
.claim-state .btn { margin-top: 12px; }
.claim-state > .i { flex: none; width: 22px; height: 22px; margin-top: 2px; color: #1e6a42; }
.claim-state.is-ok { background: #e3f4ea; }
.claim-state.is-pending { background: #fff7e6; }
.claim-state.is-bad { background: #fcf0f1; margin-bottom: 20px; }
.claim-state__dot { flex: none; width: 12px; height: 12px; margin-top: 6px; border-radius: 50%; background: #d98e04; box-shadow: 0 0 0 4px rgba(217, 142, 4, .18); }
.claim-track { display: grid; gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; font-weight: 600; color: var(--muted); }
.claim-track li { display: flex; align-items: center; gap: 10px; }
.claim-track .is-done { color: #1e6a42; }
.claim-track .is-current { color: var(--ink); }
.claim-track__dot { width: 12px; height: 12px; margin: 0 5px; border-radius: 50%; border: 2px solid currentColor; }
.claim-form { margin-top: 16px; }
.claim-form .qstep__grid { margin-bottom: 16px; }
.claim-confirm { align-items: flex-start; margin: 4px 0 18px; }
.claim-confirm .fcheck__text { font-size: 14px; line-height: 1.5; }
.claim-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.claim-cta a { font-weight: 700; }
@media (max-width: 600px) {
	.claim-search { flex-direction: column; }
	.claim-results li { flex-wrap: wrap; }
}
.owner-claim { margin: 16px 0 0; font-size: 14px; color: var(--muted); }
.owner-claim a { font-weight: 700; }
.owner-claim--top { margin: 0 0 18px; padding: 12px 16px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.owner-dup { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin: 12px 0 0; }
.pr-hero__claim { margin: 18px 0 0; font-size: 15px; color: var(--muted); }
.pr-hero__claim a { font-weight: 700; }
.auth-join .auth-plan__change { display: inline-block; margin-top: 14px; color: #ffd166; }
.auth-join .auth-plan__change:hover { color: #fff; }
.site-footer__legal { margin-top: 6px; }
.site-footer__legal a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* Open vs. enclosed illustrations */
.versus__art { max-width: 360px; overflow: visible; }
.versus__art .art__road { stroke-dasharray: 12 9; opacity: .3; }
.versus__art .art__fill { fill: #fff; }
.versus__art .art__glass { fill: #dfe7f5; }
.versus__art .art__post { opacity: .55; }
.versus__art .art__rib { opacity: .18; }
.versus__art .art__tire { fill: var(--ink); stroke: var(--ink); }
.versus__art .art__tire + circle { fill: #fff; stroke: none; }
.versus__art .car__body { fill: #e3e8f4; }
.versus__art .car__glass { fill: #fff; stroke-width: 1.4; }
.versus__art .car__wheel { fill: var(--ink); stroke: var(--ink); }
.versus__art .car--accent .car__body { fill: var(--accent); }
.versus__art .art__cut { fill: rgba(255, 255, 255, .05); stroke: #ffd166; stroke-dasharray: 5 5; }
.versus__side--dark .versus__art .art__fill { fill: rgba(255, 255, 255, .07); }
.versus__side--dark .versus__art .art__glass { fill: rgba(255, 255, 255, .22); }
.versus__side--dark .versus__art .art__rib { opacity: .14; }
.versus__side--dark .versus__art .art__tire { fill: #0a1428; stroke: #fff; }
.versus__side--dark .versus__art .car--sport .car__body { fill: var(--accent); stroke: #fff; }
.versus__side--dark .versus__art .car__glass { fill: rgba(255, 255, 255, .55); }
.versus__side--dark .versus__art .car__wheel { fill: #0a1428; stroke: #fff; }
