/* ==========================================================================
   Placement Corporation — Design System
   Brand colors sampled directly from the company logo/letterhead.
   ========================================================================== */

:root {
	--pc-red: #ED1B24;
	--pc-red-dark: #C4141C;
	--pc-red-tint: #FDECED;
	--pc-charcoal: #2B2830;
	--pc-ink: #131112;
	--pc-white: #FFFFFF;

	--pc-gray-50: #FAFAFA;
	--pc-gray-100: #F2F1F3;
	--pc-gray-200: #E5E4E7;
	--pc-gray-300: #CFCDD3;
	--pc-gray-500: #6B6970; /* was #85838C — failed WCAG AA (3.73:1) for small muted text */
	--pc-gray-700: #4C4A52;

	--pc-success: #17743F; /* was #1E8E4E — 3.78:1 on its tint, failed AA */
	--pc-success-tint: #E9F7EF;

	--pc-font-display: 'Manrope', system-ui, sans-serif;
	--pc-font-body: 'Inter', system-ui, sans-serif;

	--pc-radius-sm: 8px;
	--pc-radius-md: 14px;
	--pc-radius-lg: 22px;
	--pc-radius-pill: 999px;

	--pc-shadow-sm: 0 1px 3px rgba(19,17,18,0.08);
	--pc-shadow-md: 0 8px 24px rgba(19,17,18,0.10);
	--pc-shadow-lg: 0 20px 48px rgba(19,17,18,0.14);

	--pc-container: 1180px;
	--pc-header-h: 72px;

	/* Spacing scale — every section/gap pulls from these so rhythm stays consistent. */
	--pc-space-xs: 8px;
	--pc-space-sm: 16px;
	--pc-space-md: 24px;
	--pc-space-lg: 40px;
	--pc-space-xl: 64px;
	--pc-space-2xl: 96px;

	/* Motion */
	--pc-ease: cubic-bezier(.22,.61,.36,1);
	--pc-dur-fast: 180ms;
	--pc-dur: 280ms;
	--pc-dur-slow: 520ms;

	/* Brand-derived glow — subtle, never neon. */
	--pc-glow-red: 0 6px 18px rgba(237,27,36,0.26);
	--pc-glow-red-strong: 0 10px 26px rgba(237,27,36,0.34);
	--pc-glow-ink: 0 6px 18px rgba(19,17,18,0.22);
	/* Brand red is 3.3:1 on the charcoal footer; this tint is 5.22:1. */
	--pc-red-on-dark: #FF6B6B;
	--pc-whatsapp: #157F4A; /* deeper than #25D366, which gave white text just 1.98:1 */
	--pc-whatsapp-dark: #0F6639;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--pc-font-body);
	color: var(--pc-ink);
	background: var(--pc-white);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
	font-family: var(--pc-font-display);
	color: var(--pc-ink);
	line-height: 1.2;
	margin: 0 0 0.5em;
	font-weight: 800;
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem); }
h3 { font-size: 1.25rem; }
/* For headings that must be an <h2> for correct document outline (no skipped
   levels) but should read at subsection size — e.g. the steps inside a form. */
.pc-subhead { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.pc-container { max-width: var(--pc-container); margin: 0 auto; padding: 0 20px; }
.pc-section { padding: 64px 0; }
.pc-section--tight { padding: 40px 0; }
.pc-section--dark { background: var(--pc-charcoal); color: var(--pc-white); }
.pc-section--dark h2, .pc-section--dark h3 { color: var(--pc-white); }
.pc-section--tint { background: var(--pc-gray-50); }
.pc-text-center { text-align: center; }
.pc-eyebrow {
	display: inline-block;
	font-family: var(--pc-font-display);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pc-red-dark); /* 6.06:1 — plain --pc-red is 4.39:1 and fails AA at this size */
	margin-bottom: 10px;
}
.pc-lede { font-size: 1.15rem; color: var(--pc-gray-700); max-width: 640px; }

/* ==========================================================================
   Button system — ONE treatment used everywhere. Pill shape, brand-derived
   subtle glow, arrow that slides on hover. Every CTA on the site is one of
   these variants; no bespoke button styling anywhere else.
   ========================================================================== */
.pc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: var(--pc-radius-pill);
	font-family: var(--pc-font-display);
	font-weight: 700;
	font-size: 0.96rem;
	letter-spacing: 0.01em;
	line-height: 1.2;
	border: 2px solid transparent;
	white-space: nowrap;
	cursor: pointer;
	position: relative;
	transition: transform var(--pc-dur-fast) var(--pc-ease),
	            box-shadow var(--pc-dur) var(--pc-ease),
	            background var(--pc-dur-fast) var(--pc-ease),
	            color var(--pc-dur-fast) var(--pc-ease),
	            border-color var(--pc-dur-fast) var(--pc-ease);
}
.pc-btn:hover { transform: translateY(-2px); }
.pc-btn:active { transform: translateY(0) scale(0.985); }

/* Arrow micro-interaction — add .pc-btn__arrow inside, it nudges right on hover. */
.pc-btn__arrow {
	display: inline-block;
	transition: transform var(--pc-dur) var(--pc-ease);
	will-change: transform;
}
.pc-btn:hover .pc-btn__arrow { transform: translateX(4px); }

/* Icon sizing inside buttons (WhatsApp/phone marks) */
.pc-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Button surface uses the darker brand red: white text on --pc-red is only
   4.39:1 and fails AA. --pc-red stays the accent colour elsewhere. */
.pc-btn--primary { background: var(--pc-red-dark); color: var(--pc-white); box-shadow: var(--pc-glow-red); }
.pc-btn--primary:hover { background: #A50F16; box-shadow: var(--pc-glow-red-strong); }

.pc-btn--dark { background: var(--pc-ink); color: var(--pc-white); box-shadow: var(--pc-glow-ink); }
.pc-btn--dark:hover { background: #000; box-shadow: 0 10px 26px rgba(19,17,18,0.3); }

.pc-btn--outline { background: transparent; border-color: var(--pc-gray-300); color: var(--pc-ink); }
.pc-btn--outline:hover { background: var(--pc-ink); border-color: var(--pc-ink); color: var(--pc-white); box-shadow: var(--pc-glow-ink); }

.pc-btn--outline-light { background: transparent; border-color: rgba(255,255,255,.45); color: var(--pc-white); }
.pc-btn--outline-light:hover { background: var(--pc-white); border-color: var(--pc-white); color: var(--pc-ink); }

/* WhatsApp gets its own recognisable colour — the one deliberate exception to
   the red/ink palette, because users scan for the WhatsApp green. */
.pc-btn--whatsapp { background: var(--pc-whatsapp); color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,0.28); }
.pc-btn--whatsapp:hover { background: var(--pc-whatsapp-dark); box-shadow: 0 10px 26px rgba(37,211,102,0.36); }
.pc-btn--whatsapp-outline { background: transparent; border-color: var(--pc-whatsapp); color: var(--pc-whatsapp-dark); }
.pc-btn--whatsapp-outline:hover { background: var(--pc-whatsapp); color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,0.3); }

.pc-btn--sm { padding: 10px 18px; font-size: 0.85rem; gap: 8px; }
.pc-btn--sm svg { width: 15px; height: 15px; }
.pc-btn--lg { padding: 17px 34px; font-size: 1.04rem; }
.pc-btn--block { width: 100%; }
.pc-btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Visible keyboard focus on every interactive element (was missing entirely). */
.pc-btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--pc-red);
	outline-offset: 3px;
	border-radius: var(--pc-radius-sm);
}

/* ==========================================================================
   Header — the old one wrapped nav onto two lines (7 long labels + a tagline
   + two CTAs never fit one bar). Fixes: shorter labels, nowrap links, tagline
   hidden below wide screens, and a single primary CTA instead of two.
   ========================================================================== */
.pc-header {
	position: sticky; top: 0; z-index: 40;
	background: rgba(255,255,255,0.86);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid transparent;
	height: var(--pc-header-h);
	transition: box-shadow var(--pc-dur) var(--pc-ease), border-color var(--pc-dur) var(--pc-ease);
}
/* Border/shadow only appear once you scroll — keeps the top of the page clean. */
.pc-header.is-stuck { border-bottom-color: var(--pc-gray-200); box-shadow: 0 4px 20px rgba(19,17,18,0.06); }
.pc-header-inner { display: flex; align-items: center; height: 100%; gap: 18px; }

.pc-logo { display: flex; align-items: center; gap: 10px; font-family: var(--pc-font-display); font-weight: 800; font-size: 1.05rem; flex-shrink: 0; line-height: 1.15; }
.pc-logo-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--pc-ink); display: flex; align-items: center; justify-content: center; color: var(--pc-white); font-size: 1rem; position: relative; overflow: hidden; flex-shrink: 0; }
.pc-logo-mark::after { content: ''; position: absolute; right: 0; bottom: 0; width: 60%; height: 60%; background: var(--pc-red); border-top-left-radius: 9px; }
.pc-logo-mark span { position: relative; z-index: 1; }
.pc-logo-text { display: flex; flex-direction: column; }
.pc-logo-sub { display: none; font-size: 0.6rem; font-weight: 600; color: var(--pc-gray-500); letter-spacing: 0.03em; white-space: nowrap; }
/* Tagline only where there's genuinely room for it. */
@media (min-width: 1120px) { .pc-logo-sub { display: block; } }

.pc-nav { margin-left: auto; }
.pc-nav-menu { display: none; align-items: center; gap: 6px; }
.pc-nav-menu a {
	display: block; padding: 8px 12px; border-radius: var(--pc-radius-pill);
	font-weight: 600; font-size: 0.92rem; color: var(--pc-gray-700); white-space: nowrap;
	transition: color var(--pc-dur-fast) var(--pc-ease), background var(--pc-dur-fast) var(--pc-ease);
}
.pc-nav-menu a:hover { color: var(--pc-ink); background: var(--pc-gray-100); }
.pc-nav-menu a[aria-current="page"] { color: var(--pc-red-dark); background: var(--pc-red-tint); }

.pc-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.pc-header-actions .pc-btn { display: none; }
.pc-nav-toggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; background: none; border: 1.5px solid var(--pc-gray-200);
	border-radius: 12px; padding: 0; color: var(--pc-ink);
	transition: border-color var(--pc-dur-fast) var(--pc-ease), background var(--pc-dur-fast) var(--pc-ease);
}
.pc-nav-toggle:hover { border-color: var(--pc-ink); background: var(--pc-gray-50); }
.pc-nav-toggle svg { width: 22px; height: 22px; }

@media (min-width: 1024px) {
	.pc-nav-menu { display: flex; }
	.pc-nav-toggle { display: none; }
	.pc-header-actions .pc-btn { display: inline-flex; }
}

/* visibility:hidden also removes the links from the tab order — without it
   the closed menu was aria-hidden but still keyboard-focusable. */
.pc-mobile-menu { position: fixed; inset: 0; background: var(--pc-white); z-index: 60; padding: 24px 20px; transform: translateY(-100%); visibility: hidden; transition: transform .25s ease, visibility .25s ease; overflow-y: auto; }
.pc-mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.pc-mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.pc-mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.pc-mobile-menu a { display: block; padding: 14px 6px; font-weight: 700; font-size: 1.1rem; border-bottom: 1px solid var(--pc-gray-100); }

/* ---------- Hero ---------- */
.pc-hero { position: relative; padding: 56px 0 40px; background: linear-gradient(180deg, var(--pc-gray-50), var(--pc-white)); overflow: hidden; }
.pc-hero::before {
	content: ''; position: absolute; top: -120px; right: -160px; width: 480px; height: 480px;
	background: radial-gradient(circle, rgba(237,27,36,0.12), transparent 70%);
}
.pc-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.pc-hero h1 { margin-bottom: 18px; }
.pc-hero .pc-lede { margin-bottom: 28px; }
.pc-hero-columns { display: grid; grid-template-columns: 1fr; align-items: center; gap: 32px; position: relative; z-index: 1; }
.pc-hero-columns .pc-hero-inner { max-width: none; }
.pc-hero-art { display: none; }
.pc-hero-art img { width: 100%; max-width: 420px; margin: 0 auto; display: block; }
@media (min-width: 900px) {
	.pc-hero-columns { grid-template-columns: 1.1fr 0.9fr; }
	.pc-hero-art { display: block; }
}

/* ---------- Search bar ---------- */
.pc-search-card {
	background: var(--pc-white); border: 1px solid var(--pc-gray-200); border-radius: var(--pc-radius-lg);
	box-shadow: var(--pc-shadow-lg); padding: 18px; margin-top: 8px;
}
.pc-search-form { display: grid; grid-template-columns: 1fr; gap: 12px; }
.pc-search-field { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.pc-search-field label { font-size: 0.78rem; font-weight: 700; color: var(--pc-gray-700); }
.pc-search-input-wrap { display: flex; align-items: center; gap: 8px; border: 1px solid var(--pc-gray-200); border-radius: var(--pc-radius-md); padding: 12px 14px; background: var(--pc-gray-50); }
.pc-search-input-wrap svg { flex-shrink: 0; color: var(--pc-gray-500); width: 20px; height: 20px; }
.pc-search-input-wrap input, .pc-search-input-wrap select { border: none; background: transparent; width: 100%; font-size: 0.98rem; outline: none; font-family: inherit; color: var(--pc-ink); }
@media (min-width: 760px) {
	.pc-search-form { grid-template-columns: 1.3fr 1fr auto; align-items: end; }
}

/* ---------- Pathway cards (Job seeker / Employer / Drop CV) ---------- */
.pc-pathways { display: grid; gap: 20px; grid-template-columns: 1fr; margin-top: 8px; }
@media (min-width: 760px) { .pc-pathways { grid-template-columns: repeat(3, 1fr); } }
.pc-pathway-card {
	background: var(--pc-white); border: 1px solid var(--pc-gray-200); border-radius: var(--pc-radius-lg);
	padding: 28px; box-shadow: var(--pc-shadow-sm); transition: box-shadow .2s ease, transform .2s ease;
}
.pc-pathway-card:hover { box-shadow: var(--pc-shadow-md); transform: translateY(-3px); }
.pc-pathway-icon { width: 52px; height: 52px; border-radius: var(--pc-radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; background: var(--pc-red-tint); color: var(--pc-red); }
.pc-pathway-icon svg { width: 26px; height: 26px; }
.pc-pathway-card h3 { margin-bottom: 8px; }
.pc-pathway-card p { color: var(--pc-gray-700); margin-bottom: 20px; }

/* ---------- Job cards ---------- */
.pc-job-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .pc-job-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .pc-job-grid { grid-template-columns: repeat(3, 1fr); } }

.pc-job-card {
	background: var(--pc-white); border: 1px solid var(--pc-gray-200); border-radius: var(--pc-radius-lg);
	padding: 22px; display: flex; flex-direction: column; gap: 12px; transition: box-shadow .2s ease, transform .2s ease;
}
.pc-job-card:hover { box-shadow: var(--pc-shadow-md); transform: translateY(-2px); }
.pc-job-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.pc-job-card h3 { margin: 0; font-size: 1.12rem; }
.pc-job-card h3 a:hover { color: var(--pc-red); }
/* white-space:nowrap is the fix for screenshot 3 — without it "Full-time" and
   "Fresher – 2 yrs" broke onto two lines inside the pill and looked misaligned. */
.pc-badge {
	display: inline-flex; align-items: center; gap: 5px;
	font-size: 0.76rem; font-weight: 700; padding: 6px 12px;
	border-radius: var(--pc-radius-pill); background: var(--pc-gray-100); color: var(--pc-gray-700);
	white-space: nowrap; line-height: 1.35;
}
.pc-badge--featured { background: var(--pc-red-tint); color: var(--pc-red-dark); } /* 5.31:1 */
.pc-badge--salary { background: var(--pc-success-tint); color: var(--pc-success); }
.pc-job-card-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.pc-job-card-meta .pc-icon { width: 14px; height: 14px; margin-right: 4px; }
.pc-job-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--pc-gray-100); }
.pc-job-card-posted { font-size: 0.8rem; color: var(--pc-gray-500); }

/* ---------- Job detail page ---------- */
.pc-job-hero { background: var(--pc-charcoal); color: var(--pc-white); padding: 40px 0; }
.pc-job-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 20px; }
.pc-job-hero .pc-badge { background: rgba(255,255,255,0.12); color: var(--pc-white); }
.pc-job-layout { display: grid; gap: 32px; grid-template-columns: 1fr; padding: 40px 0; }
@media (min-width: 960px) { .pc-job-layout { grid-template-columns: 2fr 1fr; } }
.pc-job-content h2 { font-size: 1.3rem; margin-top: 2em; }
.pc-job-content h2:first-child { margin-top: 0; }
.pc-job-content ul { margin: 0 0 1.2em; }
.pc-job-content li { position: relative; padding-left: 26px; margin-bottom: 10px; }
.pc-job-content li::before { content: ''; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; background: var(--pc-red-tint); border-radius: 50%; }
.pc-job-content li::after { content: '✓'; position: absolute; left: 3px; top: 3px; font-size: 11px; color: var(--pc-red); font-weight: 700; }

.pc-sidebar-card { background: var(--pc-gray-50); border: 1px solid var(--pc-gray-200); border-radius: var(--pc-radius-lg); padding: 24px; margin-bottom: 20px; }
.pc-sidebar-card dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 14px; font-size: 0.92rem; margin: 0; }
.pc-sidebar-card dt { color: var(--pc-gray-500); }
.pc-sidebar-card dd { margin: 0; font-weight: 600; text-align: right; }

.pc-closed-banner { background: var(--pc-gray-100); border-radius: var(--pc-radius-md); padding: 20px; text-align: center; font-weight: 700; }

/* ---------- Breadcrumbs ---------- */
nav.pc-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: 0.85rem; color: var(--pc-gray-500); list-style: none; margin: 0; padding: 0; }
/* On the dark job hero the muted grey was only 2.67:1 — lighten it there. */
.pc-job-hero nav.pc-breadcrumbs ol, .pc-job-hero .pc-breadcrumbs a { color: #DFDFE0; }
.pc-job-hero .pc-breadcrumbs a:hover { color: var(--pc-white); }
.pc-breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; }
.pc-breadcrumbs a:hover { color: var(--pc-red); }

/* ---------- How it works ---------- */
.pc-steps { display: grid; gap: 24px; grid-template-columns: 1fr; counter-reset: pc-step; }
@media (min-width: 760px) { .pc-steps { grid-template-columns: repeat(5, 1fr); } }
.pc-step-item { text-align: center; counter-increment: pc-step; }
.pc-step-item::before {
	content: counter(pc-step); display: flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%; background: var(--pc-ink); color: var(--pc-white);
	font-family: var(--pc-font-display); font-weight: 800; margin: 0 auto 12px;
}
.pc-step-item h3 { font-size: 1rem; }

/* ---------- Forms ---------- */
.pc-form-card { background: var(--pc-white); border: 1px solid var(--pc-gray-200); border-radius: var(--pc-radius-lg); padding: clamp(20px, 4vw, 40px); box-shadow: var(--pc-shadow-sm); }
.pc-form-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .pc-form-grid--2 { grid-template-columns: 1fr 1fr; } }
.pc-field { display: flex; flex-direction: column; gap: 6px; }
.pc-field--full { grid-column: 1 / -1; }
.pc-field label { font-weight: 700; font-size: 0.9rem; }
.pc-field .pc-optional { font-weight: 400; color: var(--pc-gray-500); }
.pc-field input, .pc-field select, .pc-field textarea {
	border: 1.5px solid var(--pc-gray-200); border-radius: var(--pc-radius-sm); padding: 12px 14px;
	font-family: inherit; font-size: 1rem; background: var(--pc-white); color: var(--pc-ink); width: 100%;
}
.pc-field input:focus, .pc-field select:focus, .pc-field textarea:focus { outline: none; border-color: var(--pc-red); box-shadow: 0 0 0 3px var(--pc-red-tint); }
.pc-field-hint { font-size: 0.82rem; color: var(--pc-gray-500); }
.pc-checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; }
.pc-checkbox-row input { margin-top: 3px; width: auto; }
.pc-checkbox-row a { color: var(--pc-red-dark); text-decoration: underline; }

.pc-step-indicator { font-size: 0.82rem; font-weight: 700; color: var(--pc-red-dark); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.pc-step-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }

.pc-form-feedback { margin-top: 16px; padding: 14px 16px; border-radius: var(--pc-radius-sm); font-weight: 600; font-size: 0.92rem; }
.pc-form-feedback--success { background: var(--pc-success-tint); color: var(--pc-success); }
.pc-form-feedback--error { background: var(--pc-red-tint); color: var(--pc-red-dark); }

/* ---------- Sections: how it works / trust / reviews ---------- */
.pc-trust-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .pc-trust-grid { grid-template-columns: repeat(3, 1fr); } }
.pc-trust-card { text-align: center; padding: 12px; }
.pc-trust-card .pc-icon-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--pc-red-tint); color: var(--pc-red); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }

.pc-reviews-header { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between; margin-bottom: 24px; }
.pc-rating-badge { display: flex; align-items: center; gap: 10px; font-family: var(--pc-font-display); font-weight: 800; font-size: 1.5rem; }
.pc-rating-count { font-weight: 500; font-size: 0.9rem; color: var(--pc-gray-500); font-family: var(--pc-font-body); }
.pc-stars { color: #F5A623; letter-spacing: 2px; }

/* Horizontal review carousel — CSS scroll-snap does the work, the arrows just
   call scrollBy(). Drag/swipe works natively on touch with no JS at all. */
.pc-reviews-scroller-wrap { position: relative; }
.pc-reviews-scroller {
	display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr);
	gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
	padding: 4px 4px 16px; margin: 0 -4px;
	scrollbar-width: thin; scrollbar-color: var(--pc-gray-300) transparent;
}
@media (min-width: 760px) { .pc-reviews-scroller { grid-auto-columns: minmax(320px, calc(33.333% - 11px)); } }
.pc-reviews-scroller::-webkit-scrollbar { height: 6px; }
.pc-reviews-scroller::-webkit-scrollbar-thumb { background: var(--pc-gray-300); border-radius: 999px; }
.pc-reviews-scroller::-webkit-scrollbar-track { background: transparent; }

.pc-review-card {
	background: var(--pc-white); border: 1px solid var(--pc-gray-200); border-radius: var(--pc-radius-lg);
	padding: 24px; scroll-snap-align: start; margin: 0;
	display: flex; flex-direction: column; gap: 12px;
	transition: box-shadow var(--pc-dur) var(--pc-ease), transform var(--pc-dur) var(--pc-ease);
}
.pc-review-card:hover { box-shadow: var(--pc-shadow-md); transform: translateY(-2px); }
.pc-review-card blockquote { margin: 0; }
.pc-review-card blockquote p { margin: 0; color: var(--pc-gray-700); font-size: 0.95rem; }
.pc-review-author { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 6px; font-weight: 700; font-size: 0.9rem; }
.pc-review-time { display: block; font-weight: 400; font-size: 0.8rem; color: var(--pc-gray-500); }
.pc-review-avatar { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.pc-review-avatar--initial {
	display: flex; align-items: center; justify-content: center;
	background: var(--pc-red-tint); color: var(--pc-red);
	font-family: var(--pc-font-display); font-weight: 800;
}

.pc-scroll-btn {
	position: absolute; top: 42%; z-index: 2;
	width: 40px; height: 40px; border-radius: 50%;
	background: var(--pc-white); border: 1px solid var(--pc-gray-200);
	color: var(--pc-ink); font-size: 1.5rem; line-height: 1;
	display: none; align-items: center; justify-content: center;
	box-shadow: var(--pc-shadow-md);
	transition: opacity var(--pc-dur-fast) var(--pc-ease), border-color var(--pc-dur-fast) var(--pc-ease);
}
.pc-scroll-btn:hover:not(:disabled) { border-color: var(--pc-red); color: var(--pc-red); }
.pc-scroll-btn:disabled { opacity: .35; cursor: default; }
.pc-scroll-btn--prev { left: -18px; }
.pc-scroll-btn--next { right: -18px; }
/* Arrows only where there's room for them outside the track; touch users swipe. */
@media (min-width: 900px) { .pc-scroll-btn { display: flex; } }

/* ---------- CTA banners ---------- */
.pc-cta-banner { border-radius: var(--pc-radius-lg); padding: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.pc-cta-banner--red { background: var(--pc-red); color: var(--pc-white); }
.pc-cta-banner--dark { background: var(--pc-ink); color: var(--pc-white); }
.pc-cta-banner h2 { margin-bottom: 6px; }
.pc-cta-banner p { opacity: .9; margin: 0; }

/* ---------- Blog ---------- */
.pc-post-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .pc-post-grid { grid-template-columns: repeat(3, 1fr); } }
.pc-post-card { display: flex; flex-direction: column; gap: 10px; }
.pc-post-card img { border-radius: var(--pc-radius-md); aspect-ratio: 16/10; object-fit: cover; }
.pc-post-card .pc-eyebrow { margin-bottom: 0; }
.pc-post-meta { font-size: 0.82rem; color: var(--pc-gray-500); }
.pc-article-body { max-width: 720px; margin: 0 auto; }
.pc-article-body h2 { margin-top: 1.8em; }
.pc-article-body ul, .pc-article-body ol { margin: 0 0 1.2em; padding-left: 1.4em; list-style: disc; }
.pc-article-body ol { list-style: decimal; }
.pc-faq-item { border-bottom: 1px solid var(--pc-gray-200); padding: 16px 0; }
.pc-faq-item h3 { font-size: 1rem; margin-bottom: 6px; }

/* ---------- Location / contact ---------- */
.pc-location-grid { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: stretch; }
/* Map gets the larger share of the row — it was previously a cramped square. */
@media (min-width: 900px) { .pc-location-grid { grid-template-columns: 1.25fr 1fr; } }
/* The iframe is absolutely positioned to fill the box. A plain height:100% on
   the iframe silently collapses when the parent's height is auto (only
   min-height was set), which left a large blank area under the map. */
.pc-map-embed {
	position: relative;
	border-radius: var(--pc-radius-lg); overflow: hidden;
	border: 1px solid var(--pc-gray-200); box-shadow: var(--pc-shadow-md);
	height: 340px;
}
@media (min-width: 900px) { .pc-map-embed { height: 460px; } }
.pc-map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.pc-map-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--pc-space-sm); }
.pc-contact-list { display: flex; flex-direction: column; gap: 14px; }
.pc-contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.pc-contact-list .pc-icon-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--pc-red-tint); color: var(--pc-red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pc-contact-list .pc-icon-circle svg { width: 18px; height: 18px; }

/* ==========================================================================
   Footer — treated as the final conversion section: WhatsApp band, four
   columns, a contact strip, then the legal bar.
   ========================================================================== */
.pc-newsletter { background: var(--pc-gray-50); border-top: 1px solid var(--pc-gray-200); padding: var(--pc-space-lg) 0; }
.pc-newsletter-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--pc-space-md); }
.pc-newsletter h2 { font-size: clamp(1.2rem, 1.3vw + .9rem, 1.6rem); margin-bottom: 4px; }
.pc-newsletter p { margin: 0; color: var(--pc-gray-700); font-size: 0.94rem; }
.pc-newsletter-form { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; position: relative; }
.pc-newsletter-form input[type="email"] {
	border: 1.5px solid var(--pc-gray-200); border-radius: var(--pc-radius-pill);
	padding: 13px 20px; font-family: inherit; font-size: 0.96rem; min-width: 260px; background: var(--pc-white);
}
.pc-newsletter-form input[type="email"]:focus { outline: none; border-color: var(--pc-red); box-shadow: 0 0 0 3px var(--pc-red-tint); }
.pc-newsletter-form .pc-form-feedback { flex-basis: 100%; margin-top: 4px; }

.pc-footer-cta {
	background: linear-gradient(135deg, var(--pc-ink), var(--pc-charcoal));
	color: var(--pc-white); padding: var(--pc-space-lg) 0;
	position: relative; overflow: hidden;
}
/* Single soft brand accent — deliberately restrained, not neon. */
.pc-footer-cta::after {
	content: ''; position: absolute; right: -8%; top: -60%; width: 42%; aspect-ratio: 1;
	background: radial-gradient(circle, rgba(237,27,36,0.28), transparent 68%);
	pointer-events: none;
}
.pc-footer-cta-inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--pc-space-md); }
.pc-footer-cta h2 { color: var(--pc-white); margin-bottom: 6px; font-size: clamp(1.3rem, 1.6vw + .9rem, 1.9rem); }
.pc-footer-cta p { margin: 0; color: rgba(255,255,255,0.78); }

.pc-footer {
	background: var(--pc-charcoal); color: rgba(255,255,255,0.82);
	padding: var(--pc-space-xl) 0 100px; position: relative;
	border-top: 3px solid var(--pc-red);
}
@media (min-width: 960px) { .pc-footer { padding-bottom: var(--pc-space-lg); } }
.pc-footer a { transition: color var(--pc-dur-fast) var(--pc-ease); }
.pc-footer a:hover { color: var(--pc-white); }

.pc-footer-grid { display: grid; gap: var(--pc-space-md); grid-template-columns: 1fr; }
@media (min-width: 760px) { .pc-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--pc-space-lg); } }
.pc-footer-brand p { margin: var(--pc-space-sm) 0 0; max-width: 320px; font-size: 0.92rem; }
.pc-footer h3 { color: var(--pc-white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: .06em; margin: 0; }
.pc-footer ul li { margin-bottom: 9px; font-size: 0.92rem; }

/* Columns are <details>; on desktop the marker is hidden and they stay open. */
.pc-footer-col { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
.pc-footer-col summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.pc-footer-col summary::-webkit-details-marker { display: none; }
.pc-footer-col summary::after { content: '+'; color: var(--pc-red-on-dark); font-size: 1.3rem; line-height: 1; transition: transform var(--pc-dur) var(--pc-ease); }
.pc-footer-col[open] summary::after { transform: rotate(45deg); }
.pc-footer-col ul { padding-top: 6px; }
.pc-footer-col-cta { margin-top: 12px; }
@media (min-width: 760px) {
	.pc-footer-col { border-bottom: 0; padding-bottom: 0; }
	.pc-footer-col summary { cursor: default; padding: 0 0 16px; }
	.pc-footer-col summary::after { display: none; }
}

/* Link arrows slide in on hover, matching the button language. */
.pc-footer-col a { display: inline-flex; align-items: center; gap: 5px; }
.pc-link-arrow { opacity: 0; transform: translateX(-4px); transition: opacity var(--pc-dur-fast) var(--pc-ease), transform var(--pc-dur-fast) var(--pc-ease); }
.pc-footer-col a:hover .pc-link-arrow { opacity: 1; transform: translateX(0); }

.pc-footer-contact {
	display: grid; gap: 14px; grid-template-columns: 1fr;
	margin-top: var(--pc-space-lg); padding-top: var(--pc-space-md);
	border-top: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 640px) { .pc-footer-contact { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pc-footer-contact { grid-template-columns: repeat(4, 1fr); } }
.pc-footer-contact-item { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; }
.pc-footer-contact-item span strong { display: block; color: var(--pc-white); font-size: 0.76rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.pc-footer-contact-icon {
	width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
	background: rgba(255,255,255,0.08); color: var(--pc-red-on-dark);
	display: flex; align-items: center; justify-content: center;
	transition: background var(--pc-dur-fast) var(--pc-ease);
}
.pc-footer-contact-icon svg { width: 18px; height: 18px; }
.pc-footer-contact-item:hover .pc-footer-contact-icon { background: rgba(237,27,36,0.16); }

.pc-footer-address { margin: var(--pc-space-md) 0 0; font-size: 0.86rem; color: rgba(255,255,255,0.6); }

.pc-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.12); margin-top: var(--pc-space-md); padding-top: 20px;
	display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
	font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.pc-footer-trust { font-family: var(--pc-font-display); font-weight: 700; color: var(--pc-red-on-dark); letter-spacing: .02em; }
.pc-footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }

.pc-social-row { display: flex; gap: 10px; margin-top: var(--pc-space-sm); }
.pc-social-row a {
	width: 38px; height: 38px; border-radius: 50%;
	background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
	transition: background var(--pc-dur-fast) var(--pc-ease), transform var(--pc-dur-fast) var(--pc-ease);
}
.pc-social-row a:hover { background: var(--pc-red); transform: translateY(-2px); }
.pc-social-row svg { width: 16px; height: 16px; }

/* ---------- Floating WhatsApp button (desktop; mobile uses the sticky bar) ---------- */
.pc-wa-float {
	position: fixed; right: 18px; bottom: 96px; z-index: 54;
	display: none; align-items: center; gap: 0;
	height: 52px; padding: 0 14px; border-radius: var(--pc-radius-pill);
	background: var(--pc-whatsapp); color: #fff;
	box-shadow: 0 8px 22px rgba(37,211,102,0.34);
	overflow: hidden; max-width: 52px;
	transition: max-width var(--pc-dur) var(--pc-ease), background var(--pc-dur-fast) var(--pc-ease);
}
.pc-wa-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.pc-wa-float span {
	font-family: var(--pc-font-display); font-weight: 700; font-size: 0.92rem;
	white-space: nowrap; opacity: 0; margin-left: 0;
	transition: opacity var(--pc-dur) var(--pc-ease), margin var(--pc-dur) var(--pc-ease);
}
/* Expands to reveal "Talk to us" on hover/focus. */
.pc-wa-float:hover, .pc-wa-float:focus-visible { max-width: 190px; background: var(--pc-whatsapp-dark); }
.pc-wa-float:hover span, .pc-wa-float:focus-visible span { opacity: 1; margin-left: 10px; }
/* Only on desktop — the mobile sticky bar already carries WhatsApp, and two
   floating controls would collide with the chat bubble. */
@media (min-width: 960px) { .pc-wa-float { display: flex; } }

/* ---------- Sticky mobile action bar ---------- */
.pc-mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; background: var(--pc-white); border-top: 1px solid var(--pc-gray-200); box-shadow: 0 -6px 20px rgba(19,17,18,0.08); display: grid; grid-template-columns: repeat(4, 1fr); }
.pc-mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 4px 8px; font-size: 0.68rem; font-weight: 700; color: var(--pc-gray-700); }
.pc-mobile-bar svg { width: 20px; height: 20px; }
.pc-mobile-bar a.pc-mobile-bar--accent { color: var(--pc-red-dark); }
@media (min-width: 960px) { .pc-mobile-bar { display: none; } }

/* ---------- Chatbot ---------- */
.pc-chatbot { position: fixed; right: 18px; bottom: 90px; z-index: 55; }
@media (min-width: 960px) { .pc-chatbot { bottom: 24px; } }
.pc-chatbot-toggle { width: 58px; height: 58px; border-radius: 50%; background: var(--pc-red); color: var(--pc-white); border: none; box-shadow: var(--pc-shadow-lg); font-size: 26px; }
.pc-chatbot-panel { position: absolute; bottom: 72px; right: 0; width: min(360px, 88vw); height: min(500px, 70vh); background: var(--pc-white); border-radius: var(--pc-radius-lg); box-shadow: var(--pc-shadow-lg); display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--pc-gray-200); }
.pc-chatbot-panel[hidden] { display: none; } /* the [hidden] attribute alone loses to the display:flex rule above without this */
.pc-chatbot-header { background: var(--pc-ink); color: var(--pc-white); padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; font-weight: 700; }
.pc-chatbot-close { background: none; border: none; color: var(--pc-white); font-size: 22px; line-height: 1; }
.pc-chatbot-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.pc-chat-msg { max-width: 88%; padding: 10px 14px; border-radius: 14px; font-size: 0.9rem; line-height: 1.4; }
.pc-chat-msg--bot { background: var(--pc-gray-100); align-self: flex-start; border-bottom-left-radius: 4px; }
.pc-chat-msg--user { background: var(--pc-red); color: var(--pc-white); align-self: flex-end; border-bottom-right-radius: 4px; }
.pc-chat-buttons { display: flex; flex-direction: column; gap: 8px; align-self: stretch; }
.pc-chat-buttons--footer { margin-top: 4px; }
.pc-chat-btn { text-align: left; background: var(--pc-white); border: 1.5px solid var(--pc-gray-200); border-radius: 10px; padding: 10px 12px; font-size: 0.86rem; font-weight: 600; }
.pc-chat-btn:hover { border-color: var(--pc-red); color: var(--pc-red); }
.pc-chat-btn--outline { text-align: center; border-color: var(--pc-ink); }
.pc-chat-link { align-self: flex-start; font-size: 0.85rem; font-weight: 700; color: var(--pc-red); text-decoration: underline; }

/* ==========================================================================
   Motion — one lightweight reveal utility driven by IntersectionObserver.
   No animation library; ~15 lines of JS in BaseLayout does the whole site.
   ========================================================================== */
.pc-reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--pc-dur-slow) var(--pc-ease), transform var(--pc-dur-slow) var(--pc-ease); }
.pc-reveal.is-visible { opacity: 1; transform: none; }
.pc-reveal--delay-1 { transition-delay: 80ms; }
.pc-reveal--delay-2 { transition-delay: 160ms; }
.pc-reveal--delay-3 { transition-delay: 240ms; }

/* Anyone who asks their OS for less motion gets none of it. */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
	.pc-reveal { opacity: 1; transform: none; }
}

/* ---------- Hero ambience — CSS-only drifting gradient, no JS, no images ---------- */
.pc-hero::after {
	content: '';
	position: absolute; left: -10%; bottom: -40%;
	width: 55%; aspect-ratio: 1;
	background: radial-gradient(circle, rgba(43,40,48,0.07), transparent 68%);
	animation: pc-drift 18s var(--pc-ease) infinite alternate;
	pointer-events: none;
}
@keyframes pc-drift {
	from { transform: translate3d(0,0,0) scale(1); }
	to   { transform: translate3d(6%, -8%, 0) scale(1.12); }
}
.pc-hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: var(--pc-space-md); font-size: 0.86rem; color: var(--pc-gray-700); font-weight: 600; }
.pc-hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.pc-hero-trust svg { width: 16px; height: 16px; color: var(--pc-success); flex-shrink: 0; }

/* ---------- Popular search chips ---------- */
.pc-chip-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: var(--pc-space-sm); }
.pc-chip-row-label { font-size: 0.82rem; color: var(--pc-gray-500); font-weight: 600; margin-right: 2px; }
.pc-chip {
	display: inline-flex; align-items: center; padding: 7px 14px; border-radius: var(--pc-radius-pill);
	background: var(--pc-white); border: 1px solid var(--pc-gray-200); font-size: 0.82rem; font-weight: 600;
	color: var(--pc-gray-700); white-space: nowrap;
	transition: border-color var(--pc-dur-fast) var(--pc-ease), color var(--pc-dur-fast) var(--pc-ease), transform var(--pc-dur-fast) var(--pc-ease);
}
.pc-chip:hover { border-color: var(--pc-red); color: var(--pc-red); transform: translateY(-1px); }
.pc-chip.is-active { background: var(--pc-red-dark); border-color: var(--pc-red-dark); color: var(--pc-white); }

/* ---------- Job card actions (Apply Directly + WhatsApp) ---------- */
.pc-job-card-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: auto; padding-top: var(--pc-space-sm); border-top: 1px solid var(--pc-gray-100); }
.pc-job-card-actions .pc-btn { width: 100%; }
.pc-job-card-actions .pc-btn--icon-only { width: 44px; padding: 10px 0; }
.pc-job-card-actions .pc-btn--icon-only svg { width: 18px; height: 18px; }

/* ---------- "Confused?" WhatsApp band ---------- */
.pc-help-band {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--pc-space-md);
	padding: clamp(24px, 4vw, 36px); border-radius: var(--pc-radius-lg);
	background: linear-gradient(135deg, var(--pc-gray-50), var(--pc-white));
	border: 1px solid var(--pc-gray-200);
}
.pc-help-band h2, .pc-help-band h3 { margin-bottom: 6px; font-size: clamp(1.25rem, 1.4vw + .9rem, 1.7rem); }
.pc-help-band p { margin: 0; color: var(--pc-gray-700); max-width: 56ch; }

/* ---------- Blog ---------- */
.pc-featured-post {
	display: grid; grid-template-columns: 1fr; gap: var(--pc-space-lg); align-items: center;
	padding: clamp(24px, 3.5vw, 40px); border-radius: var(--pc-radius-lg);
	background: var(--pc-white); border: 1px solid var(--pc-gray-200); box-shadow: var(--pc-shadow-sm);
	transition: box-shadow var(--pc-dur) var(--pc-ease), transform var(--pc-dur) var(--pc-ease);
}
.pc-featured-post:hover { box-shadow: var(--pc-shadow-md); transform: translateY(-3px); }
.pc-featured-post h2 { font-size: clamp(1.5rem, 2vw + 1rem, 2.1rem); margin-bottom: 10px; }
@media (min-width: 860px) { .pc-featured-post { grid-template-columns: 1.15fr .85fr; } }
.pc-featured-visual {
	border-radius: var(--pc-radius-md); aspect-ratio: 16/10;
	background: linear-gradient(135deg, var(--pc-ink), var(--pc-charcoal));
	display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.pc-featured-visual::after { content: ''; position: absolute; right: -20%; bottom: -30%; width: 70%; aspect-ratio: 1; background: radial-gradient(circle, rgba(237,27,36,0.5), transparent 65%); }
.pc-featured-visual span { position: relative; z-index: 1; color: #fff; font-family: var(--pc-font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase; opacity: .9; }

.pc-post-card {
	display: flex; flex-direction: column; gap: 10px; padding: var(--pc-space-md);
	border: 1px solid var(--pc-gray-200); border-radius: var(--pc-radius-lg); background: var(--pc-white);
	transition: box-shadow var(--pc-dur) var(--pc-ease), transform var(--pc-dur) var(--pc-ease), border-color var(--pc-dur) var(--pc-ease);
}
.pc-post-card:hover { box-shadow: var(--pc-shadow-md); transform: translateY(-3px); border-color: var(--pc-gray-300); }
.pc-post-card h3 { font-size: 1.08rem; margin-bottom: 0; }
.pc-post-card p { color: var(--pc-gray-700); font-size: 0.92rem; margin-bottom: 0; }
.pc-post-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: var(--pc-space-sm); font-size: 0.8rem; color: var(--pc-gray-500); }
.pc-read-more { display: inline-flex; align-items: center; gap: 6px; font-family: var(--pc-font-display); font-weight: 700; font-size: 0.86rem; color: var(--pc-red-dark); }
.pc-post-card:hover .pc-read-more .pc-btn__arrow { transform: translateX(4px); }

/* ---------- Article furniture: TOC, takeaways, FAQ ---------- */
.pc-article-meta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; font-size: 0.86rem; color: var(--pc-gray-500); margin-bottom: var(--pc-space-md); }
.pc-article-meta span { display: inline-flex; align-items: center; gap: 6px; }

.pc-answer-box {
	background: var(--pc-red-tint); border-left: 4px solid var(--pc-red);
	border-radius: var(--pc-radius-sm); padding: 18px 22px; margin: 0 0 var(--pc-space-lg);
}
.pc-answer-box p:last-child { margin-bottom: 0; }
.pc-answer-box strong { color: var(--pc-red-dark); }

.pc-toc { background: var(--pc-gray-50); border: 1px solid var(--pc-gray-200); border-radius: var(--pc-radius-md); padding: 20px 24px; margin-bottom: var(--pc-space-lg); }
.pc-toc h2 { font-size: 0.82rem !important; text-transform: uppercase; letter-spacing: .06em; color: var(--pc-gray-500); margin: 0 0 12px !important; }
.pc-toc ol { list-style: none !important; padding: 0 !important; margin: 0 !important; display: flex; flex-direction: column; gap: 8px; }
.pc-toc a { font-weight: 600; font-size: 0.92rem; }
.pc-toc a:hover { color: var(--pc-red); }

.pc-takeaways { background: var(--pc-gray-50); border-radius: var(--pc-radius-md); padding: 22px 26px; margin: var(--pc-space-lg) 0; }
.pc-takeaways h2 { font-size: 1.1rem !important; margin: 0 0 12px !important; }
.pc-takeaways ul { list-style: none !important; padding: 0 !important; margin: 0 !important; display: flex; flex-direction: column; gap: 10px; }
.pc-takeaways li { position: relative; padding-left: 28px; }
.pc-takeaways li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--pc-red); font-weight: 800; }

.pc-faq-list { margin: var(--pc-space-md) 0; border-top: 1px solid var(--pc-gray-200); }
.pc-faq-item { border-bottom: 1px solid var(--pc-gray-200); padding: 0; }
.pc-faq-item summary {
	cursor: pointer; list-style: none; padding: 18px 40px 18px 0; position: relative;
	font-family: var(--pc-font-display); font-weight: 700; font-size: 1rem; color: var(--pc-ink);
}
.pc-faq-item summary::-webkit-details-marker { display: none; }
.pc-faq-item summary::after {
	content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
	font-size: 1.4rem; font-weight: 400; color: var(--pc-red); transition: transform var(--pc-dur) var(--pc-ease);
}
.pc-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.pc-faq-item summary:hover { color: var(--pc-red); }
.pc-faq-answer { padding: 0 0 18px; color: var(--pc-gray-700); }
.pc-faq-answer p:last-child { margin-bottom: 0; }

/* ---------- Logo lockup (real logo asset) ---------- */
.pc-logo-lockup { display: inline-flex; align-items: center; gap: 10px; }
.pc-logo-lockup img { display: block; object-fit: contain; }
/* On dark surfaces the logo keeps its own white panel rather than being recoloured. */
.pc-logo-lockup--chip img { background: var(--pc-white); border-radius: 10px; padding: 5px; }

/* ---------- Director profile ---------- */
.pc-director { display: grid; grid-template-columns: 1fr; gap: var(--pc-space-lg); align-items: center; }
@media (min-width: 900px) { .pc-director { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: var(--pc-space-xl); } }

.pc-director-media { position: relative; }
.pc-director-media img {
	width: 100%; max-width: 440px; margin: 0 auto; display: block;
	border-radius: var(--pc-radius-lg);
	/* Brand-derived frame: thin red edge + soft ambient lift, no neon. */
	border: 3px solid var(--pc-white);
	box-shadow: 0 0 0 2px var(--pc-red), var(--pc-shadow-lg);
}
/* Soft brand glow behind the portrait. */
.pc-director-media::before {
	content: ''; position: absolute; inset: auto 0 -6% 0; height: 70%; z-index: -1;
	background: radial-gradient(ellipse at center, rgba(237,27,36,0.16), transparent 70%);
	filter: blur(6px);
}

.pc-director-body h2 { margin-bottom: 4px; }
.pc-director-credentials { display: block; font-size: 1rem; font-weight: 600; color: var(--pc-gray-500); margin-top: 4px; }
.pc-director-role { font-family: var(--pc-font-display); font-weight: 700; color: var(--pc-red-dark); margin-bottom: var(--pc-space-sm); }

.pc-director-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin: var(--pc-space-md) 0; }
.pc-stat-card { background: var(--pc-gray-50); border: 1px solid var(--pc-gray-200); border-radius: var(--pc-radius-md); padding: 16px 18px; }
.pc-stat-value { display: block; font-family: var(--pc-font-display); font-weight: 800; font-size: 1.7rem; color: var(--pc-red); line-height: 1.1; }
.pc-stat-label { display: block; font-size: 0.84rem; color: var(--pc-gray-700); margin-top: 4px; }

.pc-director-quote {
	margin: var(--pc-space-md) 0; padding: 20px 24px;
	background: var(--pc-gray-50); border-left: 4px solid var(--pc-red);
	border-radius: var(--pc-radius-sm);
}
.pc-director-quote .pc-eyebrow { margin-bottom: 6px; }
.pc-director-quote p { margin: 0; font-size: 1.05rem; font-style: italic; color: var(--pc-gray-700); }

.pc-about-photos { display: flex; gap: 20px; flex-wrap: wrap; margin: var(--pc-space-md) 0 var(--pc-space-lg); }
.pc-about-photos figure { flex: 1; min-width: 220px; margin: 0; }
.pc-about-photos img { width: 100%; border-radius: var(--pc-radius-lg); display: block; max-height: 320px; object-fit: cover; }
.pc-about-photos figcaption { margin-top: 8px; }

/* ---------- Utilities ---------- */
.pc-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.pc-stack-sm > * + * { margin-top: var(--pc-space-sm); }
.pc-section--xl { padding: var(--pc-space-2xl) 0; }
.pc-legal-notice { background: #FFF7E6; border: 1px solid #F0D090; border-radius: var(--pc-radius-sm); padding: 14px 16px; font-size: 0.88rem; margin-bottom: 28px; }
.pc-service-charge-box { background: var(--pc-red-tint); border-radius: var(--pc-radius-md); padding: 20px 24px; margin: 20px 0; }
.pc-service-charge-box strong { color: var(--pc-red-dark); }

/* ==========================================================================
   Data tables — used by role hubs and career-guide articles for salary and
   comparison data. Wrapped in an overflow-x container by the caller so wide
   tables scroll instead of forcing the page to scroll sideways.
   ========================================================================== */
.pc-table { width: 100%; border-collapse: collapse; margin: 0 0 4px; font-size: 0.95rem; }
.pc-table caption { text-align: left; }
.pc-table th, .pc-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--pc-gray-200); vertical-align: top; }
.pc-table thead th { background: var(--pc-gray-100); font-family: var(--pc-font-display); font-weight: 700; font-size: 0.88rem; white-space: nowrap; }
.pc-table tbody tr:last-child td { border-bottom: none; }
.pc-table a { color: var(--pc-red-dark); text-decoration: underline; }
.pc-article-body .pc-table { margin: 20px 0 8px; }

/* Plain vertical list of internal links (related guides, topic clusters). */
.pc-link-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.pc-link-list li { padding-left: 20px; position: relative; }
.pc-link-list li::before { content: '→'; position: absolute; left: 0; color: var(--pc-red-dark); font-weight: 700; }
.pc-link-list a { text-decoration: underline; }

/* Topic clusters on the career-guide index — a crawlable, grouped index of
   every article, which a flat grid stops providing once there are 40+. */
.pc-topic-clusters { display: grid; gap: 32px; margin-top: 28px; grid-template-columns: 1fr; }
.pc-topic-cluster h3 { margin-bottom: 12px; }
@media (min-width: 700px) { .pc-topic-clusters { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pc-topic-clusters { grid-template-columns: repeat(3, 1fr); } }

/* Career-guide cover. Explicit width/height in the markup plus aspect-ratio
   here means the space is reserved before the file arrives — no layout shift. */
.pc-article-cover {
	width: 100%; height: auto; aspect-ratio: 1200 / 630;
	border-radius: var(--pc-radius-md); margin: 20px 0 24px;
	background: var(--pc-gray-100);
}
.pc-post-card-cover {
	width: 100%; height: auto; aspect-ratio: 1200 / 630;
	border-radius: var(--pc-radius-sm); margin-bottom: 12px;
	background: var(--pc-gray-100);
}
.pc-featured-cover {
	width: 100%; height: auto; aspect-ratio: 1200 / 630;
	border-radius: var(--pc-radius-md); background: var(--pc-gray-100);
}
