/* ==========================================================================
   page-services.css — AI Ops services page
   Added 2026-06-04: three-offer layout, process steps, ICP grid, FAQ.
   Conditionally enqueued on is_page('services').
   ========================================================================== */

/* ==========================================================================
   HERO
   ========================================================================== */

.services-hero {
	padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2rem, 4vw, 3.5rem);
	border-bottom: 1px solid var(--color-border);
}

.services-hero__inner {
	max-width: 52rem;
}

.services-hero .eyebrow {
	margin: 0 0 1.25rem;
}

.services-hero h1 {
	font-size: var(--fs-display);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.06;
	color: var(--color-text-strong);
	margin: 0 0 1rem;
}

.services-hero__lead {
	font-size: clamp(1.05rem, 0.9rem + 0.55vw, 1.25rem);
	color: var(--color-text-medium);
	line-height: 1.5;
	max-width: 46ch;
	margin: 0;
}

/* ==========================================================================
   OFFER GRID
   ========================================================================== */

.services-offers {
	padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.services-offer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 2vw, 1.5rem);
	align-items: start;
}

@media (max-width: 960px) {
	.services-offer-grid {
		grid-template-columns: 1fr;
		max-width: 42rem;
	}
}

.services-offer-card {
	border: 1px solid var(--color-border);
	padding: clamp(1.5rem, 2.5vw, 2.25rem);
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	background: #fff;
	position: relative;
}

.services-offer-card--featured {
	border-top: 4px solid var(--color-accent);
	border-color: var(--color-accent);
}

.services-offer-card__eyebrow {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--color-gold-text);
	margin: 0;
}

.services-offer-card--featured .services-offer-card__eyebrow {
	color: var(--color-accent);
}

.services-offer-card h2 {
	font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--color-text-strong);
	margin: 0;
	line-height: 1.15;
}

.services-offer-card__price {
	font-size: clamp(1.4rem, 1rem + 1.5vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	color: var(--color-text);
	margin: 0;
	line-height: 1;
}

.services-offer-card__price abbr {
	font-size: 0.6em;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--color-muted);
	text-decoration: none;
}

.services-offer-card__price-unit {
	font-size: 0.55em;
	font-weight: 600;
	color: var(--color-muted);
	letter-spacing: 0;
}

.services-offer-card__timeline {
	font-size: 0.8rem;
	color: var(--color-muted);
	margin: 0;
}

.services-offer-card > p:not([class]) {
	font-size: 0.93rem;
	line-height: 1.65;
	color: var(--color-text-medium);
	margin: 0;
}

.services-offer-card h3 {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--color-text-strong);
	margin: 0.25rem 0 0;
}

.services-offer-card ul {
	margin: 0;
	padding-left: 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.services-offer-card ul li {
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--color-text-medium);
}

.services-offer-card__good-for {
	font-size: 0.82rem;
	color: var(--color-text-medium);
	font-style: italic;
	margin: 0;
	line-height: 1.5;
}

.services-offer-card__note {
	font-size: 0.8rem;
	color: var(--color-muted);
	font-style: italic;
	margin: 0;
}

.services-offer-card__cta {
	align-self: flex-start;
	margin-top: auto;
}

/* Ghost variant for retainer card */
.button--outline {
	background: transparent;
	color: var(--color-accent);
	border-color: var(--color-accent);
}

.button--outline:hover,
.button--outline:focus-visible {
	background: var(--color-accent-soft);
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */

.services-process {
	padding: clamp(2.5rem, 5vw, 4.5rem) 0;
	border-top: 1px solid var(--color-border);
}

.services-process__inner {
	max-width: 64rem;
}

.services-process h2 {
	font-size: clamp(1.5rem, 1rem + 2vw, 2.2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--color-text-strong);
	margin: 0 0 0.6rem;
	line-height: 1.15;
}

.services-process__lead {
	font-size: clamp(1rem, 0.9rem + 0.3vw, 1.1rem);
	color: var(--color-text-medium);
	margin: 0 0 2.5rem;
}

.services-process__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.services-process__step {
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: 0 1.5rem;
	padding: 1.5rem 0;
	border-top: 1px solid var(--color-border);
}

.services-process__step:last-child {
	border-bottom: 1px solid var(--color-border);
}

.services-process__step-num {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--color-accent);
	padding-top: 0.2rem;
	font-family: "Sora", sans-serif;
}

.services-process__step-body h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-text-strong);
	margin: 0 0 0.5rem;
}

.services-process__step-body p {
	font-size: 0.93rem;
	line-height: 1.65;
	color: var(--color-text-medium);
	margin: 0;
}

/* ==========================================================================
   ICP SECTION
   ========================================================================== */

.services-icp {
	padding: clamp(4rem, 7vw, 6rem) 0;
	background: var(--color-surface-alt);
	border-top: 1px solid var(--color-border);
}

.services-icp__inner {
	max-width: 64rem;
	margin-inline: auto;
}

.services-icp h2 {
	font-size: clamp(1.5rem, 1rem + 2vw, 2.2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--color-text-strong);
	margin: 0 0 1.75rem;
	line-height: 1.15;
}

.services-icp__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.5rem, 3vw, 3rem);
	margin-bottom: 1.5rem;
}

@media (max-width: 680px) {
	.services-icp__grid {
		grid-template-columns: 1fr;
	}
}

.services-icp__group h3 {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin: 0 0 0.85rem;
}

.services-icp__group ul {
	margin: 0;
	padding-left: 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.services-icp__group ul li {
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--color-text-medium);
}

.services-icp__note {
	font-size: 0.88rem;
	color: var(--color-muted);
	line-height: 1.6;
	margin: 0;
}

.services-icp__note a {
	color: var(--color-accent);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.services-faq {
	padding: clamp(2.5rem, 5vw, 4.5rem) 0;
	border-top: 1px solid var(--color-border);
}

.services-faq__inner {
	max-width: 52rem;
}

.services-faq h2 {
	font-size: clamp(1.5rem, 1rem + 2vw, 2.2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--color-text-strong);
	margin: 0 0 2rem;
	line-height: 1.15;
}

.services-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.services-faq__item {
	padding: 1.25rem 0;
	border-top: 1px solid var(--color-border);
}

.services-faq__item:last-child {
	border-bottom: 1px solid var(--color-border);
}

.services-faq__item dt {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-text-strong);
	margin: 0 0 0.6rem;
	line-height: 1.3;
}

.services-faq__item dd {
	font-size: 0.93rem;
	line-height: 1.7;
	color: var(--color-text-medium);
	margin: 0;
}

/* ==========================================================================
   CLOSING CTA
   ========================================================================== */

.services-cta {
	padding: clamp(3rem, 6vw, 5rem) 0;
	border-top: 1px solid var(--color-border);
}

.services-cta__inner {
	max-width: 48rem;
}

.services-cta h2 {
	font-size: clamp(1.5rem, 1rem + 2vw, 2.2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--color-text-strong);
	margin: 0 0 0.75rem;
	line-height: 1.15;
}

.services-cta > .services-cta__inner > p {
	font-size: clamp(1rem, 0.9rem + 0.3vw, 1.1rem);
	color: var(--color-text-medium);
	line-height: 1.65;
	margin: 0 0 2rem;
}

.services-cta__actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.button--ghost {
	background: transparent;
	color: var(--color-text);
	border-color: var(--color-border-strong);
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: var(--color-accent-soft);
	border-color: var(--color-accent);
	color: var(--color-accent);
}

/* ==========================================================================
   SECTION HEADING — shared between AI ops and additional services
   ========================================================================== */

.services-section-heading {
	font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.35rem);
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--color-text-strong);
	margin: 0 0 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--color-accent);
	display: inline-block;
}

/* ==========================================================================
   ADDITIONAL SERVICES — four-category grid
   ========================================================================== */

.services-additional {
	padding: clamp(2.5rem, 5vw, 4.5rem) 0;
	border-top: 1px solid var(--color-border);
}

.services-additional__lead {
	font-size: clamp(0.95rem, 0.88rem + 0.25vw, 1.05rem);
	color: var(--color-text-medium);
	margin: -0.75rem 0 2rem;
	max-width: 52ch;
}

.services-additional-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(1rem, 2vw, 1.5rem);
}

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

.services-additional-card {
	padding: clamp(1.25rem, 2vw, 1.75rem);
	border: 1px solid var(--color-border);
	background: var(--color-surface-alt);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.services-additional-card h3 {
	font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
	font-weight: 700;
	color: var(--color-text-strong);
	margin: 0;
	letter-spacing: -0.02em;
}

.services-additional-card > p {
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--color-text-medium);
	margin: 0;
}

.services-additional-card ul {
	margin: 0;
	padding-left: 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.services-additional-card ul li {
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--color-text-medium);
}

.services-additional-card__link {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-accent);
	text-decoration: none;
	margin-top: auto;
	padding-top: 0.25rem;
}

.services-additional-card__link:hover,
.services-additional-card__link:focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ==========================================================================
   VERTICAL GATEWAY GRID — hub page four-card layout
   ========================================================================== */

.services-verticals {
	padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.services-vertical-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border: 1px solid var(--color-border);
}

.services-vertical-card {
	padding: clamp(1.5rem, 2.5vw, 2.25rem);
	border-right: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s ease;
}

.services-vertical-card:hover,
.services-vertical-card:focus-visible {
	background: var(--color-accent-soft);
	outline: none;
}

.services-vertical-card:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: -2px;
}

.services-vertical-card:nth-child(even) {
	border-right: none;
}

.services-vertical-card:nth-child(n+3) {
	border-bottom: none;
}

.services-vertical-card__eyebrow {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-gold-text);
	margin: 0;
}

.services-vertical-card h3 {
	font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--color-text-strong);
	margin: 0;
	line-height: 1.2;
}

.services-vertical-card p:not(.services-vertical-card__eyebrow):not(.services-vertical-card__link) {
	font-size: 0.88rem;
	line-height: 1.65;
	color: var(--color-text-medium);
	margin: 0;
	flex: 1;
}

.services-vertical-card__link {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--color-accent);
	margin: 0.25rem 0 0;
	letter-spacing: -0.005em;
}

@media (max-width: 680px) {
	.services-vertical-grid {
		grid-template-columns: 1fr;
	}

	.services-vertical-card {
		border-right: none;
		border-bottom: 1px solid var(--color-border);
	}

	.services-vertical-card:last-child {
		border-bottom: none;
	}
}

/* ==========================================================================
   ALSO AVAILABLE — Writing + Speaking, below the four-vertical grid
   ========================================================================== */

.services-also {
	padding: clamp(1.75rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3rem);
	border-top: 1px solid var(--color-border);
}

.services-also__label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-muted);
	margin: 0 0 1.25rem;
}

.services-also__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(1rem, 2vw, 1.5rem);
}

/* Five-card variant: 3-col desktop, 2-col tablet, 1-col mobile */
.services-also__grid--five {
	grid-template-columns: repeat(3, 1fr);
}

/* Six-card variant: 3×2 grid — even fill, no orphan handling needed */
.services-also__grid--six {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
	.services-also__grid--five,
	.services-also__grid--six {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.services-also__grid,
	.services-also__grid--five,
	.services-also__grid--six {
		grid-template-columns: 1fr;
	}
}

.services-also__item {
	padding: clamp(1.25rem, 2vw, 1.75rem);
	border: 1px solid var(--color-border);
	background: var(--color-surface-alt);
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s ease;
}

.services-also__item:hover,
.services-also__item:focus-visible {
	background: var(--color-accent-soft);
	outline: none;
}

.services-also__item:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: -2px;
}

.services-also__eyebrow {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-gold-text);
	margin: 0;
}

.services-also__item h3 {
	font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--color-text-strong);
	margin: 0;
	line-height: 1.2;
}

.services-also__item p:not(.services-also__eyebrow):not(.services-also__link) {
	font-size: 0.86rem;
	line-height: 1.65;
	color: var(--color-text-medium);
	margin: 0;
	flex: 1;
}

.services-also__link {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--color-accent);
	margin: 0.25rem 0 0;
	letter-spacing: -0.005em;
}

/* Cross-link inside a channel-vertical offer item */
.service-offer-item__more {
	margin: 0.35rem 0 0;
	font-size: 0.82rem;
}

.service-offer-item__more a {
	color: var(--color-accent);
	font-weight: 600;
	text-decoration: none;
}

.service-offer-item__more a:hover,
.service-offer-item__more a:focus-visible {
	text-decoration: underline;
}

/* ==========================================================================
   RATES STRIP — hub page
   ========================================================================== */

.services-rates {
	background: var(--color-accent-strong);
	margin-inline: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.services-rates.site-shell {
	padding-inline: clamp(1.25rem, 4vw, 3rem);
	padding-block: clamp(2.5rem, 5vw, 4rem);
}

.services-rates__inner {
	max-width: var(--container);
	margin-inline: auto;
}

.services-rates__inner h2 {
	font-size: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 1.5rem;
	font-family: 'Manrope', sans-serif;
}

.services-rates__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 860px) {
	.services-rates__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.services-rates__grid {
		grid-template-columns: 1fr;
	}
}

.services-rates__item {
	padding: clamp(1.25rem, 2vw, 1.75rem);
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.services-rates__item:last-child {
	border-right: none;
}

@media (max-width: 860px) {
	.services-rates__item:nth-child(even) {
		border-right: none;
	}

	.services-rates__item {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.services-rates__item:nth-last-child(-n+2) {
		border-bottom: none;
	}
}

@media (max-width: 480px) {
	.services-rates__item {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.services-rates__item:last-child {
		border-bottom: none;
	}
}

.services-rates__price {
	font-size: clamp(1.3rem, 1rem + 1vw, 1.75rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--color-gold);
	margin: 0 0 0.35rem;
	line-height: 1;
}

.services-rates__price span {
	font-size: 0.7em;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0;
}

.services-rates__label {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
	line-height: 1.4;
}

.services-rates__note {
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 1.5rem 0 0;
	max-width: 52rem;
	line-height: 1.6;
}

/* ==========================================================================
   VERTICAL HERO WITH VISUAL PANEL — two-column layout for publishers
   ========================================================================== */

.services-hero--has-visual .services-hero__cols {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

/* On narrower viewports, collapse to single column and hide the panel */
@media (max-width: 920px) {
	.services-hero--has-visual .services-hero__cols {
		grid-template-columns: 1fr;
	}

	.services-hero__visual {
		display: none;
	}
}

/* ==========================================================================
   SERVICE PANEL — shared component across all vertical pages
   Mirrors .aios-panel: dark navy, monospace, flow diagram, log, footer stats.
   Used by: publishers (editorial workflow), learning (course engine),
   brands (site health monitor), local (web presence).
   ========================================================================== */

.service-panel {
	width: 100%;
	max-width: 320px;
	background: var(--color-accent-strong);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-card, 6px);
	font-family: "SFMono-Regular", "Consolas", "Liberation Mono", "Menlo", monospace;
	font-size: 0.78rem;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(6, 15, 28, 0.28);
}

.service-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.55rem 0.85rem;
	background: rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-panel__title {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.service-panel__sep {
	color: rgba(255, 255, 255, 0.3);
	margin: 0 0.3rem;
}

.service-panel__status {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #4ade80;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.service-panel__dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ade80;
	flex-shrink: 0;
	animation: sp-pulse 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
	.service-panel__dot { animation: none; }
}

@keyframes sp-pulse {
	0%, 100% { opacity: 1; }
	50%       { opacity: 0.35; }
}

.service-panel__flow {
	padding: 0.85rem 0.85rem 0.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.sp-flow__node {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	padding: 0.4rem 0.65rem;
}

.sp-flow__node-label {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.72rem;
}

.sp-flow__node--router {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.15);
}

.sp-flow__node-title {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.74rem;
	font-weight: 700;
}

.sp-flow__node-criteria {
	color: var(--color-gold);
	font-size: 0.68rem;
}

.sp-flow__connector {
	text-align: center;
	color: rgba(255, 255, 255, 0.25);
	font-size: 0.75rem;
	line-height: 1;
	margin: -0.1rem 0;
}

.sp-flow__outputs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.35rem;
}

.sp-flow__output {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	padding: 0.45rem 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	opacity: 0.72;
}

.sp-flow__output--active {
	background: rgba(226, 176, 74, 0.08);
	border-color: rgba(226, 176, 74, 0.35);
	opacity: 1;
}

.sp-flow__stage {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.7rem;
	font-weight: 600;
}

.sp-flow__stage--accent { color: var(--color-gold); }

.sp-flow__count {
	color: rgba(255, 255, 255, 0.38);
	font-size: 0.65rem;
}

.sp-flow__output--active .sp-flow__count { color: rgba(255, 255, 255, 0.6); }

.service-panel__log {
	padding: 0.65rem 0.85rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
}

.sp-log__entry {
	display: grid;
	grid-template-columns: 7rem 1fr;
	gap: 0.5rem;
	align-items: baseline;
}

.sp-log__key {
	color: rgba(255, 255, 255, 0.35);
	font-size: 0.68rem;
}

.sp-log__val {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.7rem;
}

.sp-log__val--truncate {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sp-log__val--num  { color: var(--color-gold); }
.sp-log__val--accent { color: #4ade80; }

.service-panel__footer {
	padding: 0.65rem 0.85rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}

.service-panel__stat {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.service-panel__stat strong {
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	font-family: "Sora", sans-serif;
	line-height: 1;
}

.service-panel__stat span {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.65rem;
	font-family: "Manrope", sans-serif;
	letter-spacing: 0.02em;
}

   VERTICAL PAGE PATTERNS — shared across publishers / learning / brands / local
   ========================================================================== */

/* Back link above hero */
.services-hero__back {
	margin: 0 0 1.5rem;
}

.services-hero__back a {
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--color-muted);
	text-decoration: none;
	letter-spacing: -0.005em;
}

.services-hero__back a:hover {
	color: var(--color-accent);
}

/* Action row below lede */
.services-hero__actions {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 1.75rem;
}

.services-hero__actions a:not(.button) {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-accent);
	text-decoration: none;
}

.services-hero__actions a:not(.button):hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Rate line under CTA */
.services-hero__rate {
	font-size: 0.8rem;
	color: var(--color-muted);
	margin: 1rem 0 0;
	letter-spacing: -0.005em;
}

/* Vertical page body wrapper */
.service-vertical-body {
	padding: clamp(3rem, 6vw, 5rem) 0;
	display: flex;
	flex-direction: column;
	gap: clamp(3rem, 5vw, 4.5rem);
}

/* Problem / context section */
.service-vertical-problem h2,
.service-vertical-offers h2,
.service-vertical-proof h2,
.service-vertical-rates h2,
.service-vertical-area h2 {
	font-size: clamp(1.3rem, 1rem + 1.2vw, 1.75rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--color-text-strong);
	margin: 0 0 1rem;
	line-height: 1.2;
}

.service-vertical-problem p,
.service-vertical-rates p,
.service-vertical-area p {
	font-size: clamp(1rem, 0.9rem + 0.3vw, 1.08rem);
	line-height: 1.7;
	color: var(--color-text-medium);
	margin: 0 0 1rem;
	max-width: 62ch;
}

.service-vertical-problem p:last-child,
.service-vertical-rates p:last-child,
.service-vertical-area p:last-child {
	margin-bottom: 0;
}

/* What I build — 2×3 card grid */
.service-offers-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border: 1px solid var(--color-border);
	margin-top: 1.5rem;
}

.service-offer-item {
	padding: clamp(1.25rem, 2vw, 1.75rem);
	border-right: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.service-offer-item:nth-child(even) {
	border-right: none;
}

.service-offer-item:nth-last-child(-n+2) {
	border-bottom: none;
}

/* Single-column grid (brands, local) — remove odd last-child rule */
.service-offers-grid--single .service-offer-item {
	border-right: none;
}

.service-offer-item h3 {
	font-size: clamp(0.95rem, 0.88rem + 0.35vw, 1.1rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--color-text-strong);
	margin: 0 0 0.5rem;
	line-height: 1.3;
}

.service-offer-item p {
	font-size: 0.88rem;
	line-height: 1.65;
	color: var(--color-text-medium);
	margin: 0;
}

@media (max-width: 680px) {
	.service-offers-grid {
		grid-template-columns: 1fr;
	}

	.service-offer-item {
		border-right: none;
		border-bottom: 1px solid var(--color-border);
	}

	.service-offer-item:last-child {
		border-bottom: none;
	}

	.service-offer-item:nth-last-child(-n+2) {
		border-bottom: 1px solid var(--color-border);
	}

	.service-offer-item:last-child {
		border-bottom: none;
	}
}

/* Proof client list */
.service-vertical-clients {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--color-border);
}

.service-vertical-clients li {
	padding: 0.85rem 1.25rem;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--color-text-medium);
}

.service-vertical-clients li:last-child {
	border-bottom: none;
}

.service-vertical-clients strong {
	color: var(--color-text-strong);
	font-weight: 700;
}

/* ==========================================================================
   LMS PANEL — /services/learning/
   ========================================================================== */

.lms-panel {
	width: 100%;
	max-width: 320px;
	background: var(--color-accent-strong);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--radius-card, 6px);
	font-family: "SFMono-Regular","Consolas","Liberation Mono","Menlo",monospace;
	font-size: 0.78rem;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(6,15,28,0.28);
}

.lms-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.55rem 0.85rem;
	background: rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lms-panel__title {
	color: rgba(255,255,255,0.8);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.lms-panel__sep { color: rgba(255,255,255,0.3); margin: 0 0.3rem; }

.lms-panel__status {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #4ade80;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lms-panel__dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ade80;
	flex-shrink: 0;
	animation: editorial-pulse 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) { .lms-panel__dot { animation: none; } }

.lms-panel__course {
	padding: 0.75rem 0.85rem 0.65rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.lms-course__meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.35rem;
}

.lms-course__name {
	color: rgba(255,255,255,0.9);
	font-weight: 700;
	font-size: 0.72rem;
}

.lms-course__count {
	color: rgba(255,255,255,0.35);
	font-size: 0.65rem;
}

.lms-module {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.3rem 0.5rem;
	border-radius: 3px;
}

.lms-module--done { background: rgba(74,222,128,0.06); }
.lms-module--active { background: rgba(226,176,74,0.1); border: 1px solid rgba(226,176,74,0.25); }

.lms-module__icon {
	font-size: 0.7rem;
	color: rgba(255,255,255,0.25);
	width: 0.9rem;
	text-align: center;
	flex-shrink: 0;
}

.lms-module--done .lms-module__icon { color: #4ade80; }
.lms-module__icon--active { color: var(--color-gold) !important; }
.lms-module__icon--pending { color: rgba(255,255,255,0.2) !important; }

.lms-module__label {
	color: rgba(255,255,255,0.55);
	font-size: 0.7rem;
}

.lms-module--done .lms-module__label { color: rgba(255,255,255,0.7); }
.lms-module__label--active { color: var(--color-gold) !important; font-weight: 600; }

.lms-panel__progress {
	padding: 0.65rem 0.85rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.lms-progress__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.lms-progress__row--sub { margin-top: 0.25rem; }

.lms-progress__label { color: rgba(255,255,255,0.4); font-size: 0.68rem; }

.lms-progress__pct {
	color: rgba(255,255,255,0.8);
	font-size: 0.7rem;
	font-weight: 700;
}

.lms-progress__pct--ok { color: #4ade80; }

.lms-progress__bar {
	height: 4px;
	background: rgba(255,255,255,0.08);
	border-radius: 2px;
	overflow: hidden;
}

.lms-progress__fill {
	height: 100%;
	background: #4ade80;
	border-radius: 2px;
}

.lms-panel__footer {
	padding: 0.65rem 0.85rem;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 0.5rem;
}

.lms-panel__stat { display: flex; flex-direction: column; gap: 0.15rem; }

.lms-panel__stat strong {
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	font-family: "Sora", sans-serif;
	line-height: 1;
}

.lms-panel__stat span {
	color: rgba(255,255,255,0.45);
	font-size: 0.65rem;
	font-family: "Manrope", sans-serif;
	letter-spacing: 0.02em;
}

/* ==========================================================================
   CWV PANEL — /services/brands/
   ========================================================================== */

.cwv-panel {
	width: 100%;
	max-width: 320px;
	background: var(--color-accent-strong);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--radius-card, 6px);
	font-family: "SFMono-Regular","Consolas","Liberation Mono","Menlo",monospace;
	font-size: 0.78rem;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(6,15,28,0.28);
}

.cwv-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.55rem 0.85rem;
	background: rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cwv-panel__title {
	color: rgba(255,255,255,0.8);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.cwv-panel__sep { color: rgba(255,255,255,0.3); margin: 0 0.3rem; }

.cwv-panel__status {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #4ade80;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cwv-panel__dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ade80;
	flex-shrink: 0;
	animation: editorial-pulse 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) { .cwv-panel__dot { animation: none; } }

.cwv-panel__vitals {
	padding: 0.7rem 0.85rem 0.6rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.cwv-panel__vitals-label {
	color: rgba(255,255,255,0.35);
	font-size: 0.65rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.15rem;
}

.cwv-metric {
	display: grid;
	grid-template-columns: 2.5rem 3.5rem 1fr;
	align-items: center;
	gap: 0.4rem;
	padding: 0.28rem 0.4rem;
	border-radius: 3px;
}

.cwv-metric--pass { background: rgba(74,222,128,0.06); }

.cwv-metric__name {
	color: rgba(255,255,255,0.55);
	font-size: 0.7rem;
	font-weight: 700;
}

.cwv-metric__val {
	color: rgba(255,255,255,0.8);
	font-size: 0.72rem;
}

.cwv-metric__badge {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.1rem 0.35rem;
	border-radius: 2px;
	justify-self: end;
}

.cwv-metric__badge--pass {
	background: rgba(74,222,128,0.15);
	color: #4ade80;
}

.cwv-panel__checks {
	padding: 0.65rem 0.85rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
}

.cwv-check {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.cwv-check__icon {
	color: rgba(255,255,255,0.2);
	font-size: 0.7rem;
	width: 0.9rem;
	text-align: center;
	flex-shrink: 0;
}

.cwv-check--ok .cwv-check__icon { color: #4ade80; }

.cwv-check__label {
	color: rgba(255,255,255,0.6);
	font-size: 0.7rem;
}

.cwv-panel__footer {
	padding: 0.65rem 0.85rem;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 0.5rem;
}

.cwv-panel__stat { display: flex; flex-direction: column; gap: 0.15rem; }

.cwv-panel__stat strong {
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	font-family: "Sora", sans-serif;
	line-height: 1;
}

.cwv-panel__stat span {
	color: rgba(255,255,255,0.45);
	font-size: 0.65rem;
	font-family: "Manrope", sans-serif;
	letter-spacing: 0.02em;
}

/* ==========================================================================
   LOCAL PANEL — /services/local/
   ========================================================================== */

.local-panel {
	width: 100%;
	max-width: 320px;
	background: var(--color-accent-strong);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--radius-card, 6px);
	font-family: "SFMono-Regular","Consolas","Liberation Mono","Menlo",monospace;
	font-size: 0.78rem;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(6,15,28,0.28);
}

.local-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.55rem 0.85rem;
	background: rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.local-panel__title {
	color: rgba(255,255,255,0.8);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.local-panel__sep { color: rgba(255,255,255,0.3); margin: 0 0.3rem; }

.local-panel__status {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #4ade80;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.local-panel__dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ade80;
	flex-shrink: 0;
	animation: editorial-pulse 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) { .local-panel__dot { animation: none; } }

.local-panel__nap {
	padding: 0.7rem 0.85rem 0.6rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
}

.local-nap__label {
	color: rgba(255,255,255,0.35);
	font-size: 0.65rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.1rem;
}

.local-nap__row {
	display: grid;
	grid-template-columns: 1rem 5rem 1fr;
	align-items: center;
	gap: 0.4rem;
	padding: 0.25rem 0.3rem;
	border-radius: 3px;
}

.local-nap__row--ok { background: rgba(74,222,128,0.05); }

.local-nap__icon {
	color: rgba(255,255,255,0.2);
	font-size: 0.68rem;
	text-align: center;
}

.local-nap__row--ok .local-nap__icon { color: #4ade80; }

.local-nap__field {
	color: rgba(255,255,255,0.65);
	font-size: 0.68rem;
}

.local-nap__match {
	color: rgba(255,255,255,0.35);
	font-size: 0.63rem;
	text-align: right;
}

.local-nap__row--ok .local-nap__match { color: rgba(74,222,128,0.7); }

.local-panel__gbp {
	padding: 0.65rem 0.85rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
}

.local-gbp__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.local-gbp__row--sub { margin-top: 0.15rem; }

.local-gbp__label {
	color: rgba(255,255,255,0.45);
	font-size: 0.68rem;
}

.local-gbp__badge {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 0.1rem 0.35rem;
	border-radius: 2px;
}

.local-gbp__badge--ok {
	background: rgba(74,222,128,0.15);
	color: #4ade80;
}

.local-gbp__stars {
	color: var(--color-gold);
	font-size: 0.75rem;
	letter-spacing: 0.05em;
}

.local-gbp__rating {
	color: rgba(255,255,255,0.85);
	font-weight: 700;
	margin-left: 0.3rem;
}

.local-gbp__count {
	color: rgba(255,255,255,0.35);
	font-size: 0.65rem;
	margin-left: 0.25rem;
}

.local-gbp__pos {
	color: var(--color-gold);
	font-size: 0.68rem;
	font-weight: 700;
}

.local-panel__footer {
	padding: 0.65rem 0.85rem;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 0.5rem;
}

.local-panel__stat { display: flex; flex-direction: column; gap: 0.15rem; }

.local-panel__stat strong {
	color: #fff;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	font-family: "Sora", sans-serif;
	line-height: 1;
}

.local-panel__stat span {
	color: rgba(255,255,255,0.45);
	font-size: 0.65rem;
	font-family: "Manrope", sans-serif;
	letter-spacing: 0.02em;
}

/* ── Shared pulse animation (used by all service page panel dots) ──────── */
@keyframes editorial-pulse {
	0%, 100% { opacity: 1; }
	50%       { opacity: 0.35; }
}

/* ================================================================
   AI OPERATIONS PANEL  (service-page version of .aios-panel)
   Dark navy to match cwv-panel / lms-panel / local-panel system.
   home-hero.css has the homepage variant; this file covers the
   /services/ai-operations/ page which loads page-services.css.
   ================================================================ */

.aios-panel {
	width: 100%;
	max-width: 320px;
	background: var(--color-accent-strong);
	border: 1px solid rgba(255,255,255,0.1);
	font-family: "SFMono-Regular","Consolas","Liberation Mono","Menlo",monospace;
	font-size: 0.78rem;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(6,15,28,0.28);
}

.aios-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.55rem 0.85rem;
	background: rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.aios-panel__title {
	color: rgba(255,255,255,0.8);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.aios-panel__sep { color: rgba(255,255,255,0.3); margin: 0 0.3rem; }

.aios-panel__status {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #4ade80;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.aios-panel__dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ade80;
	flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
	.aios-panel__dot { animation: editorial-pulse 2.4s ease-in-out infinite; }
}

/* ── Routing table ──────────────────────────────────────────────────────── */

.aios-panel__router {
	padding: 0.65rem 0.85rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.aios-router__label {
	color: rgba(255,255,255,0.35);
	font-size: 0.65rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.1rem;
}

.aios-router__row {
	display: grid;
	grid-template-columns: 4.5rem 1fr;
	align-items: center;
	gap: 0.5rem;
	padding: 0.28rem 0.4rem;
	border-radius: 2px;
}

.aios-router__row--claude  { background: rgba(99,102,241,0.14); }
.aios-router__row--ollama  { background: rgba(255,255,255,0.04); }
.aios-router__row--copilot { background: rgba(74,222,128,0.07); }

.aios-router__model {
	color: rgba(255,255,255,0.85);
	font-size: 0.7rem;
	font-weight: 700;
}

.aios-router__rule {
	color: rgba(255,255,255,0.45);
	font-size: 0.63rem;
}

/* ── Log preview ──────────────────────────────────────────────────────────── */

.aios-panel__log {
	display: flex;
	flex-direction: column;
	gap: 0.32rem;
	padding: 0.65rem 0.85rem;
	background: rgba(0,0,0,0.18);
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.aios-log__entry {
	display: flex;
	align-items: baseline;
}

.aios-log__key {
	font-size: 0.67rem;
	color: rgba(255,255,255,0.38);
	min-width: 7rem;
	flex-shrink: 0;
}

.aios-log__val {
	font-size: 0.7rem;
	color: rgba(255,255,255,0.82);
}

.aios-log__val--truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 9.5rem; }
.aios-log__val--num      { color: #f0a500; }
.aios-log__val--accent   { color: #818cf8; }

/* ── Stat bar ────────────────────────────────────────────────────────────── */

.aios-panel__footer {
	display: flex;
	justify-content: space-between;
	padding: 0.65rem 0.85rem;
	gap: 0.5rem;
}

.aios-panel__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.1rem;
	flex: 1;
}

.aios-panel__stat strong {
	font-size: 1.05rem;
	font-weight: 800;
	color: #f0a500;
	letter-spacing: -0.03em;
	line-height: 1;
}

.aios-panel__stat span {
	font-size: 0.62rem;
	color: rgba(255,255,255,0.52);
	text-align: center;
	line-height: 1.3;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 760px) {
	.aios-panel { max-width: 100%; }
}

/* ================================================================
   WHO-THIS-IS-FOR QUALIFICATION GRID  (.aios-fit-*)
   Two-column yes/no split inside the .service-vertical-offers block.
   ================================================================ */

.aios-fit-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin-top: 1.5rem;
	border: 1px solid var(--color-border);
}

.aios-fit {
	padding: clamp(1.25rem, 2vw, 1.75rem);
}

.aios-fit--yes {
	border-right: 1px solid var(--color-border);
}

.aios-fit h3 {
	font-size: 0.88rem;
	font-weight: 700;
	margin: 0 0 1rem;
	letter-spacing: -0.01em;
}

.aios-fit--yes h3 { color: var(--color-accent); }
.aios-fit--no h3  { color: var(--color-text-medium); }

.aios-fit__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.aios-fit__list li {
	font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
	line-height: 1.65;
	color: var(--color-text-medium);
	padding-left: 1.1rem;
	position: relative;
}

.aios-fit__list li::before {
	content: "→";
	position: absolute;
	left: 0;
	font-size: 0.82rem;
	top: 0.12em;
}

.aios-fit--yes .aios-fit__list li::before { color: var(--color-accent); }
.aios-fit--no  .aios-fit__list li::before { color: var(--color-muted); }

@media (max-width: 640px) {
	.aios-fit-grid { grid-template-columns: 1fr; }
	.aios-fit--yes { border-right: none; border-bottom: 1px solid var(--color-border); }
}

/* ================================================================
   ENGAGEMENT CARD MODIFIERS
   .service-offer-item__note: supporting note inside a card.
   ================================================================ */

.service-offer-item__note {
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--color-muted);
	margin: 0.85rem 0 0;
	padding-top: 0.75rem;
	border-top: 1px solid var(--color-border);
}

/* ================================================================
   ENGAGEMENT MODEL LAYOUT — /services/ai-operations/
   Three-step sequential journey: Audit spans full width (primacy),
   Implementation + Retainer pair in bottom row (conditional steps).
   ================================================================ */

.service-vertical-offers--engagement .service-offers-grid {
	grid-template-columns: repeat(2, 1fr);
}

/* Audit card spans full width — double size = visible primacy */
.service-vertical-offers--engagement .service-offer-item--featured {
	grid-column: 1 / -1;
	background: var(--color-accent-soft);
	border-left: none;
	border-top: 3px solid var(--color-accent);
	border-bottom: 1px solid var(--color-border);
}

/* Bottom row: Implementation (left) and Retainer (right) */
.service-vertical-offers--engagement .service-offer-item:nth-child(2) {
	border-right: 1px solid var(--color-border);
	border-bottom: none;
}

.service-vertical-offers--engagement .service-offer-item:nth-child(3) {
	border-right: none;
	border-bottom: none;
}

/* Eyebrow label — service name above the price */
.service-vertical-offers--engagement .service-offer-item__name {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--color-muted);
	margin: 0 0 0.35rem;
	line-height: 1.3;
}

/* Price — primary conversion signal at display scale */
.service-vertical-offers--engagement .service-offer-item__price {
	font-size: clamp(1.35rem, 1rem + 1.3vw, 1.85rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	color: var(--color-text-strong);
	margin: 0 0 0.85rem;
	line-height: 1;
}

.service-vertical-offers--engagement .service-offer-item__price abbr {
	font-size: 0.58em;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--color-muted);
	text-decoration: none;
}

.service-vertical-offers--engagement .service-offer-item__price .service-offer-item__price-unit {
	font-size: 0.55em;
	font-weight: 600;
	color: var(--color-muted);
	letter-spacing: 0;
}

/* Suppress auto-linker noise inside all service card grids */
.service-offers-grid a.auto-link,
.service-offers-grid a[data-auto-link] {
	color: inherit;
	text-decoration: none;
	pointer-events: none;
	cursor: text;
}

/* ================================================================
   TRUST STRIP VARIANT  (.service-vertical-proof--trust)
   Used on the AI ops page for the production-proof statement.
   ================================================================ */

.service-vertical-proof--trust .service-vertical-proof__strip {
	font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
	line-height: 1.7;
	color: var(--color-text-medium);
	border-left: 3px solid var(--color-accent);
	padding-left: 1.25rem;
	margin: 0;
	max-width: 65ch;
}

/* ================================================================
   AUTHOR / EEAT ANCHOR  (.services-author)
   Single-sentence credential line on the services hub page.
   Sits between the cross-cutting grid and the process steps.
   ================================================================ */

.services-author {
	padding-top: 0;
	padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.services-author__inner {
	border-left: 3px solid var(--color-accent);
	padding-left: 1.25rem;
}

.services-author__byline {
	font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
	line-height: 1.7;
	color: var(--color-text-medium);
	margin: 0;
	max-width: 65ch;
}

.services-author__byline a {
	color: var(--color-accent);
	text-decoration: none;
}

.services-author__byline a:hover,
.services-author__byline a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ================================================================
   GEOGRAPHIC LOCATION LINE  (.services-hero__location)
   Small contextual line on the local page hero, below the rate.
   ================================================================ */

.services-hero__location {
	font-size: 0.78rem;
	color: var(--color-muted);
	margin: 0.5rem 0 0;
	letter-spacing: 0.02em;
}

/* ================================================================
   SITE AUDIT PANEL  (.audit-panel)
   Findings report visual — category rows with pass/warn/fail badges,
   priority list, stat bar. Dark navy consistent with other service panels.
   ================================================================ */

.audit-panel {
	width: 100%;
	max-width: 320px;
	background: var(--color-accent-strong);
	border: 1px solid rgba(255,255,255,0.1);
	font-family: "SFMono-Regular","Consolas","Liberation Mono","Menlo",monospace;
	font-size: 0.78rem;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(6,15,28,0.28);
}

.audit-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.55rem 0.85rem;
	background: rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.audit-panel__title {
	color: rgba(255,255,255,0.8);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.audit-panel__sep { color: rgba(255,255,255,0.3); margin: 0 0.3rem; }

.audit-panel__status {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #4ade80;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.audit-panel__dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ade80;
	flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
	.audit-panel__dot { animation: editorial-pulse 2.4s ease-in-out infinite; }
}

/* ── Category rows ──────────────────────────────────────────────────────── */

.audit-panel__categories {
	padding: 0.65rem 0.85rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
}

.audit-cat__label {
	color: rgba(255,255,255,0.35);
	font-size: 0.65rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.1rem;
}

.audit-cat {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.25rem 0.4rem;
	border-radius: 2px;
}

.audit-cat--pass   { background: rgba(74,222,128,0.06); }
.audit-cat--warn   { background: rgba(251,191,36,0.08); }
.audit-cat--fail   { background: rgba(239,68,68,0.08); }

.audit-cat__name {
	color: rgba(255,255,255,0.75);
	font-size: 0.68rem;
}

.audit-cat__badge {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.1rem 0.4rem;
	border-radius: 2px;
}

.audit-cat__badge--pass   { background: rgba(74,222,128,0.15); color: #4ade80; }
.audit-cat__badge--warn   { background: rgba(251,191,36,0.15);  color: #fbbf24; }
.audit-cat__badge--fail   { background: rgba(239,68,68,0.15);   color: #f87171; }

/* ── Priority list ──────────────────────────────────────────────────────── */

.audit-panel__priorities {
	padding: 0.6rem 0.85rem;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	background: rgba(0,0,0,0.15);
}

.audit-priority {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.audit-priority__rank {
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	min-width: 1.5rem;
	flex-shrink: 0;
}

.audit-priority--1 .audit-priority__rank { color: #f87171; }
.audit-priority--2 .audit-priority__rank { color: #fbbf24; }
.audit-priority--3 .audit-priority__rank { color: rgba(255,255,255,0.45); }

.audit-priority__desc {
	font-size: 0.65rem;
	color: rgba(255,255,255,0.6);
	line-height: 1.4;
}

/* ── Stat bar ────────────────────────────────────────────────────────────── */

.audit-panel__footer {
	display: flex;
	justify-content: space-between;
	padding: 0.65rem 0.85rem;
	gap: 0.5rem;
}

.audit-panel__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.1rem;
	flex: 1;
}

.audit-panel__stat strong {
	font-size: 1rem;
	font-weight: 800;
	color: #f0a500;
	letter-spacing: -0.03em;
	line-height: 1;
}

.audit-panel__stat span {
	font-size: 0.62rem;
	color: rgba(255,255,255,0.52);
	text-align: center;
	line-height: 1.3;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 760px) {
	.audit-panel { max-width: 100%; }
}

/* ==========================================================================
   BRAND-LIST BLOCK  (.brand-list-block)
   Dynamic client/brand list rendered by wp:thisismyurl/brand-list.
   Uses pill/tag layout so brand names read as a trust roster rather than
   a sparse bordered table when no descriptions are set.
   FSE templates render this section outside .service-vertical-body so
   vertical padding is supplied here rather than through the gap cascade.
   ========================================================================== */

.wp-block-group.service-vertical-proof {
	padding-top: clamp(2rem, 4vw, 3rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
}

.brand-list-block .service-vertical-clients {
	border: none;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0.75rem 0 0;
}

.brand-list-block .service-vertical-clients li {
	padding: 0.55rem 1.1rem;
	border: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	background: var(--color-surface-alt);
	font-size: 0.88rem;
	line-height: 1.4;
}

.brand-list-block .service-vertical-clients li:last-child {
	border-bottom: 1px solid var(--color-border);
}

.brand-list-block .service-vertical-clients strong {
	font-weight: 600;
	color: var(--color-text-strong);
}

.brand-list-block .service-vertical-clients a {
	color: var(--color-text-strong);
	text-decoration: none;
}

.brand-list-block .service-vertical-clients a:hover {
	color: var(--color-accent);
	text-decoration: underline;
}

/* ==========================================================================
   TRADEMARK ATTRIBUTION — alignment override
   main.min.css is served in production and shadows main.css edits.
   This override in page-services.css (loaded after main.min.css) ensures
   the trademark line is contained and padded on FSE page templates where
   the paragraph renders outside any .site-shell wrapper.
   ========================================================================== */

.trademark-attribution {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.125rem;
	padding-right: 1.125rem;
	padding-bottom: 2rem;
}

/* Content-type badge — defeats main.min.css shadow. See main.css for canonical. */
.card-type-badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-text-medium);
	margin-bottom: 0.35rem;
}

/* Pre-footer related-work section — sits between page content and the navy
   footer on a white background. Defeats main.min.css shadow on service pages
   (and all pages, since page-services.css is loaded globally on service URLs).
   main.css carries the canonical rule; this override ensures it works on DEV
   until main.min.css is regenerated. */
.pre-footer-related {
	padding-block: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid var(--color-border);
}

/* ==========================================================================
   SERVICE PAGE CONTENT (.service-page-content)
   Wrapper for document-style service pages (speaking, maintenance, seo)
   that store content as standard WP blocks rather than .site-shell HTML
   pattern sections. The wrapper provides the container; these rules provide
   the typography context that .page-entry/.single-entry would otherwise give.
   ========================================================================== */

.service-page-content {
	padding-block: clamp(2.5rem, 5vw, 4rem);
}

.service-page-content .entry-content {
	max-width: 68ch;
	font-size: 1.03rem;
	line-height: 1.72;
}

.service-page-content .entry-content > * + * {
	margin-top: 1rem;
}

.service-page-content .entry-content > :where(h3, h4) {
	margin-top: 2.4rem;
	margin-bottom: 0.4rem;
	color: var(--color-text-strong);
	letter-spacing: -0.005em;
}

.service-page-content .entry-content > h2 {
	margin-top: 3.4rem;
	margin-bottom: 0.6rem;
	letter-spacing: -0.015em;
	font-size: clamp(1.4rem, 1rem + 1.5vw, 1.9rem);
}

.service-page-content .entry-content > h2:first-child,
.service-page-content .entry-content > :where(h3, h4):first-child {
	margin-top: 0;
}

.service-page-content .entry-content :where(ul, ol) {
	margin-top: 0.6rem;
}

.service-page-content .entry-content :where(ul, ol) li + li {
	margin-top: 0.6rem;
}

.service-page-content .entry-content .has-large-font-size {
	font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem);
	line-height: 1.45;
	font-weight: 400;
	color: var(--color-text-strong);
}

.service-page-content .entry-content .trust-strip {
	color: var(--color-muted);
	margin-top: 0.6rem;
}

@media (max-width: 760px) {
	.service-page-content .entry-content > h2 {
		margin-top: 2.5rem;
	}
}

/* ==========================================================================
   SERVICE BIO — #bio anchor section on speaking and service pages
   ========================================================================== */

.service-bio {
	display: flex;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: flex-start;
	padding: 1.75rem 0 0.5rem;
}

.service-bio__photo {
	flex-shrink: 0;
	margin: 0;
}

.service-bio__photo img {
	width: clamp(150px, 18vw, 210px);
	height: auto;
	border-radius: var(--radius-md);
	display: block;
}

.service-bio__body {
	flex: 1;
	min-width: 0;
}

.service-bio__label {
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--color-text-medium);
	margin: 0 0 0.4rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.service-bio__short,
.service-bio__long {
	margin: 0 0 1.25rem;
	line-height: 1.65;
}

.service-bio__long {
	color: var(--color-text-medium);
	font-size: 0.96rem;
}

.service-bio__long:last-child,
.service-bio__short:last-child {
	margin-bottom: 0;
}

.service-bio__label:not(:first-child) {
	margin-top: 1.25rem;
}

@media (max-width: 600px) {
	.service-bio {
		flex-direction: column;
	}

	.service-bio__photo img {
		width: 100%;
		max-width: 260px;
	}
}

/* ==========================================================================
   SERVICE HEROES — /services/speaking/, /services/seo/, /services/maintenance/
   Mirrors .writing-hero from page-writing.css; scoped here because
   page-services.css is already conditionally enqueued for all three pages.
   ========================================================================== */

.speaking-hero,
.seo-hero,
.maintenance-hero {
	padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
	border-bottom: 1px solid var(--color-border);
}

.speaking-hero .eyebrow,
.seo-hero .eyebrow,
.maintenance-hero .eyebrow {
	margin: 0 0 1rem;
}

.speaking-hero h1,
.seo-hero h1,
.maintenance-hero h1 {
	font-size: var(--fs-display);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.06;
	color: var(--color-text-strong);
	margin: 0 0 1rem;
}

.speaking-hero__lead,
.seo-hero__lead,
.maintenance-hero__lead {
	font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
	color: var(--color-text-medium);
	line-height: 1.55;
	max-width: 54ch;
	margin: 0;
}

@media (max-width: 600px) {
	.speaking-hero h1,
	.seo-hero h1,
	.maintenance-hero h1 {
		font-size: clamp(2rem, 8vw, 2.8rem);
	}
}

