:root {
	--bg: #f8faf8;
	--ink: #111814;
	--muted: #5b675f;
	--line: #dfe8e1;
	--panel: #ffffff;
	--panel-soft: #eef5f0;
	--green: #176b43;
	--green-dark: #0d3f2a;
	--brand-blue: #007b9f;
	--brand-green: #1aa66a;
	--blue-dark: #005f7c;
	--panel-blue: #edf7fb;
	--lime: #b9ff66;
	--blue: #2f6fed;
	--coral: #ff7a59;
	--shadow: 0 22px 60px rgba(17, 24, 20, 0.12);
	--radius: 8px;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--brand-blue);
}

p {
	margin: 0 0 1rem;
}

h1,
h2,
h3 {
	margin: 0;
	line-height: 1.05;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(3rem, 8vw, 6.25rem);
	max-width: 10ch;
}

.hero-word-blue {
	color: #8de6ff;
}

.hero-word-green {
	color: var(--brand-green);
}

h2 {
	font-size: clamp(2rem, 5vw, 3.85rem);
	max-width: 11ch;
}

h3 {
	font-size: 1.22rem;
}

.container {
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 24px;
	width: 100%;
}

.skip-link,
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.skip-link:focus {
	clip: auto;
	background: var(--ink);
	color: #fff;
	height: auto;
	left: 16px;
	padding: 10px 14px;
	top: 16px;
	width: auto;
	z-index: 20;
}

.site-header {
	background: rgba(248, 250, 248, 0.88);
	border-bottom: 1px solid rgba(223, 232, 225, 0.75);
	position: sticky;
	top: 0;
	z-index: 10;
	backdrop-filter: blur(16px);
}

.header-inner {
	align-items: center;
	display: grid;
	gap: 20px;
	grid-template-columns: auto 1fr auto;
	min-height: 78px;
}

.brand {
	align-items: center;
	display: inline-flex;
	font-weight: 800;
	gap: 10px;
}

.brand-mark {
	align-items: center;
	background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
	border-radius: 7px;
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.brand-name {
	font-size: 1.08rem;
}

.brand-inline {
	font-weight: 800;
	white-space: nowrap;
}

.brand-min {
	color: var(--brand-blue);
}

.brand-max {
	color: var(--brand-green);
}

.brand-rank {
	color: var(--ink);
}

.footer-brand .brand-rank,
.site-footer .brand-rank,
.hero .brand-rank,
.page-hero .brand-rank {
	color: #fff;
}

.custom-logo {
	max-height: 56px;
	width: auto;
}

.primary-nav {
	justify-self: end;
}

.menu {
	align-items: center;
	display: flex;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu a {
	color: var(--muted);
	font-weight: 650;
}

.menu a.is-current,
.menu a.is-ancestor,
.current-menu-item > a,
.current_page_item > a {
	color: var(--blue-dark);
	position: relative;
}

.menu a.is-current::before,
.menu a.is-ancestor::before,
.current-menu-item > a::before,
.current_page_item > a::before {
	background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
	border-radius: 999px;
	bottom: -10px;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
}

.has-dropdown,
.menu-item-has-children {
	position: relative;
}

.has-dropdown::after,
.menu-item-has-children::after {
	content: "";
	height: 16px;
	left: 0;
	position: absolute;
	right: 0;
	top: 100%;
}

.has-dropdown > a::after,
.menu-item-has-children > a::after {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	display: inline-block;
	height: 6px;
	margin-left: 8px;
	transform: rotate(45deg) translateY(-2px);
	width: 6px;
}

.dropdown-menu,
.sub-menu {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: grid;
	gap: 2px;
	left: 0;
	list-style: none;
	margin: 0;
	min-width: 290px;
	opacity: 0;
	padding: 10px;
	pointer-events: none;
	position: absolute;
	top: calc(100% + 8px);
	transform: translateY(-6px);
	transition: opacity 160ms ease, transform 160ms ease;
	z-index: 30;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.dropdown-menu a,
.sub-menu a {
	border-radius: 7px;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	padding: 9px 10px;
	white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.sub-menu a:hover,
.sub-menu a:focus-visible {
	background: linear-gradient(90deg, var(--panel-blue), var(--panel-soft));
}

.nav-new {
	align-items: center;
	display: inline-flex;
	gap: 7px;
}

.nav-badge {
	background: rgba(0, 123, 159, 0.1);
	border: 1px solid rgba(0, 123, 159, 0.24);
	border-radius: 999px;
	color: var(--blue-dark);
	display: inline-flex;
	font-size: 0.66rem;
	font-weight: 800;
	line-height: 1;
	padding: 4px 7px;
	text-transform: uppercase;
}

.tool-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(6, 1fr);
}

.tool-card {
	align-content: center;
	background: var(--panel);
	border: 1px solid var(--line);
	border-top: 4px solid var(--brand-blue);
	border-radius: var(--radius);
	display: grid;
	min-height: 112px;
	padding: 18px;
}

.tool-card:nth-child(even) {
	border-top-color: var(--brand-green);
}

.tool-card strong {
	font-size: 1.05rem;
	line-height: 1.15;
}

.tool-card span {
	color: var(--muted);
	font-size: 0.85rem;
	font-weight: 700;
	margin-top: 8px;
}

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

.proof-logo-grid {
	align-items: center;
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(7, 1fr);
	margin-bottom: 42px;
}

.proof-logo {
	align-items: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	display: flex;
	font-size: clamp(1.2rem, 2vw, 1.8rem);
	font-weight: 800;
	justify-content: center;
	min-height: 96px;
	padding: 16px;
	text-align: center;
}

.proof-logo:nth-child(odd) {
	background: var(--panel-blue);
	border-color: rgba(0, 123, 159, 0.18);
}

.proof-logo:nth-child(even) {
	background: var(--panel-soft);
	border-color: rgba(26, 166, 106, 0.18);
}

.proof-logo img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-height: 54px;
	max-width: 150px;
	object-fit: contain;
	width: auto;
}

.proof-logo-text span {
	color: var(--ink);
	font-size: clamp(1.25rem, 2vw, 1.7rem);
	font-weight: 800;
	line-height: 1;
}

.testimonial-card {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
}

.testimonial-card p {
	color: var(--muted);
}

.testimonial-card strong {
	display: block;
	margin-top: 14px;
}

.button {
	align-items: center;
	background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
	border: 1px solid transparent;
	border-radius: var(--radius);
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 48px;
	padding: 13px 20px;
	text-align: center;
}

.button:hover,
.button:focus-visible {
	background: linear-gradient(135deg, var(--blue-dark), var(--green-dark));
	border-color: transparent;
	color: #fff;
}

.button-secondary {
	background: transparent;
	border-color: rgba(0, 123, 159, 0.28);
	color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
	background: rgba(0, 123, 159, 0.08);
	border-color: rgba(0, 123, 159, 0.36);
	color: var(--blue-dark);
}

.button-light {
	background: #fff;
	border-color: #fff;
	color: var(--blue-dark);
}

.button-small {
	min-height: 42px;
	padding: 9px 14px;
}

.nav-toggle {
	align-items: center;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	display: none;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
	background: var(--ink);
	content: "";
	display: block;
	height: 2px;
	width: 18px;
}

.nav-toggle-bars::before {
	transform: translateY(-6px);
}

.nav-toggle-bars::after {
	transform: translateY(4px);
}

.hero {
	background:
		linear-gradient(90deg, rgba(4, 23, 32, 0.9), rgba(8, 43, 31, 0.66) 48%, rgba(8, 17, 13, 0.2)),
		linear-gradient(180deg, rgba(0, 123, 159, 0.2), rgba(13, 63, 42, 0.72)),
		url("../images/search-banner.png") center / cover no-repeat;
	color: #fff;
	overflow: hidden;
	padding: 92px 0 64px;
}

.hero-grid {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
}

.eyebrow {
	color: var(--green);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	margin-bottom: 14px;
	text-transform: uppercase;
}

main > .section:nth-of-type(even) .eyebrow {
	color: var(--brand-blue);
}

.hero .eyebrow,
.page-hero .eyebrow {
	color: #8de6ff;
}

.hero-lede {
	color: #dcece1;
	font-size: 1.18rem;
	margin: 26px 0 0;
	max-width: 680px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
}

.hero-points li {
	align-items: center;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	color: #fff;
	display: inline-flex;
	font-weight: 700;
	min-height: 40px;
	padding: 8px 12px;
}

.hero-visual {
	min-width: 0;
}

.dashboard {
	background: #101712;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	box-shadow: var(--shadow);
	color: #fff;
	padding: 18px;
	position: relative;
}

.dashboard::after {
	background: linear-gradient(135deg, rgba(0, 123, 159, 0.8), rgba(26, 166, 106, 0.72));
	border-radius: 999px;
	content: "";
	height: 96px;
	position: absolute;
	right: -30px;
	top: -28px;
	width: 96px;
	z-index: -1;
}

.dashboard-top {
	align-items: center;
	display: flex;
	gap: 7px;
	margin-bottom: 16px;
}

.dashboard-top span {
	background: #4d5b53;
	border-radius: 999px;
	height: 10px;
	width: 10px;
}

.dashboard-top strong {
	color: #d9f3df;
	font-size: 0.84rem;
	margin-left: auto;
}

.rank-card,
.keyword-list {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 18px;
}

.rank-card p {
	color: #b8c8be;
	font-size: 0.85rem;
	margin: 0 0 10px;
}

.rank-card strong {
	font-size: 2.35rem;
	line-height: 1;
}

.rank-card-large {
	display: grid;
	gap: 18px;
	grid-template-columns: 0.75fr 1fr;
}

.chart-bars {
	align-items: end;
	display: flex;
	gap: 10px;
	min-height: 140px;
}

.chart-bars i {
	background: linear-gradient(180deg, #8de6ff, var(--brand-green));
	border-radius: 6px 6px 0 0;
	display: block;
	flex: 1;
	min-height: 32px;
}

.dashboard-row {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
	margin: 12px 0;
}

.rank-card.accent {
	background: rgba(47, 111, 237, 0.28);
}

.keyword-list {
	display: grid;
	gap: 10px;
}

.keyword-list div {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.keyword-list span {
	color: #dcece1;
}

.keyword-list b {
	color: #8de6ff;
}

.section {
	padding: 88px 0;
}

.trusted-strip {
	background: var(--ink);
	color: #fff;
	padding: 28px 0;
}

.strip-grid {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: 0.9fr 1.1fr;
}

.strip-grid p {
	color: #dcece1;
	font-weight: 700;
	margin: 0;
}

.strip-metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.strip-metrics span {
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	color: #eef7f1;
	font-weight: 700;
	padding: 8px 10px;
}

.section-heading {
	margin-bottom: 34px;
}

.centered-heading {
	text-align: center;
}

.centered-heading h2,
.centered-heading p {
	margin-left: auto;
	margin-right: auto;
}

.section-heading p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.08rem;
	max-width: 670px;
}

.service-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, 1fr);
	justify-content: center;
}

.service-card,
.post-card {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
}

.linked-card {
	display: block;
	transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.linked-card:hover,
.linked-card:focus-visible {
	border-color: rgba(0, 123, 159, 0.42);
	box-shadow: 0 14px 34px rgba(17, 24, 20, 0.08);
	color: var(--ink);
	transform: translateY(-2px);
}

.service-icon {
	background:
		linear-gradient(135deg, rgba(141, 230, 255, 0.92) 0 48%, transparent 49%),
		var(--brand-blue);
	border-radius: 7px;
	display: block;
	height: 42px;
	margin-bottom: 22px;
	width: 42px;
}

.service-card:nth-child(even) .service-icon,
.value-grid .service-card:nth-child(even) .service-icon {
	background:
		linear-gradient(135deg, rgba(185, 255, 102, 0.85) 0 48%, transparent 49%),
		var(--brand-green);
}

.service-card:nth-child(even),
.value-grid .service-card:nth-child(even) {
	background: var(--panel-soft);
}

.service-card:nth-child(odd),
.value-grid .service-card:nth-child(odd) {
	background: var(--panel-blue);
}

.service-card p {
	color: var(--muted);
	margin: 12px 0 0;
}

.service-card h2 {
	font-size: clamp(1.45rem, 3vw, 2.2rem);
	max-width: none;
}

.compact-grid {
	grid-template-columns: repeat(3, 1fr);
}

.process-section {
	background: linear-gradient(135deg, var(--panel-blue), var(--panel-soft));
}

.process-grid {
	display: grid;
	gap: 44px;
	grid-template-columns: 0.8fr 1fr;
}

.process-grid p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.08rem;
	margin-top: 20px;
}

.text-link {
	color: var(--brand-blue);
	display: inline-flex;
	font-weight: 800;
	margin-top: 8px;
}

.process-list {
	counter-reset: process;
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.process-list li {
	align-items: start;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	counter-increment: process;
	display: grid;
	gap: 4px 18px;
	grid-template-columns: 46px 1fr;
	padding: 18px;
}

.process-list li::before {
	align-items: center;
	background: var(--brand-blue);
	border-radius: 7px;
	color: #fff;
	content: counter(process);
	display: flex;
	font-weight: 800;
	grid-row: span 2;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.process-list li:nth-child(even)::before {
	background: var(--brand-green);
}

.process-list span {
	color: var(--muted);
}

.proof-section {
	background: #fff;
}

.proof-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: 1.4fr repeat(3, 1fr);
}

.proof-card,
.proof-stat {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
}

.proof-card {
	align-content: center;
	background: linear-gradient(135deg, #041720, #0f573d);
	color: #fff;
	display: grid;
	min-height: 260px;
}

.proof-card h2 {
	font-size: clamp(1.8rem, 4vw, 3rem);
}

.proof-stat {
	align-content: center;
	background: var(--panel-blue);
	display: grid;
	justify-items: center;
	min-height: 260px;
	text-align: center;
}

.proof-stat:nth-child(odd) {
	background: var(--panel-soft);
}

.proof-stat strong {
	color: var(--brand-blue);
}

.proof-stat:nth-child(odd) strong {
	color: var(--brand-green);
}

.proof-stat strong {
	display: block;
	font-size: clamp(2.4rem, 5vw, 4.2rem);
	line-height: 1;
}

.proof-stat span {
	color: var(--muted);
	font-weight: 700;
}

.cta-section {
	padding-top: 0;
}

.cta-panel {
	align-items: center;
	background:
		linear-gradient(120deg, rgba(0, 123, 159, 0.16), rgba(255, 255, 255, 0.82) 42%, rgba(26, 166, 106, 0.18)),
		#fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr auto;
	padding: 32px;
}

.cta-panel h2 {
	font-size: clamp(1.8rem, 4vw, 3.15rem);
	max-width: 15ch;
}

.site-footer {
	background: var(--ink);
	color: #dcece1;
	padding: 56px 0 24px;
}

.footer-grid {
	display: grid;
	gap: 36px;
	grid-template-columns: 1.15fr 0.7fr 0.9fr;
}

.footer-brand {
	color: #fff;
	margin-bottom: 18px;
}

.footer-brand .brand-mark {
	background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
	color: #fff;
}

.footer-grid p {
	max-width: 420px;
}

.footer-nav .menu {
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
}

.footer-nav .menu a,
.footer-email {
	color: #dcece1;
}

.footer-contact {
	display: grid;
	gap: 12px;
	justify-items: start;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 42px;
	padding-top: 20px;
}

.footer-bottom p {
	color: #aebdb3;
	font-size: 0.92rem;
	margin: 0;
}

.page-hero {
	background:
		linear-gradient(90deg, rgba(4, 23, 32, 0.9), rgba(8, 43, 31, 0.62) 50%, rgba(8, 17, 13, 0.18)),
		linear-gradient(180deg, rgba(0, 123, 159, 0.22), rgba(13, 63, 42, 0.72)),
		url("../images/search-banner.png") center / cover no-repeat;
	color: #fff;
	padding: 88px 0;
}

.service-hero {
	background:
		linear-gradient(90deg, rgba(4, 23, 32, 0.9), rgba(8, 43, 31, 0.62) 50%, rgba(8, 17, 13, 0.18)),
		linear-gradient(180deg, rgba(0, 123, 159, 0.22), rgba(13, 63, 42, 0.72)),
		url("../images/search-banner.png") center / cover no-repeat;
}

.page-split {
	align-items: start;
	display: grid;
	gap: 44px;
	grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
}

.page-hero.compact h1 {
	font-size: clamp(2.4rem, 6vw, 4.8rem);
	max-width: 14ch;
}

.page-hero p:not(.eyebrow) {
	color: #dcece1;
	max-width: 620px;
}

.page-hero .rich-copy p {
	color: #dcece1;
}

.page-hero .button-secondary,
.hero .button-secondary {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}

.page-hero .button {
	margin-top: 16px;
}

.service-aside {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 24px;
}

.check-list {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.check-list li {
	color: var(--muted);
	display: grid;
	gap: 10px;
	grid-template-columns: 18px 1fr;
}

.check-list li::before {
	background: var(--brand-blue);
	border-radius: 999px;
	content: "";
	height: 10px;
	margin-top: 8px;
	width: 10px;
}

.check-list li:nth-child(even)::before {
	background: var(--brand-green);
}

.rich-copy p {
	color: var(--muted);
	font-size: 1.08rem;
}

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

.contact-email {
	color: var(--blue-dark);
	display: block;
	font-size: 1.35rem;
	font-weight: 800;
	margin-bottom: 18px;
	overflow-wrap: anywhere;
}

.image-band {
	padding: 0 0 88px;
}

.image-panel {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	min-height: 360px;
	overflow: hidden;
	position: relative;
}

.image-panel img {
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	width: 100%;
}

.content-band {
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
}

.content-band.reverse {
	grid-template-columns: minmax(320px, 1fr) minmax(0, 0.85fr);
}

.content-band .image-panel {
	min-height: 420px;
}

.long-copy {
	color: var(--muted);
	display: grid;
	gap: 1rem;
}

.long-copy p {
	margin: 0;
}

.long-copy h2,
.long-copy h3 {
	color: var(--ink);
	margin-top: 0.4rem;
}

.narrow-content {
	max-width: 820px;
}

.narrow-content > * + * {
	margin-top: 1rem;
}

.narrow-content a {
	color: var(--brand-blue);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.content-grid {
	display: grid;
	gap: 18px;
}

.post-card {
	display: grid;
	gap: 22px;
	grid-template-columns: 280px 1fr;
}

.post-card h2 {
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	max-width: none;
}

.post-card p {
	color: var(--muted);
}

.post-meta {
	color: var(--brand-blue);
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
}

.post-thumb img,
.featured-image img {
	border-radius: var(--radius);
}

.featured-image {
	margin-top: 40px;
}

.pagination {
	align-items: center;
	display: flex;
	gap: 10px;
}

.pagination .page-numbers {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 7px;
	font-weight: 800;
	padding: 8px 12px;
}

.pagination .current {
	background: var(--brand-blue);
	color: #fff;
}

@media (max-width: 980px) {
	.header-inner {
		grid-template-columns: auto auto 1fr;
	}

	.nav-toggle {
		display: inline-flex;
		justify-self: end;
	}

	.primary-nav {
		background: var(--panel);
		border: 1px solid var(--line);
		border-radius: var(--radius);
		box-shadow: var(--shadow);
		display: none;
		grid-column: 1 / -1;
		justify-self: stretch;
		padding: 18px;
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav .menu {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.dropdown-menu,
	.sub-menu {
		background: transparent;
		border: 0;
		box-shadow: none;
		display: grid;
		margin-top: 8px;
		min-width: 0;
		opacity: 1;
		padding: 0 0 0 14px;
		pointer-events: auto;
		position: static;
		transform: none;
	}

	.has-dropdown::after,
	.menu-item-has-children::after {
		display: none;
	}

	.dropdown-menu a,
	.sub-menu a {
		padding: 5px 0;
		white-space: normal;
	}

	.header-cta {
		justify-self: end;
	}

	.hero-grid,
	.process-grid,
	.strip-grid,
	.cta-panel,
	.footer-grid,
	.page-split,
	.content-band,
	.content-band.reverse {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 64px;
	}

	.hero-grid {
		gap: 36px;
	}

	.strip-metrics {
		justify-content: flex-start;
	}

	.service-grid,
	.proof-grid,
	.value-grid,
	.compact-grid,
	.tool-grid,
	.proof-logo-grid,
	.testimonial-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.proof-card {
		grid-column: 1 / -1;
	}

	.proof-logo-grid .proof-logo:last-child:nth-child(odd),
	.service-grid > .linked-card:last-child:nth-child(odd),
	.testimonial-grid > .testimonial-card:last-child:nth-child(odd),
	.tool-grid > .tool-card:last-child:nth-child(odd),
	.value-grid > .service-card:last-child:nth-child(odd),
	.compact-grid > .linked-card:last-child:nth-child(odd) {
		justify-self: center;
		width: min(100%, 380px);
	}

	.post-card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.container {
		padding: 0 18px;
	}

	.header-inner {
		gap: 12px;
		min-height: 68px;
	}

	.brand-name {
		font-size: 1rem;
	}

	.header-cta {
		display: none;
	}

	.hero,
	.section,
	.page-hero {
		padding: 58px 0;
	}

	h1 {
		font-size: clamp(2.65rem, 16vw, 4.2rem);
	}

	h2 {
		font-size: clamp(2rem, 12vw, 3rem);
	}

	.hero-grid {
		grid-template-columns: 1fr;
	}

	.rank-card-large,
	.dashboard-row,
	.service-grid,
	.proof-grid,
	.value-grid,
	.compact-grid,
	.tool-grid,
	.proof-logo-grid,
	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.hero-actions .button,
	.cta-panel .button {
		width: 100%;
	}

	.dashboard {
		padding: 14px;
	}

	.chart-bars {
		min-height: 110px;
	}

	.process-list li {
		grid-template-columns: 40px 1fr;
		padding: 14px;
	}

	.cta-panel {
		padding: 22px;
	}
}
