/* ==========================================================================
   RawLaw — Premium editorial theme
   Design tokens, primitives, components, layouts.
   Tokens are kept as CSS custom properties so the design scales cleanly.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
	/* Color */
	--ink:        #0B1220;
	--ink-soft:   #1E2A3A;
	--paper:      #FFFFFF;
	--surface:    #FFFFFF;
	--surface-alt:#F5F8FC;
	--navy:       #1A3F72;
	--navy-700:   #112E56;
	--muted:      #55657C;
	--muted-2:    #7D8A9D;
	--border:     #DCE4EE;
	--border-strong:#C9D4E2;
	--success:    #2F7A4D;
	--danger:     #B23A3A;

	/* Typography */
	--font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-display: var(--font-sans);

	/* Type scale (fluid) */
	--fs-xs:  clamp(12px, .75vw + 10px, 13px);
	--fs-sm:  clamp(13px, .8vw + 11px, 14px);
	--fs-base:clamp(15px, .8vw + 13px, 17px);
	--fs-md:  clamp(17px, 1vw + 14px, 19px);
	--fs-lg:  clamp(20px, 1.1vw + 16px, 24px);
	--fs-xl:  clamp(24px, 1.4vw + 18px, 32px);
	--fs-2xl: clamp(30px, 2vw + 20px, 44px);
	--fs-3xl: clamp(36px, 3vw + 22px, 60px);
	--fs-display: clamp(44px, 4vw + 24px, 88px);

	/* Spacing scale */
	--s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
	--s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

	/* Layout */
	--container: 1240px;
	--container-prose: 720px;

	/* Radii / borders */
	--r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-xl: 20px;
	--bw: 1px;

	/* Shadows */
	--shadow-sm: 0 1px 2px rgba(11,18,32,.04), 0 0 0 1px rgba(11,18,32,.04);
	--shadow-md: 0 6px 24px -8px rgba(11,18,32,.10), 0 0 0 1px rgba(11,18,32,.04);
	--shadow-lg: 0 24px 60px -20px rgba(11,18,32,.18), 0 0 0 1px rgba(11,18,32,.05);

	/* Motion */
	--ease-soft: cubic-bezier(.22,.61,.36,1);
	--ease-out:  cubic-bezier(.16,1,.3,1);
	--dur-fast: 160ms;
	--dur-mid:  280ms;
	--dur-slow: 520ms;
}

/* ---------- 2. Reset & base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font: 400 var(--fs-base)/1.65 var(--font-sans);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease-soft); }
a:hover { color: var(--navy); }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; border-radius: 4px; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--s-7) 0; }
::selection { background: color-mix(in srgb, var(--navy) 22%, transparent); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.18; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0 0 1em; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); height: 1px; width: 1px; overflow: hidden; word-wrap: normal !important; }
.skip-link { position: absolute; left: -9999px; top: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--ink); color: #fff; padding: .75rem 1rem; border-radius: 6px; z-index: 999; }

/* ---------- 3. Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--prose { max-width: var(--container-prose); }
.muted { color: var(--muted); }
.eyebrow {
	display: inline-block; font-family: var(--font-sans); font-size: 12px; letter-spacing: .14em;
	text-transform: uppercase; color: var(--navy); font-weight: 600;
}
a.eyebrow:hover { color: var(--navy-700); }
.empty { color: var(--muted); padding: var(--s-7) 0; text-align: center; }
.u-hide-md { display: inline-flex; }
@media (max-width: 720px) { .u-hide-md { display: none; } }

/* ---------- 4. Buttons & links ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 20px; border-radius: 999px;
	font: 600 14px/1 var(--font-sans); letter-spacing: .01em;
	transition: transform var(--dur-fast) var(--ease-soft), background var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-fast);
	border: 1px solid transparent; white-space: nowrap;
}
.btn--primary { background: var(--navy-700); color: var(--surface); }
.btn--primary svg { width: 16px; height: 16px; }
.btn--primary:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: var(--border-strong); color: var(--ink); }
.btn--ghost:hover { background: var(--surface); border-color: var(--ink); }
.btn--sm { padding: 9px 14px; font-size: 13px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

.icon-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 999px; color: var(--ink);
	transition: background var(--dur-fast), transform var(--dur-fast);
}
.icon-btn:hover { background: var(--surface-alt); }
.icon-btn svg { width: 20px; height: 20px; }

.link-arrow {
	display: inline-flex; align-items: center; gap: 8px; color: var(--navy);
	font-weight: 700; font-size: 14px; text-decoration: none;
	transition: color var(--dur-fast), gap var(--dur-fast);
}
.link-arrow span { transition: transform var(--dur-med) var(--ease-soft); display: inline-block; }
.link-arrow:hover { color: var(--ink); gap: 12px; }
.link-arrow:hover span { transform: translateX(2px); }

/* ---------- 5. Header / nav ---------- */
.site-header {
	background: var(--surface);
	border-bottom: 1px solid var(--border);
	position: sticky; top: 0; z-index: 50;
	backdrop-filter: saturate(120%) blur(8px);
}
.site-header__bar { padding: 14px 0; }
.site-header__inner {
	display: flex; align-items: center; gap: var(--s-4);
}
.site-branding { line-height: 1.1; flex-shrink: 0; }
.site-branding__title { display: inline-block; }
.site-logo { display: block; height: auto; width: 200px; }
.site-logo--mono { width: 280px; }
.site-footer__logo { display: inline-block; }
.site-header__actions { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }
.site-header__menu-toggle { display: inline-flex; align-items: center; padding: 8px; }
.hamburger { width: 22px; height: 16px; position: relative; display: inline-block; }
.hamburger span {
	position: absolute; left: 0; right: 0; height: 2px; background: var(--ink); border-radius: 2px;
	transition: transform var(--dur-fast) var(--ease-soft), opacity var(--dur-fast), top var(--dur-fast);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7px; }
.hamburger span:nth-child(3) { top: 14px; }
[aria-expanded="true"] .hamburger span:nth-child(1) { top: 7px; transform: rotate(45deg); }
[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
[aria-expanded="true"] .hamburger span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.site-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.menu { list-style: none; padding: 0; margin: 0; display: flex; gap: var(--s-5); flex-wrap: wrap; align-items: center; }
.menu a {
	font-size: 14px; font-weight: 500; color: var(--ink-soft);
	padding: 8px 0; position: relative;
}
.menu a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; background: var(--navy);
	transform: scaleX(0); transform-origin: left; transition: transform var(--dur-mid) var(--ease-out);
}
.menu a:hover::after, .current-menu-item a::after, .current_page_item a::after { transform: scaleX(1); }
.menu--secondary a { color: var(--muted); font-size: 13px; }

.site-search { padding: 14px 0; background: var(--surface); border-top: 1px solid var(--border); }

@media (max-width: 880px) {
	.site-nav { display: none; position: fixed; inset: 60px 0 0 0; overflow: auto; padding-bottom: var(--s-7); background: var(--surface); border-top: 1px solid var(--border); z-index: 49; }
	.site-nav.is-open { display: block; }
	.menu { flex-direction: column; gap: 0; padding: var(--s-4) 24px; }
	.menu li { border-bottom: 1px solid var(--border); }
	.menu a { display: block; padding: 14px 0; font-size: 17px; }
	.menu a::after { display: none; }
}
@media (min-width: 881px) {
	.site-header__menu-toggle { display: none; }
}

/* ---------- 6. Search form ---------- */
.search-form__field {
	display: grid; grid-template-columns: auto 1fr auto; align-items: center;
	background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
	padding: 6px 6px 6px 16px; transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.search-form__field:focus-within { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(11,18,32,.06); }
.search-form__icon { width: 18px; height: 18px; color: var(--muted); }
.search-form__input { border: 0; background: transparent; padding: 10px 12px; font-size: 15px; outline: none; min-width: 0; width: 100%; }
.search-form__submit { background: var(--navy-700); color: #fff; border-radius: 999px; padding: 10px 18px; font-weight: 600; font-size: 14px; }
.search-form__submit:hover { background: var(--navy); }

/* ---------- 7. Breadcrumbs ---------- */
.breadcrumbs { padding: 14px 0 0; max-width: var(--container); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--muted); }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs__sep { color: var(--border-strong); }
.breadcrumbs li[aria-current="page"] { color: var(--ink); }

/* ---------- 8. Ticker ---------- */
.ticker {
	display: flex; align-items: stretch; overflow: hidden;
	border: 1px solid var(--border); border-radius: var(--r-md);
	background: var(--surface); margin-bottom: var(--s-5);
}
.ticker__label {
	flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px;
	padding: 10px 18px; font-size: 13px; font-weight: 700; letter-spacing: .04em;
	text-transform: uppercase; white-space: nowrap;
	background: var(--navy); color: #fff; border-radius: var(--r-md) 0 0 var(--r-md);
}
.ticker__label::before {
	content: ""; width: 8px; height: 8px; border-radius: 50%;
	background: #fff; animation: tickerDot 1.5s ease-in-out infinite;
}
@keyframes tickerDot { 0%,100% { opacity:.3 } 50% { opacity:1 } }
.ticker__track {
	flex: 1 1 0%; display: flex; overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.ticker__marquee {
	display: flex; align-items: center; flex-shrink: 0;
	animation: tickerScroll 60s linear infinite;
}
.ticker:hover .ticker__marquee { animation-play-state: paused; }
@keyframes tickerScroll { 0% { transform: translateX(0) } 100% { transform: translateX(-100%) } }
.ticker__item {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 0 24px; white-space: nowrap; color: var(--ink);
	font-size: 14px; font-weight: 500; text-decoration: none;
	border-right: 1px solid var(--border);
}
.ticker__item:hover .ticker__headline { color: var(--navy); }
.ticker__thumb { width: 32px; height: 32px; flex-shrink: 0; border-radius: var(--r-md); overflow: hidden; }
.ticker__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ticker__headline { transition: color var(--dur-fast); }
.ticker__date { color: var(--muted); font-size: 12px; flex-shrink: 0; }
@media (max-width: 768px) {
	.ticker__label { padding: 8px 12px; font-size: 11px; }
	.ticker__item { padding: 0 16px; font-size: 13px; }
	.ticker__thumb { display: none; }
}

/* ---------- 9. Hero (front) — two-column: search left, news right ----------
   Design intent:
     - Left: minimal headline, single search input, popular chips, trust signals.
     - Right: Top News area with legal articles.
     - Clean, left-aligned, editorial focus from the first screen.
   ----------------------------------------------------------------------- */
.hero {
	position: relative;
	padding: 0;
	background:
		radial-gradient(900px 420px at 12% -12%, rgba(26,63,114,.06), transparent 66%),
		linear-gradient(180deg, var(--paper) 0%, var(--paper) 100%);
	overflow: hidden;
}
.hero__decor { display: none; }
.hero .container {
	position: relative;
	z-index: 1;
	padding-top: clamp(28px, 3.4vw, 52px);
	padding-bottom: clamp(24px, 3.2vw, 44px);
}

.hero__inner {
	display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, .9fr); gap: clamp(28px, 4vw, 60px);
	align-items: flex-start;
}

/* Left column: search */
.hero__left {
	display: flex;
	flex-direction: column;
	gap: var(--s-4);
	max-width: 760px;
	align-self: center;
}

.hero__lede { display: flex; flex-direction: column; gap: var(--s-3); }

.hero__headline {
	font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
	font-size: clamp(38px, 4.41vw, 72px);
	line-height: 1.04; letter-spacing: -.02em;
	font-weight: 600; color: var(--ink); margin: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.hero__headline-line { color: var(--ink); }
.hero__headline-accent { color: var(--navy); }

.hero__subtitle {
	font-size: clamp(17px, 1.15vw, 19px);
	color: var(--muted);
	line-height: 1.5;
	margin: 4px 0 0;
	max-width: 40ch;
}

/* Single input search */
.hero__finder {
	display: flex; flex-direction: column; gap: var(--s-2);
}
.hero__finder-row {
	display: grid; grid-template-columns: 1fr auto; gap: 0;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 5px;
	min-width: 0;
	box-shadow: 0 8px 20px -22px rgba(11,18,32,.2);
	transition: border-color var(--dur-fast), box-shadow var(--dur-mid) var(--ease-soft);
}
.hero__finder-row:focus-within {
	border-color: var(--ink);
	box-shadow: 0 1px 3px rgba(11,18,32,.04), 0 24px 48px -20px rgba(11,18,32,.22), 0 0 0 4px rgba(26,63,114,.16);
}
.hero__finder-field {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 10px;
	padding: 10px 14px;
	min-width: 0;
	cursor: text;
}
.hero__finder-icon {
	grid-row: 1 / -1; display: inline-flex; align-items: center; justify-content: center;
	color: var(--muted);
}
.hero__finder-icon svg { width: 18px; height: 18px; }
.hero__finder-label {
	display: none; /* Lean UX: waste elimination—icon + placeholder sufficient */
}
.hero__finder-input {
	grid-column: 2; grid-row: 2;
	border: 0; background: transparent; outline: none;
	font: 500 15px/1.35 var(--font-sans); color: var(--ink);
	padding: 2px 0; min-width: 0; width: 100%;
}
.hero__finder-input::placeholder { color: var(--muted-2); font-weight: 400; }

.hero__finder-btn {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--navy-700); color: #fff;
	border: 0; border-radius: var(--r-md);
	padding: 14px 22px;
	min-width: 180px;
	font: 700 15px/1 var(--font-sans);
	cursor: pointer;
	transition: background var(--dur-fast), transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast);
	box-shadow: 0 10px 22px -18px rgba(11,18,32,.7);
}
.hero__finder-btn:hover { background: var(--navy); transform: translateY(-1px); }
.hero__finder-btn:active { transform: translateY(0); }
.hero__finder-btn svg { transition: transform var(--dur-fast) var(--ease-soft); }
.hero__finder-btn:hover svg { transform: translateX(2px); }

/* Hero CTA buttons */
.hero__ctas {
	display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-2);
}

/* Popular chips */
.hero__chips {
	display: flex; flex-wrap: wrap;
	gap: 6px; align-items: center;
	margin-top: 2px;
}
.hero__chips-label {
	font: 700 14px/1.2 var(--font-sans);
	letter-spacing: 0;
	text-transform: none;
	color: var(--ink-soft);
	margin-right: 6px;
}
.hero__chip {
	display: inline-flex; align-items: center;
	padding: 7px 13px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--surface);
	font: 500 14px/1.1 var(--font-sans);
	color: var(--ink-soft);
	text-decoration: none;
	transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast), transform var(--dur-fast) var(--ease-soft);
}
.hero__chip:hover {
	background: var(--navy); color: #fff; border-color: var(--navy);
	transform: translateY(-1px);
}

/* Trust signals */
.hero__signals {
	list-style: none; padding: 14px 0 0; margin: 0;
	display: flex; flex-wrap: wrap;
	gap: 0;
}
.hero__signal {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 13px;
	color: var(--muted);
	line-height: 1;
	padding: 0 24px;
}
.hero__signal:first-child { padding-left: 0; }
.hero__signal + .hero__signal {
	border-left: 1px solid var(--border);
}
.hero__signal strong { color: var(--ink); font-weight: 700; }
.hero__signal svg { width: 16px; height: 16px; color: var(--navy); flex-shrink: 0; }

/* Alt CTA — Advocate Join */
.hero__alt {
	display: none;
}
.hero__alt a {
	color: var(--navy); font-weight: 700; text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: border-color var(--dur-fast), color var(--dur-fast), transform var(--dur-fast) var(--ease-soft);
	display: inline-flex; align-items: center;
}
.hero__alt a span { display: inline-block; transition: transform var(--dur-fast) var(--ease-soft); margin-left: 3px; }
.hero__alt a:hover { color: var(--ink); border-color: var(--navy); transform: translateX(2px); }
.hero__alt a:hover span { transform: translateX(3px); }

/* Right column: Top News */
.hero__right {
	display: flex; flex-direction: column;
	padding-left: clamp(20px, 2vw, 34px);
	border-left: 1px solid var(--border);
}

.hero-news { display: flex; flex-direction: column; gap: var(--s-4); }
.hero-news__label {
	font: 500 clamp(26px, 1.8vw, 36px)/1.15 "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
	text-transform: none;
	color: var(--ink);
	margin: 0;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border);
	position: relative;
}
.hero-news__label::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 36px;
	height: 2px;
	background: var(--navy);
}
.hero-news__list {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-direction: column; gap: 0;
}
.hero-news__item {
	transition: opacity var(--dur-fast);
	padding: 16px 0;
	border-bottom: 1px solid var(--border);
}
.hero-news__item:hover {
	opacity: 0.9;
}
.hero-news__link {
	display: flex; flex-direction: column; gap: 6px;
	text-decoration: none; color: inherit;
}
.hero-news__age {
	display: inline-flex;
	align-items: center;
	margin-top: 2px;
	font-size: 11px;
	color: var(--muted-2);
	font-weight: 500;
	white-space: nowrap;
}
.hero-news__title {
	font: 600 14px/1.45 var(--font-sans); color: var(--ink);
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
	transition: color var(--dur-fast);
}
.hero-news__link:hover .hero-news__title { color: var(--navy); }
.hero-news__see-more {
	display: inline-flex; align-items: center; gap: 6px;
	font: 700 15px/1 var(--font-sans); color: var(--navy);
	text-decoration: none;
	transition: color var(--dur-fast);
	margin-top: 16px;
}
.hero-news__see-more span { transition: transform var(--dur-fast) var(--ease-soft); }
.hero-news__see-more:hover { color: var(--ink); }
.hero-news__see-more:hover span { transform: translateX(2px); }

/* Responsive */
@media (max-width: 1024px) {
	.hero__inner { grid-template-columns: 1fr; gap: var(--s-5); }
	.hero__left { align-self: stretch; }
	.hero__right {
		padding-left: 0;
		border-left: 0;
		padding-top: var(--s-4);
		border-top: 1px solid var(--border);
	}
	.hero__headline { font-size: clamp(38px, 6.84vw, 58px); }
	.hero__subtitle { font-size: clamp(16px, 2.2vw, 19px); max-width: 42ch; }
	.hero__chips-label { font-size: 15px; }
	.hero__chip { font-size: 13px; }
	.hero__finder-input { font-size: 15px; }
	.hero__finder-btn { font-size: 15px; padding: 13px 18px; min-width: 160px; }
	.hero__signal { font-size: 13px; padding: 0 14px; }
	.hero-news__label { font-size: 30px; }
	.hero-news__title { font-size: 15px; }
	.hero-news__see-more { font-size: 16px; }
}
@media (max-width: 600px) {
	.hero .container { padding-top: var(--s-5); padding-bottom: var(--s-6); }
	.hero__left { gap: var(--s-4); }
	.hero__lede { gap: var(--s-3); }
	.hero__headline { font-size: clamp(32px, 8.46vw, 41px); }
	.hero__subtitle { font-size: clamp(15px, 4.6vw, 18px); line-height: 1.45; }
	.hero__finder-row { grid-template-columns: 1fr; padding: 4px; gap: 0; }
	.hero__finder-field { padding: 8px 10px; border-bottom: 1px solid var(--border); }
	.hero__finder-btn { padding: 11px 14px; justify-self: stretch; margin-top: 6px; font-size: 14px; width: 100%; }
	.hero__chips { gap: 6px; }
	.hero__chips-label { width: 100%; margin: 0 0 4px; font-size: 14px; letter-spacing: 0; }
	.hero__chip { font-size: 13px; padding: 7px 10px; }
	.hero__signals { gap: 10px 0; }
	.hero__signal { width: 100%; padding: 0; border-left: 0 !important; }
	.hero-news__list { gap: var(--s-2); }
	.hero-news__item { border-radius: var(--r-md); }
}

@media (max-width: 420px) {
	.container { padding-left: 16px; padding-right: 16px; }
	.hero .container { padding-top: var(--s-5); padding-bottom: var(--s-6); }
	.hero__headline { font-size: clamp(29px, 8.28vw, 34px); line-height: 1.08; }
	.hero__subtitle { font-size: 15px; line-height: 1.48; }
	.hero__finder-field { padding: 8px 8px; }
	.hero__finder-input { font-size: 14px; }
	.hero__finder-btn { font-size: 13px; padding: 10px 12px; }
	.hero__chips { gap: 5px; }
	.hero__chip { font-size: 12px; padding: 6px 9px; }
	.hero__signals { gap: 8px 10px; }
	.hero__signal { font-size: 12px; }
}

/* Honour reduced motion */
@media (prefers-reduced-motion: reduce) {
	.hero__chip, .hero__finder-btn, .hero__finder-btn svg,
	.hero-news__see-more span, .hero-news__item,
	.hero__alt a span { transition: none; }
}

/* ---------- 9b. Post-a-Requirement page ----------
   Mirrors hero language: same eyebrow, same typographic rhythm.
   Form is a single white "shell" card on the surface-alt page background.
   ----------------------------------------------------------------------- */
.req-hero {
	background: linear-gradient(180deg, var(--paper) 0%, var(--surface-alt) 100%);
	border-bottom: 1px solid var(--border);
	padding: clamp(40px, 5vw, 72px) 0 clamp(32px, 4vw, 56px);
}
.req-hero__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.req-hero__eyebrow {
	font: 600 12px/1 var(--font-sans); letter-spacing: .18em;
	text-transform: uppercase; color: var(--navy-700); margin: 0 0 var(--s-3);
}
.req-hero__title {
	font-family: var(--font-display);
	font-size: clamp(32px, 4.2vw + 6px, 56px);
	line-height: 1.05; letter-spacing: -.03em;
	font-weight: 800; color: var(--ink); margin: 0;
}
.req-hero__title em {
	font-style: italic; font-weight: 500; color: var(--navy);
	display: block; margin-top: .1em;
}
.req-hero__lead {
	font-size: var(--fs-md); color: var(--muted); line-height: 1.65;
	max-width: 62ch; margin: var(--s-3) auto 0;
}
.req-steps {
	list-style: none; padding: 0; margin: var(--s-5) 0 0;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3);
	text-align: left;
}
.req-steps li {
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
	padding: var(--s-4); display: flex; flex-direction: column; gap: 8px;
	font-size: 14px; color: var(--ink);
}
.req-steps__num {
	font: 700 12px/1 var(--font-sans);
	color: var(--navy-700); letter-spacing: .12em;
}
@media (max-width: 720px) { .req-steps { grid-template-columns: 1fr; } }

.req-form-wrap {
	background: var(--surface-alt);
	padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 6vw, 96px);
}
.req-form-shell {
	max-width: 880px; margin: 0 auto;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	box-shadow: 0 24px 60px -28px rgba(11,18,32,.18);
	padding: clamp(24px, 3vw, 40px);
}

.req-flash {
	display: flex; gap: 12px; align-items: flex-start;
	padding: var(--s-4); border-radius: var(--r-lg);
	margin-bottom: var(--s-5);
	border: 1px solid var(--border);
	background: var(--surface-alt);
}
.req-flash svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.req-flash p { margin: 4px 0 6px; color: var(--muted); }
.req-flash--success { border-color: rgba(47,122,77,.35); background: rgba(47,122,77,.06); }
.req-flash--success svg { color: var(--success); }
.req-flash--error { border-color: rgba(178,58,58,.35); background: rgba(178,58,58,.05); }
.req-flash--error svg { color: var(--danger); }

.req-form__honeypot {
	position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden;
}

.req-form__group {
	border: 0; padding: 0; margin: 0 0 var(--s-6);
}
.req-form__legend {
	font: 600 12px/1 var(--font-sans); letter-spacing: .14em;
	text-transform: uppercase; color: var(--navy-700);
	margin: 0 0 var(--s-4); padding: 0;
}
.req-form__row {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3);
	margin-bottom: var(--s-3);
}
.req-form__row:has(.req-form__field:nth-child(2):last-child) {
	grid-template-columns: 1fr 1fr;
}
.req-form__field {
	display: flex; flex-direction: column; gap: 6px;
	min-width: 0;
}
.req-form__field--wide { margin-bottom: var(--s-4); }
.req-form__label {
	font: 600 12px/1 var(--font-sans); letter-spacing: .04em;
	color: var(--ink);
}
.req-form__label em { color: var(--danger); font-style: normal; }
.req-form__hint {
	font-size: 12px; color: var(--muted-2);
}
.req-form input[type="text"],
.req-form input[type="email"],
.req-form input[type="tel"],
.req-form select,
.req-form textarea {
	width: 100%;
	border: 1px solid var(--border);
	background: var(--surface);
	border-radius: var(--r-md);
	padding: 12px 14px;
	font: 500 15px/1.4 var(--font-sans); color: var(--ink);
	transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.req-form textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.req-form input:focus,
.req-form select:focus,
.req-form textarea:focus {
	outline: 0;
	border-color: var(--ink);
	box-shadow: 0 0 0 4px rgba(26,63,114,.18);
}
.req-form__consent {
	display: flex; gap: 10px; align-items: flex-start;
	padding: var(--s-3); background: var(--surface-alt);
	border: 1px solid var(--border); border-radius: var(--r-md);
	font-size: 13px; color: var(--muted); line-height: 1.55;
}
.req-form__consent input { margin-top: 3px; flex-shrink: 0; }
.req-form__consent a { color: var(--navy); border-bottom: 1px solid var(--border-strong); }
.req-form__consent a:hover { color: var(--ink); border-color: var(--ink); }

.req-form__submit-row {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--s-4); margin-top: var(--s-5);
	flex-wrap: wrap;
}
.req-form__submit-row .btn svg { transition: transform var(--dur-fast) var(--ease-soft); }
.req-form__submit-row .btn:hover svg { transform: translateX(3px); }
.req-form__assurance {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 13px; color: var(--muted); margin: 0;
}
.req-form__assurance svg { width: 16px; height: 16px; color: var(--success); }

@media (max-width: 720px) {
	.req-form__row { grid-template-columns: 1fr; }
}

/* ---------- 9c. Lawyer archive handoff banner ---------- */
.marketplace__handoff {
	display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
	gap: var(--s-3);
	margin-top: var(--s-4);
	padding: 12px 18px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-left: 3px solid var(--navy);
	border-radius: var(--r-md);
}
.marketplace__handoff-text { margin: 0; font-size: 14px; color: var(--muted); }
.marketplace__handoff-text strong { color: var(--ink); font-weight: 700; }
.marketplace__handoff-link {
	font: 600 14px/1 var(--font-sans); color: var(--navy);
	display: inline-flex; align-items: center; gap: 6px;
	border-bottom: 1px solid transparent;
	transition: color var(--dur-fast), border-color var(--dur-fast);
}
.marketplace__handoff-link span { transition: transform var(--dur-fast) var(--ease-soft); }
.marketplace__handoff-link:hover { color: var(--ink); border-color: var(--ink); }
.marketplace__handoff-link:hover span { transform: translateX(3px); }

.marketplace__empty {
	text-align: center; padding: var(--s-7) var(--s-4);
	border: 1px dashed var(--border-strong); border-radius: var(--r-lg);
	background: var(--surface);
}
.marketplace__empty .empty { padding: 0; margin: 0 0 var(--s-4); font-size: var(--fs-md); color: var(--ink); }
.marketplace__empty .btn svg { transition: transform var(--dur-fast) var(--ease-soft); }
.marketplace__empty .btn:hover svg { transform: translateX(3px); }

/* ---------- 9. Sections — generous spacing for premium feel ---------- */
.section__eyebrow {
	font: 700 10px/1 var(--font-sans); letter-spacing: .16em; text-transform: uppercase;
	color: var(--muted); margin: 0 0 var(--s-2); opacity: 0.85;
}
.section {
	padding: var(--s-9) 0;
	border-bottom: 1px solid var(--border);
}
.section:last-of-type { border-bottom: 0; }
.section__header {
	display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-6);
	margin-bottom: var(--s-8);
	flex-wrap: wrap;
}
.section__header > div:first-child { flex: 1; }
.section__header--centered { flex-direction: column; align-items: center; text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section__title {
	font-size: clamp(28px, 2.5vw, 48px);
	letter-spacing: -0.02em;
	font-weight: 800;
	margin: 0;
	line-height: 1.1;
}
.section__sub {
	color: var(--muted);
	margin-top: var(--s-3);
	max-width: 62ch;
	font-size: clamp(14px, 1vw, 18px);
	line-height: 1.6;
}
.section__cta { display: flex; gap: var(--s-4); justify-content: center; margin-top: var(--s-8); flex-wrap: wrap; }
@media (max-width: 768px) {
	.section { padding: var(--s-8) 0; }
	.section__header { gap: var(--s-4); margin-bottom: var(--s-6); }
	.section__header .link-arrow { width: 100%; justify-content: flex-start; }
	.section__cta { margin-top: var(--s-6); }
	.section__cta .btn { width: 100%; max-width: 340px; }
}

/* ---------- 10. Grids ---------- */
.grid { display: grid; gap: var(--s-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

/* ---------- 11. Article cards ---------- */
.card { display: flex; flex-direction: column; gap: var(--s-3); }
.card__media { display: block; overflow: hidden; border-radius: var(--r-md); aspect-ratio: 3/2; background: var(--surface-alt); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.card:hover .card__media img { transform: scale(1.04); }
.card__title { font-family: var(--font-display); font-size: var(--fs-lg); line-height: 1.25; font-weight: 600; margin: 4px 0 0; }
.card__title--display { font-size: var(--fs-2xl); line-height: 1.1; letter-spacing: -.01em; }
.card__title--sm { font-size: var(--fs-md); }
.card__title--display { font-family: var(--font-display); font-weight: 700; }
.card__excerpt { color: var(--muted); font-size: 15px; margin: 0; }

.card--compact { display: grid; grid-template-columns: 120px 1fr; gap: var(--s-3); align-items: start; }
.card--compact .card__media { aspect-ratio: 1; border-radius: var(--r-sm); }

.card--featured .card__media { aspect-ratio: 16/10; border-radius: var(--r-lg); }
.card--featured .card__title { font-size: clamp(28px, 2vw + 16px, 44px); line-height: 1.05; }

.card--opinion {
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
	padding: var(--s-5); transition: transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast);
}
.card--opinion:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Headlines list */
.headline { display: flex; flex-direction: column; gap: 6px; padding-bottom: var(--s-4); border-bottom: 1px solid var(--border); }
.headline__title { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 600; line-height: 1.3; margin: 0; }
.trending-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5) var(--s-7); counter-reset: trend; }
.trending-list > li { display: grid; grid-template-columns: 48px 1fr; gap: var(--s-3); align-items: start; }
.trending-list__num { font-family: var(--font-display); font-size: 36px; color: var(--navy); line-height: 1; font-weight: 700; }
@media (max-width: 720px) { .trending-list { grid-template-columns: 1fr; } }

/* Cat grid: featured + 3 compact */
.cat-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: var(--s-7); }
.cat-grid > .card--featured { grid-row: span 3; }
@media (max-width: 880px) { .cat-grid { grid-template-columns: 1fr; } .cat-grid > .card--featured { grid-row: auto; } }

/* ---------- 12. Meta ---------- */
.meta { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; font-size: 13px; color: var(--muted); }
.meta__author { color: var(--ink); font-weight: 600; }
.meta__author:hover { color: var(--navy); }
.meta__avatar img { width: 28px; height: 28px; border-radius: 999px; }
.meta__date::before, .meta__read::before { content: "·"; margin-right: var(--s-3); color: var(--border-strong); }
.meta--compact { font-size: 12px; }
.meta--compact > * + *::before { content: ""; margin: 0; }

/* ---------- 13. Tags / chips / badges ---------- */
.tag-list { list-style: none; padding: 0; margin: var(--s-4) 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
	display: inline-flex; align-items: center; padding: 6px 12px; border-radius: 999px;
	background: var(--surface-alt); color: var(--ink-soft); font-size: 13px; font-weight: 500;
	transition: background var(--dur-fast), color var(--dur-fast);
}
.tag:hover { background: var(--navy); color: #fff; }
.tag-list--lg { margin-top: var(--s-6); }

.chip-list { list-style: none; padding: 0; margin: var(--s-4) 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border-strong); font-size: 13px; font-weight: 500; }
.chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.badge {
	display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px;
	border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .02em;
	background: var(--surface-alt); color: var(--ink-soft);
}
.badge--verified { background: color-mix(in srgb, var(--success) 12%, var(--surface)); color: var(--success); }
.badge--verified svg { width: 14px; height: 14px; }
.badge--court { background: color-mix(in srgb, var(--navy) 8%, var(--surface)); color: var(--navy); }
.badge--ok { background: color-mix(in srgb, var(--success) 14%, var(--surface)); color: var(--success); }
.badge--muted { background: var(--surface-alt); color: var(--muted); }

/* Stars */
.stars { --r: 0; display: inline-block; position: relative; font-size: 14px; color: var(--border-strong); letter-spacing: 2px; }
.stars::before { content: "★★★★★"; position: absolute; left: 0; top: 0; width: calc(var(--r)/5*100%); overflow: hidden; color: var(--navy); }

/* ---------- 14. Single article ---------- */
.article__header { padding-top: var(--s-6); padding-bottom: var(--s-5); }
.article__title { font-family: var(--font-display); font-size: var(--fs-3xl); line-height: 1.05; letter-spacing: -.03em; font-weight: 700; margin: 12px 0 16px; max-width: 52ch; }
.article__dek { font-size: var(--fs-md); color: var(--muted); max-width: 60ch; margin: 0 0 var(--s-4); font-family: var(--font-display); font-style: normal; font-weight: 400; }
.article__featured { margin: var(--s-6) 0 0; max-width: var(--container); margin-left: auto; margin-right: auto; padding: 0 24px; }
.article__featured img { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--r-lg); }
.article__featured figcaption { color: var(--muted); font-size: 13px; margin-top: 8px; }

.article__layout {
	display: grid; grid-template-columns: 220px 1fr;
	gap: var(--s-7); margin-top: var(--s-6); padding-top: var(--s-6); padding-bottom: var(--s-7);
}
.article__rail { position: sticky; top: 100px; align-self: start; }
.article__rail--start { border-right: 1px solid var(--border); padding-right: var(--s-5); }
.article__main { min-width: 0; }

@media (max-width: 1100px) {
	.article__layout { grid-template-columns: minmax(0, 780px); }
	.article__rail { position: static; border: 0 !important; padding: 0 !important; }
	.article__rail--start { display: flex; gap: var(--s-5); align-items: start; flex-wrap: wrap; margin-bottom: var(--s-5); }
}

/* Prose / typographic content */
.prose { font-family: var(--font-sans); font-size: 18px; line-height: 1.8; color: var(--ink); }
.prose p { margin: 0 0 1.2em; }
.prose h2 { font-size: 28px; margin: 2em 0 .6em; }
.prose h3 { font-size: 22px; margin: 1.6em 0 .5em; }
.prose a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--navy); text-underline-offset: 3px; }
.prose a:hover { color: var(--ink); }
.prose blockquote {
	border-left: 3px solid var(--navy); margin: 1.6em 0; padding: .2em 0 .2em 1.2em;
	font-style: italic; color: var(--ink-soft); font-size: 22px; line-height: 1.5;
}
.prose img, .prose figure img { width: 100%; border-radius: var(--r-md); margin: 1.5em 0; }
.prose figcaption { color: var(--muted); font-size: 14px; font-family: var(--font-sans); margin-top: 6px; }
.prose code { background: var(--surface-alt); padding: 2px 6px; border-radius: 4px; font-size: .95em; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.prose pre { background: var(--ink); color: #f5f1e6; padding: 18px 20px; border-radius: var(--r-md); overflow: auto; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.prose li { margin: .3em 0; }

/* FAQ section inside prose */
.prose h2:has(+ h6),
.prose h2.faq-heading {
	font-size: 32px; font-weight: 800; margin: 2.4em 0 1em; letter-spacing: -.02em;
	padding-bottom: .5em; border-bottom: 2px solid var(--border);
}
.prose h6 {
	font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.45;
	margin: 1.8em 0 .5em; padding: 12px 16px; border-radius: var(--r-md);
	background: var(--surface-alt); border-left: 3px solid var(--navy);
}
.prose h6 + p {
	margin-top: 0; padding-left: 16px;
}

/* WP File block button */
.wp-block-file { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 1.4em 0; }
.wp-block-file a:not(.wp-block-file__button) {
	color: var(--navy); text-decoration: underline; text-decoration-color: var(--navy);
	text-underline-offset: 3px; font-weight: 500;
}
.wp-block-file__button.wp-element-button {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 8px 20px; border-radius: var(--r-md);
	background: var(--navy); color: #fff; font-size: 14px; font-weight: 600;
	text-decoration: none; border: none; cursor: pointer;
	transition: background var(--dur-fast);
}
.wp-block-file__button.wp-element-button:hover { background: var(--ink); }

/* TOC */
.toc { font-family: var(--font-sans); font-size: 14px; }
.toc__title { font-family: var(--font-sans); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin: 0 0 12px; font-weight: 600; }
.toc__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; border-left: 2px solid var(--border); }
.toc__item a { display: block; padding: 4px 0 4px 12px; color: var(--muted); transition: color var(--dur-fast), border-color var(--dur-fast); border-left: 2px solid transparent; margin-left: -2px; }
.toc__item a:hover { color: var(--ink); }
.toc__item--lvl-3 a { padding-left: 24px; font-size: 13px; }
.toc__item.is-active a { color: var(--ink); border-left-color: var(--navy); font-weight: 600; }

/* Share */
.share { margin-top: var(--s-5); }
.share__label { font: 600 12px/1 var(--font-sans); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.share ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 4px; flex-wrap: wrap; }

/* Author bio */
.author-bio {
	display: grid; grid-template-columns: 96px 1fr; gap: var(--s-4); padding: var(--s-5);
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
	margin: var(--s-7) 0;
}
.author-bio__avatar img { border-radius: 999px; width: 96px; height: 96px; object-fit: cover; }
.author-bio__name { font-size: 22px; margin: 4px 0 8px; }
.author-bio__desc { color: var(--muted); margin: 0 0 12px; }

/* ---------- 15. Footer (premium minimal editorial) ---------- */
.site-footer {
	background: linear-gradient(155deg, #081326 0%, #0B1D38 55%, #0D2548 100%);
	color: rgba(255,255,255,.8);
	padding: var(--s-9) 0 var(--s-6);
	margin-top: var(--s-9);
	border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer__top {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) 2fr;
	gap: var(--s-8);
}
.site-footer__brand { display: grid; gap: var(--s-4); align-content: start; }
.site-footer__about { color: rgba(255,255,255,.66); margin: 0; max-width: 34ch; line-height: 1.65; }

.site-footer__trust {
	list-style: none;
	padding: 0;
	margin: var(--s-2) 0 0;
	display: grid;
	gap: 10px;
}
.site-footer__trust-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: rgba(255,255,255,.72);
}
.site-footer__trust-item svg { width: 14px; height: 14px; color: #8CB4FF; }

.site-footer__links {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--s-6);
}
.site-footer__group { min-width: 0; }
.site-footer__heading {
	color: #fff;
	font: 700 11px/1 var(--font-sans);
	text-transform: uppercase;
	letter-spacing: .14em;
	margin: 0 0 var(--s-3);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer a {
	color: rgba(255,255,255,.78);
	text-decoration: none;
	transition: color var(--dur-fast);
}
.site-footer a:hover,
.site-footer a:focus-visible { color: #fff; }

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: var(--s-5);
	border-top: 1px solid rgba(255,255,255,.1);
	margin-top: var(--s-7);
	flex-wrap: wrap;
	gap: var(--s-3);
}
.site-footer__copy { color: rgba(255,255,255,.58); font-size: 13px; margin: 0; }
.site-footer .menu--footer { display: flex; gap: var(--s-4); flex-wrap: wrap; font-size: 13px; }

.socials { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; }
.socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: rgba(255,255,255,.08);
	transition: background var(--dur-fast);
}
.socials a:hover { background: rgba(255,255,255,.16); }
.socials svg { width: 16px; height: 16px; color: #fff; }

@media (max-width: 980px) {
	.site-footer__top { grid-template-columns: 1fr; gap: var(--s-7); }
	.site-footer__links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
	.site-footer__links { grid-template-columns: 1fr; gap: var(--s-5); }
	.site-footer__bottom { align-items: flex-start; }
	.site-footer .menu--footer { gap: var(--s-3); }
}

@media (max-width: 480px) {
	.site-footer { padding: var(--s-8) 0 var(--s-5); }
	.site-footer__copy { max-width: 32ch; font-size: 12px; line-height: 1.55; }
	.site-footer .menu--footer { font-size: 12px; gap: var(--s-2); }
}

@media (prefers-reduced-motion: reduce) {
	.service-card,
	.service-card__icon,
	.how-step,
	.how-step__icon,
	.how-step__icon-svg,
	.how-step__num {
		transition: none;
		transform: none;
		filter: none;
	}
}

/* ---------- 17. Archive headers ---------- */
.archive { padding: var(--s-7) 0 var(--s-9); }
.archive__header { margin-bottom: var(--s-7); max-width: 760px; }
.archive__header--category { padding-bottom: var(--s-5); border-bottom: 1px solid var(--border); }
.archive__title { font-family: var(--font-display); font-size: var(--fs-3xl); letter-spacing: -.03em; line-height: 1.05; margin: 8px 0 12px; font-weight: 700; }
.archive__desc { color: var(--muted); font-size: var(--fs-md); }
.cat-archive__rest { margin-top: var(--s-7); }
.archive--search .search-form { margin-top: var(--s-4); max-width: 640px; }

.search-results { display: grid; gap: var(--s-5); }
.search-result { padding: var(--s-5) 0; border-bottom: 1px solid var(--border); }
.search-result__type { font: 600 11px/1 var(--font-sans); text-transform: uppercase; letter-spacing: .14em; color: var(--navy); margin: 0 0 6px; }
.search-result__title { font-size: var(--fs-lg); margin: 0 0 6px; }
.search-result__excerpt { color: var(--muted); margin: 0 0 4px; }
.search-result__url { font-size: 12px; color: var(--muted-2); margin: 0; word-break: break-all; }

/* ---------- 18. Author archive ---------- */
.author-archive { padding: var(--s-7) 0 var(--s-9); }
.author-archive__hero { display: grid; grid-template-columns: 160px 1fr; gap: var(--s-6); margin-bottom: var(--s-8); align-items: center; }
.author-archive__avatar img { width: 160px; height: 160px; border-radius: 999px; object-fit: cover; }
.author-archive__name { font-size: var(--fs-2xl); margin: 8px 0 12px; }
.author-archive__bio { color: var(--muted); max-width: 60ch; }
@media (max-width: 640px) { .author-archive__hero { grid-template-columns: 1fr; text-align: left; } }

/* ---------- 19. Judgments ---------- */
.judgment-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; border-top: 1px solid var(--border); }
.judgment { padding: var(--s-5) var(--s-5) var(--s-5) 0; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.judgment:nth-child(2n) { border-right: 0; padding-right: 0; padding-left: var(--s-5); }
.judgment__meta { display: flex; gap: var(--s-3); align-items: center; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.judgment__title { font-size: var(--fs-md); line-height: 1.3; margin: 0 0 8px; font-weight: 600; }
.judgment__excerpt { color: var(--muted); margin: 0; font-size: 14px; }
.judgment-list--full .judgment { padding-left: 0; padding-right: 0; border-right: 0; }
.judgment-list--full { grid-template-columns: 1fr; }
@media (max-width: 720px) { .judgment-list { grid-template-columns: 1fr; } .judgment { border-right: 0 !important; padding-right: 0 !important; padding-left: 0 !important; } }

/* ---------- 20. Marketplace ---------- */
.marketplace { padding: var(--s-7) 0 var(--s-9); }
.marketplace__hero { text-align: center; max-width: 720px; margin: 0 auto var(--s-7); }
.marketplace__title { font-size: var(--fs-3xl); letter-spacing: -.02em; margin: 8px 0 12px; }
.marketplace__sub { color: var(--muted); font-size: var(--fs-md); }
.marketplace__search {
	display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center;
	background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
	padding: 6px 6px 6px 20px; max-width: 600px; margin: var(--s-5) auto 0;
}
.marketplace__search input { border: 0; background: transparent; outline: none; font-size: 16px; padding: 12px 0; }
.marketplace__layout { display: grid; grid-template-columns: 280px 1fr; gap: var(--s-7); align-items: start; }
.marketplace__results-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--s-5); }
.sort label { font-size: 13px; color: var(--muted); margin-right: 8px; }
.sort select { padding: 8px 12px; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface); }

@media (max-width: 880px) { .marketplace__layout { grid-template-columns: 1fr; } }

/* Filters */
.filters { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s-5); position: sticky; top: 100px; }
.filters__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--s-4); }
.filters__title { font-size: 16px; margin: 0; }
.filters__reset { font-size: 13px; color: var(--muted); }
.filters__group { border-top: 1px solid var(--border); padding: var(--s-3) 0; }
.filters__group summary { cursor: pointer; font-weight: 600; font-size: 14px; padding: 6px 0; list-style: none; display: flex; justify-content: space-between; }
.filters__group summary::after { content: "+"; color: var(--muted); font-size: 18px; }
.filters__group[open] summary::after { content: "−"; }
.filters__options { list-style: none; padding: 8px 0 0; margin: 0; display: grid; gap: 6px; max-height: 240px; overflow: auto; }
.filters__options label { display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; padding: 4px 0; }
.filters__options small { font-size: 11px; }
.filters__field { display: flex; flex-direction: column; gap: 6px; padding: 8px 0; }
.filters__field input { padding: 10px 12px; border-radius: 8px; border: 1px solid var(--border-strong); }
.filters__check { display: flex; align-items: center; gap: 8px; font-size: 14px; padding: var(--s-3) 0; border-top: 1px solid var(--border); }
.filters__form .btn { margin-top: var(--s-3); }

/* Lawyer card */
.grid--lawyers { gap: var(--s-5); }
.lawyer-card {
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
	padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-4);
	transition: transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.lawyer-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.lawyer-card__head { display: grid; grid-template-columns: 64px 1fr; gap: var(--s-4); align-items: center; }
.lawyer-card__photo { display: block; width: 64px; height: 64px; border-radius: 999px; overflow: hidden; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; }
.lawyer-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.lawyer-card__initials { font-family: var(--font-display); font-size: 26px; color: var(--navy); font-weight: 700; }
.lawyer-card__initials--lg { font-size: 56px; }
.lawyer-card__name { font-size: 18px; line-height: 1.25; margin: 0 0 4px; display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.lawyer-card__name .badge { font-size: 11px; }
.lawyer-card__role { color: var(--muted); font-size: 13px; margin: 0; }
.lawyer-card__rating { display: flex; align-items: center; gap: 6px; margin: 6px 0 0; font-size: 13px; }
.lawyer-card__facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px var(--s-4); margin: 0; }
.lawyer-card__facts > div { display: grid; gap: 2px; }
.lawyer-card__facts dt { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin: 0; }
.lawyer-card__facts dd { margin: 0; font-size: 14px; font-weight: 500; }
.lawyer-card__cta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }

/* Lawyer profile */
.lawyer-profile__hero { background: linear-gradient(180deg, var(--surface-alt) 0%, var(--paper) 100%); padding: var(--s-7) 0; border-bottom: 1px solid var(--border); }
.lawyer-profile__hero-inner { display: grid; grid-template-columns: 160px 1fr 280px; gap: var(--s-6); align-items: start; }
.lawyer-profile__photo { width: 160px; height: 160px; border-radius: 999px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.lawyer-profile__photo img { width: 100%; height: 100%; object-fit: cover; }
.lawyer-profile__name { font-size: var(--fs-3xl); letter-spacing: -.02em; margin: 4px 0 6px; }
.lawyer-profile__firm { color: var(--muted); margin: 0 0 var(--s-3); font-size: var(--fs-md); }
.lawyer-profile__meta { list-style: none; padding: 0; margin: 0 0 var(--s-3); display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: center; font-size: 14px; color: var(--ink-soft); }
.lawyer-profile__meta li { display: inline-flex; align-items: center; gap: 6px; }
.lawyer-profile__meta svg { width: 16px; height: 16px; color: var(--muted); }
.lawyer-profile__cta { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s-5); position: sticky; top: 100px; box-shadow: var(--shadow-sm); }
.lawyer-profile__price { display: flex; flex-direction: column; gap: 2px; margin: 0 0 var(--s-3); }
.lawyer-profile__price span { font-size: 12px; color: var(--muted); }
.lawyer-profile__price strong { font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.lawyer-profile__cta .btn { margin-bottom: 8px; }
.xs { font-size: 12px; }

.lawyer-profile__layout { display: grid; grid-template-columns: 1fr 320px; gap: var(--s-7); padding: var(--s-7) 24px; }
.lawyer-profile__main { min-width: 0; }
.lawyer-profile__section { padding: var(--s-6) 0; border-top: 1px solid var(--border); }
.lawyer-profile__section:first-child { border-top: 0; padding-top: 0; }
.practice-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: var(--s-3); }
.practice-grid a {
	display: block; padding: var(--s-4); border: 1px solid var(--border); border-radius: var(--r-md);
	background: var(--surface); transition: border-color var(--dur-fast), transform var(--dur-fast);
}
.practice-grid a:hover { border-color: var(--ink); transform: translateY(-1px); }
.practice-grid strong { display: block; font-family: var(--font-display); font-size: 16px; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
.practice-grid small { color: var(--muted); font-size: 13px; }

.card-info { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s-5); }
.card-info h3 { font-family: var(--font-sans); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin: 0 0 var(--s-3); }
.card-info dl { display: grid; gap: 12px; margin: 0; }
.card-info dt { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.card-info dd { margin: 2px 0 0; font-size: 14px; }

@media (max-width: 1024px) {
	.lawyer-profile__hero-inner { grid-template-columns: 120px 1fr; }
	.lawyer-profile__cta { grid-column: 1 / -1; position: static; }
	.lawyer-profile__photo { width: 120px; height: 120px; }
	.lawyer-profile__layout { grid-template-columns: 1fr; }
}

/* Consult form */
.consult__form { display: grid; gap: var(--s-3); margin-top: var(--s-3); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.consult__form label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
.consult__form input, .consult__form textarea { padding: 12px 14px; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface); }
.consult__form input:focus, .consult__form textarea:focus { border-color: var(--ink); outline: none; box-shadow: 0 0 0 3px rgba(11,18,32,.06); }
.consult__form .checkbox { grid-template-columns: auto 1fr; align-items: start; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- 21. Pagination ---------- */
.pagination { margin-top: var(--s-7); }
.pagination ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 4px; justify-content: center; flex-wrap: wrap; }
.pagination a, .pagination span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 12px; border-radius: 8px;
	font-size: 14px; font-weight: 500; color: var(--ink-soft);
	transition: background var(--dur-fast), color var(--dur-fast);
}
.pagination a:hover { background: var(--surface); }
.pagination .current { background: var(--navy); color: #fff; }

/* Comments */
.comments { margin: var(--s-8) 0; padding: var(--s-7) 0; border-top: 1px solid var(--border); }
.comments__list { list-style: none; padding: 0; margin: 0 0 var(--s-6); }
.comment-form { display: grid; gap: var(--s-3); }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
	width: 100%; padding: 12px 14px; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface);
}
.comment-form .submit { background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 999px; }

/* Error 404 */
.error-404 { padding: var(--s-9) 0; text-align: center; }
.error-404__title { font-size: var(--fs-3xl); margin: 8px 0 12px; }
.error-404__sub { color: var(--muted); max-width: 560px; margin: 0 auto var(--s-5); }
.error-404 .search-form { max-width: 520px; margin: 0 auto var(--s-5); }
.error-404__cta { display: flex; gap: 12px; justify-content: center; margin-top: var(--s-4); flex-wrap: wrap; }

/* ---------- 22. Motion utilities ---------- */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(14px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
[data-reveal-stagger].is-revealed > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-revealed > *:nth-child(1) { transition-delay: .05s; }
[data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: .15s; }
[data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: .25s; }
[data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition-duration: 0.01ms; animation-duration: 0.01ms; animation-iteration-count: 1; scroll-behavior: auto; }
	[data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; transition: none; }
}

/* No-JS fallback: show everything when JS hasn't run */
.no-js [data-reveal], .no-js [data-reveal-stagger] > * { opacity: 1; transform: none; }

/* ---------- 23. Marketplace teaser (front-page) ---------- */
.section--marketplace { background: linear-gradient(180deg, var(--paper) 0%, var(--surface-alt) 100%); }
.section--judgments { background: var(--surface); }

/* ---------- 25. Homepage — redesigned components ---------- */

/* Features bar — scroll-driven marquee strip */
.features-bar {
	position: relative;
	padding: 10px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: var(--paper);
	overflow: hidden;
}

/* Fade edges left and right */
.features-bar::before,
.features-bar::after {
	content: '';
	position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1; pointer-events: none;
}
.features-bar::before { left: 0;  background: linear-gradient(to right, var(--paper) 20%, transparent); }
.features-bar::after  { right: 0; background: linear-gradient(to left,  var(--paper) 20%, transparent); }

/* Track — flex row, no wrap, animated by GSAP */
.features-bar__track {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0;
	list-style: none;
	margin: 0; padding: 0;
	will-change: transform;
}

/* Individual item */
.features-bar__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 2px var(--s-5);
	flex-shrink: 0;
	white-space: nowrap;
}
.features-bar__icon {
	display: inline-flex; align-items: center; flex-shrink: 0;
	color: var(--navy);
}
.features-bar__icon svg { width: 15px; height: 15px; }
.features-bar__title {
	font: 600 12px/1 var(--font-sans);
	color: var(--ink-soft);
	letter-spacing: 0.01em;
}

/* Bullet separator */
.features-bar__sep {
	display: inline-block;
	width: 3px; height: 3px;
	border-radius: 50%;
	background: var(--border);
	flex-shrink: 0;
	align-self: center;
}

/* No-JS / reduced-motion fallback: horizontal scroll */
@media (prefers-reduced-motion: reduce) {
	.features-bar__track { overflow-x: auto; scrollbar-width: none; }
	.features-bar__track::-webkit-scrollbar { display: none; }
}

/* Popular services (icon cards) — more prominent, crafted SVG icons */
.services-grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.service-card {
	display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
	padding: 18px 10px; background: transparent; text-align: center;
	text-decoration: none; color: inherit;
	transition: transform var(--dur-mid) var(--ease-soft), color var(--dur-mid), background var(--dur-mid);
	border: none;
	border-right: 1px solid var(--border);
	border-radius: var(--r-md);
}
.service-card:last-child { border-right: 0; }
.service-card:hover {
	transform: translateY(-3px);
	color: var(--navy);
	background: color-mix(in srgb, var(--navy) 3%, transparent);
}
.service-card__icon {
	width: 48px; height: 48px; flex-shrink: 0;
	display: flex; align-items: center; justify-content: center;
	transition: transform var(--dur-med) var(--ease-soft), color var(--dur-med), filter var(--dur-med);
	color: var(--muted);
}
.service-card:hover .service-card__icon {
	transform: translateY(-2px) scale(1.08) rotate(-3deg);
	color: var(--navy);
	filter: drop-shadow(0 8px 14px rgba(27,58,91,.16));
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card__name { font-size: 14px; font-weight: 600; margin: 0; line-height: 1.35; color: var(--ink); letter-spacing: -0.005em; }
@media (max-width: 1200px) { .services-grid { grid-template-columns: repeat(4, 1fr); } .service-card:nth-child(4n) { border-right: 0; } }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } .service-card:nth-child(4n) { border-right: 1px solid var(--border); } .service-card:nth-child(3n) { border-right: 0; } }
@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2, 1fr); } .service-card:nth-child(3n) { border-right: 1px solid var(--border); } .service-card:nth-child(2n) { border-right: 0; } }
@media (max-width: 600px) {
	.services-grid { grid-template-columns: 1fr; gap: var(--s-4); }
	.service-card { padding: var(--s-5) var(--s-4); border-right: 0; }
}

/* Trust stats strip — social proof and credibility reinforcement */
.stats-strip { display: none; }
.stats-strip__inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: var(--s-7); }
.stats-strip__item { display: flex; align-items: center; gap: var(--s-4); }
.stats-strip__icon {
	width: 52px; height: 52px; border-radius: 999px;
	background: color-mix(in srgb, var(--navy) 6%, var(--surface-alt));
	display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stats-strip__icon svg { width: 24px; height: 24px; color: var(--navy); }
.stats-strip__text { display: flex; flex-direction: column; gap: 2px; }
.stats-strip__num { font-size: clamp(20px, 2vw, 28px); font-weight: 800; line-height: 1; color: var(--ink); }
.stats-strip__label { font-size: 13px; color: var(--muted); white-space: nowrap; font-weight: 500; }
@media (max-width: 768px) {
	.stats-strip__inner { justify-content: flex-start; gap: var(--s-6) var(--s-8); }
	.stats-strip__item { min-width: 150px; }
}

/* How it works (4 steps) */
.how-it-works { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); counter-reset: step; position: relative; }
.how-step {
	display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--s-3); position: relative;
	transition: transform var(--dur-mid) var(--ease-soft);
}
.how-step:hover { transform: translateY(-2px); }
.how-step__icon {
	width: 64px; height: 64px; border-radius: 999px;
	background: color-mix(in srgb, var(--navy) 6%, var(--surface));
	display: flex; align-items: center; justify-content: center; font-size: 28px;
	position: relative; z-index: 1;
	transition: transform var(--dur-mid) var(--ease-soft), background var(--dur-mid), box-shadow var(--dur-mid);
}
.how-step__icon-svg { display: inline-flex; align-items: center; justify-content: center; color: var(--navy); transition: transform var(--dur-mid) var(--ease-soft), color var(--dur-mid); }
.how-step__icon-svg svg { width: 26px; height: 26px; }
.how-step__num {
	position: absolute; top: -6px; left: -6px; width: 26px; height: 26px;
	border-radius: 999px; background: var(--navy); color: var(--paper);
	font: 700 13px/26px var(--font-display); text-align: center; z-index: 2;
	transition: transform var(--dur-mid) var(--ease-soft), background var(--dur-mid);
}
.how-step:hover .how-step__icon {
	transform: translateY(-2px) scale(1.04);
	background: color-mix(in srgb, var(--navy) 12%, var(--surface));
	box-shadow: 0 14px 28px -22px rgba(27,58,91,.42);
}
.how-step:hover .how-step__icon-svg {
	transform: translateY(-1px) scale(1.04) rotate(-2deg);
	color: var(--navy-700);
}
.how-step:hover .how-step__num {
	transform: translateY(-1px) scale(1.06);
	background: var(--navy-700);
}
.how-step__title { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 700; margin: 0; }
.how-step__desc { color: var(--muted); font-size: 14px; max-width: 28ch; margin: 0; }
/* Dashed connector between steps */
.how-step + .how-step::before {
	content: ""; position: absolute; top: 32px; right: calc(50% + 40px); width: calc(100% - 80px);
	height: 0; border-top: 2px dashed var(--border-strong); z-index: 0;
}
@media (max-width: 880px) {
	.how-it-works { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
	.how-step + .how-step::before { display: none; }
}
@media (max-width: 480px) {
	.how-it-works { grid-template-columns: 1fr; }
	.how-step { flex-direction: row; text-align: left; gap: var(--s-4); }
	.how-step__icon { flex-shrink: 0; }
	.how-step__text { display: flex; flex-direction: column; gap: 4px; }
}

/* Lawyer showcase cards */
.grid--showcase { grid-template-columns: repeat(4, 1fr); }
.showcase-card {
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
	overflow: hidden; display: flex; flex-direction: column;
	transition: transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast);
}
.showcase-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.showcase-card__photo {
	position: relative; aspect-ratio: 1; background: linear-gradient(135deg, var(--surface-alt) 0%, #e8e4da 100%);
	overflow: hidden;
}
.showcase-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.showcase-card:hover .showcase-card__photo img { transform: scale(1.04); }
.showcase-card__badge {
	position: absolute; top: var(--s-2); left: var(--s-2);
	background: var(--navy); color: #fff; font: 600 11px/1 var(--font-sans);
	padding: 5px 10px; border-radius: var(--r-sm); letter-spacing: .02em;
}
.showcase-card__verified {
	position: absolute; bottom: var(--s-2); right: var(--s-2);
	width: 28px; height: 28px; border-radius: 999px; background: var(--surface);
	display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.showcase-card__verified svg { width: 16px; height: 16px; color: var(--success); }
.showcase-card__body { padding: var(--s-4); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.showcase-card__name { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin: 0; line-height: 1.25; }
.showcase-card__practice { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.showcase-card__meta { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; font-size: 12px; color: var(--muted); margin-top: 2px; }
.showcase-card__meta svg { width: 12px; height: 12px; flex-shrink: 0; }
.showcase-card__meta-item { display: inline-flex; align-items: center; gap: 4px; }
.showcase-card__rating { color: var(--navy); }
.showcase-card__cta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 var(--s-4) var(--s-4); margin-top: auto; }
.showcase-card__cta .btn { font-size: 13px; padding: 10px 12px; justify-content: center; }
@media (max-width: 1024px) { .grid--showcase { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .grid--showcase { grid-template-columns: 1fr; max-width: 360px; } }

/* ═══════════════════════════════════════════════════════════════
   News & Insights — Newspaper-style editorial grid
   Inspired by NYT / Guardian / WSJ front-page layouts
   ═══════════════════════════════════════════════════════════════ */

/* Section header — understated masthead feel */
.section__header--newspaper {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding-bottom: var(--s-3);
	border-bottom: 2px solid var(--ink);
	margin-bottom: var(--s-5);
}
.section__title--newspaper {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 2.2vw, 2.2rem);
	font-weight: 900;
	letter-spacing: -.02em;
	margin: 0;
}

/* Shared atoms */
.np-cat {
	display: inline-block;
	font: 700 10px/1 var(--font-sans);
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--navy);
	text-decoration: none;
	margin-bottom: 6px;
}
.np-cat:hover { color: var(--ink); }
.np-time {
	display: block;
	font-size: 12px;
	color: var(--muted);
	margin-top: 6px;
	font-style: italic;
}

/* ─── Zone A: Lead + stacked briefs ─── */
.np-zone--top {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 0;
	padding-bottom: var(--s-5);
	border-bottom: 1px solid var(--border);
	margin-bottom: var(--s-5);
}

.np-lead {
	display: flex;
	flex-direction: column;
	gap: var(--s-3);
	padding-right: var(--s-5);
	border-right: 1px solid var(--border);
}
.np-lead__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	max-height: 340px;
	background: var(--surface-alt);
}
.np-lead__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity .3s;
}
.np-lead:hover .np-lead__media img { opacity: .92; }
.np-lead__body { display: flex; flex-direction: column; }
.np-lead__title {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 2.8vw, 2.8rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.03em;
	margin: 0;
	text-wrap: balance;
}
.np-lead__title a { color: var(--ink); text-decoration: none; }
.np-lead__title a:hover { color: var(--navy); }

/* Stacked briefs column */
.np-stack {
	display: flex;
	flex-direction: column;
	padding-left: var(--s-5);
}
.np-stack__item {
	padding: var(--s-3) 0;
	border-bottom: 1px solid var(--border);
}
.np-stack__item:first-child { padding-top: 0; }
.np-stack__item:last-child { border-bottom: 0; }
.np-stack__title {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}
.np-stack__title a { color: var(--ink); text-decoration: none; }
.np-stack__title a:hover { color: var(--navy); }

/* ─── Zone B: 4-column image row ─── */
.np-zone--mid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding-bottom: var(--s-5);
	border-bottom: 1px solid var(--border);
	margin-bottom: var(--s-5);
}

.np-col {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0 var(--s-4);
	border-left: 1px solid var(--border);
}
.np-col:first-child { padding-left: 0; border-left: 0; }
.np-col__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: var(--surface-alt);
	margin-bottom: 4px;
}
.np-col__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity .3s;
}
.np-col:hover .np-col__media img { opacity: .92; }
.np-col__title {
	font-family: var(--font-display);
	font-size: .95rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}
.np-col__title a { color: var(--ink); text-decoration: none; }
.np-col__title a:hover { color: var(--navy); }

/* ─── Zone C: Dense text-only row ─── */
.np-zone--bottom {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.np-text {
	padding: 0 var(--s-4);
	border-left: 1px solid var(--border);
}
.np-text:first-child { padding-left: 0; border-left: 0; }
.np-text__title {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}
.np-text__title a { color: var(--ink); text-decoration: none; }
.np-text__title a:hover { color: var(--navy); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
	.np-zone--top { grid-template-columns: 1fr; }
	.np-lead {
		padding-right: 0;
		border-right: 0;
		padding-bottom: var(--s-4);
		border-bottom: 1px solid var(--border);
		margin-bottom: var(--s-4);
	}
	.np-stack { padding-left: 0; }
	.np-zone--mid { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-4); }
	.np-col:nth-child(3) { border-left: 0; padding-left: 0; padding-top: var(--s-4); border-top: 1px solid var(--border); }
	.np-col:nth-child(4) { padding-top: var(--s-4); border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
	.section__header--newspaper .link-arrow { display: none; }
	.np-zone--mid { grid-template-columns: 1fr 1fr; }
	.np-zone--bottom { grid-template-columns: 1fr; gap: 0; }
	.np-text { padding: var(--s-3) 0; border-left: 0; border-bottom: 1px solid var(--border); }
	.np-text:last-child { border-bottom: 0; }
	.np-lead__title { font-size: 1.6rem; }
}

@media (max-width: 480px) {
	.np-zone--mid { grid-template-columns: 1fr; row-gap: var(--s-4); }
	.np-col { padding: var(--s-3) 0; border-left: 0; border-bottom: 1px solid var(--border); }
	.np-col:last-child { border-bottom: 0; }
	.np-lead__title { font-size: 1.4rem; }
	.np-stack__title { font-size: .95rem; }
}

/* App download section */
.app-section {
	background: linear-gradient(135deg, var(--ink) 0%, var(--navy-700) 100%);
	border-radius: var(--r-xl); padding: var(--s-7); color: #fff; overflow: hidden;
	position: relative; margin: var(--s-7) 0;
}
.app-section::before {
	content: ""; position: absolute; top: -40%; right: -10%; width: 500px; height: 500px;
	background: radial-gradient(circle, color-mix(in srgb, var(--navy) 18%, transparent) 0%, transparent 60%);
	pointer-events: none;
}
.app-section__inner { display: grid; grid-template-columns: 280px 1fr auto; gap: var(--s-7); align-items: center; position: relative; }
.app-section__phone {
	width: 240px; height: 420px; border-radius: 28px; background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column;
	align-items: center; justify-content: center; gap: var(--s-3); color: rgba(255,255,255,.4);
	font-size: 14px; text-align: center; padding: var(--s-5);
}
.app-section__phone-screen { font-size: 40px; }
.app-section__content { display: flex; flex-direction: column; gap: var(--s-4); }
.app-section__eyebrow { font: 600 12px/1 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: #8CB4FF; }
.app-section__title { font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 700; margin: 0; color: #fff; }
.app-section__title em { font-style: normal; color: #8CB4FF; }
.app-section__desc { color: rgba(255,255,255,.7); font-size: var(--fs-base); max-width: 48ch; margin: 0; }
.app-section__badges { display: flex; gap: var(--s-3); margin-top: var(--s-2); }
.app-badge {
	display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
	border-radius: var(--r-md); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
	color: #fff; font-size: 12px; transition: background var(--dur-fast);
}
.app-badge:hover { background: rgba(255,255,255,.18); color: #fff; }
.app-badge__icon { font-size: 20px; }
.app-badge__text { display: flex; flex-direction: column; line-height: 1.2; }
.app-badge__text small { font-size: 10px; color: rgba(255,255,255,.6); }
.app-badge__text strong { font-size: 14px; font-weight: 600; }
.app-section__features { list-style: none; padding: 0; margin: var(--s-3) 0 0; display: grid; gap: var(--s-3); }
.app-section__features li {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 14px; color: rgba(255,255,255,.85);
}
.app-section__features li svg { width: 16px; height: 16px; color: #8CB4FF; flex-shrink: 0; }
.app-section__qr {
	display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
	padding: var(--s-5); background: rgba(255,255,255,.06); border-radius: var(--r-lg);
	border: 1px solid rgba(255,255,255,.1);
}
.app-section__qr-box {
	width: 120px; height: 120px; background: #fff; border-radius: var(--r-md);
	display: flex; align-items: center; justify-content: center; color: var(--ink); font-size: 12px;
}
.app-section__qr-text { font-size: 12px; color: rgba(255,255,255,.5); text-align: center; }
@media (max-width: 1024px) {
	.app-section__inner { grid-template-columns: 1fr auto; }
	.app-section__phone { display: none; }
}
@media (max-width: 640px) {
	.app-section__inner { grid-template-columns: 1fr; }
	.app-section__qr { display: none; }
	.app-section { padding: var(--s-6) var(--s-5); }
}

/* Practice area cards (kept for backward compat) */
.practice-card {
	display: flex; flex-direction: column; gap: var(--s-2); padding: var(--s-5);
	border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface);
	transition: transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.practice-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.practice-card__icon { font-size: 28px; line-height: 1; }
.practice-card__name { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 700; margin: 0; }
.practice-card__stats { display: flex; gap: var(--s-4); font-size: 12px; color: var(--muted); }
.grid--practice { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .grid--practice { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .grid--practice { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .grid--practice { grid-template-columns: 1fr; } }

/* Trust bar (legacy - kept for fallback) */
.trust-bar { padding: var(--s-4) 0; border-bottom: 1px solid var(--border); }
.trust-bar__inner { display: flex; justify-content: center; gap: var(--s-6); flex-wrap: wrap; font: 600 12px/1 var(--font-sans); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.trust-bar__stat { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.trust-bar__num { color: var(--ink); font-family: var(--font-display); font-size: 14px; letter-spacing: 0; }

/* News split (Analysis + Court Watch) */
.news-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s-7); margin-top: var(--s-6); }
.news-split__col { display: flex; flex-direction: column; gap: var(--s-4); }
.news-split__col--aside { padding-left: var(--s-5); border-left: 1px solid var(--border); }
.court-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.court-item { padding: var(--s-3) 0; border-bottom: 1px solid var(--border); }
.court-item:last-child { border-bottom: 0; }
.court-item__title { font-family: var(--font-display); font-size: 15px; font-weight: 600; line-height: 1.35; margin: 0 0 4px; }
.court-item__meta { display: flex; gap: var(--s-3); align-items: center; font-size: 12px; color: var(--muted); }
@media (max-width: 880px) { .news-split { grid-template-columns: 1fr; } .news-split__col--aside { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); padding-top: var(--s-5); } }

/* Issue cards (Know Your Rights) */
.issue-card {
	display: flex; align-items: center; gap: var(--s-4); padding: var(--s-5);
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
	transition: transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.issue-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.issue-card__icon { font-size: 24px; flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--surface-alt); border-radius: var(--r-md); }
.issue-card__text { display: flex; flex-direction: column; gap: 2px; }
.issue-card__title { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin: 0; color: var(--ink); }
.issue-card__sub { font-size: 13px; color: var(--muted); margin: 0; }
.grid--issues { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .grid--issues { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .grid--issues { grid-template-columns: 1fr; } }

/* Closing CTA */
.closing-cta { text-align: center; max-width: 720px; margin: 0 auto; padding: var(--s-8) 24px; }
.closing-cta__text { font-size: var(--fs-md); color: var(--muted); max-width: 60ch; margin: 0 auto var(--s-5); line-height: 1.7; }
.closing-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Section variants */
.section--alt { background: var(--surface-alt); }
.section--marketplace { background: linear-gradient(180deg, var(--surface-alt) 0%, var(--paper) 100%); }
.section--judgments { background: var(--surface); }
.section--advocates .section__header { margin-bottom: var(--s-5); }

/* Card cross-sell link */
.card__crosslink { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--navy); font-weight: 500; margin-top: 6px; }
.card__crosslink span { transition: transform var(--dur-fast) var(--ease-soft); }
.card__crosslink:hover span { transform: translateX(3px); }

/* ---------- 24. Services for Advocates Page ---------- */

/* --- Hero (light, warm, premium) --- */
.sfa-hero {
	background: var(--paper);
	padding: clamp(60px, 10vw, 110px) 0 clamp(48px, 8vw, 80px);
	position: relative;
	overflow: hidden;
}
.sfa-hero::before {
	content: '';
	position: absolute;
	top: -40%;
	right: -10%;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(26,63,114,.08) 0%, transparent 70%);
	pointer-events: none;
}
.sfa-hero__inner {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: var(--s-7);
	align-items: center;
	position: relative;
	z-index: 1;
}
.sfa-hero__eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: var(--navy-700);
	background: rgba(26,63,114,.09);
	border-radius: 100px;
	padding: 7px 20px;
	margin-bottom: var(--s-3);
}
.sfa-hero__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 var(--s-3);
	letter-spacing: -.02em;
	color: var(--ink);
}
.sfa-hero__title em {
	font-style: normal;
	color: var(--navy);
}
.sfa-hero__subtitle {
	font-size: var(--fs-md);
	line-height: 1.75;
	color: var(--muted);
	max-width: 52ch;
	margin: 0 0 var(--s-5);
}
.sfa-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Decorative document illustration */
.sfa-hero__graphic { position: relative; display: flex; align-items: center; justify-content: center; min-height: 320px; }
.sfa-hero__visual { position: relative; width: 240px; height: 300px; }
.sfa-hero__doc {
	position: absolute;
	border-radius: var(--r-lg);
	background: var(--surface);
	border: 1px solid var(--border);
}
.sfa-hero__doc--back {
	width: 200px; height: 260px;
	top: 10px; left: 40px;
	transform: rotate(6deg);
	box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.sfa-hero__doc--mid {
	width: 200px; height: 260px;
	top: 5px; left: 25px;
	transform: rotate(3deg);
	box-shadow: 0 6px 24px rgba(0,0,0,.05);
}
.sfa-hero__doc--front {
	width: 200px; height: 260px;
	top: 0; left: 10px;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.sfa-hero__doc-line {
	display: block;
	height: 8px;
	border-radius: 4px;
	background: var(--border);
	width: 100%;
}
.sfa-hero__doc-line--title {
	height: 10px;
	width: 70%;
	background: var(--navy);
	opacity: .15;
	margin-bottom: 8px;
}
.sfa-hero__doc-line--short { width: 55%; }
.sfa-hero__doc-seal {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--navy);
	margin-top: auto;
	align-self: flex-end;
	position: relative;
}
.sfa-hero__doc-seal::after {
	content: '';
	position: absolute;
	inset: 6px;
	border-radius: 50%;
	background: rgba(26,63,114,.15);
}

/* Floating pills */
.sfa-hero__pills {
	position: absolute;
	bottom: 20px;
	left: -20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.sfa-hero__pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 600;
	color: var(--ink);
	box-shadow: 0 4px 16px rgba(0,0,0,.05);
	white-space: nowrap;
}
.sfa-hero__pill svg { width: 14px; height: 14px; color: var(--success); }
.sfa-hero__pill--blue svg { color: var(--navy); }

/* --- Trust Bar --- */
.sfa-trustbar {
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: var(--s-4) 0;
}
.sfa-trustbar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--s-5);
	flex-wrap: wrap;
}
.sfa-trustbar__item {
	display: flex;
	align-items: baseline;
	gap: 8px;
	font-size: 14px;
	color: var(--muted);
}
.sfa-trustbar__item strong {
	font-size: 28px;
	font-weight: 800;
	color: var(--navy);
	letter-spacing: -.02em;
}
.sfa-trustbar__sep {
	width: 1px;
	height: 28px;
	background: var(--border);
}

/* --- Value Props (Why Raw Law) --- */
.sfa-why__lead {
	font-size: var(--fs-md);
	color: var(--muted);
	max-width: 68ch;
	margin: 0 auto;
	line-height: 1.7;
	text-align: center;
}
.sfa-demands {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1px;
	margin-top: var(--s-6);
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
}
.sfa-demand {
	background: var(--surface);
	padding: var(--s-5) var(--s-4);
	position: relative;
}
.sfa-demand__num {
	font-size: 36px;
	font-weight: 800;
	color: var(--border);
	line-height: 1;
	margin-bottom: 12px;
	display: block;
	letter-spacing: -.04em;
}
.sfa-demand__title { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.sfa-demand__desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; }

/* --- Services Grid --- */
.sfa-services__lead {
	font-size: var(--fs-md);
	color: var(--muted);
	text-align: center;
	max-width: 50ch;
	margin: 0 auto;
}
.sfa-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: var(--s-6);
}
.sfa-service {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	transition: border-color var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast) var(--ease-soft);
}
.sfa-service:hover {
	border-color: var(--navy);
	box-shadow: 0 2px 12px rgba(26,63,114,.12);
}
.sfa-service__check {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(47,122,77,.08);
	border: 1.5px solid var(--success);
	flex-shrink: 0;
	position: relative;
}
.sfa-service__check::after {
	content: '';
	position: absolute;
	top: 4px; left: 5px;
	width: 7px; height: 4px;
	border-left: 2px solid var(--success);
	border-bottom: 2px solid var(--success);
	transform: rotate(-45deg);
}
.sfa-service__name { font-size: 14px; font-weight: 600; color: var(--ink); }

/* --- Steps (How It Works) --- */
.sfa-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: var(--s-6);
	list-style: none;
	padding: 0;
	counter-reset: step;
	position: relative;
}
.sfa-steps::before {
	content: '';
	position: absolute;
	top: 28px;
	left: 12%;
	right: 12%;
	height: 2px;
	background: var(--border);
	z-index: 0;
}
.sfa-step {
	text-align: center;
	position: relative;
	z-index: 1;
}
.sfa-step__num {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--surface);
	border: 2px solid var(--navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--s-3);
	font-size: 20px;
	font-weight: 800;
	color: var(--navy);
}
.sfa-step__title { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.sfa-step__desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; max-width: 26ch; margin-inline: auto; }

/* --- Audience (Who + Confidentiality side-by-side) --- */
.sfa-audience__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--s-6);
}
.sfa-audience__block {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: var(--s-6);
}
.sfa-audience__block--trust {
	border-left: 3px solid var(--navy);
}
.sfa-audience__list {
	list-style: none;
	margin: var(--s-4) 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.sfa-audience__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
}
.sfa-audience__list li svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
.sfa-audience__block:not(.sfa-audience__block--trust) .sfa-audience__list li svg { color: var(--success); }
.sfa-audience__block--trust .sfa-audience__list li svg { color: var(--navy); }

/* --- Benefits Grid --- */
.sfa-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: var(--s-6);
}
.sfa-benefit {
	padding: var(--s-5) var(--s-4);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	border-top: 3px solid var(--navy);
	transition: box-shadow var(--dur-normal) var(--ease-soft);
}
.sfa-benefit:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,.05);
}
.sfa-benefit__title { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.sfa-benefit__desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* --- Pricing Cards --- */
.sfa-pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: var(--s-6);
}
.sfa-plan {
	text-align: center;
	padding: var(--s-6) var(--s-4) var(--s-5);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	position: relative;
	display: flex;
	flex-direction: column;
	transition: box-shadow var(--dur-normal) var(--ease-soft);
}
.sfa-plan:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,.06);
}
.sfa-plan--featured {
	border-color: var(--navy);
	box-shadow: 0 0 0 1px var(--navy), 0 4px 20px rgba(26,63,114,.12);
}
.sfa-plan__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--navy);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 4px 18px;
	border-radius: 100px;
}
.sfa-plan__title { font-size: 20px; font-weight: 800; color: var(--ink); margin: 0 0 8px; }
.sfa-plan__desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0 0 auto; }
.sfa-plan__link {
	display: inline-block;
	margin-top: var(--s-4);
	font-size: 14px;
	font-weight: 600;
	color: var(--navy);
	transition: color var(--dur-fast) var(--ease-soft);
}
.sfa-plan__link:hover { color: var(--navy); }

/* --- Closing CTA (light, bordered, warm) --- */
.sfa-cta {
	background: var(--surface-alt);
	padding: clamp(56px, 8vw, 90px) 0;
}
.sfa-cta__inner {
	text-align: center;
	max-width: 620px;
	margin: 0 auto;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: var(--s-7) var(--s-5);
	box-shadow: 0 8px 32px rgba(0,0,0,.04);
}
.sfa-cta__title { font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 800; color: var(--ink); margin: var(--s-2) 0 12px; }
.sfa-cta__subtitle { font-size: var(--fs-md); color: var(--muted); margin: 0 0 var(--s-5); }

/* --- SFA Responsives --- */
@media (max-width: 1024px) {
	.sfa-demands { grid-template-columns: repeat(3, 1fr); }
	.sfa-services__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 880px) {
	.sfa-hero__inner { grid-template-columns: 1fr; }
	.sfa-hero__graphic { min-height: 260px; margin-top: var(--s-3); }
	.sfa-trustbar__inner { gap: var(--s-3); }
	.sfa-trustbar__sep { display: none; }
	.sfa-trustbar__item strong { font-size: 22px; }
	.sfa-demands { grid-template-columns: repeat(2, 1fr); }
	.sfa-services__grid { grid-template-columns: repeat(2, 1fr); }
	.sfa-steps { grid-template-columns: repeat(2, 1fr); }
	.sfa-steps::before { display: none; }
	.sfa-audience__grid { grid-template-columns: 1fr; }
	.sfa-benefits__grid { grid-template-columns: repeat(2, 1fr); }
	.sfa-pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
	.sfa-hero__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
	.sfa-hero__graphic { min-height: 220px; }
	.sfa-hero__visual { width: 180px; height: 230px; }
	.sfa-hero__doc { width: 155px; height: 200px; }
	.sfa-hero__doc--front { padding: 24px 18px; }
	.sfa-demands { grid-template-columns: 1fr 1fr; }
	.sfa-services__grid { grid-template-columns: 1fr; }
	.sfa-steps { grid-template-columns: 1fr; gap: 16px; }
	.sfa-benefits__grid { grid-template-columns: 1fr; }
}

/* ---------- 25. Print is in /print.css ---------- */
